I know that the use of QML is quite new in QT and I was wondering if I should design my application using QTDesigner or QML. I will be using a MVC pattern and my main concern if I use QML for the GUI is that it might not be easy to integrate inside the reste of my C++ app.

Feel free to give your personnal advice i would greatly appreciate it. Thank you !

link|improve this question

44% accept rate
Here sharedrealitynews.blogspot.com/2012/02/… is a tutorial on how to setup and compile QML-Desktop-Components with CMake for Visual Studio , the tutorial contains a zip-File with complete startup code which should work out of the box. Hope it helps – user1249507 Mar 5 at 9:39
feedback

2 Answers

up vote 12 down vote accepted

QML is primarily intended for mobile platforms. Due to its youth and its concern for varied platform interface conventions, it lacks standard controls like buttons and combo boxes (but see the Components project). If you're on mobile, or your UI requires a highly customized visual style, QML might be worth considering. Be prepared for a lot of extra work in designing custom controls. Integrating QML and C++ is still pretty rough in my opinion. I would personally recommend using QML only for simpler apps, only on mobile platforms, and only with JavaScript. Under the right circumstances I might consider writing custom QML elements in C++.

Qt's C++ API isn't going away anytime soon. It's also designed with the desktop in mind and will do a better job of meeting user expectations on desktop platforms. If you're on the desktop, I would recommend sticking to C++ and Designer. Even after QML matures a bit, it probably won't be the right solution for most desktop apps.

Update!

It looks like things are beginning to change. I haven't tried the new components myself yet, and documentation seems a little sparse (or at least, out of the way), but this could eventually remove the greatest barrier to using QML on the desktop. It remains to be seen whether this will get support in the long term, but if you're willing to accept the risk of being an early adopter, I think QML may now be a viable choice for desktop apps.

link|improve this answer
1  
I see QML as a cross-platform (and entirely more readable!) version of WPF/XAML. There's nothing at all that makes it mobile specific. – Dynite Feb 22 '11 at 13:27
@Dynite: Not inherently, but mobile is what Nokia is (was?) pushing it for, and that's where it's currently most comfortable. For example, the standard QML components are designed for touch-screens rather than mice. – Steve S Feb 22 '11 at 15:32
Also, from doc.qt.nokia.com/4.7-snapshot/qtquick.html -- "Qt Quick is a collection of technologies that are designed to help developers create the kind of intuitive, modern-looking, fluid user interfaces that are increasingly used on mobile phones, media players, set-top boxes and other portable devices." (emphasis added) – Steve S Feb 22 '11 at 15:33
@Steve "that's where it's currently most comfortable". I don't think that is substantiated by the facts. The text you've pasted is just marketing material to show that is can be used anywhere. – Dynite Feb 22 '11 at 15:37
@Dynite: That's fair, but you didn't address the touch-screen preference of the standard elements. Also, the Components project seems to be primarily supporting mobile platforms -- I don't see any equivalent support for mimicking desktop GUI styles. – Steve S Feb 22 '11 at 16:43
show 2 more comments
feedback

It'd be worth trying a bit of QML to test whether it suits your needs.

If you are building a highly custom UI with dynamic interfaces and animations then QML fits the job; if you are building a traditional desktop application then you will probably want to stick with the Qt C++ API.

In regards to integration between QML and C++, QML is designed to be easily integrated with C++ code, and many QML applications use some sort of C++ backend. It is straightforward to inject C++ objects into a QML interface, or write custom QML elements in C++. Have a look at http://doc.qt.nokia.com/4.7-snapshot/qtbinding.html and http://doc.qt.nokia.com/4.7-snapshot/qml-extending-tutorial-index.html.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.