Commit ee2a4a90 authored by Jerome Pasion's avatar Jerome Pasion Committed by The Qt Project
Browse files

Doc: Reinstating \qmlmodule page.


Was removed in an earlier commit.

Change-Id: I1fdaf6c7e1e522f6ba7e36a20040b8222b1714cc
Reviewed-by: default avatarMartin Smith <martin.smith@digia.com>
parent 21aa22ba
Branches
Tags v5.1.0-beta1
No related merge requests found
Showing with 53 additions and 0 deletions
......@@ -25,6 +25,59 @@
**
****************************************************************************/
/*!
\qmlmodule QtQml 2
\title Qt QML QML Types
\ingroup qmlmodules
\brief List of QML types provided by the Qt QML module
The \l{Qt QML} module provides the definition and implementation of various
convenience types which can be used with the QML language, including some
elementary QML types which can provide the basis for further extensions to the
QML language. The \l QtObject and \l Component object types are non-visual and
provide building-blocks for extensions to QML.
\section1 Importing QtQml
The types provided by the \c QtQml module are only available in a QML document
if that document imports the \c QtQml namespace (or if the document imports the
\c QtQuick namespace, as noted below).
The current version of the \c QtQml module is version 2.0, and thus it may be
imported via the following statement:
\qml
import QtQml 2.0
\endqml
Most clients will never need to use the \c QtQml import, as all of the types
are also provided by the \c QtQuick namespace which may be imported as
follows:
\qml
import QtQuick 2.0
\endqml
See the \l{Qt Quick} module documentation for more information about the
\c QtQuick namespace and what it provides to QML application developers.
The documentation for the types below applies equally to the types of the same
name provided by the \l{Qt Quick} module, as they are in fact identical.
\section1 Basic Types
The following \l{qtqml-typesystem-basictypes.html}{QML basic types} are
provided:
\annotatedlist qtqmlbasictypes
\section1 Object Types
The following \l{qtqml-typesystem-objecttypes.html}{QML object types} are
provided:
*/
/*!
\qmlbasictype date
\ingroup qtqmlbasictypes
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment