ladybird/Userland/Demos/WidgetGallery/main.cpp

59 lines
1.3 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "GalleryWidget.h"
#include <LibGUI/Application.h>
2020-07-08 15:44:32 -03:00
#include <LibGUI/Icon.h>
#include <LibGUI/Window.h>
#include <unistd.h>
int main(int argc, char** argv)
{
if (pledge("stdio recvfd sendfd rpath unix thread", nullptr) < 0) {
perror("pledge");
return 1;
}
auto app = GUI::Application::construct(argc, argv);
if (pledge("stdio recvfd sendfd rpath thread", nullptr) < 0) {
2020-11-01 16:37:48 -03:00
perror("pledge");
return 1;
}
if (unveil("/res", "r") < 0) {
perror("unveil");
return 1;
}
if (unveil("/home/anon", "r") < 0) {
perror("unveil");
return 1;
}
if (unveil("/etc/FileIconProvider.ini", "r") < 0) {
perror("unveil");
return 1;
}
2020-11-01 16:37:48 -03:00
if (unveil(nullptr, nullptr) < 0) {
perror("unveil");
return 1;
}
2020-07-08 15:44:32 -03:00
auto app_icon = GUI::Icon::default_icon("app-widget-gallery");
auto window = GUI::Window::construct();
window->resize(430, 480);
window->set_title("Widget Gallery");
2020-07-08 15:44:32 -03:00
window->set_icon(app_icon.bitmap_for_size(16));
window->set_main_widget<GalleryWidget>();
window->show();
return app->exec();
}