1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
14 | ** written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Free Documentation License
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Free
|
---|
18 | ** Documentation License version 1.3 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file included in the packaging of this
|
---|
20 | ** file.
|
---|
21 | **
|
---|
22 | ** If you have questions regarding the use of this file, please contact
|
---|
23 | ** Nokia at [email protected].
|
---|
24 | ** $QT_END_LICENSE$
|
---|
25 | **
|
---|
26 | ****************************************************************************/
|
---|
27 |
|
---|
28 | /*!
|
---|
29 |
|
---|
30 | \page qmlviewer.html
|
---|
31 | \title QML Viewer
|
---|
32 | \ingroup qttools
|
---|
33 |
|
---|
34 | The Declarative UI package includes \QQV, a tool for loading QML documents that
|
---|
35 | makes it easy to quickly develop and debug QML applications. It invokes the QML
|
---|
36 | runtime to load QML documents and also includes additional features useful for
|
---|
37 | the development of QML-based applications.
|
---|
38 |
|
---|
39 | The QML Viewer is a tool for testing and developing QML applications. It is
|
---|
40 | \e not intended for use in a production environment and should not be used for the
|
---|
41 | deployment of QML applications. In those cases, the QML runtime should be invoked
|
---|
42 | from a Qt application instead; see \l {Qt Declarative UI Runtime} for more
|
---|
43 | information.
|
---|
44 |
|
---|
45 | The viewer is located at \c QTDIR/bin/qmlviewer. To load a \c .qml file
|
---|
46 | with the viewer, run the viewer and select the file to be opened, or provide the
|
---|
47 | file path on the command line:
|
---|
48 |
|
---|
49 | \code
|
---|
50 | qmlviewer myqmlfile.qml
|
---|
51 | \endcode
|
---|
52 |
|
---|
|
---|