summaryrefslogtreecommitdiff
path: root/doc/addressbook-sdk.qdoc
diff options
context:
space:
mode:
authorKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-06-24 17:32:47 +0200
committerKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-06-24 17:32:58 +0200
commitae9b6f3202fadafe280262e6c12fffa663cfa226 (patch)
tree559a906d749e3e8b8bd8b5dd10096bc85affc62b /doc/addressbook-sdk.qdoc
parent0001216f285e53e13c15610a2847a84ed8ce5bf9 (diff)
downloadqt-creator-ae9b6f3202fadafe280262e6c12fffa663cfa226.tar.gz
Doc - More of the tutorial
Reviewed-By: TrustMe
Diffstat (limited to 'doc/addressbook-sdk.qdoc')
-rw-r--r--doc/addressbook-sdk.qdoc12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/addressbook-sdk.qdoc b/doc/addressbook-sdk.qdoc
index 94d633c5fa..1974c129ed 100644
--- a/doc/addressbook-sdk.qdoc
+++ b/doc/addressbook-sdk.qdoc
@@ -727,7 +727,7 @@
dialog that can prompt the user for a contact's name. Qt provides QDialog,
which we subclass in this chapter, to implement a FindDialog class.
- \section1 Designing FindDialog
+ \section1 Designing \c FindDialog
#image
@@ -743,6 +743,16 @@
in a horizontal layout. Then set a top level layout - either horizontal or
vertical.
+ \section1 Implementing \c FindDialog
+
+ Let's look at \c{FindDialog}'s header file. Here, we need to provide
+ private members for the class so that we can access the widgets freely
+ throughout the class.
+
+ \snippet examples/addressbook-sdk/part5/finddialog.h private members
+
+
+
*/