OpenTTD Source
20241108-master-g80f628063a
|
List of hotkeys for a window. More...
#include <hotkeys.h>
Public Types | |
typedef EventState(* | GlobalHotkeyHandlerFunc) (int hotkey) |
Public Member Functions | |
HotkeyList (const std::string &ini_group, const std::vector< Hotkey > &items, GlobalHotkeyHandlerFunc global_hotkey_handler=nullptr) | |
void | Load (const IniFile &ini) |
Load HotkeyList from IniFile. More... | |
void | Save (IniFile &ini) const |
Save HotkeyList to IniFile. More... | |
int | CheckMatch (uint16_t keycode, bool global_only=false) const |
Check if a keycode is bound to something. More... | |
Data Fields | |
GlobalHotkeyHandlerFunc | global_hotkey_handler |
Private Member Functions | |
HotkeyList (const HotkeyList &other) | |
Dummy private copy constructor to prevent compilers from copying the structure, which fails due to _hotkey_lists. | |
Private Attributes | |
const std::string | ini_group |
std::vector< Hotkey > | items |
int HotkeyList::CheckMatch | ( | uint16_t | keycode, |
bool | global_only = false |
||
) | const |
Check if a keycode is bound to something.
keycode | The keycode that was pressed |
global_only | Limit the search to hotkeys defined as 'global'. |
Definition at line 309 of file hotkeys.cpp.
void HotkeyList::Load | ( | const IniFile & | ini | ) |
Load HotkeyList from IniFile.
ini | IniFile to load from. |
Definition at line 277 of file hotkeys.cpp.
References IniLoadFile::GetGroup(), IniGroup::GetItem(), ParseHotkeys(), and IniItem::value.
void HotkeyList::Save | ( | IniFile & | ini | ) | const |
Save HotkeyList to IniFile.
ini | IniFile to save to. |
Definition at line 294 of file hotkeys.cpp.
References IniLoadFile::GetOrCreateGroup(), IniGroup::GetOrCreateItem(), SaveKeycodes(), and IniItem::SetValue().