2012-11-13 05:55:26 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-06-22 17:37:28 +03:00
|
|
|
#ifndef ROUNDED_RECT_H
|
|
|
|
#define ROUNDED_RECT_H
|
|
|
|
|
2012-11-13 05:55:26 +04:00
|
|
|
#include "gfxRect.h"
|
2017-07-05 18:22:00 +03:00
|
|
|
#include "gfxTypes.h"
|
2014-11-01 13:45:10 +03:00
|
|
|
#include "mozilla/gfx/PathHelpers.h"
|
2012-11-13 05:55:26 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
/* A rounded rectangle abstraction.
|
|
|
|
*
|
|
|
|
* This can represent a rectangle with a different pair of radii on each corner.
|
|
|
|
*
|
|
|
|
* Note: CoreGraphics and Direct2D only support rounded rectangle with the same
|
|
|
|
* radii on all corners. However, supporting CSS's border-radius requires the extra flexibility. */
|
|
|
|
struct RoundedRect {
|
2014-11-01 13:45:10 +03:00
|
|
|
typedef mozilla::gfx::RectCornerRadii RectCornerRadii;
|
|
|
|
|
2017-11-10 01:07:32 +03:00
|
|
|
RoundedRect(const gfxRect& aRect, const RectCornerRadii& aCorners)
|
|
|
|
: rect(aRect)
|
|
|
|
, corners(aCorners)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-11-13 05:55:26 +04:00
|
|
|
void Deflate(gfxFloat aTopWidth, gfxFloat aBottomWidth, gfxFloat aLeftWidth, gfxFloat aRightWidth) {
|
|
|
|
// deflate the internal rect
|
|
|
|
rect.x += aLeftWidth;
|
|
|
|
rect.y += aTopWidth;
|
2017-08-14 15:28:11 +03:00
|
|
|
rect.SetWidth(std::max(0., rect.Width() - aLeftWidth - aRightWidth));
|
|
|
|
rect.SetHeight(std::max(0., rect.Height() - aTopWidth - aBottomWidth));
|
2012-11-13 05:55:26 +04:00
|
|
|
|
2017-01-04 13:15:30 +03:00
|
|
|
corners.radii[mozilla::eCornerTopLeft].width =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerTopLeft].width - aLeftWidth);
|
|
|
|
corners.radii[mozilla::eCornerTopLeft].height =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerTopLeft].height - aTopWidth);
|
|
|
|
|
|
|
|
corners.radii[mozilla::eCornerTopRight].width =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerTopRight].width - aRightWidth);
|
|
|
|
corners.radii[mozilla::eCornerTopRight].height =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerTopRight].height - aTopWidth);
|
|
|
|
|
|
|
|
corners.radii[mozilla::eCornerBottomLeft].width =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerBottomLeft].width - aLeftWidth);
|
|
|
|
corners.radii[mozilla::eCornerBottomLeft].height =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerBottomLeft].height - aBottomWidth);
|
|
|
|
|
|
|
|
corners.radii[mozilla::eCornerBottomRight].width =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerBottomRight].width - aRightWidth);
|
|
|
|
corners.radii[mozilla::eCornerBottomRight].height =
|
|
|
|
std::max(0., corners.radii[mozilla::eCornerBottomRight].height - aBottomWidth);
|
2012-11-13 05:55:26 +04:00
|
|
|
}
|
|
|
|
gfxRect rect;
|
2014-11-01 13:45:10 +03:00
|
|
|
RectCornerRadii corners;
|
2012-11-13 05:55:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
2017-06-22 17:37:28 +03:00
|
|
|
|
|
|
|
#endif
|