Skip to content

Qt Design Studio

For questions about Qt Design Studio

118 Topics 342 Posts
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    38 Views
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Qt design studio file from Windows to Raspberry Pi

    Unsolved
    2
    0 Votes
    2 Posts
    981 Views
    Pl45m4P
    @Marzonek said in Qt design studio file from Windows to Raspberry Pi: i created a Design in Qt design studio on my Windows because i need a GUI for a Project in my school. Hi, did you wrote an app or only the .ui / *.qml file(s) in QtDesigner / Qt Design Studio? Is it possible to run the file i created on my Windows to run on my Pi? There is not such thing as "running the GUI file". You need to use it in an app with Qt. You need to create an app, with or without QML and then compile it for your Raspberry Pi device. One possibility how to proceed is shown in this Video here. Use the latest versions and not the ones shown in the video though. If you already made a QML design, you can copy the code to re-use it, as working with Qt is platform independent.
  • Qt Design Studio Community Edition start screen

    Solved
    2
    0 Votes
    2 Posts
    705 Views
    T
    you can write: [DoNotAskAgain] StudioSplashScreen=true into the user settings file under ~/.config/QtProject/QtDesignStudio.ini but please also create a bugreport with your system data, distri + which window manager is used
  • Qt Creator 14.0.1 Failed to create project

    Locked Unsolved
    2
    1 Votes
    2 Posts
    727 Views
    Christian EhrlicherC
    Dupe of https://forum.qt.io/topic/158270
  • CMake issues when Qt Creator and Qt Design Studio work together

    Unsolved
    1
    0 Votes
    1 Posts
    385 Views
    No one has replied
  • Link License to Qt Design Studio Install

    Unsolved
    3
    0 Votes
    3 Posts
    602 Views
    JKSHJ
    Hi, and welcome! @Newton4this said in Link License to Qt Design Studio Install: I am currently unable to drag and drop files Can you please clarify what kind of files you tried to drag and drop? And what license you have (if any)?
  • Docking Property Editor in Qt Designer itself

    Unsolved
    7
    0 Votes
    7 Posts
    804 Views
    SGaistS
    @Henning-G said in Docking Property Editor in Qt Designer itself: Yes, Qt Designer is part of Qt Creator. Qt Design Studio ist a standalone tool (based on Qt Creator) that is used to design QtQuick UIs instead of widget based UIs. Small nitpick: Qt Designer is a standalone tool that predates Qt Crestor but its functionality has been integrated in Qt Creator so you can directly create widget based UIs within Qt Creator.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • accessing several .ui files in python

    Unsolved
    11
    0 Votes
    11 Posts
    2k Views
    Pl45m4P
    @JonB said in accessing several .ui files in python: You sound like you are doing Option B: Loading it directly. If you do this you will not be able to access all your widgets so easily. I would always recommend the alternative, Option A: Generating a Python class. It's a touch more work --- you have to run a pyside6-uic tool step to produce Python code from the .ui in a generated .py file (I think Creator can run this for you each time) --- but in return you get proper coding-time support for all your widgets. An interesting thing I've noticed lately: We had a similar topic in the German section where OP used the QUiLoader/"direct" approach, but then struggled with (as you also mentioned) accessing and connecting the child- and sub-Widgets from the UI-based QWidget constructed by QUiLoader. I've also recommended using the uic tool to convert the .ui to a .py class, esp. when you are a beginner. However, I was told that at some other place (Python forum) OP read about "the Python community" condemning this "generator" approach, since it violates some principles of interpreted languages... :D Yeah, sure... :D I'm not a Python-hater, or a Python-fanboy, but without already popular frameworks providing Python-bindings, nobody would use Python in these cases... the whole community profits. So you might have to accept it's downsides, which come with the fact that these frameworks weren't intented for Python-like languages and are only usable through bindings. Try to write your own platform independent, holistic GUI framework like Qt from scratch using Python only... Good luck with that ;-)
  • QML Module Not Found

    Solved
    2
    0 Votes
    2 Posts
    2k Views
    C
    Solved by updating importPaths in .qmlproject and creating a NEW qmldir file in the actual folder (PROJECT_NAME/imports/MODULE_NAME/qmldir) with the following properties: module RadialBar RadialBar 1.0 RadialBar.qml Move the plugin code into PROJECT_NAME/imports/MODULE_NAME/ and call it using import RadialBar 1.0. Then restart Qt Design Studio.
  • Export project to CMake Files fails

    Solved
    3
    0 Votes
    3 Posts
    837 Views
    T
    The cmake export only works for Qt 6 based projects, since Qt 5 does not support the CMake API used. For Qt 5 you can export a .qrc file and follow those instructions (Converting into qmake Projects): https://doc.qt.io/qtdesignstudio/quick-converting-ui-projects.html
  • This topic is deleted!

    Solved
    4
    0 Votes
    4 Posts
    108 Views
  • Qt 6 tree view component missing

    Unsolved
    2
    0 Votes
    2 Posts
    603 Views
    T
    True TableView and TreeView tooling is missing - create a report that you expect it at https://bugreports.qt.io/
  • How can I add QtPdf module to Qt Design Studio?

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    T
    somehow I oversaw that - 4.5 will have it, next time just create a bug report and we will see it earlier - https://bugreports.qt.io/browse/QDS-12654
  • code.qt.io ping timeout

    Locked Unsolved
    2
    0 Votes
    2 Posts
    507 Views
    Christian EhrlicherC
    See https://forum.qt.io/topic/154616/unable-to-reach-to-https-code-qt-io
  • Loading QtGraphicalEffects in design studio

    Solved
    2
    0 Votes
    2 Posts
    771 Views
    T
    Hi, The last Qt Design Studio version, which has still native Qt 5 support, is Qt Design Studio 4.1. Therefore this version is still available in the Maintenance Tool. Make sure to choose Qt 5 for the imports and for the kit. In this case, the Qt 5 based QtGraphicalEffects are fully available. In Qt 6 only a limited version (import Qt5Compat.GraphicalEffects) is available for compatibility.
  • MenuBar in Release 12.0.2 not responding to mouse click

    Solved windows 11 menubar
    2
    0 Votes
    2 Posts
    682 Views
    ?
    Found it: https://bugreports.qt.io/secure/Dashboard.jspa
  • Unable to Open File

    Solved
    11
    0 Votes
    11 Posts
    3k Views
    V
    @JonB Thanks I was able to do it. Actually I opened a folder in vscode and then open this file which was in another location. Hence that error message. Thank you for your help.
  • Qt tool for designing my site

    Unsolved
    2
    0 Votes
    2 Posts
    483 Views
    sierdzioS
    @Larkin Qt is not a web framework, so the Design Studio will likely not help you at all. Unless maybe if you intend to use Qt and WebAssembly to build your site.