mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
b0e3f73375
Userspace programs can now open /dev/gui_events and read a stream of GUI_Event structs one at a time. I was stuck on a stupid problem where we'd reenter Scheduler::yield() due to having one of the has_data_available_for_reading() implementations using locks.
47 lines
801 B
C++
47 lines
801 B
C++
#pragma once
|
|
|
|
class Rect;
|
|
struct GUI_Point;
|
|
|
|
class Point {
|
|
public:
|
|
Point() { }
|
|
Point(int x, int y) : m_x(x) , m_y(y) { }
|
|
Point(const GUI_Point&);
|
|
|
|
int x() const { return m_x; }
|
|
int y() const { return m_y; }
|
|
|
|
void setX(int x) { m_x = x; }
|
|
void setY(int y) { m_y = y; }
|
|
|
|
void moveBy(int dx, int dy)
|
|
{
|
|
m_x += dx;
|
|
m_y += dy;
|
|
}
|
|
|
|
void moveBy(const Point& delta)
|
|
{
|
|
moveBy(delta.x(), delta.y());
|
|
}
|
|
|
|
void constrain(const Rect&);
|
|
|
|
bool operator==(const Point& other) const
|
|
{
|
|
return m_x == other.m_x
|
|
&& m_y == other.m_y;
|
|
}
|
|
|
|
bool operator!=(const Point& other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
operator GUI_Point() const;
|
|
|
|
private:
|
|
int m_x { 0 };
|
|
int m_y { 0 };
|
|
};
|