How to make QML applications with multiple files using the same technique as...
Unlike in C/C++ you don’t need to include or import other QML files that are part of your project. You just need to add the extra QML files and you can directly use them as components, since each QML...
View ArticleLoading qml into an area of main.qml
Hi Dolphin One solution can be with dynamic QML objects: ——————————————————————————- http://qt-project.org/wiki/QML-Dynamic-Objects...
View ArticleConnect QML signal to C++11 lambda slot (Qt 5)
I really can’t answer that, to be honest. Stephen Kelly might know, Thiago certainly would, so you could try asking on #qt on freenode. Cheers, Chris.
View ArticleQML ShaderEffect and property type
The property types which are provided by QtQuick are listed at http://doc-snapshot.qt-project.org/qt5-stable/qtquick/qtquick-qmltypereference.html#basic-types however not all of them have conversions...
View ArticleCustom QML Library: Styling practices
That might work but I’m having difficulty understanding how I could modify a single key without affecting the attributes of the others outside of the library. Suppose the user likes the default of all...
View ArticleLoading qml into an area of main.qml
Quick look seems like you have given me an answer, I will get on with the coding. BIG thanks
View ArticleQML optimal way to stream/update images (Qt 5)
First, a little background: I’m trying to display image data streamed from a medical device in real time. The approach I am currently testing is to define a QML Image element with a custom source (e.g....
View ArticleCustom QML Library: Styling practices
Actually, an interesting idea is to remove the keyboard’s specific implementation of their keyboard delegate and place it into a different file, then the properties will be correctly inherited: //...
View ArticleQML is slow in Android
QML is slow in Android 4.1 ARMv5 or ARMv7 of 1.2 ghz. delay in the design of items in listview. nothing good result. is not good. In the windows7 was perfect. I’m doing something wrong? import QtQuick...
View ArticleQML is slow in Android
Are you using Qt 5? (it’s a good idea to do so — all the recent work in Android support has been exclusive to Qt 5) Qt Quick 1 is deprecated, and is only provided for Qt 4 compatibility. Use Qt Quick 2...
View ArticleQml evaluatejavascript problem
Hello, I have Qml WebView and I’m trying to simulate a click event on a div. the div is: <div class=“ih” ><div class=“jh kh”></div></div>I have...
View ArticleAbout Qt help documents
I re-install QT5 from .run file of QT official site, it is Ok now, thanks.
View ArticleQt and fork()
I want to write some wrapper to console app. The problem is I cant understand why label_2 isn’t changed to “Wait” till converter is done working. I think the main process should change it’s text to...
View ArticleQt and fork()
Same problem with QProcess. Program works but there is no “Wait” information shown. After I click button program does it’s job well and after a while there’s just “Done”. #include <QtGui>...
View ArticleIs Qt Quick ok for building UIs for apps that use drawing tablet support?...
Hi, I’m starting to learn the Qt freamwork and want to build a sort of 2D animation app for desktop, is it Qt Quick the best choice for making the user interface, or is it more recomended to use...
View ArticleIs Qt Quick ok for building UIs for apps that use drawing tablet support?...
Yes, it is all perfectly possible.
View ArticleQt and fork()
waitForFinished blocks the event loop so converterStarted and converterFinished will be called one after the other after converterProc has ended thus you won’t see “Wait!”. If you just want to avoid...
View ArticleCustom QML element init
I have a QML plugin, it exports the class “Window”. This class has “width” and “height” properties. For some reason I have to recreate window to reflect any changes. I have a QML: import Graphic 1.0 //...
View Article