Application input event handler interface.
More...
#include <tdme/application/InputEventHandler.h>
|
virtual | ~InputEventHandler () |
| Destructor. More...
|
|
virtual void | onChar (unsigned int key, int x, int y)=0 |
| On char. More...
|
|
virtual void | onKeyDown (unsigned char key, int keyCode, int x, int y)=0 |
| On key down. More...
|
|
virtual void | onKeyUp (unsigned char key, int keyCode, int x, int y)=0 |
| On key up. More...
|
|
virtual void | onMouseDragged (int x, int y)=0 |
| On mouse dragged. More...
|
|
virtual void | onMouseMoved (int x, int y)=0 |
| On mouse moved. More...
|
|
virtual void | onMouseButton (int button, int state, int x, int y)=0 |
| On mouse moved. More...
|
|
virtual void | onMouseWheel (int button, int direction, int x, int y)=0 |
| On mouse wheen. More...
|
|
Application input event handler interface.
- Author
- Andreas Drewke
- Version
- $Id$
Definition at line 12 of file InputEventHandler.h.
◆ ~InputEventHandler()
◆ onChar()
virtual void onChar |
( |
unsigned int |
key, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On char.
- Parameters
-
Implemented in GUI.
◆ onKeyDown()
virtual void onKeyDown |
( |
unsigned char |
key, |
|
|
int |
keyCode, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On key down.
- Parameters
-
key | key |
keyCode | key code |
x | x |
y | y |
Implemented in GUI.
◆ onKeyUp()
virtual void onKeyUp |
( |
unsigned char |
key, |
|
|
int |
keyCode, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On key up.
- Parameters
-
key | key |
keyCode | key code |
x | x |
y | y |
Implemented in GUI.
◆ onMouseButton()
virtual void onMouseButton |
( |
int |
button, |
|
|
int |
state, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On mouse moved.
- Parameters
-
button | button |
state | state |
x | x |
y | y |
Implemented in GUI.
◆ onMouseDragged()
virtual void onMouseDragged |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On mouse dragged.
- Parameters
-
Implemented in GUI.
◆ onMouseMoved()
virtual void onMouseMoved |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On mouse moved.
- Parameters
-
Implemented in GUI.
◆ onMouseWheel()
virtual void onMouseWheel |
( |
int |
button, |
|
|
int |
direction, |
|
|
int |
x, |
|
|
int |
y |
|
) |
| |
|
pure virtual |
On mouse wheen.
- Parameters
-
button | button |
direction | direction |
x | x |
y | y |
Implemented in GUI.
The documentation for this class was generated from the following files: