1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:27:35 +00:00

More rage hacking on Widgets. Some very basic text drawing. :^)

This commit is contained in:
Andreas Kling 2018-10-10 20:06:58 +02:00
parent 6f37429f57
commit 77bac7216c
7 changed files with 341 additions and 28 deletions

23
Widgets/Point.h Normal file
View file

@ -0,0 +1,23 @@
#pragma once
class Point {
public:
Point() { }
Point(int x, int y) : m_x(x) , m_y(y) { }
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;
}
private:
int m_x { 0 };
int m_y { 0 };
};