2018-11-16 12:15:14 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Shortcuts {
|
|
|
|
|
|
|
|
enum class Command {
|
|
|
|
Close,
|
|
|
|
Lock,
|
|
|
|
Minimize,
|
|
|
|
Quit,
|
|
|
|
|
|
|
|
MediaPlay,
|
|
|
|
MediaPause,
|
|
|
|
MediaPlayPause,
|
|
|
|
MediaStop,
|
|
|
|
MediaPrevious,
|
|
|
|
MediaNext,
|
|
|
|
|
|
|
|
Search,
|
|
|
|
|
|
|
|
ChatPrevious,
|
|
|
|
ChatNext,
|
2018-11-16 13:36:42 +00:00
|
|
|
ChatFirst,
|
|
|
|
ChatLast,
|
2019-03-11 19:01:41 +00:00
|
|
|
ChatSelf,
|
2018-12-29 13:39:17 +00:00
|
|
|
ChatPinned1,
|
|
|
|
ChatPinned2,
|
|
|
|
ChatPinned3,
|
|
|
|
ChatPinned4,
|
|
|
|
ChatPinned5,
|
2018-11-16 13:36:42 +00:00
|
|
|
|
|
|
|
SupportReloadTemplates,
|
|
|
|
SupportToggleMuted,
|
|
|
|
SupportScrollToCurrent,
|
2018-12-30 12:50:23 +00:00
|
|
|
SupportHistoryBack,
|
|
|
|
SupportHistoryForward,
|
2018-11-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
|
2018-11-16 15:12:39 +00:00
|
|
|
[[nodiscard]] FnMut<bool()> RequestHandler(Command command);
|
2018-11-16 12:15:14 +00:00
|
|
|
|
|
|
|
class Request {
|
|
|
|
public:
|
|
|
|
bool check(Command command, int priority = 0);
|
|
|
|
bool handle(FnMut<bool()> handler);
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit Request(Command command);
|
|
|
|
|
|
|
|
Command _command;
|
|
|
|
int _handlerPriority = -1;
|
|
|
|
FnMut<bool()> _handler;
|
|
|
|
|
2018-11-16 15:12:39 +00:00
|
|
|
friend FnMut<bool()> RequestHandler(Command command);
|
2018-11-16 12:15:14 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
rpl::producer<not_null<Request*>> Requests();
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
void Finish();
|
|
|
|
|
2018-11-16 15:12:39 +00:00
|
|
|
bool Launch(Command command);
|
2018-11-16 12:15:14 +00:00
|
|
|
bool HandleEvent(not_null<QShortcutEvent*> event);
|
|
|
|
|
|
|
|
const QStringList &Errors();
|
|
|
|
|
|
|
|
// Media shortcuts are not enabled by default, because other
|
|
|
|
// applications also use them. They are enabled only when
|
|
|
|
// the in-app player is active and disabled back after.
|
2018-12-13 08:48:31 +00:00
|
|
|
void ToggleMediaShortcuts(bool toggled);
|
|
|
|
|
|
|
|
// Support shortcuts are not enabled by default, because they
|
|
|
|
// have some conflicts with default input shortcuts, like Ctrl+Delete.
|
|
|
|
void ToggleSupportShortcuts(bool toggled);
|
2018-11-16 12:15:14 +00:00
|
|
|
|
|
|
|
} // namespace Shortcuts
|