From 03ac86b14ee1f676f54659b790ffd33bae71ccb3 Mon Sep 17 00:00:00 2001 From: info-cppsp Date: Mon, 5 Feb 2018 15:46:55 +0100 Subject: run-dialog: use F6 to switch between entry field and program list fix #676 --- mate-panel/panel-run-dialog.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/mate-panel/panel-run-dialog.c b/mate-panel/panel-run-dialog.c index 0cc31018..5723e0a6 100644 --- a/mate-panel/panel-run-dialog.c +++ b/mate-panel/panel-run-dialog.c @@ -1904,6 +1904,35 @@ panel_run_dialog_setup_pixmap (PanelRunDialog *dialog, dialog); } +/* this runs after entry_event() */ +static gboolean +key_press_event (GtkWidget *run_dialog, + GdkEventKey *event, + PanelRunDialog *dialog) +{ + + /* allow only key presses */ + if (event->type != GDK_KEY_PRESS) + return FALSE; + + /* If the program list is enabled and open and the user presses the F6 key + * the focus should jump between GtkComboBoxText and the program list */ + if (panel_profile_get_enable_program_list () && panel_profile_get_show_program_list () && event->keyval == GDK_KEY_F6) { + + /* jump to the program list from anywhere */ + if (!gtk_widget_has_focus (dialog->program_list)) { + gtk_widget_grab_focus (dialog->program_list); + /* on the program list, jump to the entry box */ + } else { + gtk_widget_grab_focus (dialog->combobox); + } + + return TRUE; + } + + return FALSE; +} + static PanelRunDialog * panel_run_dialog_new (GdkScreen *screen, GtkBuilder *gui, @@ -1932,6 +1961,10 @@ panel_run_dialog_new (GdkScreen *screen, panel_run_dialog_setup_program_list (dialog, gui); panel_run_dialog_setup_list_expander (dialog, gui); + /* key press event signal for the whole dialog */ + g_signal_connect (dialog->run_dialog, "key-press-event", + G_CALLBACK (key_press_event), dialog); + panel_run_dialog_set_default_icon (dialog, FALSE); panel_run_dialog_update_content (dialog, panel_profile_get_show_program_list ()); -- cgit v1.2.1