summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2010-11-09 12:50:23 (GMT)
committerJerome Pasion <jerome.pasion@nokia.com>2010-11-09 12:50:23 (GMT)
commit4ddf22fdbf9da5f05f1af8c8611db268419de42d (patch)
tree4f0fe95f33229db4577e76b987dcbf3092b45dee /doc
parent198d903fa18d9f1d51615974d71de8236e97c2cd (diff)
downloadQt-4ddf22fdbf9da5f05f1af8c8611db268419de42d.zip
Qt-4ddf22fdbf9da5f05f1af8c8611db268419de42d.tar.gz
Qt-4ddf22fdbf9da5f05f1af8c8611db268419de42d.tar.bz2
Added the location of Getting Started with QML code.
Task-number: QTBUG-15042 Reviewed-by: David Boddie
Diffstat (limited to 'doc')
-rw-r--r--doc/src/getting-started/gettingstartedqml.qdoc17
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc
index c555627..54fa098 100644
--- a/doc/src/getting-started/gettingstartedqml.qdoc
+++ b/doc/src/getting-started/gettingstartedqml.qdoc
@@ -58,7 +58,12 @@
\image qml-texteditor5_editmenu.png
- To run the QML example code, merely provide the included \l{QML Viewer}{qmlviewer}
+ The final source code is in the \c{examples/tutorials/gettingStarted/gsQml}
+ directory. You may need to compile the C++ plugin in the
+ \c{examples/tutorials/gettingStarted/gsQml/} first. This will put the
+ C++ plugin in a directory where the QML files may find it.
+
+ To launch the text editor, merely provide the included \l{QML Viewer}{qmlviewer}
tool with the QML file as the argument. The C++ portion of this tutorial assumes
that the reader possesses basic knowledge of Qt's compilation procedures.
@@ -1005,4 +1010,14 @@
The application can function as a simple text editor, able to accept text
and save the text into a file. The text editor can also load from a file and
perform text manipulation.
+
+ \section1 Running the Text Editor
+
+ We need to compile the file dialog C++ plugin before the text editor can run.
+ To compile, enter the \c gsQml directory, then run \c qmake and compile
+ using \c make or \c nmake, depending on your platform. To run, launch
+ qmlviewer and open the \c texteditor.qml file.
+
+ The source code is in the \c{examples/tutorials/gettingStarted/gsQml}
+ directory.
*/