[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 72e52bd6ec
commit f5e016d8f6
3 changed files with 11 additions and 0 deletions

View file

@ -106,6 +106,8 @@ const auto CommandByName = base::flat_map<QString, Command>{
{ u"message_scheduled"_q , Command::ScheduleMessage }, { u"message_scheduled"_q , Command::ScheduleMessage },
{ u"media_viewer_video_fullscreen"_q , Command::MediaViewerFullscreen }, { u"media_viewer_video_fullscreen"_q , Command::MediaViewerFullscreen },
// //
{ qsl("save_draft") , Command::SaveDraft },
}; };
const auto CommandNames = base::flat_map<Command, QString>{ const auto CommandNames = base::flat_map<Command, QString>{
@ -152,6 +154,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 {
@ -423,6 +427,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

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

View file

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