genode/os/include/input/event.h

60 lines
1.3 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Input event structure
* \author Norman Feske
* \date 2006-08-16
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2006-2012 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _INCLUDE__INPUT__EVENT_H_
#define _INCLUDE__INPUT__EVENT_H_
namespace Input {
class Event
{
public:
enum Type { INVALID, MOTION, PRESS, RELEASE, WHEEL, LEAVE };
private:
Type _type;
int _keycode;
int _ax, _ay;
int _rx, _ry;
public:
/**
* Constructors
*/
Event():
_type(INVALID), _keycode(0), _ax(0), _ay(0), _rx(0), _ry(0) { }
Event(Type type, int keycode, int ax, int ay, int rx, int ry):
_type(type), _keycode(keycode),
_ax(ax), _ay(ay), _rx(rx), _ry(ry) { }
/**
* Accessors
*/
Type type() const { return _type; }
int keycode() const { return _keycode; }
int ax() const { return _ax; }
int ay() const { return _ay; }
int rx() const { return _rx; }
int ry() const { return _ry; }
bool is_absolute_motion() const { return _type == MOTION && !_rx && !_ry; }
bool is_relative_motion() const { return _type == MOTION && (_rx || _ry); }
2011-12-22 16:19:25 +01:00
};
}
#endif /* _INCLUDE__INPUT__EVENT_H_ */