summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@digia.com>2013-08-07 12:38:47 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-08 10:24:26 +0200
commite0bef52da9d3ed6d17e47c7794bf94259cc8d53f (patch)
tree04ab45f4479405166dae2741be6e3ecdb8af4aa8
parentd9fc8d597344e66714b30f4192daa5c5450aeb1c (diff)
Doc: Mention Qt Quick Dialogs in getting started tutorial
As the Qt Quick Getting Started tutorial implements its own file dialog, add a note about what we currently provide in Qt Quick Dialogs to avoid confusion. Change-Id: I916729a7e8561c3093ca761b10b944ae47deb90b Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Alan Alpert <aalpert@blackberry.com>
-rw-r--r--doc/src/getting-started/gettingstartedqml.qdoc5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc
index c9faf62b1..dd890c345 100644
--- a/doc/src/getting-started/gettingstartedqml.qdoc
+++ b/doc/src/getting-started/gettingstartedqml.qdoc
@@ -693,6 +693,10 @@
to be made available by the QML module
\endlist
+ \note Since Qt 5.1, \l{Qt Quick Dialogs} module provides a file dialog component
+ that you can use for choosing files from the local file system. For illustrative
+ purposes, we write our own in this tutorial.
+
\section3 Building a Qt Plugin
To build a plugin, we need to set the following in a Qt project file. First,
@@ -728,7 +732,6 @@
\c plugin, using a \c lib template. We shall put the compiled plugin into the
parent's \c {imports/FileDialog} directory.
-
\section3 Registering a Class into QML
In \c {dialogPlugin.h}: