summaryrefslogtreecommitdiff
path: root/mate-panel/panel-run-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'mate-panel/panel-run-dialog.c')
-rw-r--r--mate-panel/panel-run-dialog.c33
1 files changed, 33 insertions, 0 deletions
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 ());