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

27 lines
386 B
C
Raw Normal View History

#ifndef FINDDIALOG_H
#define FINDDIALOG_H
#include <QDialog>
#include <QLineEdit>
#include <QPushButton>
namespace Ui {
class FindDialog;
}
class FindDialog : public QDialog {
Q_OBJECT
public:
FindDialog(QWidget *parent = 0);
~FindDialog();
QString findText();
public slots:
void findClicked();
private:
Ui::FindDialog *m_ui;
};
#endif // FINDDIALOG_H