00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef STATEPROPERTIESDLG_H
00011 #define STATEPROPERTIESDLG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QLabel;
00020 class QLineEdit;
00021 class QPushButton;
00022 class QTextEdit;
00023
00024 class StatePropertiesDlg : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 StatePropertiesDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~StatePropertiesDlg();
00031
00032 QLabel* TextLabel1;
00033 QLineEdit* le_code;
00034 QLineEdit* le_radius;
00035 QPushButton* PushButton1;
00036 QLabel* TextLabel3;
00037 QLineEdit* le_linewidth;
00038 QLabel* TextLabel4;
00039 QLineEdit* le_name;
00040 QLabel* TextLabel2;
00041 QLabel* lb_colorpreview;
00042 QLabel* TextLabel1_2;
00043 QTextEdit* te_description;
00044 QPushButton* PushButton2;
00045 QPushButton* PushButton3;
00046
00047 public slots:
00048 virtual void chooseFGColor();
00049 virtual void validate();
00050
00051 protected:
00052 QVBoxLayout* StatePropertiesDlgLayout;
00053 QGridLayout* Layout2;
00054 QHBoxLayout* Layout3;
00055
00056 protected slots:
00057 virtual void languageChange();
00058 };
00059
00060 #endif // STATEPROPERTIESDLG_H