Best way to create a QML Dialog with QQuickView, to be run before main QML...
You can split your Dialog and App into two .qml files and have something like this maybe: File Dialog.qml: import QtQtuick 2.0 Rectangle{ signal done() Text{...
View ArticleQt Run Time Error-Error code 3
Hi Team, Iam new in Qt development so i run the basic hello world program, iam getting below run time error and description Error Description:- ========== Program:...
View ArticleQt Run Time Error-Error code 3
It can be easier to setup Qt for the first time if you use the Qt SDK 5.0.2 to install QtCreator and MinGW at the same time with all the paths and so setup nicely. You can get it from this page:...
View ArticleNokia Plugin Qt Location Proxy Problem - Program crashes
I don’t think it is a problem with setting the system proxy, since it crashes whether you set it or not. Are you able to provide a backtrace showing the details of the crash?
View ArticleUsing QML Items as texture for custom QSGGeometry QML QQuickItem
Hi belab, Thanks for the suggestion however I really need to do is to get the image of a rendered QML Item (and its subtree) e.g. using a ShaderEffectSource and then using that image as a texture to...
View ArticleHow to do delete later in QML JavaScript?
I have a VideoThumbnail class inherits from QQuickItem, used in QML. VideoThumbnail has a callback thread which may post update event while the VideoThumbnail object is being destroyed, this race...
View ArticleSending Email to any server in Qt
Hi friends, I want to send an email to any server(gmail,yahoo,etc) by providing our email id in our Gui itself…It should happen after clicking “send Email” button….I dont want like microsoft...
View ArticleSending Email to any server in Qt
Probably the best is using Google [lmgtfy.com] or another search engine
View ArticleBest way to create a QML Dialog with QQuickView, to be run before main QML...
MyApp in first example that you’ve posted, doesn’t know what dialog is. You can pass dialog as property and connect to its signal using Connections: MyApp { id: app property...
View ArticleCan't set the window icon for QML application
Hello, I am trying to set the window icon for the QML application window (and to get it to display in the Windows taskbar). I have tried following the instructions here [qt-project.org], but this...
View ArticlePlug and paint example in Qt5
You cannot run both. In Qt Creator, I simply open the “Plug and Paint” project and the “Plug and Paint Plugins” project. The “Plug and Paint Plugins” is not runnable, but is required by the other...
View Articleqml2 camera crash on wni7 64bits(simple codes)
Qt version 5.1RC(mingw version) main.qml import QtQuick 2.0 import QtMultimedia 5.0 Rectangle { width: 360 height: 360 ...
View ArticleSignal from C++ in QML
There is a code like this // interfaceqml.h class InterfaceQML : public QObject { Q_OBJECT public: InterfaceQML(QObject...
View ArticleQML/C++ integration: QDeclartiveView and Context property usage
Really? Why am I doing it on daily basis, then :O Maybe because I’m passing QObject pointers as global properties. But I also don’t remember any problems in changing those properties after setting QML...
View Articlebreaking up QML into different files.
How can i break up my project into different files. for example I’d like to have my animations on one file my states in another and so forth. so instead of everything on file file I’d like something...
View ArticleSignal from C++ in QML
You are instantiation 2 separate Interface objects: one in C++, and another in QML. No wonder it does not work. Get a pointer to your QML instance using QObject::findChildren() (just remember that...
View Article[SOLVED] Can't set the window icon for QML application
It works so I don’t dare mess with it further. Marking this as solved.
View Article