From 3b39804835c1edc5df63ac42d39dd4741087a975 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 30 Jan 2003 16:54:30 +0000 Subject: [PATCH] add a Release MouseAction for python hooks --- src/actions.cc | 26 +++++++++++++++----------- src/python.hh | 1 + 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/actions.cc b/src/actions.cc index 6059f00d..f77acc2f 100644 --- a/src/actions.cc +++ b/src/actions.cc @@ -117,6 +117,20 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e) (openbox->findHandler(e.window)); if (!w) return; + // run the RELEASE python hook + // kill off the Button1Mask etc, only want the modifiers + unsigned int state = e.state & (ControlMask | ShiftMask | Mod1Mask | + Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask); + int screen; + Client *c = openbox->findClient(e.window); + if (c) + screen = c->screen(); + else + screen = otk::display->findScreen(e.root)->screen(); + MouseData data(screen, c, e.time, state, e.button, w->mcontext(), + MouseAction::Release); + openbox->bindings()->fireButton(&data); + // not for the button we're watching? if (_button != e.button) return; @@ -133,17 +147,7 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e) return; // run the CLICK python hook - // kill off the Button1Mask etc, only want the modifiers - unsigned int state = e.state & (ControlMask | ShiftMask | Mod1Mask | - Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask); - int screen; - Client *c = openbox->findClient(e.window); - if (c) - screen = c->screen(); - else - screen = otk::display->findScreen(e.root)->screen(); - MouseData data(screen, c, e.time, state, e.button, w->mcontext(), - MouseAction::Click); + data.action = MouseAction::Click; openbox->bindings()->fireButton(&data); diff --git a/src/python.hh b/src/python.hh index 42b9726f..90df3e10 100644 --- a/src/python.hh +++ b/src/python.hh @@ -46,6 +46,7 @@ struct MouseContext { struct MouseAction { enum MA { Press, + Release, Click, DoubleClick, Motion -- 2.39.2