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