X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finput%2Fmouse.h;h=c85d8d2b22fb2be4eea1beb0fb9f945d619dbb47;hb=c430f2d7498e9c2daa515ee9aba3a95257e5e999;hp=8d5086f2d11654c7423dda2995d38e6d68d4a6b8;hpb=999ca92aa9ee10585c0b2094d84364159253982f;p=libs%2Fgui.git diff --git a/source/input/mouse.h b/source/input/mouse.h index 8d5086f..c85d8d2 100644 --- a/source/input/mouse.h +++ b/source/input/mouse.h @@ -1,32 +1,29 @@ -/* $Id$ - -This file is part of libmspgbase -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GBASE_MOUSE_H_ -#define MSP_GBASE_MOUSE_H_ +#ifndef MSP_INPUT_MOUSE_H_ +#define MSP_INPUT_MOUSE_H_ +#include #include "device.h" -#include "../gbase/window.h" namespace Msp { namespace Input { +/** +Mouse device. Receives events from a Graphics::Window and presents them in a +uniform way. + +Note: Y axis grows upwards. +*/ class Mouse: public Device { private: Graphics::Window &window; - float axis_scale; public: Mouse(Graphics::Window &); virtual std::string get_button_name(unsigned) const; + virtual std::string get_axis_name(unsigned) const; private: - void button_press(int, int, unsigned, unsigned); - void button_release(int, int, unsigned, unsigned); - void pointer_motion(int, int); + void input_event(const Graphics::Window::Event &); }; } // namespace Input