1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:08:11 +00:00

Base: Add the serenity-application HackStudio template

This is a template which instantiates into what you'd write to start out
a basic Serenity GUI application. It contains a CMakeLists.txt file
which describes what each declaration does, a simple GUI application
which uses layouts, widgets and callbacks, and comes with a minimal set
of pledges which the user can add to as necessary.
This commit is contained in:
sin-ack 2021-08-12 19:55:17 +00:00 committed by Andreas Kling
parent 949d27f21b
commit 7adc5725b8
4 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,40 @@
#include <LibGUI/Application.h>
#include <LibGUI/BoxLayout.h>
#include <LibGUI/Button.h>
#include <LibGUI/Frame.h>
#include <LibGUI/MessageBox.h>
#include <unistd.h>
int main(int argc, char** argv)
{
if (pledge("stdio recvfd sendfd rpath wpath cpath unix", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
if (pledge("stdio recvfd sendfd rpath", nullptr) < 0) {
perror("pledge");
return 1;
}
auto window = GUI::Window::construct();
window->set_title("Form1");
window->resize(96, 44);
window->set_resizable(false);
auto& main_widget = window->set_main_widget<GUI::Widget>();
main_widget.set_fill_with_background_color(true);
auto& layout = main_widget.set_layout<GUI::VerticalBoxLayout>();
layout.set_margins({ 16, 16, 16, 16 });
auto& button = main_widget.add<GUI::Button>("Click me!");
button.on_click = [&](auto) {
GUI::MessageBox::show(window, "Hello friends!", ":^)");
};
window->show();
return app->exec();
}