2011-09-27 11:56:42 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-09-27 11:56:42 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator
|
2011-09-27 11:56:42 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Free Documentation License
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
|
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file included in the packaging of this
|
|
|
|
|
** file.
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
// **********************************************************************
|
|
|
|
|
// NOTE: the sections are not ordered by their logical order to avoid
|
|
|
|
|
// reshuffling the file each time the index order changes (i.e., often).
|
|
|
|
|
// Run the fixnavi.pl script to adjust the links to the index order.
|
|
|
|
|
// **********************************************************************
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
2014-03-17 12:18:12 +01:00
|
|
|
\contentspage {Qt Creator Manual}
|
2011-09-27 11:56:42 +02:00
|
|
|
\previouspage creator-design-mode.html
|
|
|
|
|
\page creator-visual-editor.html
|
|
|
|
|
\nextpage quick-projects.html
|
|
|
|
|
|
|
|
|
|
\title Developing Qt Quick Applications
|
|
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
\list
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
\li \l {Creating Qt Quick Projects}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-11-05 12:55:47 +01:00
|
|
|
You can use wizards to create Qt Quick projects.
|
2014-10-28 15:18:01 +01:00
|
|
|
|
|
|
|
|
\li \l{Qt Quick UI Forms}
|
|
|
|
|
|
|
|
|
|
Some of the wizards create Qt Quick projects that contain UI forms
|
|
|
|
|
(.ui.qml files). The forms use a purely declarative subset of the
|
|
|
|
|
QML language and you can edit them in the Design mode.
|
|
|
|
|
|
2013-02-06 08:50:23 +01:00
|
|
|
\li \l {Using Qt Quick Designer}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
You can use the code editor (Edit mode) or the visual editor (Design
|
|
|
|
|
mode) to develop Qt Quick applications.
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
\li \l {Creating Components}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2014-07-28 16:14:32 +02:00
|
|
|
You can use basic QML types to create your own components that you
|
|
|
|
|
can combine with ready-made Qt Quick Controls and Layouts
|
|
|
|
|
(available since Qt 5.1).
|
2013-10-07 13:45:08 +02:00
|
|
|
\li \l {Creating Screens}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2014-07-28 16:14:32 +02:00
|
|
|
You can combine basic QML types with ready-made Qt Quick Controls,
|
|
|
|
|
Dialogs, and Layouts (available since Qt 5.1) to create screens. You
|
|
|
|
|
can use states and transitions to navigate between screens.
|
2014-12-02 16:21:54 +01:00
|
|
|
\li \l {Using Qt Quick Designer Extensions}
|
|
|
|
|
|
|
|
|
|
\QMLD contains commercial features that make developing Qt Quick
|
|
|
|
|
applications faster and easier.
|
2013-10-07 13:45:08 +02:00
|
|
|
\li \l {Exporting Designs from Graphics Software}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
You can export designs from graphics software, such as Adobe
|
|
|
|
|
Photoshop and GIMP, to QML files. You can then edit QML files in
|
|
|
|
|
\QC.
|
|
|
|
|
\li \l {Using QML Modules with Plugins}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
QML modules may use plugins to expose components defined in C++ to
|
|
|
|
|
QML applications. \QC cannot load the plugins to determine the
|
|
|
|
|
details of the contained components, and therefore, the modules must
|
|
|
|
|
provide extra type information for code completion and the semantic
|
|
|
|
|
checks to work correctly.
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
\endlist
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
*/
|