summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole/commandeditdialog.h
blob: 6dcf93fa2887ddb5a5769010405be7f82198f3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//comandeditdialog.h
#ifndef COMMAND_EDIT_DIALOG_H
#define COMMAND_EDIT_DIALOG_H
#include "commandeditdialogbase.h"
class CommandEditDialog : public CommandEditDialogBase
{
Q_OBJECT

public:

  CommandEditDialog( QWidget* parent = 0, const char* name = 0, WFlags fl = 0);
  ~CommandEditDialog();

protected:
  void accept();
  
public slots:
  void showEditDialog();
  void showAddDialog();
  
signals:
  void commandsEdited();  
};

#endif