Home
last modified time | relevance | path

Searched refs:GlobalShortcutKeyGeneric (Results 1 – 6 of 6) sorted by relevance

/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/
H A Dglobal_shortcuts_generic.h13 using GlobalShortcutKeyGeneric = uint64; variable
18 std::vector<GlobalShortcutKeyGeneric> descriptors);
23 const std::vector<GlobalShortcutKeyGeneric> &descriptors() const { in descriptors()
28 std::vector<GlobalShortcutKeyGeneric> _descriptors;
51 void schedule(GlobalShortcutKeyGeneric descriptor, bool down);
56 std::vector<GlobalShortcutKeyGeneric> sorted;
59 void process(GlobalShortcutKeyGeneric descriptor, bool down);
61 void processRecordingPress(GlobalShortcutKeyGeneric descriptor);
67 std::vector<GlobalShortcutKeyGeneric> _recordingDown;
68 flat_set<GlobalShortcutKeyGeneric> _recordingUp;
[all …]
H A Dglobal_shortcuts_generic.cpp21 std::vector<GlobalShortcutKeyGeneric> descriptors) { in MakeShortcut()
27 const std::vector<GlobalShortcutKeyGeneric> &sorted, in Matches()
28 const flat_set<GlobalShortcutKeyGeneric> &down) { in Matches()
72 std::vector<GlobalShortcutKeyGeneric> descriptors) in GlobalShortcutValueGeneric()
168 const auto single = sizeof(GlobalShortcutKeyGeneric); in shortcutFromSerialized()
173 auto list = std::vector<GlobalShortcutKeyGeneric>(count); in shortcutFromSerialized()
179 GlobalShortcutKeyGeneric descriptor, in schedule()
185 GlobalShortcutKeyGeneric descriptor, in process()
231 GlobalShortcutKeyGeneric descriptor, in processRecording()
241 GlobalShortcutKeyGeneric descriptor) { in processRecordingPress()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/platform/win/
H A Dbase_global_shortcuts_win.cpp21 Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> ProcessCallback;
23 [[nodiscard]] GlobalShortcutKeyGeneric MakeDescriptor( in MakeDescriptor()
26 return GlobalShortcutKeyGeneric( in MakeDescriptor()
30 [[nodiscard]] GlobalShortcutKeyGeneric MakeMouseDescriptor(uint8 button) { in MakeMouseDescriptor()
36 [[nodiscard]] uint32 GetVirtualKeyCode(GlobalShortcutKeyGeneric descriptor) { in GetVirtualKeyCode()
40 [[nodiscard]] uint32 GetLParam(GlobalShortcutKeyGeneric descriptor) { in GetLParam()
162 void Start(Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> process) { in Start()
201 QString KeyName(GlobalShortcutKeyGeneric descriptor) { in KeyName()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/platform/
H A Dbase_platform_global_shortcuts.h16 void Start(Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> process);
19 [[nodiscard]] QString KeyName(GlobalShortcutKeyGeneric descriptor);
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/platform/mac/
H A Dbase_global_shortcuts_mac.mm26 Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> ProcessCallback;
29 GlobalShortcutKeyGeneric descriptor = 0;
81 const auto descriptor = GlobalShortcutKeyGeneric(keycode);
94 const auto code = GlobalShortcutKeyGeneric(kShiftMouseButton
147 void Start(Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> process) {
208 QString KeyName(GlobalShortcutKeyGeneric descriptor) {
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_base/base/platform/linux/
H A Dbase_global_shortcuts_linux.cpp38 Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> ProcessCallback;
194 : GlobalShortcutKeyGeneric(computeKeysym(code, e->state)); in process()
244 void Start(Fn<void(GlobalShortcutKeyGeneric descriptor, bool down)> process) { in Start()
259 QString KeyName(GlobalShortcutKeyGeneric descriptor) { in KeyName()