You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
467 B
35 lines
467 B
#ifndef FIND_H
|
|
#define FIND_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class KHistoryCombo;
|
|
class TQCheckBox;
|
|
class TQPushButton;
|
|
|
|
class Finder : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_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
|
|
|