Skip to content

Qt Design Studio

For questions about Qt Design Studio

117 Topics 343 Posts
QtWS25 Last Chance
  • How to texturize components using a blend mode in Qt Design Studio?

    Unsolved
    1
    0 Votes
    1 Posts
    176 Views
    No one has replied
  • Just checking

    Unsolved
    1
    0 Votes
    1 Posts
    137 Views
    No one has replied
  • Dynamic Grid

    Unsolved
    9
    0 Votes
    9 Posts
    2k 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
    131 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
    392 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
    273 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
    838 Views
    T
    @jonnycakes please create a ticket at https://bugreports.qt.io/
  • Looking for best practices on SVG's in QDS?

    Unsolved
    1
    0 Votes
    1 Posts
    170 Views
    No one has replied
  • No elements visible

    Unsolved
    1
    0 Votes
    1 Posts
    144 Views
    No one has replied
  • QT Design Studio tabs

    Unsolved
    2
    0 Votes
    2 Posts
    410 Views
    T
    from documentation https://doc.qt.io/qt-6/qml-qtquick-controls-tabbar.html#details I would use a StackLayout
  • Can not download Qt Design Studio, missing link and option

    Solved
    5
    0 Votes
    5 Posts
    787 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
    1k 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
    581 Views
    D
    OK , thnx.
  • QmlElement is not recognized in QDS

    Unsolved
    3
    0 Votes
    3 Posts
    206 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.
  • QML Module not found

    Solved
    3
    0 Votes
    3 Posts
    393 Views
    B
    I ran into a similar issue, the difference being that my project is in Python and I declared a QML element using the @QmlElement annotation, but it was not recognized by Qt Design Studio, even though the program ran fine and the functionality seemed to be working correctly.
  • No QML Utility Specified for the Target Device

    Unsolved
    2
    1 Votes
    2 Posts
    249 Views
    T
    Please do not use the Android kit. You can use the UI viewer to preview applications on Android. This is explaiend here: https://doc.qt.io/qtdesignstudio/qt-ui-viewer.html. This feature will get a major overhaul in Qt Design Studio 4.7.
  • QML module not found error

    Unsolved
    3
    0 Votes
    3 Posts
    277 Views
    T
    How did you fix it?
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    38 Views