2009-06-10 15:49:02 +02:00
|
|
|
#ifndef FINDDIALOG_H
|
|
|
|
|
#define FINDDIALOG_H
|
|
|
|
|
|
2009-08-07 15:03:29 +02:00
|
|
|
#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();
|
2009-07-21 12:05:03 +02:00
|
|
|
//! [findText]
|
|
|
|
|
QString findText();
|
|
|
|
|
//! [findText]
|
2009-06-10 15:49:02 +02:00
|
|
|
|
2009-06-30 15:42:17 +02:00
|
|
|
//! [findClicked]
|
2009-06-10 15:49:02 +02:00
|
|
|
public slots:
|
|
|
|
|
void findClicked();
|
2009-06-30 15:42:17 +02:00
|
|
|
//! [findClicked]
|
2009-06-10 15:49:02 +02:00
|
|
|
|
2009-06-24 17:32:47 +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;
|
2009-06-24 17:32:47 +02:00
|
|
|
//! [private members]
|
2009-06-10 15:49:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FINDDIALOG_H
|