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 QSpacerItem;
00020 class QLabel;
00021 class QComboBox;
00022 class QCheckBox;
00023 class QButtonGroup;
00024 class QRadioButton;
00025 class QPushButton;
00026
00027 class FindDialog : public QDialog
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 FindDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00033 ~FindDialog();
00034
00035 QLabel* TextLabel1;
00036 QComboBox* stringToFind;
00037 QCheckBox* regularExpression;
00038 QCheckBox* caseSensitive;
00039 QCheckBox* wholeWord;
00040 QCheckBox* wrapAround;
00041 QButtonGroup* ButtonGroup1;
00042 QRadioButton* forward;
00043 QRadioButton* backward;
00044 QPushButton* searchButton;
00045 QPushButton* cancelButton;
00046
00047 public slots:
00048 virtual void find();
00049
00050 protected:
00051 QVBoxLayout* FindDialogLayout;
00052 QVBoxLayout* Layout7;
00053 QHBoxLayout* Layout9;
00054 QSpacerItem* Spacer22;
00055 QSpacerItem* Spacer21;
00056 QVBoxLayout* Layout2;
00057 QVBoxLayout* Layout3;
00058 QHBoxLayout* ButtonGroup1Layout;
00059 QSpacerItem* Spacer13;
00060 QHBoxLayout* Layout6;
00061 QSpacerItem* Spacer2;
00062
00063 protected slots:
00064 virtual void languageChange();
00065
00066 };
00067
00068 #endif // FINDDIALOG_H