summaryrefslogtreecommitdiff
path: root/examples/designer/doc/src/calculatorform.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/designer/doc/src/calculatorform.qdoc')
-rw-r--r--examples/designer/doc/src/calculatorform.qdoc19
1 files changed, 11 insertions, 8 deletions
diff --git a/examples/designer/doc/src/calculatorform.qdoc b/examples/designer/doc/src/calculatorform.qdoc
index 2fb033c4b..1b5aac885 100644
--- a/examples/designer/doc/src/calculatorform.qdoc
+++ b/examples/designer/doc/src/calculatorform.qdoc
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the documentation of the Qt Toolkit.
@@ -26,9 +26,12 @@
****************************************************************************/
/*!
- \example designer/calculatorform
+ \example calculatorform
+ \ingroup examples-designer
\title Calculator Form Example
+ \brief Using a form created with \QD in an application.
+
The Calculator Form Example shows how to use a form created with
\QD in an application by using the user interface information from
a QWidget subclass. We use \l{Using a Designer UI File in Your Application}
@@ -51,7 +54,7 @@
To ensure that the example can use this file, we need to include a \c FORMS
declaration in the example's project file:
- \snippet designer/calculatorform/calculatorform.pro 1
+ \snippet calculatorform/calculatorform.pro 1
When the project is built, \c uic will create a header file that lets us
construct the form.
@@ -63,12 +66,12 @@
to include the \c ui_calculatorform.h header file created by \c uic
during the build process:
- \snippet designer/calculatorform/calculatorform.h 0
+ \snippet calculatorform/calculatorform.h 0
We define the \c CalculatorForm class by subclassing QWidget because the
form itself is based on QWidget:
- \snippet designer/calculatorform/calculatorform.h 1
+ \snippet calculatorform/calculatorform.h 1
Apart from the constructor, the class contains two private slots that
are named according to the auto-connection naming convention required
@@ -81,7 +84,7 @@
The constructor simply calls the base class's constructor and
sets up the form's user interface.
- \snippet designer/calculatorform/calculatorform.cpp 0
+ \snippet calculatorform/calculatorform.cpp 0
The user interface is set up with the \c setupUI() function. We pass
\c this as the argument to this function to use the \c CalculatorForm
@@ -94,7 +97,7 @@
"inputSpinBox1" in the user interface emits the
\l{QSpinBox::valueChanged()}{valueChanged()} signal:
- \snippet designer/calculatorform/calculatorform.cpp 1
+ \snippet calculatorform/calculatorform.cpp 1
When this occurs, we use the value supplied by the signal to update the
output label by setting its new text directly. We access the output label
@@ -104,7 +107,7 @@
"inputSpinBox2", emits the \l{QSpinBox::valueChanged()}{valueChanged()}
signal:
- \snippet designer/calculatorform/calculatorform.cpp 2
+ \snippet calculatorform/calculatorform.cpp 2
In this case, the value from the first spin box is read and combined
with the value supplied by the signal. Again, the output label is