Sleeping Wombat GUI  0.100
swGUI
KeyboardEventArgs.h
Go to the documentation of this file.
1 #pragma once
2 
4 
6 
7 
8 namespace sw {
9 namespace gui
10 {
11 
12 
16 {
17  RTTR_ENABLE( InputEventArgs )
18 public:
19 
21 
22 
23 public:
25  : InputEventArgs( keyboard )
26  , Keyboard( keyboard )
27  {}
28 
29 };
30 
31 } // gui
32 } // sw
Definition: DirectInputModule.cpp:11
input::KeyboardDevice * Keyboard
Definition: KeyboardEventArgs.h:20
Base class for keyboard events.
Definition: KeyboardEventArgs.h:15
Keyboard state and events.
Definition: KeyboardDevice.h:40
KeyboardEventArgs(input::KeyboardDevice *keyboard)
Definition: KeyboardEventArgs.h:24
Base class for input events.
Definition: InputEventArgs.h:22