mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 12:15:07 +00:00

No app-mail-settings icon exists (yet). app-mail is also what's being embedded in the executable, so let's stick with it.
37 lines
921 B
C++
37 lines
921 B
C++
/*
|
|
* Copyright (c) 2021, The SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "MailSettingsWindow.h"
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/Icon.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (pledge("stdio rpath cpath wpath recvfd sendfd unix proc exec", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
auto app = GUI::Application::construct(argc, argv);
|
|
|
|
if (pledge("stdio rpath cpath wpath recvfd sendfd proc exec", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-mail");
|
|
|
|
auto window = MailSettingsWindow::construct();
|
|
window->set_title("Mail Settings");
|
|
window->resize(400, 480);
|
|
window->set_resizable(false);
|
|
window->set_minimizable(false);
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
|
|
window->show();
|
|
return app->exec();
|
|
}
|