mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
a98ad191c7
This isn't comprehensive; just a result of a simple grep search.
82 lines
3.3 KiB
C++
82 lines
3.3 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, networkException <networkexception@serenityos.org>
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2021, Antonio Di Stefano <tonio9681@gmail.com>
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "MainWidget.h"
|
|
#include <LibConfig/Client.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibFileSystem/FileSystem.h>
|
|
#include <LibFileSystemAccessClient/Client.h>
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/Icon.h>
|
|
#include <LibGUI/Menu.h>
|
|
#include <LibGUI/Menubar.h>
|
|
#include <LibGUI/MessageBox.h>
|
|
#include <LibGUI/Window.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio recvfd sendfd thread rpath cpath wpath unix"));
|
|
|
|
auto app = TRY(GUI::Application::create(arguments));
|
|
|
|
Config::pledge_domain("ThemeEditor");
|
|
app->set_config_domain("ThemeEditor"_string);
|
|
|
|
StringView file_to_edit;
|
|
|
|
Core::ArgsParser parser;
|
|
parser.add_positional_argument(file_to_edit, "Theme file to edit", "file", Core::ArgsParser::Required::No);
|
|
parser.parse(arguments);
|
|
|
|
IGNORE_USE_IN_ESCAPING_LAMBDA Optional<ByteString> path = {};
|
|
|
|
if (auto error_or_path = FileSystem::absolute_path(file_to_edit); !file_to_edit.is_empty() && !error_or_path.is_error())
|
|
path = error_or_path.release_value();
|
|
|
|
TRY(Core::System::pledge("stdio recvfd sendfd thread rpath unix"));
|
|
TRY(Core::System::unveil("/tmp/session/%sid/portal/filesystemaccess", "rw"));
|
|
TRY(Core::System::unveil("/res", "r"));
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-theme-editor"sv);
|
|
IGNORE_USE_IN_ESCAPING_LAMBDA auto window = GUI::Window::construct();
|
|
|
|
IGNORE_USE_IN_ESCAPING_LAMBDA auto main_widget = TRY(ThemeEditor::MainWidget::try_create());
|
|
window->set_main_widget(main_widget);
|
|
|
|
if (path.has_value()) {
|
|
// Note: This is deferred to ensure that the window has already popped and any error dialog boxes would show up correctly.
|
|
app->event_loop().deferred_invoke(
|
|
[&window, &path, &main_widget]() {
|
|
auto response = FileSystemAccessClient::Client::the().request_file_read_only_approved(window, path.value());
|
|
if (!response.is_error()) {
|
|
auto load_from_file_result = main_widget->load_from_file(response.value().filename(), response.value().release_stream());
|
|
if (load_from_file_result.is_error())
|
|
GUI::MessageBox::show_error(window, ByteString::formatted("Loading theme from file has failed: {}", load_from_file_result.error()));
|
|
}
|
|
});
|
|
}
|
|
|
|
TRY(main_widget->initialize_menubar(window));
|
|
main_widget->update_title();
|
|
|
|
window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
|
|
return main_widget->request_close();
|
|
};
|
|
|
|
window->restore_size_and_position("ThemeEditor"sv, "Window"sv, { { 820, 520 } });
|
|
window->save_size_and_position_on_close("ThemeEditor"sv, "Window"sv);
|
|
window->set_resizable(false);
|
|
window->show();
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
return app->exec();
|
|
}
|