PDA

View Full Version : Is there any good reason to continue using Qt Widgets in a new project?



hashb
26th September 2014, 02:13
:confused:

From the document (http://qt-project.org/doc/qt-5/topics-ui.html)of QT, it seems that QML has all the advantages except Standard industry widgets. So should we continue using QT widget? especially in a new project? Thanks

anda_skoa
26th September 2014, 09:08
QML is a non-UI technology, you probably mean QtQuick.

If you want to use QtQuick or QtWidgets or any other UI technology depends on your needs.

QtWidgets is great for standard "desktop" interfaces, has integration into the platform's look&feel, has very good tooling and can render on basically and GPU there is.

QtQuick is great for dynamic highly customized and dynamic UIs, has good touch integration, still quite limited tooling and needs a GPU with accelerate 3D rendering capabilities.

Cheers,
_

hashb
27th September 2014, 02:22
Thanks a lot!