Files
qt-creator/doc/examples/addressbook-sdk/part5/finddialog.h

33 lines
496 B
C
Raw Normal View History

2009-06-10 15:49:02 +02:00
#ifndef FINDDIALOG_H
#define FINDDIALOG_H
#include <QDialog>
#include <QLineEdit>
#include <QPushButton>
2009-06-10 15:49:02 +02:00
namespace Ui {
class FindDialog;
}
class FindDialog : public QDialog {
Q_OBJECT
public:
FindDialog(QWidget *parent = 0);
~FindDialog();
//! [findText]
QString findText();
//! [findText]
2009-06-10 15:49:02 +02:00
//! [findClicked]
2009-06-10 15:49:02 +02:00
public slots:
void findClicked();
//! [findClicked]
2009-06-10 15:49:02 +02:00
//! [private members]
2009-06-10 15:49:02 +02:00
private:
2009-06-29 13:46:04 +02:00
Ui::FindDialog *m_ui;
//! [private members]
2009-06-10 15:49:02 +02:00
};
#endif // FINDDIALOG_H