1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:47:34 +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

View file

@ -15,6 +15,8 @@ int main(int c, char** v)
fb.setRootWidget(&w);
Label l(&w);
l.setRect(Rect(100, 100, 300, 100));
l.setText("ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]");
return loop.exec();
}