summaryrefslogtreecommitdiff
path: root/Userland/Applications/Welcome/main.cpp
blob: 988e4396385cb29e7f6a4e86c12f9f5b8e7e1a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "WelcomeWidget.h"
#include <LibConfig/Client.h>
#include <LibCore/System.h>
#include <LibGUI/Application.h>
#include <LibGUI/Icon.h>
#include <LibGUI/Window.h>
#include <LibMain/Main.h>
#include <unistd.h>

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
    TRY(Core::System::pledge("stdio recvfd sendfd rpath unix proc exec"));
    auto app = TRY(GUI::Application::try_create(arguments));

    Config::pledge_domain("SystemServer");

    TRY(Core::System::unveil("/res", "r"));
    TRY(Core::System::unveil("/home", "r"));
    TRY(Core::System::unveil("/tmp/portal/webcontent", "rw"));
    TRY(Core::System::unveil("/bin/Help", "x"));
    TRY(Core::System::unveil(nullptr, nullptr));
    auto app_icon = GUI::Icon::default_icon("app-welcome");

    auto window = TRY(GUI::Window::try_create());
    window->resize(480, 250);
    window->center_on_screen();

    window->set_title("Welcome");
    window->set_minimum_size(480, 250);
    window->set_icon(app_icon.bitmap_for_size(16));
    auto welcome_widget = TRY(window->try_set_main_widget<WelcomeWidget>());

    window->show();

    return app->exec();
}