From 05d399c049f3f8a84bbc2e81f1636c911cec7e26 Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 17 Mar 2003 07:44:36 +0000 Subject: Widgets --- include/glwidgets.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/glwidgets.h') 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; }; }; -- cgit v1.2.3