Add Ctrl+9 shortcut to show archive.

This commit is contained in:
Anton Afanasyev 2020-01-05 08:14:52 +03:00 committed by John Preston
parent a52dfe7998
commit 3bc58fb690
3 changed files with 18 additions and 0 deletions

View File

@ -74,6 +74,8 @@ const auto CommandByName = base::flat_map<QString, Command>{
{ qsl("first_chat") , Command::ChatFirst },
{ qsl("last_chat") , Command::ChatLast },
{ qsl("self_chat") , Command::ChatSelf },
{ qsl("show_archive") , Command::ShowArchive },
};
const auto CommandNames = base::flat_map<Command, QString>{
@ -96,6 +98,8 @@ const auto CommandNames = base::flat_map<Command, QString>{
{ Command::ChatFirst , qsl("first_chat") },
{ Command::ChatLast , qsl("last_chat") },
{ Command::ChatSelf , qsl("self_chat") },
{ Command::ShowArchive , qsl("show_archive") },
};
class Manager {
@ -331,6 +335,8 @@ void Manager::fillDefaults() {
set(qsl("ctrl+5"), Command::ChatPinned5);
set(qsl("ctrl+0"), Command::ChatSelf);
set(qsl("ctrl+9"), Command::ShowArchive);
}
void Manager::writeDefaultFile() {

View File

@ -35,6 +35,8 @@ enum class Command {
ChatPinned4,
ChatPinned5,
ShowArchive,
SupportReloadTemplates,
SupportToggleMuted,
SupportScrollToCurrent,

View File

@ -2953,6 +2953,16 @@ void InnerWidget::setupShortcuts() {
App::main()->choosePeer(session().userPeerId(), ShowAtUnreadMsgId);
return true;
});
request->check(Command::ShowArchive) && request->handle([=] {
const auto folder = session().data().folderLoaded(
Data::Folder::kId);
if (folder && !folder->chatsList()->empty()) {
App::wnd()->sessionController()->openFolder(folder);
Ui::hideSettingsAndLayer();
return true;
}
return false;
});
static const auto kPinned = {
Command::ChatPinned1,