Hook everything up to run the GUI on top of the kernel.

Okay things kinda sorta work. Both Bochs and QEMU now boot into GUI mode.
There's a ton of stuff that doesn't make sense and so many things to rework.

Still it's quite cool to have made it this far. :^)
This commit is contained in:
Andreas Kling 2019-01-10 23:19:29 +01:00
commit f6d2c3ed87
Notes: sideshowbarker 2024-07-19 16:05:11 +09:00
17 changed files with 117 additions and 23 deletions

View file

@ -47,7 +47,7 @@ void MsgBox(Window* owner, String&& text)
textWidth,
textHeight
});
label->setText(std::move(text));
label->setText(move(text));
auto* button = new Button(widget);
button->setCaption("OK");
button->setWindowRelativeRect(buttonRect);