From da8a0d7624fbeacb52ae14fff8d75ff2ca1cf536 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 29 Dec 2023 18:51:07 +0100 Subject: add pointer to capturing mouse events. --- rose.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/rose.c b/rose.c index 599213a..bacb637 100644 --- a/rose.c +++ b/rose.c @@ -414,7 +414,15 @@ int keypress(void* self, GdkEvent* e, GtkNotebook* notebook) for (int i = 0; i < sizeof(keys) / sizeof(keys[0]); i++) if ((e->key.state == keys[i].mod || keys[i].mod == 0x0) && e->key.keyval == keys[i].key) return handle_key(keys[i].id, notebook); - + /* + printf("Event type: %d\n", e->type); + printf("Keyval: %d\n", e->key.keyval); + // Note: if I wanted to bind button presses, like the extra button in the mouse, + // I would have to bind the button-press-event signal instead. + // Some links in case I go down that road: + // https://docs.gtk.org/gdk3/union.Event.html + // https://docs.gtk.org/gdk3/struct.EventButton.html + */ return 0; } -- cgit v1.2.3