mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 09:14:21 +03:00
70846d701c
Various changes are needed to support this: - The directory is created by Core::Account on login (and located in /tmp). - Service's sockets are now deleted on exit (to allow re-creation) - SystemServer needs to handle SIGTERM to correctly destroy services.
71 lines
2.1 KiB
C++
71 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2021, Undefine <cqundefine@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "MailWidget.h"
|
|
#include <LibConfig/Client.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibDesktop/Launcher.h>
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/Icon.h>
|
|
#include <LibGUI/Menu.h>
|
|
#include <LibGUI/Menubar.h>
|
|
#include <LibGUI/Window.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio recvfd sendfd rpath unix inet"));
|
|
|
|
auto app = TRY(GUI::Application::try_create(arguments));
|
|
|
|
Config::pledge_domain("Mail");
|
|
|
|
TRY(Core::System::unveil("/res", "r"));
|
|
TRY(Core::System::unveil("/etc", "r"));
|
|
TRY(Core::System::unveil("/tmp/portal/webcontent", "rw"));
|
|
TRY(Core::System::unveil("/tmp/portal/lookup", "rw"));
|
|
TRY(Core::System::unveil("/tmp/100/portal/launch", "rw"));
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
TRY(Desktop::Launcher::add_allowed_url(URL::create_with_file_protocol("/bin/MailSettings")));
|
|
TRY(Desktop::Launcher::add_allowed_handler_with_any_url("/bin/MailSettings"));
|
|
TRY(Desktop::Launcher::seal_allowlist());
|
|
|
|
auto window = GUI::Window::construct();
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-mail"sv);
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
|
|
auto mail_widget = TRY(window->try_set_main_widget<MailWidget>());
|
|
|
|
window->set_title("Mail");
|
|
window->resize(640, 400);
|
|
|
|
auto& file_menu = window->add_menu("&File");
|
|
|
|
file_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) {
|
|
mail_widget->on_window_close();
|
|
app->quit();
|
|
}));
|
|
|
|
auto& help_menu = window->add_menu("&Help");
|
|
help_menu.add_action(GUI::CommonActions::make_about_action("Mail", app_icon, window));
|
|
|
|
window->on_close_request = [&] {
|
|
mail_widget->on_window_close();
|
|
return GUI::Window::CloseRequestDecision::Close;
|
|
};
|
|
|
|
window->show();
|
|
|
|
bool should_continue = mail_widget->connect_and_login();
|
|
if (!should_continue)
|
|
return 1;
|
|
|
|
return app->exec();
|
|
}
|