summaryrefslogtreecommitdiffstats
path: root/noatun/modules/splitplaylist/find.h
blob: 47a53f995d521dfc19b2a4ae9c100e694ee92471 (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
  TQ_OBJECT
public:
	Finder(TQWidget *tqparent);

	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