hi friends,
i have one doubt, which one is best for developing gorgeous GUI for my embedded environment....qml or c++...please provide some solutions please.......
Printable View
hi friends,
i have one doubt, which one is best for developing gorgeous GUI for my embedded environment....qml or c++...please provide some solutions please.......
For "gorgeous GUIs" QML is better most of the times.
thank you for your reply,
but qml don't that much object when compared with Qt-c++
I don't understand what you mean.
sry,
i have developed Qt database using c++, i also developed gui page using Qml....qml gui having textinput object,i want to type the names in qml text input and save it in Qt database.please help me to connect QT and Qml.
See QDeclarativeContext::setContextProperty() http://qt-project.org/doc/qt-4.8/qde...vecontext.html
on QDeclarativeEngine::rootContext()
You export an object from C++ and then either manipulate one if its properties or call one of its slots or Q_INVOKABLE methods.
Cheers,
_