00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef HK_KDEFILTERDIALOG_H
00014 #define HK_KDEFILTERDIALOG_H
00015 #include "hk_kdefilterdialogbase.h"
00016
00017 class hk_kdefilterdialog : public hk_kdefilterdialogbase
00018 {
00019 Q_OBJECT
00020
00021 public:
00022
00023 enum enum_type {filter,editor};
00024 hk_kdefilterdialog(enum_type type=filter, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00025 ~hk_kdefilterdialog();
00026
00027 protected slots:
00028 void text_changed();
00029
00030 protected:
00031
00032 void closeEvent(QCloseEvent*);
00033 void accept(void);
00034 void reject(void);
00035
00036 private:
00037 void store_size();
00038 enum_type p_type;
00039
00040 };
00041 #endif // HK_KDEFILTERDIALOG_H