Changeset 15 in flair-src for trunk/tools/FlairGCS/src/FormLayout.h
- Timestamp:
- Apr 8, 2016, 3:40:57 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/FlairGCS/src/FormLayout.h
r10 r15 11 11 class Layout; 12 12 13 class FormLayout: public XmlWidget 14 { 13 class FormLayout : public XmlWidget { 15 14 16 17 FormLayout(Layout* parent,int row, int col,QString name,QString type);18 15 public: 16 FormLayout(Layout *parent, int row, int col, QString name, QString type); 17 ~FormLayout(); 19 18 20 21 22 virtual void SetUptodate(void)=0;23 19 private: 20 bool IsUptodate(void); 21 virtual void SetUptodate(void) = 0; 22 bool eventFilter(QObject *o, QEvent *e); 24 23 25 26 QFormLayout*object_layout;24 protected: 25 QFormLayout *object_layout; 27 26 }; 28 27
Note:
See TracChangeset
for help on using the changeset viewer.