]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/root.h
Return a reference from Style::get_font
[libs/gltk.git] / source / root.h
index 50445fecea3fd8a0bcc206de73561a1c229e05ef..53f8ff3d74c37aa81a59478d37371719ad0e85c9 100644 (file)
@@ -1,15 +1,10 @@
-/* $Id$
-
-This file is part of libmspgltk
-Copyright © 2007, 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GLTK_ROOT_H_
 #define MSP_GLTK_ROOT_H_
 
 #include <sigc++/trackable.h>
-#include <msp/gbase/window.h>
+#include <msp/graphics/window.h>
+#include <msp/input/keyboard.h>
+#include <msp/input/mouse.h>
 #include <msp/time/timestamp.h>
 #include "panel.h"
 
@@ -30,24 +25,37 @@ public:
        sigc::signal<std::string, int, int> signal_tooltip;
 
 private:
+       const Resources &resources;
        Graphics::Window &window;
+       Input::Keyboard keyboard;
+       Input::Mouse mouse;
        Label *lbl_tooltip;
        int pointer_x;
        int pointer_y;
-       Msp::Time::TimeStamp tooltip_timeout;
+       Time::TimeStamp tooltip_timeout;
        Widget *tooltip_target;
 
 public:
        Root(const Resources &, Graphics::Window &);
+
+       virtual const char *get_class() const { return "root"; }
+
+       const Resources &get_resources() const { return resources; }
+       virtual unsigned get_width() const { return geom.w; }
+       virtual unsigned get_height() const { return geom.h; }
+
        void tick();
+       void render() const;
+
 private:
-       virtual const char *get_class() const { return "root"; }
-       void button_press_event(int, int, unsigned, unsigned);
-       void button_release_event(int, int, unsigned, unsigned);
-       void pointer_motion_event(int, int);
-       void key_press_event(unsigned, unsigned, wchar_t);
-       void key_release_event(unsigned, unsigned);
-       void translate_coords(int &, int &);
+       void button_press_event(unsigned);
+       void button_release_event(unsigned);
+       void axis_motion_event(unsigned, float, float);
+       void key_press_event(unsigned);
+       void key_release_event(unsigned);
+       void character_event(StringCodec::unichar);
+
+       void get_pointer(int &, int &);
 };
 
 } // namespace GLtk