[Improvement] Shortcut to save draft

This commit is contained in:
Eric Kotato 2022-09-11 03:26:20 +03:00 committed by Eric Kotato
parent 3a42cf128b
commit 41db6b210b
3 changed files with 11 additions and 0 deletions

View file

@ -98,6 +98,8 @@ const auto CommandByName = base::flat_map<QString, Command>{
{ u"message_silently"_q , Command::SendSilentMessage }, { u"message_silently"_q , Command::SendSilentMessage },
{ u"message_scheduled"_q , Command::ScheduleMessage }, { u"message_scheduled"_q , Command::ScheduleMessage },
// //
{ qsl("save_draft") , Command::SaveDraft },
}; };
const auto CommandNames = base::flat_map<Command, QString>{ const auto CommandNames = base::flat_map<Command, QString>{
@ -137,6 +139,8 @@ const auto CommandNames = base::flat_map<Command, QString>{
{ Command::ShowContacts , u"show_contacts"_q }, { Command::ShowContacts , u"show_contacts"_q },
{ Command::ReadChat , u"read_chat"_q }, { Command::ReadChat , u"read_chat"_q },
{ Command::SaveDraft , u"save_draft"_q },
}; };
class Manager { class Manager {
@ -400,6 +404,7 @@ void Manager::fillDefaults() {
set(u"ctrl+j"_q, Command::ShowContacts); set(u"ctrl+j"_q, Command::ShowContacts);
set(u"ctrl+r"_q, Command::ReadChat); set(u"ctrl+r"_q, Command::ReadChat);
set(u"ctrl+s"_q, Command::SaveDraft);
} }
void Manager::writeDefaultFile() { void Manager::writeDefaultFile() {

View file

@ -64,6 +64,8 @@ enum class Command {
SupportScrollToCurrent, SupportScrollToCurrent,
SupportHistoryBack, SupportHistoryBack,
SupportHistoryForward, SupportHistoryForward,
SaveDraft,
}; };
[[maybe_unused]] constexpr auto kShowFolder = { [[maybe_unused]] constexpr auto kShowFolder = {

View file

@ -1941,6 +1941,10 @@ void HistoryWidget::setupShortcuts() {
return true; return true;
}); });
} }
request->check(Command::SaveDraft, 1) && request->handle([=] {
saveCloudDraft();
return true;
});
}, lifetime()); }, lifetime());
} }