mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/*
|
|
* \brief Input event structure
|
|
* \author Norman Feske
|
|
* \date 2006-08-16
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2012 Genode Labs GmbH
|
|
*
|
|
* 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); }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__INPUT__EVENT_H_ */
|