38 #ifndef TEMPLATEMANAGEMENTDIALOG_H 39 #define TEMPLATEMANAGEMENTDIALOG_H 41 #include <tqstringlist.h> 43 #include "template_management_dialog_base.h" 45 #include <kdialogbase.h> 47 class TemplateManagementDialog: public KDialogBase { 51 TemplateManagementDialog( TQWidget *parent, const TQStringList& templates ); 56 void loadTemplate( const TQString& templateName ); 59 void saveTemplate( const TQString& templateName ); 62 void templatesChanged( const TQStringList& templates ); 65 void slotAddTemplate(); 66 void slotDeleteTemplate(); 67 void slotApplyTemplate(); 68 void slotUpdateDeleteButton( TQListBoxItem *item ); 72 TemplateManagementDialog_base *m_base; 73 TQStringList m_templates; 74 TQString m_newTemplate;
|