qse  0.5.4
qseoperatoreditor.h
Go to the documentation of this file.
1 #ifndef QSEOPERATOREDITOR_H
2 #define QSEOPERATOREDITOR_H
3 
4 #include <QWidget>
5 
6 class QseOperator;
8 
9 class QseOperatorEditor : public QWidget {
10  Q_OBJECT;
11 
12  public:
13  QseOperatorEditor(QseOperator* oper, QWidget* parent=0);
14 
15  void addEditor(QseParameterEditor* editor);
16 
17  public slots:
18  bool editorValidate();
19  void editorApply();
20  void editorCancel();
21 
22  protected:
24  QList<QseParameterEditor*> m_Editors;
25 };
26 
27 #endif
QseOperator * m_Operator
QList< QseParameterEditor * > m_Editors
QseOperatorEditor(QseOperator *oper, QWidget *parent=0)
void addEditor(QseParameterEditor *editor)