ladybird/Widgets/Rect.h

82 lines
1.8 KiB
C
Raw Normal View History

2018-10-10 14:49:36 +00:00
#pragma once
#include "Point.h"
2018-10-10 14:49:36 +00:00
class Rect {
public:
Rect() { }
Rect(int x, int y, int width, int height)
: m_location(x, y)
2018-10-10 14:49:36 +00:00
, m_width(width)
, m_height(height)
{
}
bool isEmpty() const
{
return width() == 0 || height() == 0;
}
2018-10-10 14:49:36 +00:00
void moveBy(int dx, int dy)
{
m_location.moveBy(dx, dy);
2018-10-10 14:49:36 +00:00
}
void moveBy(const Point& delta)
{
m_location.moveBy(delta);
}
2018-10-10 23:48:09 +00:00
Point center() const
{
return { x() + width() / 2, y() + height() / 2 };
}
2018-10-11 14:52:40 +00:00
void inflate(int w, int h)
{
setX(x() - w / 2);
setWidth(width() + w);
setY(y() - h / 2);
setHeight(height() + h);
}
2018-10-10 14:49:36 +00:00
bool contains(int x, int y) const
{
return x >= m_location.x() && x <= right() && y >= m_location.y() && y <= bottom();
2018-10-10 14:49:36 +00:00
}
bool contains(const Point& point) const
{
return contains(point.x(), point.y());
}
2018-10-10 14:49:36 +00:00
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(); }
2018-10-10 14:49:36 +00:00
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); }
2018-10-10 14:49:36 +00:00
void setWidth(int width) { m_width = width; }
void setHeight(int height) { m_height = height; }
Point location() const { return m_location; }
2018-10-11 23:03:22 +00:00
bool operator==(const Rect& other) const
{
return m_location == other.m_location
&& m_width == other.m_width
&& m_height == other.m_height;
}
2018-10-10 14:49:36 +00:00
private:
Point m_location;
2018-10-10 14:49:36 +00:00
int m_width { 0 };
int m_height { 0 };
};