2012-11-13 01:55:26 +00: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/. */
|
|
|
|
|
|
|
|
#include "gfxRect.h"
|
|
|
|
|
|
|
|
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 {
|
|
|
|
RoundedRect(gfxRect &aRect, gfxCornerSizes &aCorners) : rect(aRect), corners(aCorners) { }
|
|
|
|
void Deflate(gfxFloat aTopWidth, gfxFloat aBottomWidth, gfxFloat aLeftWidth, gfxFloat aRightWidth) {
|
|
|
|
// deflate the internal rect
|
|
|
|
rect.x += aLeftWidth;
|
|
|
|
rect.y += aTopWidth;
|
2013-01-30 16:02:27 +00:00
|
|
|
rect.width = std::max(0., rect.width - aLeftWidth - aRightWidth);
|
|
|
|
rect.height = std::max(0., rect.height - aTopWidth - aBottomWidth);
|
2012-11-13 01:55:26 +00:00
|
|
|
|
2013-01-30 16:02:27 +00:00
|
|
|
corners.sizes[NS_CORNER_TOP_LEFT].width = std::max(0., corners.sizes[NS_CORNER_TOP_LEFT].width - aLeftWidth);
|
|
|
|
corners.sizes[NS_CORNER_TOP_LEFT].height = std::max(0., corners.sizes[NS_CORNER_TOP_LEFT].height - aTopWidth);
|
2012-11-13 01:55:26 +00:00
|
|
|
|
2013-01-30 16:02:27 +00:00
|
|
|
corners.sizes[NS_CORNER_TOP_RIGHT].width = std::max(0., corners.sizes[NS_CORNER_TOP_RIGHT].width - aRightWidth);
|
|
|
|
corners.sizes[NS_CORNER_TOP_RIGHT].height = std::max(0., corners.sizes[NS_CORNER_TOP_RIGHT].height - aTopWidth);
|
2012-11-13 01:55:26 +00:00
|
|
|
|
2013-01-30 16:02:27 +00:00
|
|
|
corners.sizes[NS_CORNER_BOTTOM_LEFT].width = std::max(0., corners.sizes[NS_CORNER_BOTTOM_LEFT].width - aLeftWidth);
|
|
|
|
corners.sizes[NS_CORNER_BOTTOM_LEFT].height = std::max(0., corners.sizes[NS_CORNER_BOTTOM_LEFT].height - aBottomWidth);
|
2012-11-13 01:55:26 +00:00
|
|
|
|
2013-01-30 16:02:27 +00:00
|
|
|
corners.sizes[NS_CORNER_BOTTOM_RIGHT].width = std::max(0., corners.sizes[NS_CORNER_BOTTOM_RIGHT].width - aRightWidth);
|
|
|
|
corners.sizes[NS_CORNER_BOTTOM_RIGHT].height = std::max(0., corners.sizes[NS_CORNER_BOTTOM_RIGHT].height - aBottomWidth);
|
2012-11-13 01:55:26 +00:00
|
|
|
}
|
|
|
|
gfxRect rect;
|
|
|
|
gfxCornerSizes corners;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|