Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
ae9b6f32
Commit
ae9b6f32
authored
Jun 24, 2009
by
Kavindra Devi Palaraja
Browse files
Doc - More of the tutorial
Reviewed-By: TrustMe
parent
0001216f
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/addressbook-sdk.qdoc
View file @
ae9b6f32
...
@@ -727,7 +727,7 @@
...
@@ -727,7 +727,7 @@
dialog that can prompt the user for a contact's name. Qt provides QDialog,
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.
which we subclass in this chapter, to implement a FindDialog class.
\section1 Designing FindDialog
\section1 Designing
\c
FindDialog
#image
#image
...
@@ -743,6 +743,16 @@
...
@@ -743,6 +743,16 @@
in a horizontal layout. Then set a top level layout - either horizontal or
in a horizontal layout. Then set a top level layout - either horizontal or
vertical.
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
*/
*/
...
...
doc/examples/addressbook-sdk/part5/finddialog.h
View file @
ae9b6f32
...
@@ -19,11 +19,13 @@ public:
...
@@ -19,11 +19,13 @@ public:
public
slots
:
public
slots
:
void
findClicked
();
void
findClicked
();
//! [private members]
private:
private:
Ui
::
FindDialog
*
m_ui
;
Ui
::
FindDialog
*
m_ui
;
\
QPushButton
*
findButton
;
QPushButton
*
findButton
;
QLineEdit
*
lineEdit
;
QLineEdit
*
lineEdit
;
QString
findText
;
QString
findText
;
//! [private members]
};
};
#endif // FINDDIALOG_H
#endif // FINDDIALOG_H
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment