author | insilmaril |
Tue Jul 19 15:57:49 2005 +0000 (2005-07-19) | |
changeset 130 | 30cd58b70d02 |
child 2 | 608f976aa7bb |
child 168 | 8814a667241a |
permissions | -rw-r--r-- |
1 #ifndef FINDWINDOW_H
2 #define FINDWINDOW_H
4 #include <qmainwindow.h>
5 #include <qcombobox.h>
6 #include <qpushbutton.h>
7 #include <qgroupbox.h>
8 #include <qlayout.h>
9 #include <qlabel.h>
12 class FindWindow : public QGroupBox
13 {
14 Q_OBJECT
16 public:
17 FindWindow (QWidget* parent=0, const char* namme=0, WFlags f=0);
19 public slots:
20 void popup();
21 void cancelPressed();
22 void findPressed();
23 void findTextChanged(const QString&);
25 signals:
26 void findButton(QString); // emit to mainwindow
27 void somethingChanged(); // emit to mainwindow
29 private:
30 QGroupBox *findbox;
31 QComboBox *findcombo;
32 QPushButton *clearbutton;
33 QPushButton *findbutton;
34 QPushButton *cancelbutton;
35 };
38 #endif