mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:24:58 +00:00

The pattern to construct `Application` was to use the `try_create` method from the `C_OBJECT` macro. While being safe from an OOM perspective, this method doesn't propagate errors from the constructor. This patch make `Application` use the `C_OBJECT_ABSTRACT` and manually define a `create` method that can bubble up errors from the construction stage. This commit also removes the ability to use `argc` and `argv` to create an `Application`, only `Main`'s `Arguments` can be used. From a user point of view, the patch renames `try_create` => `create`, hence the huge number of modified files.
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2022, Jelle Raaijmakers <jelle@gmta.nl>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Demos/Tubes/Tubes.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibGUI/Application.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 prot_exec map_fixed"));
|
|
|
|
unsigned refresh_rate = 12;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.set_general_help("Screensaver rendering colorful moving tubes using LibGL");
|
|
args_parser.add_option(refresh_rate, "Refresh rate", "rate", 'r', "milliseconds");
|
|
args_parser.parse(arguments);
|
|
|
|
auto app = TRY(GUI::Application::create(arguments));
|
|
|
|
TRY(Core::System::pledge("stdio recvfd sendfd rpath prot_exec map_fixed"));
|
|
|
|
auto window = TRY(Desktop::Screensaver::create_window("Tubes"sv, "app-tubes"sv));
|
|
window->update();
|
|
|
|
auto tubes_widget = TRY(window->set_main_widget<Tubes>(refresh_rate));
|
|
tubes_widget->set_fill_with_background_color(false);
|
|
tubes_widget->set_override_cursor(Gfx::StandardCursor::Hidden);
|
|
window->show();
|
|
|
|
TRY(tubes_widget->create_buffer(window->size()));
|
|
tubes_widget->setup_view();
|
|
tubes_widget->reset_tubes();
|
|
|
|
window->move_to_front();
|
|
window->set_cursor(Gfx::StandardCursor::Hidden);
|
|
|
|
return app->exec();
|
|
}
|