// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gfx/rect_base.h" #include "base/logging.h" #include "base/strings/stringprintf.h" // This file provides the implementation for RectBaese template and // used to instantiate the base class for Rect and RectF classes. #if !defined(GFX_IMPLEMENTATION) #error "This file is intended for UI implementation only" #endif namespace { template void AdjustAlongAxis(Type dst_origin, Type dst_size, Type* origin, Type* size) { *size = std::min(dst_size, *size); if (*origin < dst_origin) *origin = dst_origin; else *origin = std::min(dst_origin + dst_size, *origin + *size) - *size; } } // namespace namespace gfx { template void RectBase:: SetRect(Type x, Type y, Type width, Type height) { origin_.SetPoint(x, y); set_width(width); set_height(height); } template void RectBase:: Inset(const InsetsClass& insets) { Inset(insets.left(), insets.top(), insets.right(), insets.bottom()); } template void RectBase:: Inset(Type left, Type top, Type right, Type bottom) { origin_ += VectorClass(left, top); set_width(std::max(width() - left - right, static_cast(0))); set_height(std::max(height() - top - bottom, static_cast(0))); } template void RectBase:: Offset(Type horizontal, Type vertical) { origin_ += VectorClass(horizontal, vertical); } template void RectBase:: operator+=(const VectorClass& offset) { origin_ += offset; } template void RectBase:: operator-=(const VectorClass& offset) { origin_ -= offset; } template bool RectBase:: operator<(const Class& other) const { if (origin_ == other.origin_) { if (width() == other.width()) { return height() < other.height(); } else { return width() < other.width(); } } else { return origin_ < other.origin_; } } template bool RectBase:: Contains(Type point_x, Type point_y) const { return (point_x >= x()) && (point_x < right()) && (point_y >= y()) && (point_y < bottom()); } template bool RectBase:: Contains(const Class& rect) const { return (rect.x() >= x() && rect.right() <= right() && rect.y() >= y() && rect.bottom() <= bottom()); } template bool RectBase:: Intersects(const Class& rect) const { return !(IsEmpty() || rect.IsEmpty() || rect.x() >= right() || rect.right() <= x() || rect.y() >= bottom() || rect.bottom() <= y()); } template void RectBase:: Intersect(const Class& rect) { if (IsEmpty() || rect.IsEmpty()) { SetRect(0, 0, 0, 0); return; } Type rx = std::max(x(), rect.x()); Type ry = std::max(y(), rect.y()); Type rr = std::min(right(), rect.right()); Type rb = std::min(bottom(), rect.bottom()); if (rx >= rr || ry >= rb) rx = ry = rr = rb = 0; // non-intersecting SetRect(rx, ry, rr - rx, rb - ry); } template void RectBase:: Union(const Class& rect) { if (IsEmpty()) { *this = rect; return; } if (rect.IsEmpty()) return; Type rx = std::min(x(), rect.x()); Type ry = std::min(y(), rect.y()); Type rr = std::max(right(), rect.right()); Type rb = std::max(bottom(), rect.bottom()); SetRect(rx, ry, rr - rx, rb - ry); } template void RectBase:: Subtract(const Class& rect) { if (!Intersects(rect)) return; if (rect.Contains(*static_cast(this))) { SetRect(0, 0, 0, 0); return; } Type rx = x(); Type ry = y(); Type rr = right(); Type rb = bottom(); if (rect.y() <= y() && rect.bottom() >= bottom()) { // complete intersection in the y-direction if (rect.x() <= x()) { rx = rect.right(); } else if (rect.right() >= right()) { rr = rect.x(); } } else if (rect.x() <= x() && rect.right() >= right()) { // complete intersection in the x-direction if (rect.y() <= y()) { ry = rect.bottom(); } else if (rect.bottom() >= bottom()) { rb = rect.y(); } } SetRect(rx, ry, rr - rx, rb - ry); } template void RectBase:: AdjustToFit(const Class& rect) { Type new_x = x(); Type new_y = y(); Type new_width = width(); Type new_height = height(); AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width); AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); SetRect(new_x, new_y, new_width, new_height); } template PointClass RectBase::CenterPoint() const { return PointClass(x() + width() / 2, y() + height() / 2); } template void RectBase:: ClampToCenteredSize(const SizeClass& size) { Type new_width = std::min(width(), size.width()); Type new_height = std::min(height(), size.height()); Type new_x = x() + (width() - new_width) / 2; Type new_y = y() + (height() - new_height) / 2; SetRect(new_x, new_y, new_width, new_height); } template void RectBase:: SplitVertically(Class* left_half, Class* right_half) const { DCHECK(left_half); DCHECK(right_half); left_half->SetRect(x(), y(), width() / 2, height()); right_half->SetRect(left_half->right(), y(), width() - left_half->width(), height()); } template bool RectBase:: SharesEdgeWith(const Class& rect) const { return (y() == rect.y() && height() == rect.height() && (x() == rect.right() || right() == rect.x())) || (x() == rect.x() && width() == rect.width() && (y() == rect.bottom() || bottom() == rect.y())); } template Type RectBase:: ManhattanDistanceToPoint(const PointClass& point) const { Type x_distance = std::max(0, std::max( x() - point.x(), point.x() - right())); Type y_distance = std::max(0, std::max( y() - point.y(), point.y() - bottom())); return x_distance + y_distance; } } // namespace gfx