1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 19:15:08 +00:00

VisualBuilder: Tweak grid size and add an (empty) toolbox window.

This commit is contained in:
Andreas Kling 2019-04-11 04:01:17 +02:00
parent c6ffb3e2b8
commit c71ece77fa
5 changed files with 30 additions and 7 deletions

View file

@ -17,6 +17,8 @@
#include <signal.h>
#include <fcntl.h>
static GWindow* make_toolbox_window();
int main(int argc, char** argv)
{
GApplication app(argc, argv);
@ -47,10 +49,25 @@ int main(int argc, char** argv)
auto* window = new GWindow;
window->set_title(form1->name());
window->set_rect(20, 200, 640, 400);
window->set_rect(120, 200, 640, 400);
window->set_main_widget(form1);
window->set_should_exit_event_loop_on_close(true);
window->show();
auto* toolbox = make_toolbox_window();
toolbox->show();
return app.exec();
}
GWindow* make_toolbox_window()
{
auto* window = new GWindow;
window->set_title("Widgets");
window->set_rect(20, 200, 80, 300);
auto* widget = new GWidget;
widget->set_fill_with_background_color(true);
window->set_main_widget(widget);
return window;
}