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-02 20:39:54 +00:00
|
|
|
bool ValidateAccount(const MTPUser &self) {
|
2018-10-05 17:09:18 +00:00
|
|
|
//return true; AssertIsDebug();
|
2018-10-02 20:39:54 +00:00
|
|
|
return self.match([](const MTPDuser &data) {
|
2018-11-13 16:03:58 +00:00
|
|
|
DEBUG_LOG(("ValidateAccount: %1 %2"
|
|
|
|
).arg(Logs::b(data.has_phone())
|
|
|
|
).arg(data.has_phone() ? qs(data.vphone) : QString()));
|
2018-10-02 20:39:54 +00:00
|
|
|
return data.has_phone() && qs(data.vphone).startsWith(qstr("424"));
|
|
|
|
}, [](const MTPDuserEmpty &data) {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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
|