Module QtAudioEngine is not installed
Thanks for answer, I solved this problem, I using qt for android apps, and now qt doesn’t support audio engine for android,
View ArticleIncorrect documentation on DragEvent
This is in reference to: http://qt-project.org/doc/qt-5.0/qtquick/qml-qtquick2-dragevent.html These are the properties described in the reference: accepted, action, drag.source, keys, supportedActions,...
View ArticleHTML5 backend for Qt/Qml
I have a Qml/C++ application and I would like to run it in a browser. My future plans are that my application can be remotely controlled. Is this somehow possible? I already read about QMLWEB...
View ArticleHTML5 backend for Qt/Qml
Hi, If I understood you correctly, you might be interested in the Vaudeville QPA project Hope it helps
View ArticleWhat is the associate type of QList in qml?
I don’t think you can access the data return by do_something in qml.
View ArticleHow to set property into a sub context?
Hello, I try to pass an object (ListModel) into a sub-context of an component that I have created, but I have this error: QQmlContext: Cannot set property on internal context Here, my attempts:...
View Articleqt5.0 or newer-- how to create a transparent window use qml
i googled some solution but only for qt 4.x for example: QmlApplicationViewer view; view.setWindowFlags(Qt::FramelessWindowHint); view.setAttribute(Qt::WA_TranslucentBackground);...
View ArticleQtQuick 2.0 Two listviews and mouse
Hello guys, Today i have problem with two listviews and mouse. When I created two listviews, mouse operation like(scroll, click and drag) are active only on second listview. Can i change that mouse...
View Articleqt5.0 or newer-- how to create a transparent window use qml
color: “#00000000” // ARGB fully transparent
View ArticleLoad a new QML file from other
Hi. I’m new with QtQuick and Qml… I’m try to make an app which the first screen is for loggin and after that I can enter to the system. I had created a QtQuick application in QtCreator, and I have the...
View ArticleMessageDialog is triggering signals twice
I have a problem using MessageDialog. The following code: import QtQuick 2.2 import QtQuick.Dialogs 1.1 ..... MessageDialog { ...
View ArticleMessageDialog is triggering signals twice
Found this bug. Bug [bugreports.qt-project.org]
View ArticleCheckBox in TableView, Get the checked status
OK, I’m a new guy to Qt & qml, and qml really cool. Now i want add checkbox in special items of the table. But how can i get the property checked? Here is my Code: Rectangle{ ...
View ArticleLoad a new QML file from other
Check out QtQuick examples. This is usually done by defining States and using a Loader.
View ArticleMemory management in Qt Quick
Hi everyone! Maybe my question is stupid but I can’t understand how works QML properties with memory. I have the C++ object which has pointer to object as field: Q_PROPERTY(MslElement* newElement READ...
View ArticleMemory management in Qt Quick
I am not sure, but I think in this case only the reference will be kept. QObject subclasses are not copyable, after all :) For a real in-depth analysis of QML engine, please read this splendid KDAB...
View ArticleDIsplay another QML file during initialization
Hi, I’m working on an application which has a quite long initialization procedure (connect to a server, get data from the server, load QML files, images,…). I would like to display another QML file (a...
View Articlefrom widgets to quick2
In the QML MouseArea I have acceptedButtons: Qt.AllButtons Please try adding that to the ViewportWidget instead of the MouseArea.
View ArticleDIsplay another QML file during initialization
Mhm… I can’t find a solution for my issue… At first, it seemed easy but… it’s not. So, how would you do this in QT5/QML? Just after the application starts, display the content of a QML file (“Please...
View Article