]> git.tdb.fi Git - libs/gltk.git/blob - source/root.cpp
Add an input method subsystem
[libs/gltk.git] / source / root.cpp
1 #include <msp/gl/blend.h>
2 #include <msp/gl/extensions/arb_shader_objects.h>
3 #include <msp/gl/programbuilder.h>
4 #include <msp/gl/uniform.h>
5 #include <msp/input/keys.h>
6 #include <msp/time/units.h>
7 #include <msp/time/utils.h>
8 #include "label.h"
9 #include "style.h"
10 #include "root.h"
11 #include "systemkeyboardinput.h"
12
13 namespace Msp {
14 namespace GLtk {
15
16 Root::Root(const Resources &r, Graphics::Window &window):
17         resources(r),
18         keyboard(new Input::Keyboard(window)),
19         input_method(0),
20         mouse(new Input::Mouse(window)),
21         touchscreen(0),
22         own_input(true)
23 {
24         init(&window);
25 }
26
27 Root::Root(const Resources &r, Graphics::Window *window, Input::Keyboard *k, Input::Mouse *m, Input::Touchscreen *t):
28         resources(r),
29         keyboard(k),
30         input_method(0),
31         mouse(m),
32         touchscreen(t),
33         own_input(false)
34 {
35         init(window);
36 }
37
38 void Root::init(Graphics::Window *window)
39 {
40         if(window)
41                 set_geometry(Geometry(0, 0, window->get_width(), window->get_height()));
42
43         lbl_tooltip = 0;
44         tooltip_target = 0;
45
46         camera.set_orthographic(geom.w, geom.h);
47         update_camera();
48
49         if(GL::ARB_shader_objects)
50         {
51                 shprog = new GL::Program;
52                 GL::ProgramBuilder::StandardFeatures features;
53                 features.material = true;
54                 features.texture = true;
55                 GL::ProgramBuilder(features).add_shaders(*shprog);
56                 shprog->link();
57         }
58         else
59                 shprog = 0;
60
61         update_style();
62
63         if(mouse)
64         {
65                 mouse->signal_button_press.connect(sigc::mem_fun(this, &Root::button_press_event));
66                 mouse->signal_button_release.connect(sigc::mem_fun(this, &Root::button_release_event));
67                 mouse->signal_axis_motion.connect(sigc::mem_fun(this, &Root::axis_motion_event));
68         }
69
70         if(keyboard && !input_method)
71                 input_method = new SystemKeyboardInput(*this, *keyboard);
72
73         if(touchscreen)
74         {
75                 touchscreen->signal_button_press.connect(sigc::mem_fun(this, &Root::touch_press_event));
76                 touchscreen->signal_button_release.connect(sigc::mem_fun(this, &Root::touch_release_event));
77                 touchscreen->signal_axis_motion.connect(sigc::mem_fun(this, &Root::touch_motion_event));
78         }
79 }
80
81 Root::~Root()
82 {
83         delete shprog;
84         delete input_method;
85         if(own_input)
86         {
87                 delete keyboard;
88                 delete mouse;
89         }
90 }
91
92 void Root::tick()
93 {
94         if(tooltip_timeout && Time::now()>tooltip_timeout)
95         {
96                 std::string tip;
97                 if(Widget *wdg = get_descendant_at(pointer_x, pointer_y))
98                 {
99                         tip = wdg->get_tooltip();
100                         tooltip_target = wdg;
101                 }
102                 else
103                 {
104                         tip = signal_tooltip.emit(pointer_x, pointer_y);
105                         tooltip_target = this;
106                 }
107
108                 if(!tip.empty())
109                 {
110                         if(!lbl_tooltip)
111                         {
112                                 lbl_tooltip = new Label;
113                                 add(*lbl_tooltip);
114                                 lbl_tooltip->set_style("tooltip");
115                         }
116
117                         lbl_tooltip->set_text(tip);
118                         lbl_tooltip->autosize();
119                         const Geometry &tip_geom = lbl_tooltip->get_geometry();
120                         unsigned x = pointer_x+10;
121                         unsigned y = pointer_y-10-lbl_tooltip->get_geometry().h;
122                         if(x+tip_geom.w>geom.w)
123                         {
124                                 if(pointer_x>static_cast<int>(tip_geom.w+2))
125                                         x = pointer_x-2-tip_geom.w;
126                                 else
127                                         x = geom.w-tip_geom.w;
128                         }
129                         lbl_tooltip->set_position(x, y);
130                         raise(*lbl_tooltip);
131                         lbl_tooltip->set_visible(true);
132                 }
133
134                 tooltip_timeout = Time::TimeStamp();
135         }
136 }
137
138 void Root::render() const
139 {
140         GL::Bind bind_blend(GL::Blend::alpha());
141
142         GL::Renderer renderer(&camera);
143         renderer.set_shader_program(shprog);
144         Widget::render(renderer);
145 }
146
147 bool Root::button_press_event(unsigned btn)
148 {
149         if(visible)
150         {
151                 Widget *old_focus = pointer_focus;
152
153                 int x, y;
154                 get_pointer(x, y);
155                 button_press(x, y, btn);
156
157                 if(pointer_focus || old_focus)
158                         return true;
159         }
160
161         return false;
162 }
163
164 bool Root::button_release_event(unsigned btn)
165 {
166         if(visible)
167         {
168                 Widget *old_focus = pointer_focus;
169
170                 int x, y;
171                 get_pointer(x, y);
172                 button_release(x, y, btn);
173
174                 if(pointer_focus || old_focus)
175                         return true;
176         }
177
178         return false;
179 }
180
181 bool Root::axis_motion_event(unsigned, float, float)
182 {
183         if(visible)
184         {
185                 int x, y;
186                 get_pointer(x, y);
187                 pointer_motion(x, y);
188
189                 if(!tooltip_target)
190                 {
191                         pointer_x = x;
192                         pointer_y = y;
193                         tooltip_timeout = Time::now()+700*Time::msec;
194                 }
195                 else if(get_descendant_at(x, y)!=tooltip_target)
196                 {
197                         if(lbl_tooltip)
198                                 lbl_tooltip->set_visible(false);
199                         tooltip_target = 0;
200                 }
201
202                 if(pointer_focus)
203                         return true;
204         }
205
206         return false;
207 }
208
209 bool Root::touch_press_event(unsigned finger)
210 {
211         if(visible)
212         {
213                 Widget *old_focus = touch_focus;
214
215                 int x, y;
216                 get_touch(finger, x, y);
217                 touch_press(x, y, finger);
218
219                 if(touch_focus || old_focus)
220                         return true;
221         }
222
223         return false;
224 }
225
226 bool Root::touch_release_event(unsigned finger)
227 {
228         if(visible)
229         {
230                 Widget *old_focus = touch_focus;
231
232                 int x, y;
233                 get_touch(finger, x, y);
234                 touch_release(x, y, finger);
235
236                 if(touch_focus || old_focus)
237                         return true;
238         }
239
240         return false;
241 }
242
243 bool Root::touch_motion_event(unsigned axis, float, float)
244 {
245         if(visible)
246         {
247                 unsigned finger = axis/2;
248                 int x, y;
249                 get_touch(finger, x, y);
250                 touch_motion(x, y, finger);
251
252                 if(touch_focus)
253                         return true;
254         }
255
256         return false;
257 }
258
259 void Root::get_pointer(int &x, int &y)
260 {
261         x = (mouse->get_axis_value(0)*0.5+0.5)*geom.w;
262         y = (mouse->get_axis_value(1)*0.5+0.5)*geom.h;
263 }
264
265 void Root::get_touch(unsigned finger, int &x, int &y)
266 {
267         x = (touchscreen->get_axis_value(finger*2)*0.5+0.5)*geom.w;
268         y = (touchscreen->get_axis_value(finger*2+1)*0.5+0.5)*geom.h;
269 }
270
271 void Root::update_camera()
272 {
273         camera.set_position(GL::Vector3(geom.w/2.0f, geom.h/2.0f, geom.h/2.0f));
274         camera.set_depth_clip(geom.h*0.1f, geom.h*0.9f);
275         camera.set_orthographic(geom.w, geom.h);
276 }
277
278 void Root::on_geometry_change()
279 {
280         Panel::on_geometry_change();
281         update_camera();
282 }
283
284 void Root::on_child_added(Widget &wdg)
285 {
286         if(&wdg!=lbl_tooltip)
287                 Panel::on_child_added(wdg);
288 }
289
290 } // namespace GLtk
291 } // namespace Msp