summaryrefslogtreecommitdiff
path: root/doc/examples/addressbook-sdk/part5/finddialog.h
blob: e7d0e9825d76bd5d79a10571627f811d78fdd2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef FINDDIALOG_H
#define FINDDIALOG_H

#include <QtGui/QDialog>
#include <QtGui/QLineEdit>
#include <QtGui/QPushButton>

namespace Ui {
    class FindDialog;
}

class FindDialog : public QDialog {
    Q_OBJECT
public:
    FindDialog(QWidget *parent = 0);
    ~FindDialog();
//! [getFindText]
    QString getFindText();
//! [getFindText]

//! [findClicked]
public slots:
    void findClicked();
//! [findClicked]

//! [private members]
private:
    Ui::FindDialog *m_ui;
//! [private members]
};

#endif // FINDDIALOG_H