47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/*
|
|
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"
|
|
|
|
#include "shortcuts.h"
|
|
|
|
namespace Support {
|
|
|
|
bool ValidateAccount(const MTPUser &self) {
|
|
//return true; AssertIsDebug();
|
|
return self.match([](const MTPDuser &data) {
|
|
return data.has_phone() && qs(data.vphone).startsWith(qstr("424"));
|
|
}, [](const MTPDuserEmpty &data) {
|
|
return false;
|
|
});
|
|
}
|
|
|
|
bool HandleSwitch(Qt::KeyboardModifiers modifiers) {
|
|
return !(modifiers & Qt::ShiftModifier)
|
|
|| (!(modifiers & Qt::ControlModifier)
|
|
&& !(modifiers & Qt::MetaModifier));
|
|
}
|
|
|
|
Qt::KeyboardModifiers SkipSwitchModifiers() {
|
|
return Qt::ControlModifier | Qt::ShiftModifier;
|
|
}
|
|
|
|
void PerformSwitch(SwitchSettings value) {
|
|
switch (value) {
|
|
case SwitchSettings::Next:
|
|
Shortcuts::launch("next_chat");
|
|
break;
|
|
case SwitchSettings::Previous:
|
|
Shortcuts::launch("previous_chat");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
} // namespace Support
|