Base class for event management.
Definition at line 56 of file keventbase.h.
#include <keventbase.h>
Public Member Functions |
|
KEventBase () | |
kEventType | GetType () const |
void | SetBreakEvent () |
Stop treating event. |
|
bool | GetBreakEvent () const |
Get break event. |
|
Protected Attributes |
|
kEventType | mType |
bool | mBreakEvent |
KEventBase | ( | ) | [inline] |
Definition at line 63 of file keventbase.h.
{ mType = K_EVENT_BASE; mBreakEvent = false; }
kEventType GetType | ( | ) | const [inline] |
void SetBreakEvent | ( | ) | [inline] |
bool GetBreakEvent | ( | ) | const [inline] |
Get break event.
true
if event are not going to be treated next,
false otherwise.Definition at line 73 of file keventbase.h.
{ return mBreakEvent; }
kEventType
mType
[protected] |
Definition at line 59 of file keventbase.h.
bool mBreakEvent
[protected] |
Definition at line 60 of file keventbase.h.