X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Froot.cpp;h=224e5bc30ef3a975fb022da83a6ba19e4be64779;hb=48fd4db84c4d0b43305d85f74de99eb4fef04fd6;hp=f8a4d9f76dcf0ef920fad27bae6f8a9d222d6a99;hpb=131ac8ff2c06f94d40f4bf98d4a6ec0d113cdffc;p=libs%2Fgltk.git diff --git a/source/root.cpp b/source/root.cpp index f8a4d9f..224e5bc 100644 --- a/source/root.cpp +++ b/source/root.cpp @@ -1,17 +1,73 @@ +/* $Id$ + +This file is part of libmspgltk +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include "root.h" namespace Msp { namespace GLtk { -Root::Root(Resources &r, Window &w): +Root::Root(Resources &r, Graphics::Window &w): Panel(r), window(w) { set_geometry(Geometry(0, 0, window.get_width(), window.get_height())); + update_style(); + window.signal_button_press.connect(sigc::mem_fun(this, &Root::button_press_event)); window.signal_button_release.connect(sigc::mem_fun(this, &Root::button_release_event)); window.signal_pointer_motion.connect(sigc::mem_fun(this, &Root::pointer_motion_event)); + window.signal_key_press.connect(sigc::mem_fun(this, &Root::key_press_event)); + window.signal_key_release.connect(sigc::mem_fun(this, &Root::key_release_event)); +} + +void Root::button_press_event(int x, int y, unsigned btn, unsigned) +{ + if(visible) + { + translate_coords(x, y); + button_press(x, y, btn); + } +} + +void Root::button_release_event(int x, int y, unsigned btn, unsigned) +{ + if(visible) + { + translate_coords(x, y); + button_release(x, y, btn); + } +} + +void Root::pointer_motion_event(int x, int y) +{ + if(visible) + { + translate_coords(x, y); + pointer_motion(x, y); + } +} + +void Root::key_press_event(unsigned key, unsigned mod, wchar_t ch) +{ + if(visible) + key_press(key, mod, ch); +} + +void Root::key_release_event(unsigned key, unsigned mod) +{ + if(visible) + key_release(key, mod); +} + +void Root::translate_coords(int &x, int &y) +{ + x=x*geom.w/window.get_width(); + y=geom.h-1-y*geom.h/window.get_height(); } } // namespace GLtk