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:
parent
6f37429f57
commit
77bac7216c
7 changed files with 341 additions and 28 deletions
23
Widgets/Point.h
Normal file
23
Widgets/Point.h
Normal 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 };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue