2005-04-06 11:36:31 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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/. */
|
2005-04-06 11:36:31 +04:00
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#ifndef GFX_RECT_H
|
|
|
|
#define GFX_RECT_H
|
2005-04-08 09:44:32 +04:00
|
|
|
|
|
|
|
#include "gfxTypes.h"
|
2005-06-28 13:18:55 +04:00
|
|
|
#include "gfxPoint.h"
|
2011-04-19 07:07:48 +04:00
|
|
|
#include "nsDebug.h"
|
2013-09-07 06:15:49 +04:00
|
|
|
#include "nsRect.h"
|
2011-06-24 21:41:16 +04:00
|
|
|
#include "mozilla/gfx/BaseMargin.h"
|
|
|
|
#include "mozilla/gfx/BaseRect.h"
|
2015-12-03 02:52:00 +03:00
|
|
|
#include "mozilla/gfx/MatrixFwd.h"
|
2012-02-24 19:50:37 +04:00
|
|
|
#include "mozilla/Assertions.h"
|
2011-04-19 07:07:48 +04:00
|
|
|
|
2015-07-10 02:27:38 +03:00
|
|
|
struct gfxQuad;
|
|
|
|
|
2011-06-24 21:41:16 +04:00
|
|
|
struct gfxMargin : public mozilla::gfx::BaseMargin<gfxFloat, gfxMargin> {
|
|
|
|
typedef mozilla::gfx::BaseMargin<gfxFloat, gfxMargin> Super;
|
2011-04-19 07:07:48 +04:00
|
|
|
|
|
|
|
// Constructors
|
|
|
|
gfxMargin() : Super() {}
|
|
|
|
gfxMargin(const gfxMargin& aMargin) : Super(aMargin) {}
|
2013-03-06 12:05:55 +04:00
|
|
|
gfxMargin(gfxFloat aTop, gfxFloat aRight, gfxFloat aBottom, gfxFloat aLeft)
|
|
|
|
: Super(aTop, aRight, aBottom, aLeft) {}
|
2011-04-19 07:07:48 +04:00
|
|
|
};
|
2005-04-06 11:36:31 +04:00
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
struct gfxRect :
|
2011-06-24 21:41:16 +04:00
|
|
|
public mozilla::gfx::BaseRect<gfxFloat, gfxRect, gfxPoint, gfxSize, gfxMargin> {
|
|
|
|
typedef mozilla::gfx::BaseRect<gfxFloat, gfxRect, gfxPoint, gfxSize, gfxMargin> Super;
|
2005-04-06 11:36:31 +04:00
|
|
|
|
2011-04-19 07:07:48 +04:00
|
|
|
gfxRect() : Super() {}
|
|
|
|
gfxRect(const gfxPoint& aPos, const gfxSize& aSize) :
|
|
|
|
Super(aPos, aSize) {}
|
|
|
|
gfxRect(gfxFloat aX, gfxFloat aY, gfxFloat aWidth, gfxFloat aHeight) :
|
|
|
|
Super(aX, aY, aWidth, aHeight) {}
|
2011-03-09 20:27:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if all components of this rect are within
|
|
|
|
* aEpsilon of integer coordinates, defined as
|
|
|
|
* |round(coord) - coord| <= |aEpsilon|
|
|
|
|
* for x,y,width,height.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool WithinEpsilonOfIntegerPixels(gfxFloat aEpsilon) const;
|
2007-05-01 07:31:25 +04:00
|
|
|
|
2017-01-04 12:18:49 +03:00
|
|
|
gfxPoint AtCorner(mozilla::Corner corner) const {
|
2008-07-23 21:25:00 +04:00
|
|
|
switch (corner) {
|
2017-01-04 13:15:30 +03:00
|
|
|
case mozilla::eCornerTopLeft: return TopLeft();
|
|
|
|
case mozilla::eCornerTopRight: return TopRight();
|
|
|
|
case mozilla::eCornerBottomRight: return BottomRight();
|
|
|
|
case mozilla::eCornerBottomLeft: return BottomLeft();
|
2008-07-23 21:25:00 +04:00
|
|
|
}
|
|
|
|
return gfxPoint(0.0, 0.0);
|
|
|
|
}
|
|
|
|
|
2014-06-28 14:13:13 +04:00
|
|
|
gfxPoint CCWCorner(mozilla::Side side) const {
|
2010-04-27 20:15:02 +04:00
|
|
|
switch (side) {
|
2016-11-18 13:12:25 +03:00
|
|
|
case mozilla::eSideTop: return TopLeft();
|
|
|
|
case mozilla::eSideRight: return TopRight();
|
|
|
|
case mozilla::eSideBottom: return BottomRight();
|
|
|
|
case mozilla::eSideLeft: return BottomLeft();
|
2010-04-27 20:15:02 +04:00
|
|
|
}
|
2013-06-29 05:38:32 +04:00
|
|
|
MOZ_CRASH("Incomplete switch");
|
2010-04-27 20:15:02 +04:00
|
|
|
}
|
|
|
|
|
2014-06-28 14:13:13 +04:00
|
|
|
gfxPoint CWCorner(mozilla::Side side) const {
|
2010-04-27 20:15:02 +04:00
|
|
|
switch (side) {
|
2016-11-18 13:12:25 +03:00
|
|
|
case mozilla::eSideTop: return TopRight();
|
|
|
|
case mozilla::eSideRight: return BottomRight();
|
|
|
|
case mozilla::eSideBottom: return BottomLeft();
|
|
|
|
case mozilla::eSideLeft: return TopLeft();
|
2010-04-27 20:15:02 +04:00
|
|
|
}
|
2013-06-29 05:38:32 +04:00
|
|
|
MOZ_CRASH("Incomplete switch");
|
2010-04-27 20:15:02 +04:00
|
|
|
}
|
|
|
|
|
2007-05-21 02:41:21 +04:00
|
|
|
/* Conditions this border to Cairo's max coordinate space.
|
|
|
|
* The caller can check IsEmpty() after Condition() -- if it's TRUE,
|
|
|
|
* the caller can possibly avoid doing any extra rendering.
|
|
|
|
*/
|
|
|
|
void Condition();
|
2007-05-30 06:46:54 +04:00
|
|
|
|
|
|
|
void Scale(gfxFloat k) {
|
|
|
|
NS_ASSERTION(k >= 0.0, "Invalid (negative) scale factor");
|
2011-04-19 07:07:21 +04:00
|
|
|
x *= k;
|
|
|
|
y *= k;
|
|
|
|
width *= k;
|
|
|
|
height *= k;
|
2007-05-30 06:46:54 +04:00
|
|
|
}
|
2010-04-27 20:15:01 +04:00
|
|
|
|
2008-06-11 03:43:51 +04:00
|
|
|
void Scale(gfxFloat sx, gfxFloat sy) {
|
|
|
|
NS_ASSERTION(sx >= 0.0, "Invalid (negative) scale factor");
|
|
|
|
NS_ASSERTION(sy >= 0.0, "Invalid (negative) scale factor");
|
2011-04-19 07:07:21 +04:00
|
|
|
x *= sx;
|
|
|
|
y *= sy;
|
|
|
|
width *= sx;
|
|
|
|
height *= sy;
|
2008-06-11 03:43:51 +04:00
|
|
|
}
|
2007-06-27 20:42:37 +04:00
|
|
|
|
|
|
|
void ScaleInverse(gfxFloat k) {
|
|
|
|
NS_ASSERTION(k > 0.0, "Invalid (negative) scale factor");
|
2011-04-19 07:07:21 +04:00
|
|
|
x /= k;
|
|
|
|
y /= k;
|
|
|
|
width /= k;
|
|
|
|
height /= k;
|
2007-06-27 20:42:37 +04:00
|
|
|
}
|
2015-07-10 02:27:38 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Transform this rectangle with aMatrix, resulting in a gfxQuad.
|
|
|
|
*/
|
|
|
|
gfxQuad TransformToQuad(const mozilla::gfx::Matrix4x4 &aMatrix) const;
|
2005-04-06 11:36:31 +04:00
|
|
|
};
|
|
|
|
|
2005-04-11 08:36:18 +04:00
|
|
|
#endif /* GFX_RECT_H */
|