Skip to content
Snippets Groups Projects
Commit ae9b6f32 authored by Kavindra Devi Palaraja's avatar Kavindra Devi Palaraja
Browse files

Doc - More of the tutorial

Reviewed-By: TrustMe
parent 0001216f
No related branches found
No related tags found
No related merge requests found
...@@ -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
*/ */
......
...@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment