2011-09-27 11:56:42 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (c) 2013 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.
|
|
|
|
|
// **********************************************************************
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
|
|
\contentspage index.html
|
|
|
|
|
\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-10-07 13:45:08 +02:00
|
|
|
You can either create Qt Quick projects from scratch or import
|
|
|
|
|
existing projects to \QC.
|
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
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
You can use predefined QML types to create components or use a set
|
|
|
|
|
of Qt Quick Controls for creating classic desktop-style user
|
|
|
|
|
interfaces using Qt Quick 2.1 (available since Qt 5.1).
|
|
|
|
|
\li \l {Creating Screens}
|
2011-09-27 11:56:42 +02:00
|
|
|
|
2013-10-07 13:45:08 +02:00
|
|
|
You can use predefined QML types, Qt Quick Controls, and your own
|
|
|
|
|
components to create screens. You can use states and transitions to
|
|
|
|
|
navigate between screens.
|
|
|
|
|
\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
|
|
|
*/
|