00001
00002 #ifndef COMMAND_EDIT_DIALOG_H
00003 #define COMMAND_EDIT_DIALOG_H
00004 #include "commandeditdialogbase.h"
00005 class CommandEditDialog : public CommandEditDialogBase
00006 {
00007 Q_OBJECT
00008
00009 public:
00010
00011 CommandEditDialog( QWidget* parent = 0, const char* name = 0, WFlags fl = 0);
00012 ~CommandEditDialog();
00013
00014 protected:
00015 void accept();
00016
00017 public slots:
00018 void showEditDialog();
00019 void showAddDialog();
00020
00021 signals:
00022 void commandsEdited();
00023 };
00024
00025 #endif