What the diferent between qt quick control and qt widget?
-
thanks for the link :D
by the way, do you know in this html5 vs qt, in qt application are they using qt widget or quick control to create it? is it possible to run that application on desktop that using windows or linux? -
thanks for the link :D
by the way, do you know in this html5 vs qt, in qt application are they using qt widget or quick control to create it? is it possible to run that application on desktop that using windows or linux?Hi @Niconi, and welcome to the Qt Dev Net!
@Niconi said in What the diferent between qt quick control and qt widget?:
thanks for the link :D
by the way, do you know in this html5 vs qt, in qt application are they using qt widget or quick control to create it?The YouTube video description has a link to https://www1.qt.io/whitepapers/
It uses QML, which is the language used to write Qt Quick apps.
is it possible to run that application on desktop that using windows or linux?
Yes, Qt Quick can run on multiple platforms, including mobile phones and desktop Windows/Linux.
-
Thanks :)
by the way, i read this stackoverflow question and he quote this (in answer, he said something from qt documentation) here
In the Qt Quick component set field, select the component set to use for the project. The Qt Quick imports enable you to use the basic QML types to create user interfaces, whereas the Qt Quick Controls provide a set of ready-made controls that you can customize by using Qt Quick Controls Styles
My question, if i create project using qt quick control, can i still use qt quick features? or if i create qt widget project, can i still use qt quick or quick control features?
Sorry if my question is not important or too newbie, because im new to qt,
but Thanks again for your guys answer :)
I really like qt technology -
Thanks :)
by the way, i read this stackoverflow question and he quote this (in answer, he said something from qt documentation) here
In the Qt Quick component set field, select the component set to use for the project. The Qt Quick imports enable you to use the basic QML types to create user interfaces, whereas the Qt Quick Controls provide a set of ready-made controls that you can customize by using Qt Quick Controls Styles
My question, if i create project using qt quick control, can i still use qt quick features? or if i create qt widget project, can i still use qt quick or quick control features?
Sorry if my question is not important or too newbie, because im new to qt,
but Thanks again for your guys answer :)
I really like qt technologyYou're welcome!
@Niconi said in What the diferent between qt quick control and qt widget?:
if i create project using qt quick control, can i still use qt quick features?
Yes.
if i create qt widget project, can i still use qt quick or quick control features?
Yes. You can even mix both Qt Quick and Qt Widgets in the same project if you want.
When you create a new project, Qt Creator just produces the "best" template according to the choices you make. You can modify the template however you want afterwards.
Sorry if my question is not important or too newbie, because im new to qt,
No problem at all! We're happy to help anyone who wants to learn Qt.
I really like qt technology
Me too ;)