00001 #ifndef _NEWTYPEDLG_H
00002 #define _NEWTYPEDLG_H
00003
00004 #include <tqstring.h>
00005 #include <tqstringlist.h>
00006 #include <kdialogbase.h>
00007
00008 class KLineEdit;
00009 class TQComboBox;
00010
00016 class NewTypeDialog : public KDialogBase
00017 {
00018 public:
00019 NewTypeDialog(TQStringList groups, TQWidget *parent = 0,
00020 const char *name = 0);
00021 TQString group() const;
00022 TQString text() const;
00023 private:
00024 KLineEdit *typeEd;
00025 TQComboBox *groupCombo;
00026 };
00027
00028 #endif