summaryrefslogtreecommitdiff
path: root/Widgets/Rect.h
blob: 8316f6fc98b38583b3463b8b62b203cd272293d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once

#include "Point.h"

class Rect {
public:
    Rect() { }
    Rect(int x, int y, int width, int height)
        : m_location(x, y)
        , m_width(width)
        , m_height(height)
    {
    }

    void moveBy(int dx, int dy)
    {
        m_location.moveBy(dx, dy);
    }

    bool contains(int x, int y) const
    {
        return x >= m_location.x() && x <= right() && y >= m_location.y() && y <= bottom();
    }

    bool contains(const Point& point) const
    {
        return contains(point.x(), point.y());
    }

    int left() const { return x(); }
    int right() const { return x() + width(); }
    int top() const { return y(); }
    int bottom() const { return y() + height(); }

    int x() const { return location().x(); }
    int y() const { return location().y(); }
    int width() const { return m_width; }
    int height() const { return m_height; }

    void setX(int x) { m_location.setX(x); }
    void setY(int y) { m_location.setY(y); }
    void setWidth(int width) { m_width = width; }
    void setHeight(int height) { m_height = height; }

    Point location() const { return m_location; }

private:
    Point m_location;
    int m_width { 0 };
    int m_height { 0 };
};