summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@nokia.com>2011-03-22 16:12:21 +0100
committerLeena Miettinen <riitta-leena.miettinen@nokia.com>2011-03-22 16:33:58 +0100
commit3a0b0589b19fddfb09d3015244b47dcebcf4d4be (patch)
treeab29a1034c6cb1c36096fc7e56bbcfb2a85c75af
parent09282140cacf28e5e1ba76dcb629fdd1991055ad (diff)
Doc: declaring Qt Mobility APIs1.1rc
Add a note about adding own content to document gallery not being supported. Task-number: QTSIM-152 Reviewed-by:owolff
-rw-r--r--doc/simulator.qdoc46
1 files changed, 39 insertions, 7 deletions
diff --git a/doc/simulator.qdoc b/doc/simulator.qdoc
index 7384b09..bc4bdda 100644
--- a/doc/simulator.qdoc
+++ b/doc/simulator.qdoc
@@ -64,7 +64,6 @@
\o \l{Quick Tour}
\o \l{Simulating Device Use}
\o \l{Simulating Networking}
- \o \l{Using Bearer Management}
\o \l{Simulating Location}
\o \l{Simulating Storage Devices}
\o \l{Importing Contacts}
@@ -78,6 +77,8 @@
\o \l{Checking Application Layout}
\o \l{Scripting}
\o \l{Adding New Device Models}
+ \o \l{Declaring Qt Mobility APIs}
+ \o \l{Using Bearer Management}
\o \l{Testing Applications Using the Qt Mobility Service Framework}
\o \l{Known Issues}
\endlist
@@ -417,7 +418,7 @@
\contentspage index.html
\previouspage simulator-generic.html
\page simulator-networking.html
- \nextpage simulator-bearermanagement.html
+ \nextpage simulator-location.html
\title Simulating Networking
@@ -456,7 +457,7 @@
/*!
\contentspage index.html
- \previouspage simulator-bearermanagement.html
+ \previouspage simulator-networking.html
\page simulator-location.html
\nextpage simulator-drives.html
@@ -837,7 +838,7 @@
\contentspage index.html
\previouspage simulator-scripting.html
\page simulator-adding-models.html
- \nextpage simulator-serviceframework.html
+ \nextpage simulator-declaring-qt-mobility-apis.html
\title Adding New Device Models
@@ -1082,7 +1083,7 @@
/*!
\contentspage index.html
- \previouspage simulator-adding-models.html
+ \previouspage simulator-bearermanagement.html
\page simulator-serviceframework.html
\nextpage simulator-known-issues.html
@@ -1135,9 +1136,9 @@
/*!
\contentspage index.html
- \previouspage simulator-networking.html
+ \previouspage simulator-declaring-qt-mobility-apis.html
\page simulator-bearermanagement.html
- \nextpage simulator-location.html
+ \nextpage simulator-serviceframework.html
\title Using Bearer Management
@@ -1308,6 +1309,8 @@
document location, file size, image size, and description. Double-click images to preview
them.
+ \note You cannot add your own test documents to the document gallery.
+
\image qt-simulator-document-gallery.png "Document Gallery"
*/
@@ -1336,3 +1339,32 @@
\image qt-simulator-camera-image.png "Image in Camera section"
*/
+
+
+/*!
+ \contentspage index.html
+ \previouspage simulator-adding-models.html
+ \page simulator-declaring-qt-mobility-apis.html
+ \nextpage simulator-bearermanagement.html
+
+ \title Declaring Qt Mobility APIs
+
+ To use the Qt Mobility APIs or develop applications for Symbian
+ devices, you must modify the application .pro file to declare the Qt
+ Mobility APIs that you use.
+
+ Each Mobility API has its corresponding value that you have to add
+ as a value of MOBILITY to use the API. For a list of the APIs and the
+ corresponding values that you can assign to MOBILITY, see the
+ \l {http://doc.qt.nokia.com/qtmobility/quickstart.html}{Quickstart Example}.
+
+ For example, to use the System Info API, you must declare it, as
+ illustrated by the following code snippet:
+
+ \code
+
+ CONFIG += mobility
+ MOBILITY = systeminfo
+
+ \endcode
+