X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Froot.h;h=4e5309fe888f23234ca4d1d976f17fb0b596a742;hb=d9d787503ae41842309f74a2eabc5b848abe1f22;hp=53f8ff3d74c37aa81a59478d37371719ad0e85c9;hpb=8fc5cb226f0c2b36298f51b3d2501b04ebb11b8a;p=libs%2Fgltk.git diff --git a/source/root.h b/source/root.h index 53f8ff3..4e5309f 100644 --- a/source/root.h +++ b/source/root.h @@ -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; }