]> git.tdb.fi Git - libs/gltk.git/blob - source/root.h
Inherit Root from sigc::trackable so it's safe to delete it
[libs/gltk.git] / source / root.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007, 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_ROOT_H_
9 #define MSP_GLTK_ROOT_H_
10
11 #include <sigc++/trackable.h>
12 #include <msp/gbase/window.h>
13 #include "panel.h"
14
15 namespace Msp {
16 namespace GLtk {
17
18 /**
19 A Root is a special type of Panel that covers and entire Window and accepts
20 input from it.  When created, a Root widget will take its size from the window
21 it is created for.  The size can be changed, but a Root should always be
22 rendered to fill the window in order to get coordinates mapped correctly.
23 */
24 class Root: public Panel, public sigc::trackable
25 {
26 private:
27         Graphics::Window &window;
28
29 public:
30         Root(const Resources &, Graphics::Window &);
31 private:
32         virtual const char *get_class() const { return "root"; }
33         void button_press_event(int, int, unsigned, unsigned);
34         void button_release_event(int, int, unsigned, unsigned);
35         void pointer_motion_event(int, int);
36         void key_press_event(unsigned, unsigned, wchar_t);
37         void key_release_event(unsigned, unsigned);
38         void translate_coords(int &, int &);
39 };
40
41 } // namespace GLtk
42 } // namespace Msp
43
44 #endif