1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/*
* Copyright (c) 2012, Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* 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
* OWNER 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.
*/
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_LAYOUT_SIZE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_LAYOUT_SIZE_H_
#include <iosfwd>
#include "third_party/blink/renderer/platform/geometry/double_size.h"
#include "third_party/blink/renderer/platform/geometry/float_point.h"
#include "third_party/blink/renderer/platform/geometry/float_size.h"
#include "third_party/blink/renderer/platform/geometry/int_size.h"
#include "third_party/blink/renderer/platform/layout_unit.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
#include "third_party/blink/renderer/platform/wtf/forward.h"
namespace blink {
enum AspectRatioFit { kAspectRatioFitShrink, kAspectRatioFitGrow };
class PLATFORM_EXPORT LayoutSize {
DISALLOW_NEW();
public:
constexpr LayoutSize() = default;
explicit LayoutSize(const IntSize& size)
: width_(size.Width()), height_(size.Height()) {}
constexpr LayoutSize(LayoutUnit width, LayoutUnit height)
: width_(width), height_(height) {}
LayoutSize(int width, int height)
: width_(LayoutUnit(width)), height_(LayoutUnit(height)) {}
LayoutSize(float width, float height)
: width_(LayoutUnit(width)), height_(LayoutUnit(height)) {}
explicit LayoutSize(const FloatSize& size)
: width_(size.Width()), height_(size.Height()) {}
explicit LayoutSize(const DoubleSize& size)
: width_(size.Width()), height_(size.Height()) {}
constexpr LayoutUnit Width() const { return width_; }
constexpr LayoutUnit Height() const { return height_; }
void SetWidth(LayoutUnit width) { width_ = width; }
void SetHeight(LayoutUnit height) { height_ = height; }
constexpr bool IsEmpty() const {
return width_.RawValue() <= 0 || height_.RawValue() <= 0;
}
constexpr bool IsZero() const { return !width_ && !height_; }
float AspectRatio() const { return width_.ToFloat() / height_.ToFloat(); }
void Expand(LayoutUnit width, LayoutUnit height) {
width_ += width;
height_ += height;
}
void Expand(int width, int height) {
Expand(LayoutUnit(width), LayoutUnit(height));
}
void Shrink(int width, int height) {
Shrink(LayoutUnit(width), LayoutUnit(height));
}
void Shrink(LayoutUnit width, LayoutUnit height) {
width_ -= width;
height_ -= height;
}
void Scale(float scale) {
width_ *= scale;
height_ *= scale;
}
void Scale(float width_scale, float height_scale) {
width_ *= width_scale;
height_ *= height_scale;
}
LayoutSize ExpandedTo(const LayoutSize& other) const {
return LayoutSize(width_ > other.width_ ? width_ : other.width_,
height_ > other.height_ ? height_ : other.height_);
}
LayoutSize ExpandedTo(const IntSize& other) const {
return LayoutSize(
width_ > other.Width() ? width_ : LayoutUnit(other.Width()),
height_ > other.Height() ? height_ : LayoutUnit(other.Height()));
}
LayoutSize ShrunkTo(const LayoutSize& other) const {
return LayoutSize(width_ < other.width_ ? width_ : other.width_,
height_ < other.height_ ? height_ : other.height_);
}
void ClampNegativeToZero() { *this = ExpandedTo(LayoutSize()); }
void ClampToMinimumSize(const LayoutSize& minimum_size) {
if (width_ < minimum_size.Width())
width_ = minimum_size.Width();
if (height_ < minimum_size.Height())
height_ = minimum_size.Height();
}
LayoutSize TransposedSize() const { return LayoutSize(height_, width_); }
LayoutSize FitToAspectRatio(const LayoutSize& aspect_ratio,
AspectRatioFit fit) const {
const float height_float = Height().ToFloat();
const float width_float = Width().ToFloat();
float height_scale = height_float / aspect_ratio.Height().ToFloat();
float width_scale = width_float / aspect_ratio.Width().ToFloat();
if ((width_scale > height_scale) != (fit == kAspectRatioFitGrow)) {
return LayoutSize(
height_float * aspect_ratio.Width() / aspect_ratio.Height(),
Height());
}
return LayoutSize(
Width(), width_float * aspect_ratio.Height() / aspect_ratio.Width());
}
LayoutSize Fraction() const {
return LayoutSize(width_.Fraction(), height_.Fraction());
}
String ToString() const;
private:
LayoutUnit width_, height_;
};
inline LayoutSize& operator+=(LayoutSize& a, const LayoutSize& b) {
a.SetWidth(a.Width() + b.Width());
a.SetHeight(a.Height() + b.Height());
return a;
}
inline LayoutSize& operator-=(LayoutSize& a, const LayoutSize& b) {
a.SetWidth(a.Width() - b.Width());
a.SetHeight(a.Height() - b.Height());
return a;
}
inline LayoutSize& operator-=(LayoutSize& a, const IntSize& b) {
a.SetWidth(a.Width() - b.Width());
a.SetHeight(a.Height() - b.Height());
return a;
}
inline LayoutSize operator+(const LayoutSize& a, const LayoutSize& b) {
return LayoutSize(a.Width() + b.Width(), a.Height() + b.Height());
}
inline LayoutSize operator+(const LayoutSize& a, const IntSize& b) {
return LayoutSize(a.Width() + b.Width(), a.Height() + b.Height());
}
inline LayoutSize operator-(const LayoutSize& a, const LayoutSize& b) {
return LayoutSize(a.Width() - b.Width(), a.Height() - b.Height());
}
inline LayoutSize operator-(const LayoutSize& size) {
return LayoutSize(-size.Width(), -size.Height());
}
inline LayoutSize operator*(const LayoutSize& a, const float scale) {
return LayoutSize(a.Width() * scale, a.Height() * scale);
}
constexpr bool operator==(const LayoutSize& a, const LayoutSize& b) {
return a.Width() == b.Width() && a.Height() == b.Height();
}
inline bool operator==(const LayoutSize& a, const IntSize& b) {
return a.Width() == b.Width() && a.Height() == b.Height();
}
constexpr bool operator!=(const LayoutSize& a, const LayoutSize& b) {
return !(a == b);
}
inline bool operator!=(const LayoutSize& a, const IntSize& b) {
return a.Width() != b.Width() || a.Height() != b.Height();
}
constexpr FloatPoint operator+(const FloatPoint& a, const LayoutSize& b) {
return FloatPoint(a.X() + b.Width(), a.Y() + b.Height());
}
inline IntSize FlooredIntSize(const LayoutSize& s) {
return IntSize(s.Width().Floor(), s.Height().Floor());
}
inline IntSize RoundedIntSize(const LayoutSize& s) {
return IntSize(s.Width().Round(), s.Height().Round());
}
inline LayoutSize RoundedLayoutSize(const FloatSize& s) {
return LayoutSize(s);
}
PLATFORM_EXPORT std::ostream& operator<<(std::ostream&, const LayoutSize&);
PLATFORM_EXPORT WTF::TextStream& operator<<(WTF::TextStream&,
const LayoutSize&);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_LAYOUT_SIZE_H_
|