mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00

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.
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#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();
|
|
}
|