diff options
author | Valentin Villenave <[email protected]> | 2021-10-07 13:18:09 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-11-09 22:39:01 +0100 |
commit | 7af48f81bb1b2f88d1c1c56241b60161fffe68f1 (patch) | |
tree | ffe4f106bc2bfb37437b1fbf03e17530d7ee6829 | |
parent | 0e3c168684f341663016f2769b99d82c0d897394 (diff) | |
download | mate-applets-7af48f81bb1b2f88d1c1c56241b60161fffe68f1.tar.bz2 mate-applets-7af48f81bb1b2f88d1c1c56241b60161fffe68f1.tar.xz |
Mate Sticky notes applet: enable keyboard navigation through F6
As Tab and Shift-Tab get interpreted as indent/unindent, there
was no way of leaving the text area through keyboard only.
-rw-r--r-- | stickynotes/stickynotes.c | 4 | ||||
-rw-r--r-- | stickynotes/stickynotes_callbacks.c | 23 | ||||
-rw-r--r-- | stickynotes/stickynotes_callbacks.h | 4 |
3 files changed, 31 insertions, 0 deletions
diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c index be05a5fb..978e731e 100644 --- a/stickynotes/stickynotes.c +++ b/stickynotes/stickynotes.c @@ -368,6 +368,10 @@ stickynote_new_aux (GdkScreen *screen, G_CALLBACK (gtk_widget_hide), note); + g_signal_connect (note->w_window, "key-press-event", + G_CALLBACK (stickynote_keypress_cb), + note); + g_object_unref (builder); g_signal_connect_after (note->w_body, "button-press-event", diff --git a/stickynotes/stickynotes_callbacks.c b/stickynotes/stickynotes_callbacks.c index 1d416f0f..b80f34e4 100644 --- a/stickynotes/stickynotes_callbacks.c +++ b/stickynotes/stickynotes_callbacks.c @@ -122,6 +122,29 @@ stickynote_show_popup_menu (GtkWidget *widget, return FALSE; } +/* Sticky Window Callback : Exit entry field on key press. */ +gboolean +stickynote_keypress_cb (GtkWidget *widget, + GdkEventKey *event, + StickyNote *note) +{ + GdkModifierType state = event->state & gtk_accelerator_get_default_mod_mask (); + + switch (event->keyval) { + case GDK_KEY_F6: + if (state == 0) + gtk_widget_child_focus(widget, GTK_DIR_TAB_FORWARD); + else if (state == GDK_SHIFT_MASK) + gtk_widget_child_focus(widget, GTK_DIR_TAB_BACKWARD); + else + break; + return TRUE; + default: + break; + } + + return FALSE; +} /* Popup Menu Callback : Create a new sticky note */ void popup_create_cb (GtkWidget *widget, diff --git a/stickynotes/stickynotes_callbacks.h b/stickynotes/stickynotes_callbacks.h index 42c86bb1..8934011f 100644 --- a/stickynotes/stickynotes_callbacks.h +++ b/stickynotes/stickynotes_callbacks.h @@ -49,6 +49,10 @@ gboolean stickynote_show_popup_menu (GtkWidget *widget, GdkEventButton *event, GtkWidget *popup_menu); +gboolean +stickynote_keypress_cb (GtkWidget *widget, + GdkEventKey *event, + StickyNote *note); /* Callbacks for the sticky notes popup menu */ void |