mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:22:43 +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')
		
	
			
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/ByteString.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <LibCore/ConfigFile.h>
 | |
| #include <LibGfx/Rect.h>
 | |
| #include <LibGfx/Size.h>
 | |
| #include <LibIPC/Forward.h>
 | |
| 
 | |
| namespace WindowServer {
 | |
| 
 | |
| class ScreenLayout {
 | |
| public:
 | |
|     struct Screen {
 | |
|         enum class Mode {
 | |
|             Invalid,
 | |
|             Device,
 | |
|             Virtual,
 | |
|         } mode;
 | |
|         Optional<ByteString> device;
 | |
|         Gfx::IntPoint location;
 | |
|         Gfx::IntSize resolution;
 | |
|         int scale_factor;
 | |
| 
 | |
|         Gfx::IntRect virtual_rect() const
 | |
|         {
 | |
|             return { location, { resolution.width() / scale_factor, resolution.height() / scale_factor } };
 | |
|         }
 | |
| 
 | |
|         static StringView mode_to_string(Mode mode)
 | |
|         {
 | |
| #define __ENUMERATE_MODE_ENUM(val) \
 | |
|     case Mode::val:                \
 | |
|         return #val##sv;
 | |
| 
 | |
|             switch (mode) {
 | |
|                 __ENUMERATE_MODE_ENUM(Invalid)
 | |
|                 __ENUMERATE_MODE_ENUM(Device)
 | |
|                 __ENUMERATE_MODE_ENUM(Virtual)
 | |
|             }
 | |
|             VERIFY_NOT_REACHED();
 | |
| 
 | |
| #undef __ENUMERATE_MODE_ENUM
 | |
|         }
 | |
| 
 | |
|         bool operator==(Screen const&) const = default;
 | |
|     };
 | |
| 
 | |
|     Vector<Screen> screens;
 | |
|     unsigned main_screen_index { 0 };
 | |
| 
 | |
|     bool is_valid(ByteString* error_msg = nullptr) const;
 | |
|     bool normalize();
 | |
|     bool load_config(Core::ConfigFile const& config_file, ByteString* error_msg = nullptr);
 | |
|     bool save_config(Core::ConfigFile& config_file, bool sync = true) const;
 | |
|     bool try_auto_add_display_connector(ByteString const&);
 | |
| 
 | |
|     // TODO: spaceship operator
 | |
|     bool operator!=(ScreenLayout const& other) const;
 | |
|     bool operator==(ScreenLayout const& other) const
 | |
|     {
 | |
|         return !(*this != other);
 | |
|     }
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace IPC {
 | |
| 
 | |
| template<>
 | |
| ErrorOr<void> encode(Encoder&, WindowServer::ScreenLayout::Screen const&);
 | |
| 
 | |
| template<>
 | |
| ErrorOr<WindowServer::ScreenLayout::Screen> decode(Decoder&);
 | |
| 
 | |
| template<>
 | |
| ErrorOr<void> encode(Encoder&, WindowServer::ScreenLayout const&);
 | |
| 
 | |
| template<>
 | |
| ErrorOr<WindowServer::ScreenLayout> decode(Decoder&);
 | |
| 
 | |
| }
 |