/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * 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/ * * 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. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the NPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef nsStyleCoord_h___ #define nsStyleCoord_h___ #include "nscore.h" #include "nsCoord.h" #include "nsCRT.h" class nsString; enum nsStyleUnit { 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% eStyleUnit_Factor = 11, // (float) a multiplier eStyleUnit_Coord = 20, // (nscoord) value is twips eStyleUnit_Integer = 30, // (int) value is simple integer eStyleUnit_Proportional = 31, // (int) value has proportional meaning eStyleUnit_Enumerated = 32, // (int) value has enumerated meaning eStyleUnit_Chars = 33 // (int) value is number of characters }; typedef union { PRInt32 mInt; // nscoord is a PRInt32 for now float mFloat; } nsStyleUnion; /** * 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. */ class nsStyleCoord { public: nsStyleCoord(nsStyleUnit aUnit = eStyleUnit_Null); nsStyleCoord(nscoord aValue); nsStyleCoord(PRInt32 aValue, nsStyleUnit aUnit); nsStyleCoord(float aValue, nsStyleUnit aUnit); nsStyleCoord(const nsStyleCoord& aCopy); nsStyleCoord& operator=(const nsStyleCoord& aCopy); PRBool operator==(const nsStyleCoord& aOther) const; PRBool operator!=(const nsStyleCoord& aOther) const; nsStyleUnit GetUnit(void) const { return mUnit; } nscoord GetCoordValue(void) const; PRInt32 GetIntValue(void) const; float GetPercentValue(void) const; float GetFactorValue(void) const; void GetUnionValue(nsStyleUnion& aValue) const; void Reset(void); // sets to null void SetCoordValue(nscoord aValue); void SetIntValue(PRInt32 aValue, nsStyleUnit aUnit); void SetPercentValue(float aValue); void SetFactorValue(float aValue); void SetNormalValue(void); void SetAutoValue(void); void SetInheritValue(void); void SetUnionValue(const nsStyleUnion& aValue, nsStyleUnit aUnit); void AppendToString(nsString& aBuffer) const; void ToString(nsString& aBuffer) const; public: nsStyleUnit mUnit; nsStyleUnion mValue; }; /** * 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. */ class nsStyleSides { public: nsStyleSides(void); // nsStyleSides& operator=(const nsStyleSides& aCopy); // use compiler's version PRBool operator==(const nsStyleSides& aOther) const; PRBool operator!=(const nsStyleSides& aOther) const; 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; void Reset(void); void SetLeft(const nsStyleCoord& aCoord); void SetTop(const nsStyleCoord& aCoord); void SetRight(const nsStyleCoord& aCoord); void SetBottom(const nsStyleCoord& aCoord); void AppendToString(nsString& aBuffer) const; void ToString(nsString& aBuffer) const; protected: PRUint8 mLeftUnit; PRUint8 mTopUnit; PRUint8 mRightUnit; PRUint8 mBottomUnit; nsStyleUnion mLeftValue; nsStyleUnion mTopValue; nsStyleUnion mRightValue; nsStyleUnion mBottomValue; }; // ------------------------- // nsStyleCoord inlines // inline PRBool nsStyleCoord::operator!=(const nsStyleCoord& aOther) const { return PRBool(! ((*this) == aOther)); } inline PRInt32 nsStyleCoord::GetCoordValue(void) const { NS_ASSERTION((mUnit == eStyleUnit_Coord), "not a coord value"); if (mUnit == eStyleUnit_Coord) { return mValue.mInt; } return 0; } inline PRInt32 nsStyleCoord::GetIntValue(void) const { NS_ASSERTION((mUnit == eStyleUnit_Proportional) || (mUnit == eStyleUnit_Enumerated) || (mUnit == eStyleUnit_Chars) || (mUnit == eStyleUnit_Integer), "not an int value"); if ((mUnit == eStyleUnit_Proportional) || (mUnit == eStyleUnit_Enumerated) || (mUnit == eStyleUnit_Chars) || (mUnit == eStyleUnit_Integer)) { return mValue.mInt; } return 0; } inline float nsStyleCoord::GetPercentValue(void) const { NS_ASSERTION(mUnit == eStyleUnit_Percent, "not a percent value"); if (mUnit == eStyleUnit_Percent) { return mValue.mFloat; } return 0.0f; } 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 { memcpy(&aValue, &mValue, sizeof(nsStyleUnion)); } // ------------------------- // nsStyleSides inlines // inline PRBool nsStyleSides::operator!=(const nsStyleSides& aOther) const { return PRBool(! ((*this) == aOther)); } 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); } #endif /* nsStyleCoord_h___ */