diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-23 16:03:01 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-24 00:25:22 +0100 |
commit | e7d4622ce098171f421ca55c4016f7641ef9dc03 (patch) | |
tree | a530145d0d9d1acbed8e2bdf03b7582b0492e125 /Userland/Applications | |
parent | 86b3769e597e64141f1e98550734842b087f027a (diff) | |
download | serenity-e7d4622ce098171f421ca55c4016f7641ef9dc03.zip |
Help: Port to LibMain :^)
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Help/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Userland/Applications/Help/main.cpp | 45 |
2 files changed, 14 insertions, 33 deletions
diff --git a/Userland/Applications/Help/CMakeLists.txt b/Userland/Applications/Help/CMakeLists.txt index c804dda3f8..1af4a46404 100644 --- a/Userland/Applications/Help/CMakeLists.txt +++ b/Userland/Applications/Help/CMakeLists.txt @@ -13,4 +13,4 @@ set(SOURCES ) serenity_app(Help ICON app-help) -target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop) +target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop LibMain) diff --git a/Userland/Applications/Help/main.cpp b/Userland/Applications/Help/main.cpp index 7ecac91743..47f1fa83df 100644 --- a/Userland/Applications/Help/main.cpp +++ b/Userland/Applications/Help/main.cpp @@ -10,6 +10,7 @@ #include <AK/URL.h> #include <LibCore/ArgsParser.h> #include <LibCore/File.h> +#include <LibCore/System.h> #include <LibDesktop/Launcher.h> #include <LibGUI/Action.h> #include <LibGUI/Application.h> @@ -28,6 +29,7 @@ #include <LibGUI/ToolbarContainer.h> #include <LibGUI/TreeView.h> #include <LibGUI/Window.h> +#include <LibMain/Main.h> #include <LibMarkdown/Document.h> #include <LibWeb/OutOfProcessWebView.h> #include <libgen.h> @@ -35,47 +37,26 @@ #include <string.h> #include <unistd.h> -int main(int argc, char* argv[]) +ErrorOr<int> serenity_main(Main::Arguments arguments) { - if (pledge("stdio recvfd sendfd rpath unix", nullptr) < 0) { - perror("pledge"); - return 1; - } - - auto app = GUI::Application::construct(argc, argv); - - if (unveil("/res", "r") < 0) { - perror("unveil"); - return 1; - } + TRY(Core::System::pledge("stdio recvfd sendfd rpath unix", nullptr)); + auto app = TRY(GUI::Application::try_create(arguments)); - if (unveil("/usr/share/man", "r") < 0) { - perror("unveil"); - return 1; - } - - if (unveil("/tmp/portal/launch", "rw") < 0) { - perror("unveil"); - return 1; - } - - if (unveil("/tmp/portal/webcontent", "rw") < 0) { - perror("unveil"); - return 1; - } - - unveil(nullptr, nullptr); + TRY(Core::System::unveil("/res", "r")); + TRY(Core::System::unveil("/usr/share/man", "r")); + TRY(Core::System::unveil("/tmp/portal/launch", "rw")); + TRY(Core::System::unveil("/tmp/portal/webcontent", "rw")); + TRY(Core::System::unveil(nullptr, nullptr)); const char* start_page = nullptr; Core::ArgsParser args_parser; args_parser.add_positional_argument(start_page, "Page to open at launch", "page", Core::ArgsParser::Required::No); - - args_parser.parse(argc, argv); + args_parser.parse(arguments); auto app_icon = GUI::Icon::default_icon("app-help"); - auto window = GUI::Window::construct(); + auto window = TRY(GUI::Window::try_create()); window->set_icon(app_icon.bitmap_for_size(16)); window->set_title("Help"); window->resize(570, 500); @@ -274,7 +255,7 @@ int main(int argc, char* argv[]) auto& help_menu = window->add_menu("&Help"); help_menu.add_action(GUI::CommonActions::make_about_action("Help", app_icon, window)); - auto context_menu = GUI::Menu::construct(); + auto context_menu = TRY(GUI::Menu::try_create()); context_menu->add_action(*go_back_action); context_menu->add_action(*go_forward_action); context_menu->add_action(*go_home_action); |