mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:52:45 +00:00 
			
		
		
		
	 5e1499d104
			
		
	
	
		5e1499d104
		
	
	
	
	
		
			
			This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.6 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::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 = GUI::Window::construct();
 | |
|     window->set_title(Core::DateTime::now().to_byte_string("%Y-%m-%d"sv));
 | |
|     window->set_icon(app_icon.bitmap_for_size(16));
 | |
|     window->resize(170, 170);
 | |
|     window->set_resizable(false);
 | |
|     auto clock = window->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 = GUI::Menu::construct();
 | |
|     menu->add_action(*show_window_frame_action);
 | |
| 
 | |
|     clock->on_context_menu_request = [&](auto& event) {
 | |
|         menu->popup(event.screen_position());
 | |
|     };
 | |
| 
 | |
|     window->show();
 | |
|     return app->exec();
 | |
| }
 |