X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Factions.cc;h=7360192299e9683cf7432dab89ce056eb5e3217d;hb=46441f7d60c008b11a170516734ae7a5932a738e;hp=5a799a584c8fd7ab9c674fcd5ec5b0a72e9011ff;hpb=b267261403b99d600c073e1252bffabee7bd45f0;p=chaz%2Fopenbox diff --git a/src/actions.cc b/src/actions.cc index 5a799a58..73601922 100644 --- a/src/actions.cc +++ b/src/actions.cc @@ -14,13 +14,15 @@ #include "otk/display.hh" #include +#include namespace ob { const int Actions::BUTTONS; Actions::Actions() - : _button(0) + : _button(0), + _dragging(false) { for (int i=0; ifindHandler(e.window)); if (!w) return; + if (!_dragging) { + long threshold; + int dx = x_root - _posqueue[0]->pos.x(); + int dy = y_root - _posqueue[0]->pos.y(); + // XXX: dont get this from python every time! + if (!python_get_long("drag_threshold", &threshold)) + threshold = 0; + if (!(std::abs(dx) >= threshold || std::abs(dy) >= threshold)) + return; // not at the threshold yet + } + _dragging = true; // in a drag now + + // check if the movement is more than the threshold + // run the MOTION python hook // kill off the Button1Mask etc, only want the modifiers unsigned int state = e.state & (ControlMask | ShiftMask | Mod1Mask |