2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2006-03-25 05:47:31 +00:00
|
|
|
|
|
|
|
/* representation of length values in computed style data */
|
|
|
|
|
1998-04-28 23:54:06 +00:00
|
|
|
#ifndef nsStyleCoord_h___
|
|
|
|
#define nsStyleCoord_h___
|
|
|
|
|
|
|
|
#include "nsCoord.h"
|
2003-01-18 15:58:49 +00:00
|
|
|
#include "nsStyleConsts.h"
|
1998-04-28 23:54:06 +00:00
|
|
|
|
|
|
|
enum nsStyleUnit {
|
1998-04-30 19:50:36 +00:00
|
|
|
eStyleUnit_Null = 0, // (no value) value is not specified
|
|
|
|
eStyleUnit_Normal = 1, // (no value)
|
|
|
|
eStyleUnit_Auto = 2, // (no value)
|
2007-05-11 06:01:31 +00:00
|
|
|
eStyleUnit_None = 3, // (no value)
|
1998-04-30 19:50:36 +00:00
|
|
|
eStyleUnit_Percent = 10, // (float) 1.0 == 100%
|
1998-05-12 22:18:42 +00:00
|
|
|
eStyleUnit_Factor = 11, // (float) a multiplier
|
2009-11-02 19:36:43 +00:00
|
|
|
eStyleUnit_Degree = 12, // (float) angle in degrees
|
2009-11-02 19:36:43 +00:00
|
|
|
eStyleUnit_Grad = 13, // (float) angle in grads
|
2009-11-02 19:36:43 +00:00
|
|
|
eStyleUnit_Radian = 14, // (float) angle in radians
|
2012-02-04 05:01:23 +00:00
|
|
|
eStyleUnit_Turn = 15, // (float) angle in turns
|
1998-04-30 19:50:36 +00:00
|
|
|
eStyleUnit_Coord = 20, // (nscoord) value is twips
|
|
|
|
eStyleUnit_Integer = 30, // (int) value is simple integer
|
2010-07-03 04:18:55 +00:00
|
|
|
eStyleUnit_Enumerated = 32, // (int) value has enumerated meaning
|
2010-09-11 16:27:13 +00:00
|
|
|
|
|
|
|
// The following are allocated types. They are weak pointers to
|
|
|
|
// values allocated by nsStyleContext::Alloc.
|
|
|
|
eStyleUnit_Calc = 40 // (Calc*) calc() toplevel; always present
|
|
|
|
// to distinguish 50% from calc(50%), etc.
|
1998-04-28 23:54:06 +00:00
|
|
|
};
|
|
|
|
|
1998-05-12 22:18:42 +00:00
|
|
|
typedef union {
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mInt; // nscoord is a int32_t for now
|
1998-05-12 22:18:42 +00:00
|
|
|
float mFloat;
|
2010-07-03 04:18:55 +00:00
|
|
|
// An mPointer is a weak pointer to a value that is guaranteed to
|
2010-09-11 16:27:13 +00:00
|
|
|
// outlive the nsStyleCoord. In the case of nsStyleCoord::Calc*, it
|
2010-07-03 04:18:55 +00:00
|
|
|
// is a pointer owned by the style context, allocated through
|
|
|
|
// nsStyleContext::Alloc (and, therefore, is never stored in the rule
|
|
|
|
// tree).
|
|
|
|
void* mPointer;
|
1998-05-12 22:18:42 +00:00
|
|
|
} nsStyleUnion;
|
|
|
|
|
2002-07-30 05:34:55 +00:00
|
|
|
/**
|
|
|
|
* Class that hold a single size specification used by the style
|
|
|
|
* system. The size specification consists of two parts -- a number
|
|
|
|
* and a unit. The number is an integer, a floating point value, an
|
|
|
|
* nscoord, or undefined, and the unit is an nsStyleUnit. Checking
|
|
|
|
* the unit is a must before asking for the value in any particular
|
|
|
|
* form.
|
|
|
|
*/
|
1998-04-28 23:54:06 +00:00
|
|
|
class nsStyleCoord {
|
|
|
|
public:
|
2010-09-11 16:27:13 +00:00
|
|
|
struct Calc {
|
|
|
|
// Every calc() expression evaluates to a length plus a percentage.
|
|
|
|
nscoord mLength;
|
|
|
|
float mPercent;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasPercent; // whether there was any % syntax, even if 0
|
2010-09-11 16:27:13 +00:00
|
|
|
|
|
|
|
bool operator==(const Calc& aOther) const {
|
|
|
|
return mLength == aOther.mLength &&
|
|
|
|
mPercent == aOther.mPercent &&
|
|
|
|
mHasPercent == aOther.mHasPercent;
|
|
|
|
}
|
|
|
|
bool operator!=(const Calc& aOther) const { return !(*this == aOther); }
|
|
|
|
};
|
2010-07-03 04:18:55 +00:00
|
|
|
|
2001-03-08 02:41:16 +00:00
|
|
|
nsStyleCoord(nsStyleUnit aUnit = eStyleUnit_Null);
|
2009-10-14 02:38:20 +00:00
|
|
|
enum CoordConstructorType { CoordConstructor };
|
|
|
|
inline nsStyleCoord(nscoord aValue, CoordConstructorType);
|
2012-08-22 15:56:38 +00:00
|
|
|
nsStyleCoord(int32_t aValue, nsStyleUnit aUnit);
|
2001-03-08 02:41:16 +00:00
|
|
|
nsStyleCoord(float aValue, nsStyleUnit aUnit);
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord(const nsStyleCoord& aCopy);
|
|
|
|
inline nsStyleCoord(const nsStyleUnion& aValue, nsStyleUnit aUnit);
|
1998-04-28 23:54:06 +00:00
|
|
|
|
2012-02-25 05:23:14 +00:00
|
|
|
nsStyleCoord& operator=(const nsStyleCoord& aOther)
|
|
|
|
{
|
|
|
|
mUnit = aOther.mUnit;
|
|
|
|
mValue = aOther.mValue;
|
|
|
|
return *this;
|
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleCoord& aOther) const;
|
|
|
|
bool operator!=(const nsStyleCoord& aOther) const;
|
1998-04-28 23:54:06 +00:00
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
nsStyleUnit GetUnit() const {
|
2007-05-11 06:02:31 +00:00
|
|
|
NS_ASSERTION(mUnit != eStyleUnit_Null, "reading uninitialized value");
|
|
|
|
return mUnit;
|
|
|
|
}
|
2009-09-10 19:03:36 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsAngleValue() const {
|
2012-02-04 05:01:23 +00:00
|
|
|
return eStyleUnit_Degree <= mUnit && mUnit <= eStyleUnit_Turn;
|
2009-11-02 19:36:43 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsCalcUnit() const {
|
2010-09-11 16:27:13 +00:00
|
|
|
return eStyleUnit_Calc == mUnit;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPointerValue() const {
|
2010-09-11 16:27:13 +00:00
|
|
|
return IsCalcUnit();
|
2010-07-03 04:18:55 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsCoordPercentCalcUnit() const {
|
2010-08-11 19:32:53 +00:00
|
|
|
return mUnit == eStyleUnit_Coord ||
|
|
|
|
mUnit == eStyleUnit_Percent ||
|
|
|
|
IsCalcUnit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this calc() expression have any percentages inside it? Can be
|
|
|
|
// called only when IsCalcUnit() is true.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool CalcHasPercent() const {
|
2010-09-11 16:27:13 +00:00
|
|
|
return GetCalcValue()->mHasPercent;
|
2010-07-03 04:18:55 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasPercent() const {
|
2010-08-25 10:17:55 +00:00
|
|
|
return mUnit == eStyleUnit_Percent ||
|
|
|
|
(IsCalcUnit() && CalcHasPercent());
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool ConvertsToLength() const {
|
2010-08-25 10:17:55 +00:00
|
|
|
return mUnit == eStyleUnit_Coord ||
|
|
|
|
(IsCalcUnit() && !CalcHasPercent());
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
nscoord GetCoordValue() const;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t GetIntValue() const;
|
2010-05-11 15:49:44 +00:00
|
|
|
float GetPercentValue() const;
|
|
|
|
float GetFactorValue() const;
|
|
|
|
float GetAngleValue() const;
|
|
|
|
double GetAngleValueInRadians() const;
|
2010-09-11 16:27:13 +00:00
|
|
|
Calc* GetCalcValue() const;
|
1998-05-12 22:18:42 +00:00
|
|
|
void GetUnionValue(nsStyleUnion& aValue) const;
|
2012-08-27 04:08:32 +00:00
|
|
|
uint32_t HashValue(uint32_t aHash) const;
|
1998-04-28 23:54:06 +00:00
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
void Reset(); // sets to null
|
2001-03-08 02:41:16 +00:00
|
|
|
void SetCoordValue(nscoord aValue);
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetIntValue(int32_t aValue, nsStyleUnit aUnit);
|
2001-03-08 02:41:16 +00:00
|
|
|
void SetPercentValue(float aValue);
|
|
|
|
void SetFactorValue(float aValue);
|
2009-11-02 19:36:43 +00:00
|
|
|
void SetAngleValue(float aValue, nsStyleUnit aUnit);
|
2010-05-11 15:49:44 +00:00
|
|
|
void SetNormalValue();
|
|
|
|
void SetAutoValue();
|
|
|
|
void SetNoneValue();
|
2010-09-11 16:27:13 +00:00
|
|
|
void SetCalcValue(Calc* aValue);
|
1998-04-28 23:54:06 +00:00
|
|
|
|
2012-02-25 05:23:14 +00:00
|
|
|
private:
|
1998-05-12 22:18:42 +00:00
|
|
|
nsStyleUnit mUnit;
|
|
|
|
nsStyleUnion mValue;
|
1998-04-28 23:54:06 +00:00
|
|
|
};
|
|
|
|
|
2002-07-30 05:34:55 +00:00
|
|
|
/**
|
|
|
|
* Class that represents a set of top/right/bottom/left nsStyleCoords.
|
|
|
|
* This is commonly used to hold the widths of the borders, margins,
|
|
|
|
* or paddings of a box.
|
|
|
|
*/
|
1998-05-12 22:18:42 +00:00
|
|
|
class nsStyleSides {
|
|
|
|
public:
|
2010-05-11 15:49:44 +00:00
|
|
|
nsStyleSides();
|
1998-05-12 22:18:42 +00:00
|
|
|
|
|
|
|
// nsStyleSides& operator=(const nsStyleSides& aCopy); // use compiler's version
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleSides& aOther) const;
|
|
|
|
bool operator!=(const nsStyleSides& aOther) const;
|
1998-05-12 22:18:42 +00:00
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline nsStyleUnit GetUnit(mozilla::css::Side aSide) const;
|
2010-05-11 15:49:44 +00:00
|
|
|
inline nsStyleUnit GetLeftUnit() const;
|
|
|
|
inline nsStyleUnit GetTopUnit() const;
|
|
|
|
inline nsStyleUnit GetRightUnit() const;
|
|
|
|
inline nsStyleUnit GetBottomUnit() const;
|
2003-01-18 15:58:49 +00:00
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline nsStyleCoord Get(mozilla::css::Side aSide) const;
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord GetLeft() const;
|
|
|
|
inline nsStyleCoord GetTop() const;
|
|
|
|
inline nsStyleCoord GetRight() const;
|
|
|
|
inline nsStyleCoord GetBottom() const;
|
1998-05-12 22:18:42 +00:00
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
void Reset();
|
2003-01-18 15:58:49 +00:00
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline void Set(mozilla::css::Side aSide, const nsStyleCoord& aCoord);
|
2003-01-18 15:58:49 +00:00
|
|
|
inline void SetLeft(const nsStyleCoord& aCoord);
|
|
|
|
inline void SetTop(const nsStyleCoord& aCoord);
|
|
|
|
inline void SetRight(const nsStyleCoord& aCoord);
|
|
|
|
inline void SetBottom(const nsStyleCoord& aCoord);
|
1998-05-12 22:18:42 +00:00
|
|
|
|
|
|
|
protected:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mUnits[4];
|
2003-01-18 15:58:49 +00:00
|
|
|
nsStyleUnion mValues[4];
|
1998-05-12 22:18:42 +00:00
|
|
|
};
|
|
|
|
|
2008-10-01 05:50:52 +00:00
|
|
|
/**
|
|
|
|
* Class that represents a set of top-left/top-right/bottom-left/bottom-right
|
|
|
|
* nsStyleCoord pairs. This is used to hold the dimensions of the
|
|
|
|
* corners of a box (for, e.g., border-radius and outline-radius).
|
|
|
|
*/
|
|
|
|
class nsStyleCorners {
|
|
|
|
public:
|
2010-05-11 15:49:44 +00:00
|
|
|
nsStyleCorners();
|
2008-10-01 05:50:52 +00:00
|
|
|
|
|
|
|
// use compiler's version
|
2010-04-27 16:15:01 +00:00
|
|
|
//nsStyleCorners& operator=(const nsStyleCorners& aCopy);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleCorners& aOther) const;
|
|
|
|
bool operator!=(const nsStyleCorners& aOther) const;
|
2008-10-01 05:50:52 +00:00
|
|
|
|
|
|
|
// aCorner is always one of NS_CORNER_* defined in nsStyleConsts.h
|
2012-08-22 15:56:38 +00:00
|
|
|
inline nsStyleUnit GetUnit(uint8_t aHalfCorner) const;
|
2008-10-01 05:50:52 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline nsStyleCoord Get(uint8_t aHalfCorner) const;
|
2008-10-01 05:50:52 +00:00
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
void Reset();
|
2008-10-01 05:50:52 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline void Set(uint8_t aHalfCorner, const nsStyleCoord& aCoord);
|
2008-10-01 05:50:52 +00:00
|
|
|
|
|
|
|
protected:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mUnits[8];
|
2008-10-01 05:50:52 +00:00
|
|
|
nsStyleUnion mValues[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1998-05-12 22:18:42 +00:00
|
|
|
// -------------------------
|
|
|
|
// nsStyleCoord inlines
|
|
|
|
//
|
2009-10-14 02:38:20 +00:00
|
|
|
inline nsStyleCoord::nsStyleCoord(nscoord aValue, CoordConstructorType)
|
|
|
|
: mUnit(eStyleUnit_Coord)
|
|
|
|
{
|
|
|
|
mValue.mInt = aValue;
|
|
|
|
}
|
|
|
|
|
2010-07-03 04:18:55 +00:00
|
|
|
// FIXME: In C++0x we can rely on the default copy constructor since
|
|
|
|
// default copy construction is defined properly for unions. But when
|
|
|
|
// can we actually use that? (It seems to work in gcc 4.4.)
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord::nsStyleCoord(const nsStyleCoord& aCopy)
|
|
|
|
: mUnit(aCopy.mUnit)
|
|
|
|
{
|
|
|
|
if ((eStyleUnit_Percent <= mUnit) && (mUnit < eStyleUnit_Coord)) {
|
|
|
|
mValue.mFloat = aCopy.mValue.mFloat;
|
|
|
|
}
|
2010-09-11 16:27:13 +00:00
|
|
|
else if (IsPointerValue()) {
|
2010-07-03 04:18:55 +00:00
|
|
|
mValue.mPointer = aCopy.mValue.mPointer;
|
|
|
|
}
|
2008-03-06 00:05:26 +00:00
|
|
|
else {
|
|
|
|
mValue.mInt = aCopy.mValue.mInt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleCoord::nsStyleCoord(const nsStyleUnion& aValue, nsStyleUnit aUnit)
|
2012-02-25 05:23:14 +00:00
|
|
|
: mUnit(aUnit), mValue(aValue)
|
2008-03-06 00:05:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool nsStyleCoord::operator!=(const nsStyleCoord& aOther) const
|
1999-07-18 00:13:08 +00:00
|
|
|
{
|
2008-10-01 05:50:52 +00:00
|
|
|
return !((*this) == aOther);
|
1999-07-18 00:13:08 +00:00
|
|
|
}
|
|
|
|
|
2012-04-07 00:01:32 +00:00
|
|
|
inline nscoord nsStyleCoord::GetCoordValue() const
|
1998-04-28 23:54:06 +00:00
|
|
|
{
|
1998-04-30 19:50:36 +00:00
|
|
|
NS_ASSERTION((mUnit == eStyleUnit_Coord), "not a coord value");
|
|
|
|
if (mUnit == eStyleUnit_Coord) {
|
1998-04-28 23:54:06 +00:00
|
|
|
return mValue.mInt;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline int32_t nsStyleCoord::GetIntValue() const
|
1998-04-28 23:54:06 +00:00
|
|
|
{
|
2007-05-11 06:00:26 +00:00
|
|
|
NS_ASSERTION((mUnit == eStyleUnit_Enumerated) ||
|
1998-04-30 19:50:36 +00:00
|
|
|
(mUnit == eStyleUnit_Integer), "not an int value");
|
2007-05-11 06:00:26 +00:00
|
|
|
if ((mUnit == eStyleUnit_Enumerated) ||
|
1998-04-30 19:50:36 +00:00
|
|
|
(mUnit == eStyleUnit_Integer)) {
|
1998-04-28 23:54:06 +00:00
|
|
|
return mValue.mInt;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline float nsStyleCoord::GetPercentValue() const
|
1998-04-28 23:54:06 +00:00
|
|
|
{
|
1998-04-30 19:50:36 +00:00
|
|
|
NS_ASSERTION(mUnit == eStyleUnit_Percent, "not a percent value");
|
1998-04-28 23:54:06 +00:00
|
|
|
if (mUnit == eStyleUnit_Percent) {
|
|
|
|
return mValue.mFloat;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline float nsStyleCoord::GetFactorValue() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mUnit == eStyleUnit_Factor, "not a factor value");
|
|
|
|
if (mUnit == eStyleUnit_Factor) {
|
|
|
|
return mValue.mFloat;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline float nsStyleCoord::GetAngleValue() const
|
2009-11-02 19:36:43 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mUnit >= eStyleUnit_Degree &&
|
2012-02-04 05:01:23 +00:00
|
|
|
mUnit <= eStyleUnit_Turn, "not an angle value");
|
|
|
|
if (mUnit >= eStyleUnit_Degree && mUnit <= eStyleUnit_Turn) {
|
2009-11-02 19:36:43 +00:00
|
|
|
return mValue.mFloat;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
2010-09-11 16:27:13 +00:00
|
|
|
inline nsStyleCoord::Calc* nsStyleCoord::GetCalcValue() const
|
2010-07-03 04:18:55 +00:00
|
|
|
{
|
2010-09-11 16:27:13 +00:00
|
|
|
NS_ASSERTION(IsCalcUnit(), "not a pointer value");
|
|
|
|
if (IsCalcUnit()) {
|
|
|
|
return static_cast<Calc*>(mValue.mPointer);
|
2010-07-03 04:18:55 +00:00
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-07-03 04:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-12 22:18:42 +00:00
|
|
|
inline void nsStyleCoord::GetUnionValue(nsStyleUnion& aValue) const
|
|
|
|
{
|
2012-02-25 05:23:14 +00:00
|
|
|
aValue = mValue;
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
1998-04-28 23:54:06 +00:00
|
|
|
|
1998-05-12 22:18:42 +00:00
|
|
|
// -------------------------
|
|
|
|
// nsStyleSides inlines
|
|
|
|
//
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool nsStyleSides::operator!=(const nsStyleSides& aOther) const
|
1999-07-18 00:13:08 +00:00
|
|
|
{
|
2008-10-01 05:50:52 +00:00
|
|
|
return !((*this) == aOther);
|
1999-07-18 00:13:08 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline nsStyleUnit nsStyleSides::GetUnit(mozilla::css::Side aSide) const
|
2003-01-18 15:58:49 +00:00
|
|
|
{
|
|
|
|
return (nsStyleUnit)mUnits[aSide];
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline nsStyleUnit nsStyleSides::GetLeftUnit() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
return GetUnit(NS_SIDE_LEFT);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline nsStyleUnit nsStyleSides::GetTopUnit() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
return GetUnit(NS_SIDE_TOP);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline nsStyleUnit nsStyleSides::GetRightUnit() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
return GetUnit(NS_SIDE_RIGHT);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-11 15:49:44 +00:00
|
|
|
inline nsStyleUnit nsStyleSides::GetBottomUnit() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
return GetUnit(NS_SIDE_BOTTOM);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline nsStyleCoord nsStyleSides::Get(mozilla::css::Side aSide) const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2008-03-06 00:05:26 +00:00
|
|
|
return nsStyleCoord(mValues[aSide], nsStyleUnit(mUnits[aSide]));
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord nsStyleSides::GetLeft() const
|
2003-01-18 15:58:49 +00:00
|
|
|
{
|
2008-03-06 00:05:26 +00:00
|
|
|
return Get(NS_SIDE_LEFT);
|
2003-01-18 15:58:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord nsStyleSides::GetTop() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2008-03-06 00:05:26 +00:00
|
|
|
return Get(NS_SIDE_TOP);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord nsStyleSides::GetRight() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2008-03-06 00:05:26 +00:00
|
|
|
return Get(NS_SIDE_RIGHT);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
2008-03-06 00:05:26 +00:00
|
|
|
inline nsStyleCoord nsStyleSides::GetBottom() const
|
1998-05-12 22:18:42 +00:00
|
|
|
{
|
2008-03-06 00:05:26 +00:00
|
|
|
return Get(NS_SIDE_BOTTOM);
|
2003-01-18 15:58:49 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
inline void nsStyleSides::Set(mozilla::css::Side aSide, const nsStyleCoord& aCoord)
|
2003-01-18 15:58:49 +00:00
|
|
|
{
|
|
|
|
mUnits[aSide] = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mValues[aSide]);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetLeft(const nsStyleCoord& aCoord)
|
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
Set(NS_SIDE_LEFT, aCoord);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetTop(const nsStyleCoord& aCoord)
|
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
Set(NS_SIDE_TOP, aCoord);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetRight(const nsStyleCoord& aCoord)
|
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
Set(NS_SIDE_RIGHT, aCoord);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetBottom(const nsStyleCoord& aCoord)
|
|
|
|
{
|
2003-01-18 15:58:49 +00:00
|
|
|
Set(NS_SIDE_BOTTOM, aCoord);
|
1998-05-12 22:18:42 +00:00
|
|
|
}
|
1998-04-28 23:54:06 +00:00
|
|
|
|
2008-10-01 05:50:52 +00:00
|
|
|
// -------------------------
|
|
|
|
// nsStyleCorners inlines
|
|
|
|
//
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool nsStyleCorners::operator!=(const nsStyleCorners& aOther) const
|
2008-10-01 05:50:52 +00:00
|
|
|
{
|
|
|
|
return !((*this) == aOther);
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline nsStyleUnit nsStyleCorners::GetUnit(uint8_t aCorner) const
|
2008-10-01 05:50:52 +00:00
|
|
|
{
|
|
|
|
return (nsStyleUnit)mUnits[aCorner];
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline nsStyleCoord nsStyleCorners::Get(uint8_t aCorner) const
|
2008-10-01 05:50:52 +00:00
|
|
|
{
|
|
|
|
return nsStyleCoord(mValues[aCorner], nsStyleUnit(mUnits[aCorner]));
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
inline void nsStyleCorners::Set(uint8_t aCorner, const nsStyleCoord& aCoord)
|
2008-10-01 05:50:52 +00:00
|
|
|
{
|
|
|
|
mUnits[aCorner] = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mValues[aCorner]);
|
|
|
|
}
|
|
|
|
|
1998-04-28 23:54:06 +00:00
|
|
|
#endif /* nsStyleCoord_h___ */
|