2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-10-12 10:29:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-03 14:26:47 +00:00
|
|
|
#include <AK/Format.h>
|
2020-02-06 11:04:00 +00:00
|
|
|
#include <LibGfx/Orientation.h>
|
2020-03-29 17:03:13 +00:00
|
|
|
#include <LibIPC/Forward.h>
|
2019-02-10 10:07:13 +00:00
|
|
|
|
2020-02-06 10:56:38 +00:00
|
|
|
namespace Gfx {
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
template<typename T>
|
|
|
|
class Size {
|
2018-10-12 10:29:58 +00:00
|
|
|
public:
|
2020-09-18 07:49:51 +00:00
|
|
|
Size() { }
|
2020-07-26 04:31:47 +00:00
|
|
|
|
|
|
|
Size(T w, T h)
|
2019-06-07 09:46:55 +00:00
|
|
|
: m_width(w)
|
|
|
|
, m_height(h)
|
|
|
|
{
|
|
|
|
}
|
2018-10-12 10:29:58 +00:00
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
template<typename U>
|
|
|
|
Size(U width, U height)
|
|
|
|
: m_width(width)
|
|
|
|
, m_height(height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
explicit Size(const Size<U>& other)
|
|
|
|
: m_width(other.width())
|
|
|
|
, m_height(other.height())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-20 23:21:23 +00:00
|
|
|
bool is_null() const { return !m_width && !m_height; }
|
|
|
|
bool is_empty() const { return m_width <= 0 || m_height <= 0; }
|
2018-10-12 10:29:58 +00:00
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
T width() const { return m_width; }
|
|
|
|
T height() const { return m_height; }
|
2018-10-12 10:29:58 +00:00
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
T area() const { return width() * height(); }
|
2019-02-07 22:13:47 +00:00
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
void set_width(T w) { m_width = w; }
|
|
|
|
void set_height(T h) { m_height = h; }
|
2018-10-12 10:29:58 +00:00
|
|
|
|
2020-10-03 01:24:34 +00:00
|
|
|
template<typename U>
|
|
|
|
bool contains(const Size<U>& other) const
|
|
|
|
{
|
|
|
|
return other.m_width <= m_width && other.m_height <= m_height;
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
bool operator==(const Size<T>& other) const
|
2019-01-09 01:06:04 +00:00
|
|
|
{
|
2019-06-07 09:46:55 +00:00
|
|
|
return m_width == other.m_width && m_height == other.m_height;
|
2019-01-09 01:06:04 +00:00
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
bool operator!=(const Size<T>& other) const
|
2019-02-09 10:19:38 +00:00
|
|
|
{
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
Size<T>& operator-=(const Size<T>& other)
|
2019-02-10 10:07:13 +00:00
|
|
|
{
|
|
|
|
m_width -= other.m_width;
|
|
|
|
m_height -= other.m_height;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
Size<T>& operator+=(const Size<T>& other)
|
2019-03-19 02:00:42 +00:00
|
|
|
{
|
|
|
|
m_width += other.m_width;
|
|
|
|
m_height += other.m_height;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-12-18 16:15:38 +00:00
|
|
|
Size<T> operator*(T factor) const { return { m_width * factor, m_height * factor }; }
|
|
|
|
|
|
|
|
Size<T>& operator*=(T factor)
|
|
|
|
{
|
|
|
|
m_width *= factor;
|
|
|
|
m_height *= factor;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
T primary_size_for_orientation(Orientation orientation) const
|
2019-07-20 20:16:40 +00:00
|
|
|
{
|
|
|
|
return orientation == Orientation::Vertical ? height() : width();
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
void set_primary_size_for_orientation(Orientation orientation, T value)
|
2019-07-20 20:16:40 +00:00
|
|
|
{
|
2020-07-26 04:31:47 +00:00
|
|
|
if (orientation == Orientation::Vertical) {
|
2019-07-20 20:16:40 +00:00
|
|
|
set_height(value);
|
2020-07-26 04:31:47 +00:00
|
|
|
} else {
|
2019-07-20 20:16:40 +00:00
|
|
|
set_width(value);
|
2020-07-26 04:31:47 +00:00
|
|
|
}
|
2019-07-20 20:16:40 +00:00
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
T secondary_size_for_orientation(Orientation orientation) const
|
2019-07-20 20:16:40 +00:00
|
|
|
{
|
|
|
|
return orientation == Orientation::Vertical ? width() : height();
|
|
|
|
}
|
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
void set_secondary_size_for_orientation(Orientation orientation, T value)
|
2019-07-20 20:16:40 +00:00
|
|
|
{
|
2020-07-26 04:31:47 +00:00
|
|
|
if (orientation == Orientation::Vertical) {
|
2019-07-20 20:16:40 +00:00
|
|
|
set_width(value);
|
2020-07-26 04:31:47 +00:00
|
|
|
} else {
|
2019-07-20 20:16:40 +00:00
|
|
|
set_height(value);
|
2020-07-26 04:31:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
Size<U> to_type() const
|
|
|
|
{
|
|
|
|
return Size<U>(*this);
|
2019-07-20 20:16:40 +00:00
|
|
|
}
|
|
|
|
|
2020-02-14 23:58:14 +00:00
|
|
|
String to_string() const;
|
2019-02-10 10:07:13 +00:00
|
|
|
|
2018-10-12 10:29:58 +00:00
|
|
|
private:
|
2020-07-26 04:31:47 +00:00
|
|
|
T m_width { 0 };
|
|
|
|
T m_height { 0 };
|
2018-10-12 10:29:58 +00:00
|
|
|
};
|
2019-07-04 04:45:50 +00:00
|
|
|
|
2020-07-26 04:31:47 +00:00
|
|
|
template<typename T>
|
|
|
|
const LogStream& operator<<(const LogStream& stream, const Gfx::Size<T>& size)
|
|
|
|
{
|
|
|
|
return stream << size.to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
using IntSize = Size<int>;
|
|
|
|
using FloatSize = Size<float>;
|
2020-02-06 10:56:38 +00:00
|
|
|
|
|
|
|
}
|
2020-02-15 11:04:35 +00:00
|
|
|
|
2021-01-03 14:26:47 +00:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct Formatter<Gfx::Size<T>> : Formatter<StringView> {
|
|
|
|
void format(FormatBuilder& builder, const Gfx::Size<T>& value)
|
|
|
|
{
|
|
|
|
Formatter<StringView>::format(builder, value.to_string());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-15 11:04:35 +00:00
|
|
|
namespace IPC {
|
2020-07-26 04:31:47 +00:00
|
|
|
|
2020-06-10 08:57:59 +00:00
|
|
|
bool encode(Encoder&, const Gfx::IntSize&);
|
|
|
|
bool decode(Decoder&, Gfx::IntSize&);
|
2020-07-26 04:31:47 +00:00
|
|
|
|
2020-02-15 11:04:35 +00:00
|
|
|
}
|