blob: d44bb0e51f5f5448afe768fff69a0fb90824724d (
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
34
|
#ifndef FIND_H
#define FIND_H
#include <kdialogbase.h>
class KHistoryCombo;
class TQCheckBox;
class TQPushButton;
class Finder : public KDialogBase
{
Q_OBJECT
public:
Finder(TQWidget *parent);
bool regexp() const;
bool isForward() const;
TQString string() const;
signals:
void search(Finder *);
public slots:
void textChanged(const TQString &);
void clicked();
private:
KHistoryCombo *mText;
TQCheckBox *mRegexp, *mBackwards;
};
#endif
|