00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SIGEL_MASTERGUI_SIG_EDITCOMMANDDIALOG_H
00010 #define SIGEL_MASTERGUI_SIG_EDITCOMMANDDIALOG_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QButtonGroup;
00018 class QLabel;
00019 class QLineEdit;
00020 class QPushButton;
00021 class QRadioButton;
00022
00023 namespace SIGEL_MasterGUI
00024 {
00028 class SIG_EditCommandDialog : public QDialog
00029 {
00030 Q_OBJECT
00031
00032 public:
00033 SIG_EditCommandDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00034 ~SIG_EditCommandDialog();
00035
00036 QLabel* textlabelCommand;
00037 QButtonGroup* buttongroupAllowDisallow;
00038 QRadioButton* radiobuttonAllow;
00039 QRadioButton* radiobuttonDisallow;
00040 QLabel* textlabelDuration;
00041 QLineEdit* lineeditDuration;
00042 QPushButton* pushbuttonOK;
00043 QPushButton* pushbuttonCancel;
00044
00045 protected:
00046 QVBoxLayout* SIG_EditCommandDialogLayout;
00047 QVBoxLayout* buttongroupAllowDisallowLayout;
00048 QHBoxLayout* Layout2;
00049 QHBoxLayout* Layout1;
00050 };
00051
00052 }
00053 #endif // SIGEL_MASTERGUI_SIG_EDITCOMMANDDIALOG_H
00054
00055
00056
00057