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