2009-07-02 11:07:42 +02:00
|
|
|
#ifndef FINDDIALOG_H
|
|
|
|
|
#define FINDDIALOG_H
|
|
|
|
|
|
2009-08-07 15:03:29 +02:00
|
|
|
#include <QDialog>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QPushButton>
|
2009-07-02 11:07:42 +02:00
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class FindDialog;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class FindDialog : public QDialog {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
FindDialog(QWidget *parent = 0);
|
|
|
|
|
~FindDialog();
|
2009-07-22 15:48:20 +02:00
|
|
|
QString findText();
|
2009-07-02 11:07:42 +02:00
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void findClicked();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::FindDialog *m_ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FINDDIALOG_H
|