You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kcontrol/filetypes/newtypedlg.h

29 lines
559 B

#ifndef _NEWTYPEDLG_H
#define _NEWTYPEDLG_H
#include <tqstring.h>
#include <tqstringlist.h>
#include <kdialogbase.h>
class KLineEdit;
class TQComboBox;
/**
* A dialog for creating a new file type, with
* a combobox for choosing the group and a line-edit
* for entering the name of the file type
*/
class NewTypeDialog : public KDialogBase
{
public:
NewTypeDialog(TQStringList groups, TQWidget *parent = 0,
const char *name = 0);
TQString group() const;
TQString text() const;
private:
KLineEdit *typeEd;
TQComboBox *groupCombo;
};
#endif