00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef FINDDIALOG_H
00011 #define FINDDIALOG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QLabel;
00020 class QComboBox;
00021 class QCheckBox;
00022 class QButtonGroup;
00023 class QRadioButton;
00024 class QPushButton;
00025
00026 class FindDialog : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 FindDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~FindDialog();
00033
00034 QLabel* TextLabel1;
00035 QComboBox* stringToFind;
00036 QCheckBox* regularExpression;
00037 QCheckBox* caseSensitive;
00038 QCheckBox* wholeWord;
00039 QCheckBox* wrapAround;
00040 QButtonGroup* ButtonGroup1;
00041 QRadioButton* forward;
00042 QRadioButton* backward;
00043 QPushButton* searchButton;
00044 QPushButton* cancelButton;
00045
00046 public slots:
00047 virtual void find();
00048
00049 protected:
00050 QVBoxLayout* FindDialogLayout;
00051 QVBoxLayout* Layout7;
00052 QHBoxLayout* Layout9;
00053 QVBoxLayout* Layout2;
00054 QVBoxLayout* Layout3;
00055 QHBoxLayout* ButtonGroup1Layout;
00056 QHBoxLayout* Layout6;
00057
00058 protected slots:
00059 virtual void languageChange();
00060
00061 };
00062
00063 #endif // FINDDIALOG_H