00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef HK_KDEFINDDIALOGBASE_H
00010 #define HK_KDEFINDDIALOGBASE_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 QComboBox;
00020 class QLabel;
00021 class QPushButton;
00022
00023 class hk_kdefinddialogbase : public QDialog
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 hk_kdefinddialogbase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00029 ~hk_kdefinddialogbase();
00030
00031 QLabel* searchlabel;
00032 QPushButton* ok_button;
00033 QPushButton* cancel_button;
00034 QButtonGroup* optionsgroup;
00035 QCheckBox* case_sensitivebox;
00036 QCheckBox* all_columnsbox;
00037 QCheckBox* part_of_columnbox;
00038 QCheckBox* find_backwardsbox;
00039 QComboBox* searchfield;
00040
00041 public slots:
00042 virtual void find_slot();
00043 virtual void new_findargument();
00044
00045 protected:
00046 QGridLayout* hk_kdefinddialogbaseLayout;
00047 QVBoxLayout* Layout5;
00048 QGridLayout* optionsgroupLayout;
00049 };
00050 #endif // HK_KDEFINDDIALOGBASE_H