Add shortcuts for search (CTRL+F) and file upload (CTRL+U)

fixes #806
This commit is contained in:
fiaxh 2020-06-03 21:41:24 +02:00
parent 2f40726f55
commit 8a64c8501d
4 changed files with 39 additions and 2 deletions

View file

@ -19,6 +19,7 @@
<property name="visible">True</property>
<child>
<object class="GtkButton" id="file_button">
<property name="tooltip-text" translatable="yes">Send a file</property>
<property name="can-focus">False</property>
<property name="margin-top">3</property>
<property name="relief">none</property>

View file

@ -26,6 +26,26 @@
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>
<property name="title" translatable="yes">Conversation</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<property name="accelerator">&lt;ctrl&gt;F</property>
<property name="title" translatable="yes">Search messages</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
<property name="accelerator">&lt;ctrl&gt;U</property>
<property name="title" translatable="yes">Send a file</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkShortcutsGroup">
<property name="visible">True</property>

View file

@ -38,7 +38,7 @@ public class ConversationViewController : Object {
this.chat_input_controller = new ChatInputController(view.chat_input, stream_interactor);
chat_input_controller.activate_last_message_correction.connect(() => view.conversation_frame.activate_last_message_correction());
chat_input_controller.file_picker_selected.connect(() => on_file_picker_selected());
chat_input_controller.file_picker_selected.connect(() => open_file_picker());
view.conversation_frame.init(stream_interactor);
@ -89,6 +89,15 @@ public class ConversationViewController : Object {
foreach(var entry in app.plugin_registry.conversation_titlebar_entries) {
titlebar.insert_entry(entry);
}
AccelGroup accel_group = new AccelGroup();
accel_group.connect(Gdk.Key.U, ModifierType.CONTROL_MASK, AccelFlags.VISIBLE, () => {
if (conversation != null && stream_interactor.get_module(FileManager.IDENTITY).is_upload_available(conversation)) {
open_file_picker();
}
return false;
});
((Gtk.Window)view.get_toplevel()).add_accel_group(accel_group);
}
public void select_conversation(Conversation? conversation, bool default_initialize_conversation) {
@ -174,7 +183,7 @@ public class ConversationViewController : Object {
}
}
private void on_file_picker_selected() {
private void open_file_picker() {
PreviewFileChooserNative chooser = new PreviewFileChooserNative(_("Select file"), view.get_toplevel() as Gtk.Window, FileChooserAction.OPEN, _("Select"), _("Cancel"));
if (chooser.run() == Gtk.ResponseType.ACCEPT) {
open_send_file_overlay(File.new_for_path(chooser.get_filename()));

View file

@ -88,6 +88,13 @@ public class MainWindowController : Object {
stream_interactor.get_module(ConversationManager.IDENTITY).conversation_activated.connect(() => update_stack_state());
stream_interactor.get_module(ConversationManager.IDENTITY).conversation_deactivated.connect(() => update_stack_state());
update_stack_state();
AccelGroup accel_group = new AccelGroup();
accel_group.connect(Gdk.Key.F, ModifierType.CONTROL_MASK, AccelFlags.VISIBLE, () => {
window.search_revealer.reveal_child = true;
return false;
});
window.add_accel_group(accel_group);
}
public void select_conversation(Conversation? conversation, bool do_reset_search = true, bool default_initialize_conversation = true) {