all repos — openbox @ 3b39804835c1edc5df63ac42d39dd4741087a975

openbox fork - make it a bit more like ryudo

add a Release MouseAction for python hooks
Dana Jansens danakj@orodu.net
commit

3b39804835c1edc5df63ac42d39dd4741087a975

parent

c2c21e9588c00944dfed4cfc7e48d14570444534

2 files changed, 16 insertions(+), 11 deletions(-)

jump to
M src/actions.ccsrc/actions.cc

@@ -117,6 +117,20 @@ WidgetBase *w = dynamic_cast<WidgetBase*>

(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 @@ e.x < attr.width && e.y < attr.height))

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);
M src/python.hhsrc/python.hh

@@ -46,6 +46,7 @@

struct MouseAction { enum MA { Press, + Release, Click, DoubleClick, Motion