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.
tdemultimedia/noatun/modules/splitplaylist/find.h

35 lines
459 B

#ifndef FIND_H
#define FIND_H
#include <kdialogbase.h>
class KHistoryCombo;
class TQCheckBox;
class TQPushButton;
class Finder : public KDialogBase
{
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