kandy
cmdpropertiesdialog_base.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CMDPROPERTIESDIALOG_BASE_H
00010 #define CMDPROPERTIESDIALOG_BASE_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QLineEdit;
00020 class QLabel;
00021 class QCheckBox;
00022 class QListView;
00023 class QListViewItem;
00024 class QPushButton;
00025
00026 class CmdPropertiesDialog_base : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 CmdPropertiesDialog_base( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~CmdPropertiesDialog_base();
00033
00034 QLineEdit* mNameEdit;
00035 QLineEdit* mStringEdit;
00036 QLabel* TextLabel1;
00037 QLabel* TextLabel2;
00038 QCheckBox* mHexCheck;
00039 QListView* mParameterList;
00040 QPushButton* buttonOk;
00041 QPushButton* buttonCancel;
00042
00043 public slots:
00044 virtual void editParameterName(QListViewItem *);
00045
00046 protected:
00047 QGridLayout* CmdPropertiesDialog_baseLayout;
00048 QSpacerItem* Horizontal_Spacing2;
00049
00050 protected slots:
00051 virtual void languageChange();
00052
00053 virtual void slotAccept();
00054
00055
00056 };
00057
00058 #endif // CMDPROPERTIESDIALOG_BASE_H
|