#include <HotKey.h>
Inherits SubsystemInterface.
Public Member Functions | |
| HotKeyManager (void) | |
| ~HotKeyManager (void) | |
| virtual void | init (void) |
| Initialize the Hotkey system. | |
| virtual void | update (void) |
| A No-op for us. | |
| virtual void | reset (void) |
| Reset. | |
| void | addHotKey (GameWindow *win, const AsciiString &key) |
| Bool | executeHotKey (const AsciiString &key) |
| AsciiString | searchHotKey (const AsciiString &label) |
| AsciiString | searchHotKey (const UnicodeString &uStr) |
Public Member Functions inherited from SubsystemInterface | |
| SubsystemInterface () | |
| virtual | ~SubsystemInterface () |
| virtual void | postProcessLoad () |
| virtual void | draw (void) |
| void | UPDATE (void) |
| void | DRAW (void) |
| AsciiString | getName (void) |
| void | setName (AsciiString name) |
Additional Inherited Members | |
Protected Attributes inherited from SubsystemInterface | |
| AsciiString | m_name |
| HotKeyManager::HotKeyManager | ( | void | ) |
Definition at line 123 of file HotKey.cpp.
| HotKeyManager::~HotKeyManager | ( | void | ) |
Definition at line 129 of file HotKey.cpp.
| void HotKeyManager::addHotKey | ( | GameWindow * | win, |
| const AsciiString & | key ) |
Definition at line 147 of file HotKey.cpp.
| Bool HotKeyManager::executeHotKey | ( | const AsciiString & | key | ) |
Definition at line 164 of file HotKey.cpp.
|
virtual |
Initialize the Hotkey system.
Implements SubsystemInterface.
Definition at line 135 of file HotKey.cpp.
|
virtual |
| AsciiString HotKeyManager::searchHotKey | ( | const AsciiString & | label | ) |
Definition at line 200 of file HotKey.cpp.
| AsciiString HotKeyManager::searchHotKey | ( | const UnicodeString & | uStr | ) |
Definition at line 206 of file HotKey.cpp.
|
inlinevirtual |