rosenrot-browser

A hackable browser based on Webkitgtk
Log | Files | Refs | README

commit da8a0d7624fbeacb52ae14fff8d75ff2ca1cf536
parent 75848c63a294f03024b92379cb264d56391294cd
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Fri, 29 Dec 2023 18:51:07 +0100

add pointer to capturing mouse events.

Diffstat:
Mrose.c | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git 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/gtk3/signal.Widget.button-press-event.html> + // https://docs.gtk.org/gdk3/union.Event.html + // https://docs.gtk.org/gdk3/struct.EventButton.html + */ return 0; }