Sleeping Wombat GUI  0.100
swGUI
IEventArgs.h
Go to the documentation of this file.
1 #pragma once
2 
11 
12 
20 namespace sw {
21 namespace gui
22 {
23 
27 struct IEventArgs
28 {
29  RTTR_ENABLE()
30 public:
32  : Handled( false )
33  {}
34 public:
35  bool Handled;
36 };
37 
39 
40 } // gui
41 } // sw
42 
Base class for events.
Definition: IEventArgs.h:27
Definition: DirectInputModule.cpp:11
IEventArgs()
Definition: IEventArgs.h:31
bool Handled
Mark event as handled to stop further processing.
Definition: IEventArgs.h:35
DEFINE_OPTR_TYPE(UIElement)