Skip to content

Qt Design Studio

For questions about Qt Design Studio

120 Topics 353 Posts
  • QT Design Studio with PySide6

    Unsolved
    9
    0 Votes
    9 Posts
    6k Views
    J
    Using QT Designer might be the simpler route if the main goal is to keep the workflow smooth with Python. QT Design Studio projects often need manual adjustments before they run properly under PySide6.
  • QT Design Studio tabs

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    J
    In QT Design Studio, Tab Buttons are mostly for navigation within the UI, but each tab doesn’t automatically hide other content. Usually, a StackView or Loader is needed to switch visible content depending on the active tab.
  • Looking for best practices on SVG's in QDS?

    Unsolved
    2
    0 Votes
    2 Posts
    523 Views
    J
    One possible reason for the blurriness could be that the path data is scaled down too much inside the SvgPathItem. QDS tends to rasterize at lower resolution if the source size and item size don’t match. Keeping the original viewBox from the SVG file and adjusting the width/height proportionally may help.
  • QT Design Studio tends to shut down

    Unsolved
    3
    0 Votes
    3 Posts
    7k Views
    osirisgothraO
    I have a pretty decent setup for development I notice that QT design studio eats resources like candy -- even if my PC can keep up with it, the fans all kick up into high gear as if I had just accepted 30 network rendering jobs. Its only in the studio though, application performance itself is fine, and in QtCreator/Designer things are fine, just that monster seems to eat and eat, I am not surprised at all to hear people with setups under and at mid-end find it completely unusable. Maybe it has something to do with latest trends showing that environments like Unity can prove new developers really will just upgrade and upgrade and not bat an eyelash, carbon emissions be darned we need more games over here! :3
  • Qt Design Studio export to Qt Creator problem

    Unsolved
    3
    0 Votes
    3 Posts
    772 Views
    A
    Hi, thank you for advice, i'll give it a shot
  • Uploading photo issue (When clicking all image is deleted)

    Unsolved
    2
    0 Votes
    2 Posts
    247 Views
    jsulmJ
    @Leonard-Lalican Can you rephrase your question? It is not clear what you mean.
  • Just checking

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    Jarko VihrialaJ
    Hi! Sorry for a late reply, hope this msg still finds you. With Qt DS you can create screens to any device or application. We don't ship with iOS or Android wizard so the screen sizes you need to determine yourself. The standard Qt Quick components have styling for mobile OSes. Usually the application done with Qt DS on mobile devices has been the control app for some device. Travel booking app sounds a lot like interfacing with external data. When binding the backends to the app you most likely need to code a bit. If you need more information, don't hesitate to ask. I'll be monitoring this forum actively now.
  • How to texturize components using a blend mode in Qt Design Studio?

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    No one has replied
  • Dynamic Grid

    Unsolved
    9
    0 Votes
    9 Posts
    3k Views
    R
    @Ragbot said in Dynamic Grid: @jsulm But that wouldn't change the no of items in one row right? I'm trying to get make it so that if the window is resize to be more wider the widgets in the bottom row have to go to the upper row and vice versa to fill in the gap. By setting max size that will do they size limits but to wont re arrange itself. It sounds like you want a responsive layout where widgets dynamically rearrange themselves based on the window size. If you're using Qt, you should consider using a QGridLayout or QFlowLayout (custom implementation) to achieve this behavior. Possible Solutions Using QGridLayout with Dynamic Column Count You can track the window size changes and adjust the number of columns dynamically. cpp Copy Edit void MyWidget::resizeEvent(QResizeEvent* event) { int width = event->size().width(); int numColumns = width / widgetWidth; // Adjust based on available space updateGridLayout(numColumns); } Using QHBoxLayout & QVBoxLayout Dynamically Arrange widgets in QHBoxLayout inside a QVBoxLayout, and move them between rows when the width changes. Using QFlowLayout (Custom) Qt does not have a built-in QFlowLayout, but you can implement a layout that automatically adjusts widgets to fit within available space.
  • About the transition view in Qt Design Studio

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    48 Views
    No one has replied
  • Qt Design Studio read user files at first launch?

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    H
    @Tim-Jenssen Thanks for your reply. I got limited resources tracking this issue. Appreciate for your help. If u need more info debugging this from my side, feel free to ask.
  • Style Sheet

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    JonBJ
    @GILOKILO , @QtFriend2024 The OP is asking about Qt Design Studio, not Designer/Creator. In the light of @Henning-G's reply above, do either of your posts refer to Design Studio and its use of QML?
  • Design Studio locking up?

    Unsolved
    5
    0 Votes
    5 Posts
    2k Views
    T
    @jonnycakes please create a ticket at https://bugreports.qt.io/
  • No elements visible

    Unsolved
    1
    0 Votes
    1 Posts
    404 Views
    No one has replied
  • Can not download Qt Design Studio, missing link and option

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    M
    Finally , I have to use the different mirror that the default as listed in: https://download.qt.io/online/qtsdkrepository/windows_x86/root/qt/Updates.xml.mirrorlist after browsing here and there , I must put the mirror without full path to xml. Instead only url before the /online part. qt-online-installer-windows-x64-4.8.1.exe --mirror https://qt-mirror.dannhauer.de/ and voila! [image: 25ba0172-6cde-46e4-b73f-1c077cca7c15.png] [image: 3dc45db2-ca6b-4803-acf6-5809be6f6bd5.png]
  • Can't give to an element a name used in the past and then removed

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    T
    @Alhazred please create a report https://bugreports.qt.io/secure/CreateIssue!default.jspa
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • Timeline issue

    Unsolved
    8
    0 Votes
    8 Posts
    2k Views
    D
    OK , thnx.
  • QmlElement is not recognized in QDS

    Unsolved
    3
    0 Votes
    3 Posts
    777 Views
    A
    Nobody here even reply man. As far as I know, you can read more about how QDS works with CMake, Qmake, python and C++. There is a way to know what project structure does QDS expects, I think. Make a project in QDS, click on Files -> Export Project -> Enable Python Generation or Enable CMake Generation. You can learn a bit faster that way.