X-Git-Url: https://git.stderr.nl/gitweb?p=rodin%2Fchimara.git;a=blobdiff_plain;f=libchimara%2Fmouse.c;h=1f54b5cef775f3c33c44fceec3f1ab00facf2162;hp=3fd464fc04aa79f4f80fcc3ce2b72d6116d12136;hb=0035771513d5c47d963858ef3f31da3ac28f7fc2;hpb=40c961bdf2523ebdcb6717f2537f97156fd19ab4 diff --git a/libchimara/mouse.c b/libchimara/mouse.c index 3fd464f..1f54b5c 100644 --- a/libchimara/mouse.c +++ b/libchimara/mouse.c @@ -1,6 +1,12 @@ #include "mouse.h" #include "magic.h" +/** + * glk_request_mouse_event: + * @win: Window on which to request a mouse input event. + * + * Requests mouse input on the window @win. + */ void glk_request_mouse_event(winid_t win) { @@ -11,6 +17,12 @@ glk_request_mouse_event(winid_t win) g_signal_handler_unblock(win->widget, win->button_press_event_handler); } +/** + * glk_cancel_mouse_event: + * @win: Window with a mouse input event pending. + * + * Cancels the pending mouse input request on @win. + */ void glk_cancel_mouse_event(winid_t win) {