/* * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include namespace Gfx { template<> DeprecatedString IntRect::to_deprecated_string() const { return DeprecatedString::formatted("[{},{} {}x{}]", x(), y(), width(), height()); } template<> DeprecatedString FloatRect::to_deprecated_string() const { return DeprecatedString::formatted("[{},{} {}x{}]", x(), y(), width(), height()); } } namespace IPC { template<> bool encode(Encoder& encoder, Gfx::IntRect const& rect) { encoder << rect.location() << rect.size(); return true; } template<> ErrorOr decode(Decoder& decoder) { auto point = TRY(decoder.decode()); auto size = TRY(decoder.decode()); return Gfx::IntRect { point, size }; } } template class Gfx::Rect; template class Gfx::Rect;