X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FUtil.cc;h=9dadb3e10ea510fcd73961536fdc7f8958d83a3b;hb=351a06655bdd7d440780b5bc5b255081c888044b;hp=a97ffe50a591baa91a3ec11b54109c4e51a61dfb;hpb=0305cbdc3ae8525c74b2bb9b23884035549e3407;p=chaz%2Fopenbox diff --git a/src/Util.cc b/src/Util.cc index a97ffe50..9dadb3e1 100644 --- a/src/Util.cc +++ b/src/Util.cc @@ -52,6 +52,8 @@ extern "C" { #include +#include + #include #include "Util.hh" @@ -139,6 +141,12 @@ bool Rect::intersects(const Rect &a) const { } +bool Rect::contains(int __x, int __y) const { + return __x >= _x1 && __x <= _x2 && + __y >= _y1 && __y <= _y2; +} + + string expandTilde(const string& s) { if (s[0] != '~') return s;