summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2018-03-12 16:51:01 +0100
committerNico Vertriest <nico.vertriest@qt.io>2018-04-09 06:51:07 +0000
commit5c240f380aa936a4f0a781c035fcd148cd4b3720 (patch)
tree9ab3281f890d35a7c3d260ad01ddc454d0ecbd81
parentcb577004566e66c65bcdf53b5a84f0a41f039174 (diff)
Doc: Add brief statements to Address Book Example chapters
Task-number: QTBUG-60635 Change-Id: Ice6d2b6a475ba4352a87bb46366826334aed2af2 Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
-rw-r--r--examples/widgets/doc/src/addressbook-tutorial.qdoc10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/widgets/doc/src/addressbook-tutorial.qdoc b/examples/widgets/doc/src/addressbook-tutorial.qdoc
index 31d1d64dac..1f6966e8ae 100644
--- a/examples/widgets/doc/src/addressbook-tutorial.qdoc
+++ b/examples/widgets/doc/src/addressbook-tutorial.qdoc
@@ -80,7 +80,7 @@
/*!
\example tutorials/addressbook/part1
\title Part 1 - Designing the User Interface
-
+ \brief Describes how to code the user interface of the Address Book Example.
This first part covers the design of the basic graphical user
interface (GUI) for our address book application.
@@ -232,6 +232,7 @@
/*!
\example tutorials/addressbook/part2
\title Part 2 - Adding Addresses
+ \brief Describes the code for inserting records in the Address Book Example.
The next step in creating the address book is to implement some
user interactions.
@@ -381,9 +382,10 @@
/*!
\example tutorials/addressbook/part3
\title Part 3 - Navigating between Entries
+ \brief Explains the code that enables navigating the contacts.
The address book is now about half complete. We should add the
- capability to navigate among the contacts, but first we must
+ capability to navigate the contacts, but first we must
decide what sort of a data structure we need for containing these
contacts.
@@ -496,6 +498,7 @@
/*!
\example tutorials/addressbook/part4
\title Part 4 - Editing and Removing Addresses
+ \brief Explains how to add edit and remove functionality.
Now we look at ways to modify the contents of contacts stored in
the address book.
@@ -628,6 +631,7 @@
/*!
\example tutorials/addressbook/part5
\title Part 5 - Adding a Find Function
+ \brief Describes how to add a find function.
Here we look at ways to locate contacts and addresses in the
address book.
@@ -770,6 +774,7 @@
/*!
\example tutorials/addressbook/part6
\title Part 6 - Loading and Saving
+ \brief Describes how to add save and load functionality.
This part covers the Qt file handling features we use to write
loading and saving routines for the address book.
@@ -890,6 +895,7 @@
/*!
\example tutorials/addressbook/part7
\title Part 7 - Additional Features
+ \brief Describes how to export data in VCard format.
This part covers some additional features that make the address
book more convenient for the frequent user.