Lines Matching defs:AvoidRect
40 struct AvoidRect {
46 AvoidRect() : posX(0), posY(0), width(0), height(0) {}
48 AvoidRect(int32_t x, int32_t y, uint32_t w, uint32_t h) : posX(x), posY(y), width(w), height(h) {}
50 AvoidRect(const AvoidRect& other) : posX(other.posX), posY(other.posY),
53 bool operator==(const AvoidRect& a) const
58 AvoidRect& operator=(const AvoidRect& other)
71 AvoidRect topRect { 0, 0, 0, 0 };
72 AvoidRect leftRect { 0, 0, 0, 0 };
73 AvoidRect rightRect { 0, 0, 0, 0 };
74 AvoidRect bottomRect { 0, 0, 0, 0 };
78 AvoidAreas(AvoidRect top, AvoidRect left, AvoidRect right, AvoidRect bottom) : topRect(top),