Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QtCreator new project Qt Quick Controls vs. Qt Quick

I want to create new Qt Quick project in Qt Creator and I've pressed New project, selected application name and location in Wizard, but then I am confused at next wizard's step (Qt Quick Component Selection), as seen in screen-shot:

Qt Creator New project wizard Qt Quick Component Selection

Which set should I select, Qt Quick Controls 1.3, or Qt Quick 2.4? What is the difference between them?

like image 880
KernelPanic Avatar asked Apr 16 '15 07:04

KernelPanic


1 Answers

It's stated in the Qt documentation :

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

So that just specifies a primary import of modules. You can add other imports like Qt Quick Dialogs or Qt Quick Layouts later in your code.

like image 105
Nejat Avatar answered Oct 18 '22 21:10

Nejat