2009-06-10 15:49:02 +02:00
|
|
|
#ifndef FINDDIALOG_H
|
|
|
|
|
#define FINDDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QDialog>
|
2009-06-30 15:42:17 +02:00
|
|
|
#include <QtGui/QLineEdit>
|
|
|
|
|
#include <QtGui/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-06-30 15:42:17 +02:00
|
|
|
//! [getFindText]
|
2009-06-10 15:49:02 +02:00
|
|
|
QString getFindText();
|
2009-06-30 15:42:17 +02:00
|
|
|
//! [getFindText]
|
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
|