Go to the source code of this file.
static bool filterTypableWindowMessage |
( |
const MSG * |
msg, |
|
|
t_uint32 |
modifiers |
|
) |
| |
|
static |
Definition at line 350 of file menu_manager.cpp.
354 }
catch(exception_service_not_found) {}
static bool is_typing_key_combo(t_uint32 vkCode, t_uint32 modifiers)
Helper template used to easily access core services. Usage: static_api_ptr_t<myclass> api; api->doso...
Definition at line 5 of file menu_manager.cpp.
virtual void add_string(const char *p_string, t_size p_length=~0)=0
static unsigned flags_to_win32 |
( |
unsigned |
flags | ) |
|
|
static |
static t_uint32 get_key_code |
( |
WPARAM |
wp | ) |
|
|
static |
Definition at line 281 of file menu_manager.cpp.
283 if (mods & MOD_CONTROL) code|=F_CTRL;
284 if (mods & MOD_SHIFT) code|=F_SHIFT;
285 if (mods & MOD_ALT) code|=F_ALT;
286 if (mods & MOD_WIN) code|=F_WIN;
static bool should_relay_key_restricted |
( |
UINT |
p_key | ) |
|
|
static |
static bool test_key |
( |
unsigned |
k | ) |
|
|
static |
Definition at line 262 of file menu_manager.cpp.
264 return (GetKeyState(k) & 0x8000) ?
true :
false;