#include <events.h>
Inheritance diagram for NLMISC::CEventKeyDown:
Definition at line 277 of file events.h.
Public Member Functions | |
CEventKeyDown (TKey key, TKeyButton button, bool bFirstTime, IEventEmitter *emitter) | |
virtual CEvent * | clone () const |
operator uint64 () const | |
bool | operator!= (const CClassId &o) const |
bool | operator< (const CClassId &o) const |
bool | operator<= (const CClassId &o) const |
bool | operator== (const CClassId &o) const |
bool | operator> (const CClassId &o) const |
bool | operator>= (const CClassId &o) const |
Static Public Member Functions | |
TKey | getKeyFromString (const std::string &str) |
const std::string & | getStringFromKey (TKey k) |
Data Fields | |
TKeyButton | Button |
IEventEmitter * | Emitter |
Emitter of the event. Can be NULL if the event is posted directly to the CEventServer. | |
bool | FirstTime |
TKey | Key |
Static Public Attributes | |
const CClassId | Null |
|
Definition at line 280 of file events.h. References NLMISC::EventKeyDownId, FirstTime, and Key. Referenced by clone().
|
|
Implements NLMISC::CEvent. Definition at line 288 of file events.h. References CEventKeyDown().
00288 {return new CEventKeyDown(*this);} |
|
Definition at line 196 of file events.cpp. References NLMISC::KeyConversion(), and NLMISC::TKey.
00197 { 00198 return KeyConversion.fromString(str); 00199 } |
|
Definition at line 202 of file events.cpp. References NLMISC::KeyConversion().
00203 { 00204 return KeyConversion.toString(k); 00205 } |
|
Definition at line 62 of file class_id.h. References NLMISC::CClassId::Uid.
00062 {return Uid;}
|
|
Definition at line 56 of file class_id.h. References NLMISC::CClassId::Uid.
00056 {return Uid!=o.Uid;}
|
|
Definition at line 59 of file class_id.h. References NLMISC::CClassId::Uid.
00059 {return Uid<o.Uid;}
|
|
Definition at line 57 of file class_id.h. References NLMISC::CClassId::Uid.
00057 {return Uid<=o.Uid;}
|
|
Definition at line 55 of file class_id.h. References NLMISC::CClassId::Uid.
00055 {return Uid==o.Uid;}
|
|
Definition at line 60 of file class_id.h. References NLMISC::CClassId::Uid.
00060 {return Uid>o.Uid;}
|
|
Definition at line 58 of file class_id.h. References NLMISC::CClassId::Uid.
00058 {return Uid>=o.Uid;}
|
|
Definition at line 264 of file events.h. Referenced by NLMISC::CEventKey::CEventKey(). |
|
Emitter of the event. Can be NULL if the event is posted directly to the CEventServer.
Definition at line 48 of file events.h. Referenced by NLMISC::CEvent::CEvent(). |
|
Definition at line 286 of file events.h. Referenced by CEventKeyDown(). |
|
Definition at line 285 of file events.h. Referenced by CEventKeyDown(), and NLMISC::CEventListenerAsync::operator()(). |
|
|