summaryrefslogtreecommitdiff
path: root/include/glwidgets.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/glwidgets.h')
-rw-r--r--include/glwidgets.h6
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;
};
};