Add a CheckBox widget.

This commit is contained in:
Andreas Kling 2018-10-12 14:15:14 +02:00
commit 16576112b0
Notes: sideshowbarker 2024-07-19 18:50:09 +09:00
13 changed files with 177 additions and 36 deletions

View file

@ -16,7 +16,7 @@ TerminalWidget::TerminalWidget(Widget* parent)
auto& font = Font::defaultFont();
setRect({ 0, 0, (columns() * font.glyphWidth()) + 4, (rows() * font.glyphHeight()) + 4 });
setWindowRelativeRect({ 0, 0, (columns() * font.glyphWidth()) + 4, (rows() * font.glyphHeight()) + 4 });
printf("rekt: %d x %d\n", width(), height());
m_screen = new CharacterWithAttributes[rows() * columns()];