Tag dialog examples and create dialog examples group
authorGunnar Sletta <gunnar.sletta@digia.com>
Mon, 3 Dec 2012 14:11:51 +0000 (15:11 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Mon, 3 Dec 2012 15:26:37 +0000 (16:26 +0100)
Change-Id: I0049b841dd5aee806e8aed36af069b0507e3c9f1
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
examples/widgets/doc/src/classwizard.qdoc
examples/widgets/doc/src/configdialog.qdoc
examples/widgets/doc/src/extension.qdoc
examples/widgets/doc/src/findfiles.qdoc
examples/widgets/doc/src/licensewizard.qdoc
examples/widgets/doc/src/standarddialogs.qdoc
examples/widgets/doc/src/tabdialog.qdoc
examples/widgets/doc/src/trivialwizard.qdoc
src/widgets/doc/images/dialog-examples.png [new file with mode: 0644]
src/widgets/doc/src/qtwidgets-examples.qdoc

index 038f9e1..b4224a1 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/classwizard
     \title Class Wizard Example
+    \ingroup examples-dialogs
 
     \brief The License Wizard example shows how to implement linear
     wizards using QWizard.
index 0fdbc5d..18c14b7 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/configdialog
     \title Config Dialog Example
+    \ingroup examples-dialogs
 
     \brief The Config Dialog examples shows how a configuration dialog can be created by
     using an icon view with a stacked widget.
index 0ba1d07..423a829 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/extension
     \title Extension Example
+    \ingroup examples-dialogs
 
     \brief The Extension example shows how to add an extension to a QDialog
     using the QAbstractButton::toggled() signal and the
index 27d0cac..61dbf05 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/findfiles
     \title Find Files Example
+    \ingroup examples-dialogs
 
     \brief The Find Files example shows how to use QProgressDialog to provide
     feedback on the progress of a slow operation. The example also
index aee60e1..e45c162 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/licensewizard
     \title License Wizard Example
+    \ingroup examples-dialogs
 
     \brief The License Wizard example shows how to implement complex wizards in
     Qt.
index f9d9372..4b39ac6 100644 (file)
@@ -28,6 +28,7 @@
 /*! 
     \example dialogs/standarddialogs
     \title Standard Dialogs Example
+    \ingroup examples-dialogs
 
     \brief The Standard Dialogs example shows the standard dialogs that are provided by Qt.
 
index e2ac575..b3e7438 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/tabdialog
     \title Tab Dialog Example
+    \ingroup examples-dialogs
 
     \brief The Tab Dialog example shows how to construct a tab dialog using the
     QTabWidget class.
index c67bb09..4ccee9a 100644 (file)
@@ -28,6 +28,7 @@
 /*!
     \example dialogs/trivialwizard
     \title Trivial Wizard Example
+    \ingroup examples-dialogs
 
     \brief The Trivial Wizard example illustrates how to create a linear three-page
     registration wizard using three instances of QWizardPage and one instance
diff --git a/src/widgets/doc/images/dialog-examples.png b/src/widgets/doc/images/dialog-examples.png
new file mode 100644 (file)
index 0000000..26537b5
Binary files /dev/null and b/src/widgets/doc/images/dialog-examples.png differ
index b321942..07e1eb1 100644 (file)
 
 */
 
+
+/*!
+    \group examples-dialogs
+    \ingroup all-examples
+    \title Dialog Examples
+    \brief Using Qt's standard dialogs and building and using custom dialogs.
+
+    \image dialog-examples.png
+
+    Qt includes standard dialogs for many common operations, such as file
+    selection, printing, and color selection.
+
+    Custom dialogs can also be created for specialized modal or modeless
+    interactions with users.
+*/
+
+