input_event.h
1 /*
2 ** ClanLib SDK
3 ** Copyright (c) 1997-2015 The ClanLib Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries ClanLib may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 ** Harry Storbacka
28 */
29 
30 
31 #pragma once
32 
33 #include "input_device.h"
34 #include "keys.h"
35 #include "../../Core/Math/point.h"
36 
37 namespace clan
38 {
41 
44 {
45 public:
47  enum Type
48  {
49  no_key = 0,
50  pressed = 1,
51  released = 2,
56  };
57 
60 
61 public:
64 
66 
70 
71 public:
72 
76 
77 public:
80 
82  int id_offset;
83 
90  std::string str;
91 
94 
97 
100 
103 
105  double axis_pos;
106 
111 
113  bool alt;
114  bool shift;
115  bool ctrl;
116 
120 
121 private:
122 
124 };
125 
126 }
127 
bool alt
State of modifier keys.
Definition: input_event.h:113
InputDevice device
Device that event originates from.
Definition: input_event.h:96
bool ctrl
Definition: input_event.h:115
2D (x,y) point structure - Integer
Definition: point.h:63
@ pointer_moved
Definition: input_event.h:53
@ pressed
Definition: input_event.h:50
double axis_pos
Axis position.
Definition: input_event.h:105
Input event class.
Definition: input_event.h:44
std::string str
Character sequence generated by event. A key press can generate one, none or multiple characters....
Definition: input_event.h:90
InputDevice.
Definition: input_device.h:48
Type
Event types.
Definition: input_event.h:48
2D (x,y) point structure - Float
Definition: point.h:73
bool shift
Definition: input_event.h:114
@ proximity_change
Definition: input_event.h:55
@ axis_moved
Definition: input_event.h:54
Pointf mouse_pos
Mouse position at event time.
Definition: input_event.h:99
InputCode id
The exact input.
Definition: input_event.h:79
InputCode
Definition: input_code.h:47
Definition: clanapp.h:36
InputEvent()
Constructs a 'NoKey' key.
int id_offset
Contains the value (0 to x) for certains InputCode types that have a variable output identifier (for ...
Definition: input_event.h:82
@ doubleclick
Definition: input_event.h:52
@ released
Definition: input_event.h:51
Type type
Event type.
Definition: input_event.h:93
Point mouse_device_pos
Mouse actual position at event time.
Definition: input_event.h:102
int repeat_count
The repeat count for this event. Contains the number of times the keystroke has auto-repeated as a re...
Definition: input_event.h:110
@ no_key
Definition: input_event.h:49