summaryrefslogtreecommitdiff
path: root/include/glwidgets.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-03-17 07:44:36 +0000
committerpixel <pixel>2003-03-17 07:44:36 +0000
commit05d399c049f3f8a84bbc2e81f1636c911cec7e26 (patch)
tree2ddeeec028a60009731785e327bc174357f2987e /include/glwidgets.h
parenta0ec1cffa6b75030344632083b2b1b63c0cfcf0a (diff)
Widgets
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;
};
};