summaryrefslogtreecommitdiff
path: root/include/glwidgets.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-03-24 08:56:20 +0000
committerpixel <pixel>2003-03-24 08:56:20 +0000
commitc1057d096fa2e1421d881732922a929829799263 (patch)
treead4428a92b1776d80fbbfaf144a7d0e8612a1b96 /include/glwidgets.h
parentc133f790e21a86c30584abe67b18297b29039209 (diff)
Bleh
Diffstat (limited to 'include/glwidgets.h')
-rw-r--r--include/glwidgets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/glwidgets.h b/include/glwidgets.h
index 1894924..0ee9cea 100644
--- a/include/glwidgets.h
+++ b/include/glwidgets.h
@@ -6,14 +6,14 @@
namespace mogltk {
class widget : public Base {
public:
- widget();
virtual ~widget();
+ bool PointerEvent(int x, int y);
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;
+ static widget * cur_root, * focused;
};
};