]> git.tdb.fi Git - libs/gltk.git/blob - source/root.h
Add an input method subsystem
[libs/gltk.git] / source / root.h
1 #ifndef MSP_GLTK_ROOT_H_
2 #define MSP_GLTK_ROOT_H_
3
4 #include <sigc++/trackable.h>
5 #include <msp/gl/camera.h>
6 #include <msp/gl/program.h>
7 #include <msp/graphics/window.h>
8 #include <msp/input/keyboard.h>
9 #include <msp/input/mouse.h>
10 #include <msp/input/touchscreen.h>
11 #include <msp/time/timestamp.h>
12 #include "panel.h"
13
14 namespace Msp {
15 namespace GLtk {
16
17 class Label;
18
19 /**
20 A Root is a special type of Panel that covers the entire viewport and receives
21 input from keyboard and mouse.
22 */
23 class Root: public Panel, public sigc::trackable
24 {
25 public:
26         sigc::signal<std::string, int, int> signal_tooltip;
27
28 private:
29         const Resources &resources;
30         Input::Keyboard *keyboard;
31         InputMethod *input_method;
32         Input::Mouse *mouse;
33         Input::Touchscreen *touchscreen;
34         bool own_input;
35         Label *lbl_tooltip;
36         int pointer_x;
37         int pointer_y;
38         Time::TimeStamp tooltip_timeout;
39         Widget *tooltip_target;
40         Msp::GL::Camera camera;
41         Msp::GL::Program *shprog;
42
43 public:
44         /** Creates a Root widget for a window.  The geometry is set to match the
45         window's size, and input devices are created automatically. */
46         Root(const Resources &, Graphics::Window &);
47
48         /** Creates a Root widget with custom input devices.  If window is not null,
49         it is used to set the widget's initial geometry. */
50         Root(const Resources &, Graphics::Window *, Input::Keyboard *, Input::Mouse *, Input::Touchscreen * = 0);
51 private:
52         void init(Graphics::Window *);
53 public:
54         virtual ~Root();
55
56         virtual const char *get_class() const { return "root"; }
57
58         const Resources &get_resources() const { return resources; }
59         virtual unsigned get_width() const { return geom.w; }
60         virtual unsigned get_height() const { return geom.h; }
61
62         void tick();
63         void render() const;
64
65 private:
66         bool button_press_event(unsigned);
67         bool button_release_event(unsigned);
68         bool axis_motion_event(unsigned, float, float);
69         bool touch_press_event(unsigned);
70         bool touch_release_event(unsigned);
71         bool touch_motion_event(unsigned, float, float);
72
73         void get_pointer(int &, int &);
74         void get_touch(unsigned, int &, int &);
75         void update_camera();
76
77         virtual void on_geometry_change();
78         virtual void on_child_added(Widget &);
79 };
80
81 } // namespace GLtk
82 } // namespace Msp
83
84 #endif