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.
34 lines
449 B
34 lines
449 B
#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
|
|
|