diff options
author | pixel <pixel> | 2003-03-17 07:44:36 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-03-17 07:44:36 +0000 |
commit | 05d399c049f3f8a84bbc2e81f1636c911cec7e26 (patch) | |
tree | 2ddeeec028a60009731785e327bc174357f2987e /include | |
parent | a0ec1cffa6b75030344632083b2b1b63c0cfcf0a (diff) |
Widgets
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; }; }; |