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>
11 #include "systemkeyboardinput.h"
16 Root::Root(Resources &r, Graphics::Window &window):
18 keyboard(new Input::Keyboard(window)),
20 mouse(new Input::Mouse(window)),
27 Root::Root(Resources &r, Graphics::Window *window, Input::Keyboard *k, Input::Mouse *m, Input::Touchscreen *t):
38 void Root::init(Graphics::Window *window)
41 set_geometry(Geometry(0, 0, window->get_width(), window->get_height()));
46 camera.set_orthographic(geom.w, geom.h);
49 if(GL::ARB_shader_objects)
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);
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));
70 if(keyboard && !input_method)
71 input_method = new SystemKeyboardInput(*this, *keyboard);
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));
94 if(tooltip_timeout && Time::now()>tooltip_timeout)
97 if(Widget *wdg = get_descendant_at(pointer_x, pointer_y))
99 tip = wdg->get_tooltip();
100 tooltip_target = wdg;
104 tip = signal_tooltip.emit(pointer_x, pointer_y);
105 tooltip_target = this;
112 lbl_tooltip = new Label;
114 lbl_tooltip->set_style("tooltip");
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)
124 if(pointer_x>static_cast<int>(tip_geom.w+2))
125 x = pointer_x-2-tip_geom.w;
127 x = geom.w-tip_geom.w;
129 lbl_tooltip->set_position(x, y);
131 lbl_tooltip->set_visible(true);
134 tooltip_timeout = Time::TimeStamp();
138 void Root::render(const GL::Tag &tag) const
143 GL::Bind bind_blend(GL::Blend::alpha());
145 GL::Renderer renderer(&camera);
146 renderer.set_shader_program(shprog);
147 Widget::render(renderer);
150 void Root::render(GL::Renderer &renderer, const GL::Tag &tag) const
159 bool Root::button_press_event(unsigned btn)
163 Widget *old_focus = pointer_focus;
167 button_press(x, y, btn);
169 if(pointer_focus || old_focus)
176 bool Root::button_release_event(unsigned btn)
180 Widget *old_focus = pointer_focus;
184 button_release(x, y, btn);
186 if(pointer_focus || old_focus)
193 bool Root::axis_motion_event(unsigned, float, float)
199 pointer_motion(x, y);
205 tooltip_timeout = Time::now()+700*Time::msec;
207 else if(get_descendant_at(x, y)!=tooltip_target)
210 lbl_tooltip->set_visible(false);
221 bool Root::touch_press_event(unsigned finger)
225 Widget *old_focus = touch_focus;
228 get_touch(finger, x, y);
229 touch_press(x, y, finger);
231 if(touch_focus || old_focus)
238 bool Root::touch_release_event(unsigned finger)
242 Widget *old_focus = touch_focus;
245 get_touch(finger, x, y);
246 touch_release(x, y, finger);
248 if(touch_focus || old_focus)
255 bool Root::touch_motion_event(unsigned axis, float, float)
259 unsigned finger = axis/2;
261 get_touch(finger, x, y);
262 touch_motion(x, y, finger);
271 void Root::get_pointer(int &x, int &y)
273 x = (mouse->get_axis_value(0)*0.5+0.5)*geom.w;
274 y = (mouse->get_axis_value(1)*0.5+0.5)*geom.h;
277 void Root::get_touch(unsigned finger, int &x, int &y)
279 x = (touchscreen->get_axis_value(finger*2)*0.5+0.5)*geom.w;
280 y = (touchscreen->get_axis_value(finger*2+1)*0.5+0.5)*geom.h;
283 void Root::update_camera()
285 camera.set_position(GL::Vector3(geom.w/2.0f, geom.h/2.0f, geom.h/2.0f));
286 camera.set_depth_clip(geom.h*0.1f, geom.h*0.9f);
287 camera.set_orthographic(geom.w, geom.h);
290 void Root::on_geometry_change()
292 Panel::on_geometry_change();
296 void Root::on_child_added(Widget &wdg)
298 if(&wdg!=lbl_tooltip)
299 Panel::on_child_added(wdg);