X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=libchimara%2Fmouse.c;h=1f54b5cef775f3c33c44fceec3f1ab00facf2162;hb=2bb1d3dd204e6e91e9a582671682a0ca23d333b1;hp=3fd464fc04aa79f4f80fcc3ce2b72d6116d12136;hpb=05d5848c2f80098c837a44b5ccf94a043193a355;p=projects%2Fchimara%2Fchimara.git 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) {