~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to noatun/noatun/modules/splitplaylist/find.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef FIND_H
 
2
#define FIND_H
 
3
 
 
4
#include <kdialog.h>
 
5
 
 
6
class KLineEdit;
 
7
class QCheckBox;
 
8
class QPushButton;
 
9
 
 
10
class Finder : public KDialog
 
11
{
 
12
Q_OBJECT
 
13
public:
 
14
        Finder(QWidget *parent);
 
15
 
 
16
        bool regexp() const;
 
17
        bool isForward() const;
 
18
 
 
19
        QString string() const;
 
20
signals:
 
21
        void search(Finder *);
 
22
 
 
23
public slots:
 
24
        void clicked();
 
25
        
 
26
private:
 
27
        KLineEdit *mText;
 
28
        QCheckBox *mRegexp, *mBackwards;
 
29
        QPushButton *mStart;
 
30
};
 
31
 
 
32
#endif
 
33