PDA

View Full Version : Is it possible to access Qt Quick using C++?



Awareness
2nd April 2014, 21:12
I saw Qt Quick C++ classes,in the "Help" it says: "The Qt Quick module provides classes for embedding Qt Quick in Qt/C++ applications"
I've read that page but I couldn't understand much,is it something that allow us to access Qt Quick using C++ (without using Qml)?Or is it possible with another method?

anda_skoa
3rd April 2014, 10:23
Most QtQuick item classes are not exported, i.e. their headers are marked as private and not part of Qt's public API.

Once they have been instantiated by the QML engine, they can of course be treated like any other QObject derived instance.

Cheers,
_

Awareness
7th April 2014, 00:25
Thanks for your answer.