blob: a4791339711fadf441c5deec182342e6681c81f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef FIND_H
#define FIND_H
#include <kdialogbase.h>
class KHistoryCombo;
class QCheckBox;
class QPushButton;
class Finder : public KDialogBase
{
Q_OBJECT
public:
Finder(QWidget *parent);
bool regexp() const;
bool isForward() const;
QString string() const;
signals:
void search(Finder *);
public slots:
void textChanged(const QString &);
void clicked();
private:
KHistoryCombo *mText;
QCheckBox *mRegexp, *mBackwards;
};
#endif
|