mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
74 lines
2.6 KiB
C++
74 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, Julius Heijmen <julius.heijmen@gmail.com>
|
|
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
|
|
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "MainWidget.h"
|
|
#include <AK/URL.h>
|
|
#include <LibConfig/Client.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibDesktop/Launcher.h>
|
|
#include <LibFileSystemAccessClient/Client.h>
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/TextEditor.h>
|
|
#include <LibGUI/Window.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio thread recvfd sendfd cpath rpath wpath unix"));
|
|
auto app = TRY(GUI::Application::create(arguments));
|
|
|
|
Config::pledge_domains({ "GMLPlayground", "Calendar" });
|
|
app->set_config_domain(TRY("GMLPlayground"_string));
|
|
|
|
TRY(Core::System::unveil("/res", "r"));
|
|
TRY(Core::System::unveil("/tmp/session/%sid/portal/launch", "rw"));
|
|
TRY(Core::System::unveil("/tmp/session/%sid/portal/filesystemaccess", "rw"));
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
TRY(Desktop::Launcher::add_allowed_handler_with_only_specific_urls("/bin/Help", { URL::create_with_file_scheme("/usr/share/man/man1/Applications/GMLPlayground.md") }));
|
|
TRY(Desktop::Launcher::seal_allowlist());
|
|
|
|
StringView path;
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_positional_argument(path, "GML file to edit", "file", Core::ArgsParser::Required::No);
|
|
args_parser.parse(arguments);
|
|
|
|
auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-gml-playground"sv));
|
|
auto window = TRY(GUI::Window::try_create());
|
|
window->set_title("GML Playground");
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
window->resize(800, 600);
|
|
|
|
auto main_widget = TRY(window->set_main_widget<MainWidget>(app_icon));
|
|
|
|
TRY(main_widget->initialize_menubar(window));
|
|
|
|
window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
|
|
return main_widget->request_close();
|
|
};
|
|
|
|
window->show();
|
|
|
|
if (path.is_empty()) {
|
|
main_widget->editor().set_text(R"~~~(@GUI::Frame {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
}
|
|
|
|
// Now add some widgets!
|
|
}
|
|
)~~~"sv);
|
|
main_widget->editor().set_cursor(4, 28); // after "...widgets!"
|
|
main_widget->update_title();
|
|
} else {
|
|
auto file = TRY(FileSystemAccessClient::Client::the().request_file_read_only_approved(window, path));
|
|
main_widget->load_file(move(file));
|
|
}
|
|
|
|
return app->exec();
|
|
}
|