]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/root.h
Allow Root widgets to be created with custom input devices
[libs/gltk.git] / source / root.h
index 53f8ff3d74c37aa81a59478d37371719ad0e85c9..4e5309fe888f23234ca4d1d976f17fb0b596a742 100644 (file)
@@ -14,10 +14,8 @@ namespace GLtk {
 class Label;
 
 /**
-A Root is a special type of Panel that covers and entire Window and accepts
-input from it.  When created, a Root widget will take its size from the window
-it is created for.  The size can be changed, but a Root should always be
-rendered to fill the window in order to get coordinates mapped correctly.
+A Root is a special type of Panel that covers the entire viewport and receives
+input from keyboard and mouse.
 */
 class Root: public Panel, public sigc::trackable
 {
@@ -26,9 +24,9 @@ public:
 
 private:
        const Resources &resources;
-       Graphics::Window &window;
-       Input::Keyboard keyboard;
-       Input::Mouse mouse;
+       Input::Keyboard *keyboard;
+       Input::Mouse *mouse;
+       bool own_input;
        Label *lbl_tooltip;
        int pointer_x;
        int pointer_y;
@@ -36,8 +34,16 @@ private:
        Widget *tooltip_target;
 
 public:
+       /** Creates a Root widget for a window.  The geometry is set to match the
+       window's size, and input devices are created automatically. */
        Root(const Resources &, Graphics::Window &);
 
+       Root(const Resources &, Input::Keyboard *, Input::Mouse *);
+private:
+       void init();
+public:
+       virtual ~Root();
+
        virtual const char *get_class() const { return "root"; }
 
        const Resources &get_resources() const { return resources; }