diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glwidgets.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/glwidgets.h b/include/glwidgets.h index 3529fab..1894924 100644 --- a/include/glwidgets.h +++ b/include/glwidgets.h @@ -8,6 +8,12 @@ namespace mogltk { public: widget(); virtual ~widget(); + protected: + widget(widget * father, int x, int y, int sx, int sy) throw (GeneralException); + private: + int x, y, sx, sy; + widget * father, * next, * prev, * child, * root; + static widget * cur_father; }; }; |