mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:12:45 +00:00 
			
		
		
		
	 3f3f45580a
			
		
	
	
		3f3f45580a
		
	
	
	
	
		
			
			Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Erlend Høier <Erlend@ReasonablePanic.com>
 | |
|  * Copyright (c) 2021, Julius Heijmen <julius.heijmen@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "AnalogClock.h"
 | |
| #include <LibCore/DateTime.h>
 | |
| #include <LibCore/System.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)
 | |
| {
 | |
|     auto app = TRY(GUI::Application::try_create(arguments));
 | |
| 
 | |
|     TRY(Core::System::pledge("stdio recvfd sendfd rpath"));
 | |
|     TRY(Core::System::unveil("/etc/timezone", "r"));
 | |
|     TRY(Core::System::unveil("/res", "r"));
 | |
|     TRY(Core::System::unveil(nullptr, nullptr));
 | |
| 
 | |
|     auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-analog-clock"sv));
 | |
|     auto window = TRY(GUI::Window::try_create());
 | |
|     window->set_title(Core::DateTime::now().to_string("%Y-%m-%d"sv));
 | |
|     window->set_icon(app_icon.bitmap_for_size(16));
 | |
|     window->resize(170, 170);
 | |
|     window->set_resizable(false);
 | |
|     auto clock = TRY(window->try_set_main_widget<AnalogClock>());
 | |
| 
 | |
|     auto show_window_frame_action = GUI::Action::create_checkable(
 | |
|         "Show Window &Frame", { Mod_Alt, KeyCode::Key_F }, [&](auto& action) {
 | |
|             clock->set_show_window_frame(action.is_checked());
 | |
|         });
 | |
|     show_window_frame_action->set_checked(clock->show_window_frame());
 | |
|     auto menu = TRY(GUI::Menu::try_create());
 | |
|     TRY(menu->try_add_action(*show_window_frame_action));
 | |
| 
 | |
|     clock->on_context_menu_request = [&](auto& event) {
 | |
|         menu->popup(event.screen_position());
 | |
|     };
 | |
| 
 | |
|     window->show();
 | |
|     return app->exec();
 | |
| }
 |