2018-09-29 12:18:26 +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
|
|
|
|
*/
|
|
|
|
#include "support/support_common.h"
|
|
|
|
|
2018-11-16 12:15:14 +00:00
|
|
|
#include "core/shortcuts.h"
|
2018-09-29 12:18:26 +00:00
|
|
|
|
|
|
|
namespace Support {
|
|
|
|
|
2018-10-08 14:08:17 +00:00
|
|
|
bool HandleSwitch(Qt::KeyboardModifiers modifiers) {
|
|
|
|
return !(modifiers & Qt::ShiftModifier)
|
|
|
|
|| (!(modifiers & Qt::ControlModifier)
|
|
|
|
&& !(modifiers & Qt::MetaModifier));
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::KeyboardModifiers SkipSwitchModifiers() {
|
|
|
|
return Qt::ControlModifier | Qt::ShiftModifier;
|
|
|
|
}
|
|
|
|
|
2018-11-16 15:12:39 +00:00
|
|
|
FnMut<bool()> GetSwitchMethod(SwitchSettings value) {
|
2018-09-29 12:18:26 +00:00
|
|
|
switch (value) {
|
|
|
|
case SwitchSettings::Next:
|
2018-11-16 15:12:39 +00:00
|
|
|
return Shortcuts::RequestHandler(Shortcuts::Command::ChatNext);
|
2018-09-29 12:18:26 +00:00
|
|
|
case SwitchSettings::Previous:
|
2018-11-16 15:12:39 +00:00
|
|
|
return Shortcuts::RequestHandler(Shortcuts::Command::ChatPrevious);
|
2018-09-29 12:18:26 +00:00
|
|
|
}
|
2018-11-16 15:12:39 +00:00
|
|
|
return nullptr;
|
2018-09-29 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Support
|