From e18ff901fc7236e3008266f0a09048e6905de724 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 22 Jul 2002 04:29:40 +0000 Subject: xinerama support for window placement --- src/Util.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/Util.cc') diff --git a/src/Util.cc b/src/Util.cc index 1b521aaf..d8083444 100644 --- a/src/Util.cc +++ b/src/Util.cc @@ -141,6 +141,18 @@ bool Rect::intersects(const Rect &a) const { } +bool Rect::contains(int __x, int __y) const { + return __x >= _x1 && __x <= _x2 && + __y >= _y1 && __y <= _y2; +} + + +bool Rect::contains(const Rect& a) const { + return a._x1 >= _x1 && a._x2 <= _x2 && + a._y1 >= _y1 && a._y2 <= _y2; +} + + string expandTilde(const string& s) { if (s[0] != '~') return s; -- cgit v1.2.3