00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef TRANSITIONPROPERTIESDLG_H
00011 #define TRANSITIONPROPERTIESDLG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QButtonGroup;
00020 class QLabel;
00021 class QLineEdit;
00022 class QPushButton;
00023 class QRadioButton;
00024 class QTextEdit;
00025
00026 class TransitionPropertiesDlg : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 TransitionPropertiesDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~TransitionPropertiesDlg();
00033
00034 QButtonGroup* ButtonGroup1;
00035 QRadioButton* rb_bin;
00036 QRadioButton* rb_ascii;
00037 QLabel* TextLabel7;
00038 QLabel* TextLabel6;
00039 QLineEdit* le_output;
00040 QLineEdit* le_input;
00041 QLabel* TextLabel3;
00042 QTextEdit* te_description;
00043 QPushButton* PushButton19;
00044 QPushButton* PushButton20;
00045
00046 public slots:
00047 virtual void asciiClicked();
00048 virtual void binaryClicked();
00049 virtual void validate();
00050
00051 protected:
00052 QVBoxLayout* TransitionPropertiesDlgLayout;
00053 QHBoxLayout* ButtonGroup1Layout;
00054 QGridLayout* Layout6;
00055 QHBoxLayout* Layout8;
00056
00057 protected slots:
00058 virtual void languageChange();
00059 };
00060
00061 #endif // TRANSITIONPROPERTIESDLG_H