Questions tagged [qt-design-studio]
19 questions
6
votes
0 answers
QML Connection and IDE - new syntax: Implicitly defined onFoo properties in Connections are deprecated
In the new version of QML 1.5.0, it is recommended to use the new syntax for connection e.g.
MouseArea {
Connections {
function onClicked (mouse) {foo (mouse)}
}
Using the "Qt Design Studio 1.5.0" or "Qt Creator 4.12.1" IDE
I get this warning.…

user2129729
- 61
- 1
- 4
4
votes
0 answers
Component with path `*.qml` could not be created
I'm using Qt Design Studio and I'm receiving an error:
Component with path *.qml could not be created
The error is thrown for custom QML types in their own QML files.
However, There is no such issue when working with Qt Creator rather than Qt…

Megidd
- 7,089
- 6
- 65
- 142
1
vote
0 answers
Converting Qt Design Studio UI Projects into Qt Creator qmake Projects
I want to customize the UI from the WebinarDemo in Qt Design Studio. Before that, I want to try whether I can deploy it into Qt Creator or not.
I tried the guide from official Qt website about converting Design Studio projects into Qt Creator…

Aroli Marcellinus
- 115
- 7
1
vote
1 answer
Importing Qt Studio Project in a Qt Creator QML app
I have created a hello world project in Qt Design Studio. Now I need to import QtDS project tree/directory in QtQuick qml app.

taimoor1990
- 158
- 1
- 13
1
vote
1 answer
Can I export .ui file from QT Design Studio?
I've been using QT Designer to design simple GUI and save as .ui file and then convert it to Python 3 code, But now I've found QT Design Studio which seems so much easier and better. But as I've seen it just create .qml files and it's a little bit…

soroushamdg
- 191
- 1
- 2
- 14
1
vote
2 answers
Use Qt Design Studio QML with PySide2
I am new to Qt Designer Studio. I just created a simple button in Qt Design Studio and I am trying to use the QML file with PySide2 but I am getting multiple import errors. Is there a specific way to implement Qt Design Studio qml files with…

Pratik Tayshete
- 75
- 11
0
votes
0 answers
How to create .exe from QT Design Studio project?
I want to create an animation on QT Design Studio application and generate an executable file that will play it. I can export the project with cmake build files or as a deployable project.
Where should I go from here?
I tried opening the…

Sasha
- 1
- 1
0
votes
0 answers
Create plugin for Qt Design Studio
Objective
I am trying to create a plugin to have some custom widgets in Qt Design Studio.
Context
I used to be familiar with Qt Creator, and made some plugins in previous projects.
For a new project, I need to create a plugin for Qt Design Studio,…

Nagawica
- 145
- 1
- 1
- 9
0
votes
0 answers
(Qt6.5) Using Qt Design Studio projects in Qt Widgets/C++
I have an Android/IOS/Desktop Qt Widgets (Qt 6.5) application (C++) I am working on in Qt Creator. I liked the ease of using the Design/.ui editor that is built into Creator, but I wanted to try Qt Design Studio as well.
I made a new Stack-style…

Alyssa Maguire
- 21
- 2
0
votes
0 answers
Qt TableView selection not working. Relative indices are stuck to "-1"
I will post my specific problem, but it would be great if we have a relatively general post about this matter. So, the problem is that Qt has deprecated the TableView component in Qt6, and this results in so many voids in its documentation. The…

Nick V
- 3
- 2
0
votes
0 answers
How to make com.mycomponents retrievable by Qt Design Studio?
I receive an error by Qt Design Studio 3.9.0 after I run my small and simple app, even if the same app runs correctly both on Windows and on an android device simulator, with Qt Creator and/or MS Visual Studio.
I don't understand what am I supposed…

Alessio
- 1
- 1
0
votes
0 answers
Custom Qdial not working with mouse wheel control if value range change other than 0 to 1
if we have qdial with value range 0 to 1 then mouse control works and if value range change to any other value then also mouse control change value between 0 to 1 only
as shown here in the screenshot i have change the value from -140 to 140 then…

HEET PATEL
- 11
- 1
0
votes
0 answers
Qt Creator work with QML in Design mode: plugin not found
Windows 10,
msvc 2019,
Qt 5.15.5
I cannot open custom QML component files in the Design mode in Qt Creator 9.0.2.
I'm sure the project structure itself is correct, but why can't I see the appearance of the elements normally? How to make Design…

Vladimir Bershov
- 2,701
- 2
- 21
- 51
0
votes
1 answer
Qt Quick Designer Components module Static Linking not working
I'm trying to cross compile Qt Quick Designer Components to get QtQuick.Studio.Effects module on Qt 6.5 on arm64 target as I'm getting "module 'QtQuick.Studio.Effects' is not installed" when I try to to run my cross compiled qt application.
So far I…

Imesh Sachinda
- 1
- 3
0
votes
1 answer
How can I connect functions on an hpp and cpp file into qt design studio?
I am currently working on a project where my task is to work on the development of the UI, which I have never done before. I am encountering a lot of issues, especially with merging files from my other teammates who are working in hpp and cpp files…

pga
- 1