summaryrefslogtreecommitdiffstats
path: root/examples/widgets/doc/tabdialog.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/doc/tabdialog.qdoc')
-rw-r--r--examples/widgets/doc/tabdialog.qdoc26
1 files changed, 13 insertions, 13 deletions
diff --git a/examples/widgets/doc/tabdialog.qdoc b/examples/widgets/doc/tabdialog.qdoc
index 98983d124b..dea17807a3 100644
--- a/examples/widgets/doc/tabdialog.qdoc
+++ b/examples/widgets/doc/tabdialog.qdoc
@@ -26,7 +26,7 @@
****************************************************************************/
/*!
- \example dialogs/tabdialog
+ \example widgets/dialogs/tabdialog
\title Tab Dialog Example
The Tab Dialog example shows how to construct a tab dialog using the
@@ -52,7 +52,7 @@
only contain the class constructor and a private data member for
the QTabWidget:
- \snippet dialogs/tabdialog/tabdialog.h 3
+ \snippet widgets/dialogs/tabdialog/tabdialog.h 3
In the example, the widget will be used as a top-level window, but
we define the constructor so that it can take a parent widget. This
@@ -64,7 +64,7 @@
The constructor calls the QDialog constructor and creates a QFileInfo
object for the specified filename.
- \snippet dialogs/tabdialog/tabdialog.cpp 0
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 0
The tab widget is populated with three custom widgets that each
contain information about the file. We construct each of these
@@ -74,16 +74,16 @@
We create two standard push buttons, and connect each of them to
the appropriate slots in the dialog:
- \snippet dialogs/tabdialog/tabdialog.cpp 1
- \snippet dialogs/tabdialog/tabdialog.cpp 3
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 1
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 3
We arrange the tab widget above the buttons in the dialog:
- \snippet dialogs/tabdialog/tabdialog.cpp 4
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 4
Finally, we set the dialog's title:
- \snippet dialogs/tabdialog/tabdialog.cpp 5
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 5
Each of the tabs are subclassed from QWidget, and only provide
constructors.
@@ -93,7 +93,7 @@
The GeneralTab widget definition is simple because we are only interested
in displaying the contents of a widget within a tab:
- \snippet dialogs/tabdialog/tabdialog.h 0
+ \snippet widgets/dialogs/tabdialog/tabdialog.h 0
\section1 GeneralTab Class Implementation
@@ -101,14 +101,14 @@
passed by the TabDialog. Various widgets for this purpose, and these
are arranged within a vertical layout:
- \snippet dialogs/tabdialog/tabdialog.cpp 6
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 6
\section1 PermissionsTab Class Definition
Like the GeneralTab, the PermissionsTab is just used as a placeholder
widget for its children:
- \snippet dialogs/tabdialog/tabdialog.h 1
+ \snippet widgets/dialogs/tabdialog/tabdialog.h 1
\section1 PermissionsTab Class Implementation
@@ -116,19 +116,19 @@
displaying details of the file permissions and owner in widgets that are
arranged in nested layouts:
- \snippet dialogs/tabdialog/tabdialog.cpp 7
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 7
\section1 ApplicationsTab Class Definition
The ApplicationsTab is another placeholder widget that is mostly
cosmetic:
- \snippet dialogs/tabdialog/tabdialog.h 2
+ \snippet widgets/dialogs/tabdialog/tabdialog.h 2
\section1 ApplicationsTab Class Implementation
The ApplicationsTab does not show any useful information, but could be
used as a template for a more complicated example:
- \snippet dialogs/tabdialog/tabdialog.cpp 8
+ \snippet widgets/dialogs/tabdialog/tabdialog.cpp 8
*/