1998-04-29 03:54:06 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-04-29 03:54:06 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1998-04-29 03:54:06 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-04-29 03:54:06 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-04-29 03:54:06 +04:00
|
|
|
*/
|
|
|
|
#ifndef nsStyleCoord_h___
|
|
|
|
#define nsStyleCoord_h___
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsCoord.h"
|
1998-05-13 02:18:42 +04:00
|
|
|
#include "nsCRT.h"
|
2001-02-20 00:50:04 +03:00
|
|
|
#include "nsString.h"
|
1998-04-29 03:54:06 +04:00
|
|
|
|
|
|
|
enum nsStyleUnit {
|
1998-04-30 23:50:36 +04:00
|
|
|
eStyleUnit_Null = 0, // (no value) value is not specified
|
|
|
|
eStyleUnit_Normal = 1, // (no value)
|
|
|
|
eStyleUnit_Auto = 2, // (no value)
|
|
|
|
eStyleUnit_Inherit = 3, // (no value) value should be inherited
|
|
|
|
eStyleUnit_Percent = 10, // (float) 1.0 == 100%
|
1998-05-13 02:18:42 +04:00
|
|
|
eStyleUnit_Factor = 11, // (float) a multiplier
|
1998-04-30 23:50:36 +04:00
|
|
|
eStyleUnit_Coord = 20, // (nscoord) value is twips
|
|
|
|
eStyleUnit_Integer = 30, // (int) value is simple integer
|
|
|
|
eStyleUnit_Proportional = 31, // (int) value has proportional meaning
|
1999-03-31 08:08:07 +04:00
|
|
|
eStyleUnit_Enumerated = 32, // (int) value has enumerated meaning
|
|
|
|
eStyleUnit_Chars = 33 // (int) value is number of characters
|
1998-04-29 03:54:06 +04:00
|
|
|
};
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
typedef union {
|
|
|
|
PRInt32 mInt; // nscoord is a PRInt32 for now
|
|
|
|
float mFloat;
|
|
|
|
} nsStyleUnion;
|
|
|
|
|
1998-04-29 03:54:06 +04:00
|
|
|
class nsStyleCoord {
|
|
|
|
public:
|
2001-02-20 00:50:04 +03:00
|
|
|
nsStyleCoord(nsStyleUnit aUnit = eStyleUnit_Null)
|
|
|
|
: mUnit(aUnit) {
|
|
|
|
NS_ASSERTION(aUnit < eStyleUnit_Percent, "not a valueless unit");
|
|
|
|
if (aUnit >= eStyleUnit_Percent) {
|
|
|
|
mUnit = eStyleUnit_Null;
|
|
|
|
}
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
1998-04-29 03:54:06 +04:00
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
nsStyleCoord(nscoord aValue)
|
|
|
|
: mUnit(eStyleUnit_Coord) {
|
|
|
|
mValue.mInt = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleCoord(PRInt32 aValue, nsStyleUnit aUnit)
|
|
|
|
: mUnit(aUnit) {
|
|
|
|
//if you want to pass in eStyleUnit_Coord, don't. instead, use the
|
|
|
|
//constructor just above this one... MMP
|
|
|
|
NS_ASSERTION((aUnit == eStyleUnit_Proportional) ||
|
|
|
|
(aUnit == eStyleUnit_Enumerated) ||
|
|
|
|
(aUnit == eStyleUnit_Integer), "not an int value");
|
|
|
|
if ((aUnit == eStyleUnit_Proportional) ||
|
|
|
|
(aUnit == eStyleUnit_Enumerated) ||
|
|
|
|
(aUnit == eStyleUnit_Integer)) {
|
|
|
|
mValue.mInt = aValue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mUnit = eStyleUnit_Null;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleCoord(float aValue, nsStyleUnit aUnit)
|
|
|
|
: mUnit(aUnit) {
|
|
|
|
NS_ASSERTION((aUnit == eStyleUnit_Percent) ||
|
|
|
|
(aUnit == eStyleUnit_Factor), "not a float value");
|
|
|
|
if ((aUnit == eStyleUnit_Percent) ||
|
|
|
|
(aUnit == eStyleUnit_Factor)) {
|
|
|
|
mValue.mFloat = aValue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mUnit = eStyleUnit_Null;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleCoord(const nsStyleCoord& aCopy)
|
|
|
|
: mUnit(aCopy.mUnit) {
|
|
|
|
if ((eStyleUnit_Percent <= mUnit) && (mUnit < eStyleUnit_Coord)) {
|
|
|
|
mValue.mFloat = aCopy.mValue.mFloat;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mValue.mInt = aCopy.mValue.mInt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleCoord& operator=(const nsStyleCoord& aCopy) {
|
|
|
|
mUnit = aCopy.mUnit;
|
|
|
|
if ((eStyleUnit_Percent <= mUnit) && (mUnit < eStyleUnit_Coord)) {
|
|
|
|
mValue.mFloat = aCopy.mValue.mFloat;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mValue.mInt = aCopy.mValue.mInt;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator==(const nsStyleCoord& aOther) const {
|
|
|
|
if (mUnit == aOther.mUnit) {
|
|
|
|
if ((eStyleUnit_Percent <= mUnit) && (mUnit < eStyleUnit_Coord)) {
|
|
|
|
return PRBool(mValue.mFloat == aOther.mValue.mFloat);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return PRBool(mValue.mInt == aOther.mValue.mInt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator!=(const nsStyleCoord& aOther) const;
|
1998-04-29 03:54:06 +04:00
|
|
|
|
|
|
|
nsStyleUnit GetUnit(void) const { return mUnit; }
|
|
|
|
nscoord GetCoordValue(void) const;
|
|
|
|
PRInt32 GetIntValue(void) const;
|
1998-04-30 23:50:36 +04:00
|
|
|
float GetPercentValue(void) const;
|
1998-05-13 02:18:42 +04:00
|
|
|
float GetFactorValue(void) const;
|
|
|
|
void GetUnionValue(nsStyleUnion& aValue) const;
|
1998-04-29 03:54:06 +04:00
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
void Reset(void) {
|
|
|
|
mUnit = eStyleUnit_Null;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetCoordValue(nscoord aValue) {
|
|
|
|
mUnit = eStyleUnit_Coord;
|
|
|
|
mValue.mInt = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetIntValue(PRInt32 aValue, nsStyleUnit aUnit) {
|
|
|
|
if ((aUnit == eStyleUnit_Proportional) ||
|
|
|
|
(aUnit == eStyleUnit_Enumerated) ||
|
|
|
|
(aUnit == eStyleUnit_Chars) ||
|
|
|
|
(aUnit == eStyleUnit_Integer)) {
|
|
|
|
mUnit = aUnit;
|
|
|
|
mValue.mInt = aValue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_WARNING("not an int value");
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetPercentValue(float aValue) {
|
|
|
|
mUnit = eStyleUnit_Percent;
|
|
|
|
mValue.mFloat = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetFactorValue(float aValue) {
|
|
|
|
mUnit = eStyleUnit_Factor;
|
|
|
|
mValue.mFloat = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNormalValue(void) {
|
|
|
|
mUnit = eStyleUnit_Normal;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetAutoValue(void) {
|
|
|
|
mUnit = eStyleUnit_Auto;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
1998-04-29 03:54:06 +04:00
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
void SetInheritValue(void) {
|
|
|
|
mUnit = eStyleUnit_Inherit;
|
|
|
|
mValue.mInt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUnionValue(const nsStyleUnion& aValue, nsStyleUnit aUnit) {
|
|
|
|
mUnit = aUnit;
|
|
|
|
#if PR_BYTES_PER_INT == PR_BYTES_PER_FLOAT
|
|
|
|
mValue.mInt = aValue.mInt;
|
|
|
|
#else
|
|
|
|
nsCRT::memcpy(&mValue, &aValue, sizeof(nsStyleUnion));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppendToString(nsString& aBuffer) const {
|
|
|
|
if ((eStyleUnit_Percent <= mUnit) && (mUnit < eStyleUnit_Coord)) {
|
|
|
|
aBuffer.AppendFloat(mValue.mFloat);
|
|
|
|
}
|
|
|
|
else if ((eStyleUnit_Coord == mUnit) ||
|
|
|
|
(eStyleUnit_Proportional == mUnit) ||
|
|
|
|
(eStyleUnit_Enumerated == mUnit) ||
|
|
|
|
(eStyleUnit_Integer == mUnit)) {
|
|
|
|
aBuffer.AppendInt(mValue.mInt, 10);
|
|
|
|
aBuffer.AppendWithConversion("[0x");
|
|
|
|
aBuffer.AppendInt(mValue.mInt, 16);
|
|
|
|
aBuffer.AppendWithConversion(']');
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (mUnit) {
|
|
|
|
case eStyleUnit_Null: aBuffer.AppendWithConversion("Null"); break;
|
|
|
|
case eStyleUnit_Coord: aBuffer.AppendWithConversion("tw"); break;
|
|
|
|
case eStyleUnit_Percent: aBuffer.AppendWithConversion("%"); break;
|
|
|
|
case eStyleUnit_Factor: aBuffer.AppendWithConversion("f"); break;
|
|
|
|
case eStyleUnit_Normal: aBuffer.AppendWithConversion("Normal"); break;
|
|
|
|
case eStyleUnit_Auto: aBuffer.AppendWithConversion("Auto"); break;
|
|
|
|
case eStyleUnit_Inherit: aBuffer.AppendWithConversion("Inherit"); break;
|
|
|
|
case eStyleUnit_Proportional: aBuffer.AppendWithConversion("*"); break;
|
|
|
|
case eStyleUnit_Enumerated: aBuffer.AppendWithConversion("enum"); break;
|
|
|
|
case eStyleUnit_Integer: aBuffer.AppendWithConversion("int"); break;
|
|
|
|
case eStyleUnit_Chars: aBuffer.AppendWithConversion("chars"); break;
|
|
|
|
}
|
|
|
|
aBuffer.AppendWithConversion(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToString(nsString& aBuffer) const {
|
|
|
|
aBuffer.Truncate();
|
|
|
|
AppendToString(aBuffer);
|
|
|
|
}
|
1998-04-29 03:54:06 +04:00
|
|
|
|
1999-09-02 06:09:07 +04:00
|
|
|
public:
|
1998-05-13 02:18:42 +04:00
|
|
|
nsStyleUnit mUnit;
|
|
|
|
nsStyleUnion mValue;
|
1998-04-29 03:54:06 +04:00
|
|
|
};
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
#define COMPARE_SIDE(side) \
|
|
|
|
if ((eStyleUnit_Percent <= m##side##Unit) && \
|
|
|
|
(m##side##Unit < eStyleUnit_Coord)) { \
|
|
|
|
if (m##side##Value.mFloat != aOther.m##side##Value.mFloat) \
|
|
|
|
return PR_FALSE; \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
if (m##side##Value.mInt != aOther.m##side##Value.mInt) \
|
|
|
|
return PR_FALSE; \
|
|
|
|
}
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
class nsStyleSides {
|
|
|
|
public:
|
2001-02-20 00:50:04 +03:00
|
|
|
nsStyleSides(void) {
|
|
|
|
nsCRT::memset(this, 0x00, sizeof(nsStyleSides));
|
|
|
|
}
|
1998-05-13 02:18:42 +04:00
|
|
|
|
|
|
|
// nsStyleSides& operator=(const nsStyleSides& aCopy); // use compiler's version
|
2001-02-20 00:50:04 +03:00
|
|
|
PRBool operator==(const nsStyleSides& aOther) const {
|
|
|
|
if ((mLeftUnit == aOther.mLeftUnit) &&
|
|
|
|
(mTopUnit == aOther.mTopUnit) &&
|
|
|
|
(mRightUnit == aOther.mRightUnit) &&
|
|
|
|
(mBottomUnit == aOther.mBottomUnit)) {
|
|
|
|
COMPARE_SIDE(Left);
|
|
|
|
COMPARE_SIDE(Top);
|
|
|
|
COMPARE_SIDE(Right);
|
|
|
|
COMPARE_SIDE(Bottom);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
1999-07-18 04:13:08 +04:00
|
|
|
PRBool operator!=(const nsStyleSides& aOther) const;
|
1998-05-13 02:18:42 +04:00
|
|
|
|
|
|
|
nsStyleUnit GetLeftUnit(void) const;
|
|
|
|
nsStyleUnit GetTopUnit(void) const;
|
|
|
|
nsStyleUnit GetRightUnit(void) const;
|
|
|
|
nsStyleUnit GetBottomUnit(void) const;
|
|
|
|
|
|
|
|
nsStyleCoord& GetLeft(nsStyleCoord& aCoord) const;
|
|
|
|
nsStyleCoord& GetTop(nsStyleCoord& aCoord) const;
|
|
|
|
nsStyleCoord& GetRight(nsStyleCoord& aCoord) const;
|
|
|
|
nsStyleCoord& GetBottom(nsStyleCoord& aCoord) const;
|
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
void Reset(void) {
|
|
|
|
nsCRT::memset(this, 0x00, sizeof(nsStyleSides));
|
|
|
|
}
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
void SetLeft(const nsStyleCoord& aCoord);
|
|
|
|
void SetTop(const nsStyleCoord& aCoord);
|
|
|
|
void SetRight(const nsStyleCoord& aCoord);
|
|
|
|
void SetBottom(const nsStyleCoord& aCoord);
|
|
|
|
|
2001-02-20 00:50:04 +03:00
|
|
|
void AppendToString(nsString& aBuffer) const {
|
|
|
|
nsStyleCoord temp;
|
|
|
|
|
|
|
|
GetLeft(temp);
|
|
|
|
aBuffer.AppendWithConversion("left: ");
|
|
|
|
temp.AppendToString(aBuffer);
|
|
|
|
|
|
|
|
GetTop(temp);
|
|
|
|
aBuffer.AppendWithConversion("top: ");
|
|
|
|
temp.AppendToString(aBuffer);
|
|
|
|
|
|
|
|
GetRight(temp);
|
|
|
|
aBuffer.AppendWithConversion("right: ");
|
|
|
|
temp.AppendToString(aBuffer);
|
|
|
|
|
|
|
|
GetBottom(temp);
|
|
|
|
aBuffer.AppendWithConversion("bottom: ");
|
|
|
|
temp.AppendToString(aBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ToString(nsString& aBuffer) const {
|
|
|
|
aBuffer.Truncate();
|
|
|
|
AppendToString(aBuffer);
|
|
|
|
}
|
1998-05-13 02:18:42 +04:00
|
|
|
|
|
|
|
protected:
|
1998-05-13 04:10:35 +04:00
|
|
|
PRUint8 mLeftUnit;
|
|
|
|
PRUint8 mTopUnit;
|
|
|
|
PRUint8 mRightUnit;
|
|
|
|
PRUint8 mBottomUnit;
|
1998-05-13 02:18:42 +04:00
|
|
|
nsStyleUnion mLeftValue;
|
|
|
|
nsStyleUnion mTopValue;
|
|
|
|
nsStyleUnion mRightValue;
|
|
|
|
nsStyleUnion mBottomValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------------
|
|
|
|
// nsStyleCoord inlines
|
|
|
|
//
|
1999-07-18 04:13:08 +04:00
|
|
|
inline PRBool nsStyleCoord::operator!=(const nsStyleCoord& aOther) const
|
|
|
|
{
|
|
|
|
return PRBool(! ((*this) == aOther));
|
|
|
|
}
|
|
|
|
|
1998-04-29 03:54:06 +04:00
|
|
|
inline PRInt32 nsStyleCoord::GetCoordValue(void) const
|
|
|
|
{
|
1998-04-30 23:50:36 +04:00
|
|
|
NS_ASSERTION((mUnit == eStyleUnit_Coord), "not a coord value");
|
|
|
|
if (mUnit == eStyleUnit_Coord) {
|
1998-04-29 03:54:06 +04:00
|
|
|
return mValue.mInt;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRInt32 nsStyleCoord::GetIntValue(void) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION((mUnit == eStyleUnit_Proportional) ||
|
1998-04-30 23:50:36 +04:00
|
|
|
(mUnit == eStyleUnit_Enumerated) ||
|
1999-03-31 08:08:07 +04:00
|
|
|
(mUnit == eStyleUnit_Chars) ||
|
1998-04-30 23:50:36 +04:00
|
|
|
(mUnit == eStyleUnit_Integer), "not an int value");
|
1998-04-29 03:54:06 +04:00
|
|
|
if ((mUnit == eStyleUnit_Proportional) ||
|
1998-04-30 23:50:36 +04:00
|
|
|
(mUnit == eStyleUnit_Enumerated) ||
|
1999-03-31 08:08:07 +04:00
|
|
|
(mUnit == eStyleUnit_Chars) ||
|
1998-04-30 23:50:36 +04:00
|
|
|
(mUnit == eStyleUnit_Integer)) {
|
1998-04-29 03:54:06 +04:00
|
|
|
return mValue.mInt;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-04-30 23:50:36 +04:00
|
|
|
inline float nsStyleCoord::GetPercentValue(void) const
|
1998-04-29 03:54:06 +04:00
|
|
|
{
|
1998-04-30 23:50:36 +04:00
|
|
|
NS_ASSERTION(mUnit == eStyleUnit_Percent, "not a percent value");
|
1998-04-29 03:54:06 +04:00
|
|
|
if (mUnit == eStyleUnit_Percent) {
|
|
|
|
return mValue.mFloat;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
inline float nsStyleCoord::GetFactorValue(void) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mUnit == eStyleUnit_Factor, "not a factor value");
|
|
|
|
if (mUnit == eStyleUnit_Factor) {
|
|
|
|
return mValue.mFloat;
|
|
|
|
}
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleCoord::GetUnionValue(nsStyleUnion& aValue) const
|
|
|
|
{
|
|
|
|
nsCRT::memcpy(&aValue, &mValue, sizeof(nsStyleUnion));
|
|
|
|
}
|
1998-04-29 03:54:06 +04:00
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
// -------------------------
|
|
|
|
// nsStyleSides inlines
|
|
|
|
//
|
1999-07-18 04:13:08 +04:00
|
|
|
inline PRBool nsStyleSides::operator!=(const nsStyleSides& aOther) const
|
|
|
|
{
|
|
|
|
return PRBool(! ((*this) == aOther));
|
|
|
|
}
|
|
|
|
|
1998-05-13 02:18:42 +04:00
|
|
|
inline nsStyleUnit nsStyleSides::GetLeftUnit(void) const
|
|
|
|
{
|
|
|
|
return (nsStyleUnit)mLeftUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleUnit nsStyleSides::GetTopUnit(void) const
|
|
|
|
{
|
|
|
|
return (nsStyleUnit)mTopUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleUnit nsStyleSides::GetRightUnit(void) const
|
|
|
|
{
|
|
|
|
return (nsStyleUnit)mRightUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleUnit nsStyleSides::GetBottomUnit(void) const
|
|
|
|
{
|
|
|
|
return (nsStyleUnit)mBottomUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleCoord& nsStyleSides::GetLeft(nsStyleCoord& aCoord) const
|
|
|
|
{
|
|
|
|
aCoord.SetUnionValue(mLeftValue, (nsStyleUnit)mLeftUnit);
|
|
|
|
return aCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleCoord& nsStyleSides::GetTop(nsStyleCoord& aCoord) const
|
|
|
|
{
|
|
|
|
aCoord.SetUnionValue(mTopValue, (nsStyleUnit)mTopUnit);
|
|
|
|
return aCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleCoord& nsStyleSides::GetRight(nsStyleCoord& aCoord) const
|
|
|
|
{
|
|
|
|
aCoord.SetUnionValue(mRightValue, (nsStyleUnit)mRightUnit);
|
|
|
|
return aCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsStyleCoord& nsStyleSides::GetBottom(nsStyleCoord& aCoord) const
|
|
|
|
{
|
|
|
|
aCoord.SetUnionValue(mBottomValue, (nsStyleUnit)mBottomUnit);
|
|
|
|
return aCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetLeft(const nsStyleCoord& aCoord)
|
|
|
|
{
|
|
|
|
mLeftUnit = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mLeftValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetTop(const nsStyleCoord& aCoord)
|
|
|
|
{
|
|
|
|
mTopUnit = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mTopValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetRight(const nsStyleCoord& aCoord)
|
|
|
|
{
|
|
|
|
mRightUnit = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mRightValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsStyleSides::SetBottom(const nsStyleCoord& aCoord)
|
|
|
|
{
|
|
|
|
mBottomUnit = aCoord.GetUnit();
|
|
|
|
aCoord.GetUnionValue(mBottomValue);
|
|
|
|
}
|
1998-04-29 03:54:06 +04:00
|
|
|
|
|
|
|
#endif /* nsStyleCoord_h___ */
|