2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-17 21:52:36 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2001-05-31 22:19:43 +00:00
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
2001-05-31 22:19:43 +00:00
|
|
|
*
|
2001-09-25 01:32:19 +00: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.
|
2001-05-31 22:19:43 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-25 01:32:19 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2001-05-31 22:19:43 +00:00
|
|
|
*
|
2001-09-25 01:32:19 +00:00
|
|
|
* Contributor(s):
|
2010-11-09 21:14:05 +00:00
|
|
|
* Mats Palmgren <matspal@gmail.com>
|
2006-12-27 14:21:43 +00:00
|
|
|
* Masayuki Nakano <masayuki@d-toybox.com>
|
2008-07-17 06:30:25 +00:00
|
|
|
* Rob Arnold <robarnold@mozilla.com>
|
2009-08-20 21:52:47 +00:00
|
|
|
* Jonathon Jongsma <jonathon.jongsma@collabora.co.uk>, Collabora Ltd.
|
|
|
|
* L. David Baron <dbaron@dbaron.org>, Mozilla Corporation
|
2001-09-25 01:32:19 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-17 21:52:36 +00:00
|
|
|
* either of 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"),
|
2001-09-25 01:32:19 +00:00
|
|
|
* 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
|
2004-04-17 21:52:36 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-25 01:32:19 +00:00
|
|
|
* 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
|
2004-04-17 21:52:36 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-25 01:32:19 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-25 05:47:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* structs that contain the data provided by nsStyleContext, the
|
|
|
|
* internal API for computed style data for an element
|
|
|
|
*/
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
#ifndef nsStyleStruct_h___
|
|
|
|
#define nsStyleStruct_h___
|
|
|
|
|
|
|
|
#include "nsColor.h"
|
|
|
|
#include "nsCoord.h"
|
|
|
|
#include "nsMargin.h"
|
|
|
|
#include "nsRect.h"
|
|
|
|
#include "nsFont.h"
|
|
|
|
#include "nsStyleCoord.h"
|
|
|
|
#include "nsStyleConsts.h"
|
2002-08-24 14:41:28 +00:00
|
|
|
#include "nsChangeHint.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2001-05-31 22:19:43 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2007-07-18 16:54:57 +00:00
|
|
|
#include "nsCOMArray.h"
|
2009-02-20 05:29:21 +00:00
|
|
|
#include "nsTArray.h"
|
2004-06-08 23:53:59 +00:00
|
|
|
#include "nsIAtom.h"
|
2003-10-01 22:53:56 +00:00
|
|
|
#include "nsIURI.h"
|
2005-04-01 23:07:00 +00:00
|
|
|
#include "nsCSSValue.h"
|
2008-09-13 09:42:11 +00:00
|
|
|
#include "nsStyleTransformMatrix.h"
|
2009-09-16 15:01:36 +00:00
|
|
|
#include "nsAlgorithm.h"
|
2009-12-11 04:02:13 +00:00
|
|
|
#include "imgIRequest.h"
|
2010-04-27 16:15:02 +00:00
|
|
|
#include "gfxRect.h"
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
class nsIFrame;
|
2004-03-09 03:57:51 +00:00
|
|
|
class imgIRequest;
|
2009-11-14 04:23:00 +00:00
|
|
|
class imgIContainer;
|
2010-07-03 04:18:56 +00:00
|
|
|
struct nsCSSValueList;
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2007-04-28 16:01:24 +00:00
|
|
|
// Includes nsStyleStructID.
|
|
|
|
#include "nsStyleStructFwd.h"
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2001-06-29 22:42:46 +00:00
|
|
|
// Bits for each struct.
|
2007-10-08 21:58:22 +00:00
|
|
|
// NS_STYLE_INHERIT_BIT defined in nsStyleStructFwd.h
|
2001-12-12 07:59:31 +00:00
|
|
|
#define NS_STYLE_INHERIT_MASK 0x00ffffff
|
2001-06-29 22:42:46 +00:00
|
|
|
|
2003-03-06 19:14:17 +00:00
|
|
|
// Additional bits for nsStyleContext's mBits:
|
2009-08-10 22:52:29 +00:00
|
|
|
// See nsStyleContext::HasTextDecorations
|
2002-03-31 16:59:00 +00:00
|
|
|
#define NS_STYLE_HAS_TEXT_DECORATIONS 0x01000000
|
2009-08-10 22:52:29 +00:00
|
|
|
// See nsStyleContext::HasPseudoElementData.
|
|
|
|
#define NS_STYLE_HAS_PSEUDO_ELEMENT_DATA 0x02000000
|
2010-04-03 01:58:25 +00:00
|
|
|
// See nsStyleContext::RelevantLinkIsVisited
|
|
|
|
#define NS_STYLE_RELEVANT_LINK_VISITED 0x04000000
|
2010-04-06 19:42:41 +00:00
|
|
|
// See nsStyleContext::IsStyleIfVisited
|
|
|
|
#define NS_STYLE_IS_STYLE_IF_VISITED 0x08000000
|
2009-12-11 07:37:40 +00:00
|
|
|
// See nsStyleContext::GetPseudoEnum
|
|
|
|
#define NS_STYLE_CONTEXT_TYPE_MASK 0xf0000000
|
|
|
|
#define NS_STYLE_CONTEXT_TYPE_SHIFT 28
|
2001-06-29 22:42:46 +00:00
|
|
|
|
2003-03-06 19:14:17 +00:00
|
|
|
// Additional bits for nsRuleNode's mDependentBits:
|
|
|
|
#define NS_RULE_NODE_GC_MARK 0x02000000
|
2007-05-16 21:08:51 +00:00
|
|
|
#define NS_RULE_NODE_IS_IMPORTANT 0x08000000
|
|
|
|
#define NS_RULE_NODE_LEVEL_MASK 0xf0000000
|
|
|
|
#define NS_RULE_NODE_LEVEL_SHIFT 28
|
2003-03-06 19:14:17 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
// The lifetime of these objects is managed by the presshell's arena.
|
|
|
|
|
2009-11-18 13:25:02 +00:00
|
|
|
// Each struct must implement a static ForceCompare() function returning a
|
|
|
|
// boolean. Structs that can return a hint that doesn't guarantee that the
|
|
|
|
// change will be applied to all descendants must return true from
|
|
|
|
// ForceCompare(), so that we will make sure to compare those structs in
|
|
|
|
// nsStyleContext::CalcStyleDifference.
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleFont {
|
2008-01-09 09:38:28 +00:00
|
|
|
nsStyleFont(const nsFont& aFont, nsPresContext *aPresContext);
|
2003-03-13 15:29:36 +00:00
|
|
|
nsStyleFont(const nsStyleFont& aStyleFont);
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleFont(nsPresContext *aPresContext);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleFont(void) {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleFont);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleFont& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2002-08-24 14:41:28 +00:00
|
|
|
static nsChangeHint CalcFontDifference(const nsFont& aFont1, const nsFont& aFont2);
|
2003-03-13 15:29:36 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
static nscoord ZoomText(nsPresContext* aPresContext, nscoord aSize);
|
|
|
|
static nscoord UnZoomText(nsPresContext* aPresContext, nscoord aSize);
|
2008-01-09 09:38:28 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW;
|
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2001-09-27 18:33:58 +00:00
|
|
|
nsFont mFont; // [inherited]
|
2008-10-10 14:56:18 +00:00
|
|
|
nscoord mSize; // [inherited] Our "computed size". Can be different
|
|
|
|
// from mFont.size which is our "actual size" and is
|
|
|
|
// enforced to be >= the user's preferred min-size.
|
|
|
|
// mFont.size should be used for display purposes
|
|
|
|
// while mSize is the value to return in
|
|
|
|
// getComputedStyle() for example.
|
|
|
|
PRUint8 mGenericID; // [inherited] generic CSS font family, if any;
|
|
|
|
// value is a kGenericFont_* constant, see nsFont.h.
|
2008-01-09 09:38:28 +00:00
|
|
|
|
|
|
|
#ifdef MOZ_MATHML
|
|
|
|
// MathML scriptlevel support
|
|
|
|
PRInt8 mScriptLevel; // [inherited]
|
|
|
|
// The value mSize would have had if scriptminsize had never been applied
|
|
|
|
nscoord mScriptUnconstrainedSize;
|
|
|
|
nscoord mScriptMinSize; // [inherited] length
|
|
|
|
float mScriptSizeMultiplier; // [inherited]
|
|
|
|
#endif
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2009-08-01 15:53:40 +00:00
|
|
|
struct nsStyleGradientStop {
|
2009-11-02 19:36:43 +00:00
|
|
|
nsStyleCoord mLocation; // percent, coord, none
|
2009-08-01 15:53:40 +00:00
|
|
|
nscolor mColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsStyleGradient {
|
|
|
|
public:
|
|
|
|
nsStyleGradient();
|
2009-11-02 19:36:43 +00:00
|
|
|
PRUint8 mShape; // NS_STYLE_GRADIENT_SHAPE_*
|
|
|
|
PRUint8 mSize; // NS_STYLE_GRADIENT_SIZE_*;
|
|
|
|
// not used (must be FARTHEST_CORNER) for linear shape
|
|
|
|
PRPackedBool mRepeating;
|
|
|
|
|
2010-09-15 15:11:26 +00:00
|
|
|
nsStyleCoord mBgPosX; // percent, coord, calc, none
|
|
|
|
nsStyleCoord mBgPosY; // percent, coord, calc, none
|
2009-11-02 19:36:43 +00:00
|
|
|
nsStyleCoord mAngle; // none, angle
|
2009-08-01 15:53:40 +00:00
|
|
|
|
|
|
|
// stops are in the order specified in the stylesheet
|
|
|
|
nsTArray<nsStyleGradientStop> mStops;
|
|
|
|
|
|
|
|
PRBool operator==(const nsStyleGradient& aOther) const;
|
|
|
|
PRBool operator!=(const nsStyleGradient& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
};
|
|
|
|
|
2011-01-03 01:48:09 +00:00
|
|
|
PRBool IsOpaque();
|
|
|
|
|
2010-04-01 18:05:40 +00:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(nsStyleGradient)
|
2010-04-01 16:37:59 +00:00
|
|
|
|
2010-04-01 18:05:40 +00:00
|
|
|
private:
|
2009-08-01 15:53:40 +00:00
|
|
|
~nsStyleGradient() {}
|
|
|
|
|
|
|
|
// Not to be implemented
|
|
|
|
nsStyleGradient(const nsStyleGradient& aOther);
|
|
|
|
nsStyleGradient& operator=(const nsStyleGradient& aOther);
|
|
|
|
};
|
|
|
|
|
2009-08-21 20:39:25 +00:00
|
|
|
enum nsStyleImageType {
|
|
|
|
eStyleImageType_Null,
|
|
|
|
eStyleImageType_Image,
|
2010-08-13 13:33:37 +00:00
|
|
|
eStyleImageType_Gradient,
|
|
|
|
eStyleImageType_Element
|
2009-08-21 20:39:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a paintable image of one of the following types.
|
|
|
|
* (1) A real image loaded from an external source.
|
|
|
|
* (2) A CSS linear or radial gradient.
|
2010-08-13 13:33:37 +00:00
|
|
|
* (3) An element within a document, or an <img>, <video>, or <canvas> element
|
|
|
|
* not in a document.
|
2009-08-21 20:39:25 +00:00
|
|
|
* (*) Optionally a crop rect can be set to paint a partial (rectangular)
|
|
|
|
* region of an image. (Currently, this feature is only supported with an
|
|
|
|
* image of type (1)).
|
|
|
|
*
|
|
|
|
* This struct is currently used only for 'background-image', but it may be
|
|
|
|
* used by other CSS properties such as 'border-image', 'list-style-image', and
|
|
|
|
* 'content' in the future (bug 507052).
|
|
|
|
*/
|
|
|
|
struct nsStyleImage {
|
|
|
|
nsStyleImage();
|
|
|
|
~nsStyleImage();
|
|
|
|
nsStyleImage(const nsStyleImage& aOther);
|
|
|
|
nsStyleImage& operator=(const nsStyleImage& aOther);
|
|
|
|
|
|
|
|
void SetNull();
|
|
|
|
void SetImageData(imgIRequest* aImage);
|
2010-08-05 21:57:18 +00:00
|
|
|
void TrackImage(nsPresContext* aContext);
|
|
|
|
void UntrackImage(nsPresContext* aContext);
|
2009-08-21 20:39:25 +00:00
|
|
|
void SetGradientData(nsStyleGradient* aGradient);
|
2010-08-13 13:33:37 +00:00
|
|
|
void SetElementId(const PRUnichar* aElementId);
|
2009-08-21 20:39:25 +00:00
|
|
|
void SetCropRect(nsStyleSides* aCropRect);
|
|
|
|
|
|
|
|
nsStyleImageType GetType() const {
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
imgIRequest* GetImageData() const {
|
2010-08-05 21:57:18 +00:00
|
|
|
NS_ABORT_IF_FALSE(mType == eStyleImageType_Image, "Data is not an image!");
|
|
|
|
NS_ABORT_IF_FALSE(mImageTracked,
|
|
|
|
"Should be tracking any image we're going to use!");
|
2009-08-21 20:39:25 +00:00
|
|
|
return mImage;
|
|
|
|
}
|
|
|
|
nsStyleGradient* GetGradientData() const {
|
|
|
|
NS_ASSERTION(mType == eStyleImageType_Gradient, "Data is not a gradient!");
|
|
|
|
return mGradient;
|
|
|
|
}
|
2010-08-13 13:33:37 +00:00
|
|
|
const PRUnichar* GetElementId() const {
|
|
|
|
NS_ASSERTION(mType == eStyleImageType_Element, "Data is not an element!");
|
|
|
|
return mElementId;
|
|
|
|
}
|
2009-08-21 20:39:25 +00:00
|
|
|
nsStyleSides* GetCropRect() const {
|
|
|
|
NS_ASSERTION(mType == eStyleImageType_Image,
|
|
|
|
"Only image data can have a crop rect");
|
|
|
|
return mCropRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute the actual crop rect in pixels, using the source image bounds.
|
|
|
|
* The computation involves converting percentage unit to pixel unit and
|
|
|
|
* clamping each side value to fit in the source image bounds.
|
|
|
|
* @param aActualCropRect the computed actual crop rect.
|
|
|
|
* @param aIsEntireImage PR_TRUE iff |aActualCropRect| is identical to the
|
|
|
|
* source image bounds.
|
|
|
|
* @return PR_TRUE iff |aActualCropRect| holds a meaningful value.
|
|
|
|
*/
|
|
|
|
PRBool ComputeActualCropRect(nsIntRect& aActualCropRect,
|
|
|
|
PRBool* aIsEntireImage = nsnull) const;
|
|
|
|
|
2009-09-12 22:44:18 +00:00
|
|
|
/**
|
|
|
|
* Requests a decode on the image.
|
|
|
|
*/
|
2010-08-05 21:30:19 +00:00
|
|
|
nsresult RequestDecode() const;
|
2009-08-21 20:39:25 +00:00
|
|
|
/**
|
|
|
|
* @return PR_TRUE if the item is definitely opaque --- i.e., paints every
|
|
|
|
* pixel within its bounds opaquely, and the bounds contains at least a pixel.
|
|
|
|
*/
|
|
|
|
PRBool IsOpaque() const;
|
|
|
|
/**
|
|
|
|
* @return PR_TRUE if this image is fully loaded, and its size is calculated;
|
2010-08-13 13:33:37 +00:00
|
|
|
* always returns PR_TRUE if |mType| is |eStyleImageType_Gradient| or
|
|
|
|
* |eStyleImageType_Element|.
|
2009-08-21 20:39:25 +00:00
|
|
|
*/
|
|
|
|
PRBool IsComplete() const;
|
|
|
|
/**
|
|
|
|
* @return PR_TRUE if it is 100% confident that this image contains no pixel
|
|
|
|
* to draw.
|
|
|
|
*/
|
|
|
|
PRBool IsEmpty() const {
|
|
|
|
// There are some other cases when the image will be empty, for example
|
|
|
|
// when the crop rect is empty. However, checking the emptiness of crop
|
|
|
|
// rect is non-trivial since each side value can be specified with
|
|
|
|
// percentage unit, which can not be evaluated until the source image size
|
|
|
|
// is available. Therefore, we currently postpone the evaluation of crop
|
2011-01-03 01:48:09 +00:00
|
|
|
// rect until the actual rendering time --- alternatively until GetOpaqueRegion()
|
2009-08-21 20:39:25 +00:00
|
|
|
// is called.
|
|
|
|
return mType == eStyleImageType_Null;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator==(const nsStyleImage& aOther) const;
|
|
|
|
PRBool operator!=(const nsStyleImage& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void DoCopy(const nsStyleImage& aOther);
|
|
|
|
|
|
|
|
nsStyleImageType mType;
|
|
|
|
union {
|
|
|
|
imgIRequest* mImage;
|
|
|
|
nsStyleGradient* mGradient;
|
2010-08-13 13:33:37 +00:00
|
|
|
PRUnichar* mElementId;
|
2009-08-21 20:39:25 +00:00
|
|
|
};
|
|
|
|
// This is _currently_ used only in conjunction with eStyleImageType_Image.
|
|
|
|
nsAutoPtr<nsStyleSides> mCropRect;
|
2010-08-05 21:57:18 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool mImageTracked;
|
|
|
|
#endif
|
2009-08-21 20:39:25 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleColor {
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleColor(nsPresContext* aPresContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleColor(const nsStyleColor& aOther);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleColor(void) {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleColor);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleColor& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleColor();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleColor), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
// Don't add ANY members to this struct! We can achieve caching in the rule
|
|
|
|
// tree (rather than the style tree) by letting color stay by itself! -dwh
|
|
|
|
nscolor mColor; // [inherited]
|
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleBackground {
|
2008-09-12 15:35:53 +00:00
|
|
|
nsStyleBackground();
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleBackground(const nsStyleBackground& aOther);
|
2004-03-09 03:57:51 +00:00
|
|
|
~nsStyleBackground();
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2010-08-05 21:57:18 +00:00
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleBackground& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2002-10-08 10:24:53 +00:00
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
struct Position;
|
|
|
|
friend struct Position;
|
|
|
|
struct Position {
|
2010-09-15 15:11:26 +00:00
|
|
|
struct PositionCoord {
|
|
|
|
// A 'background-position' can be a linear combination of length
|
|
|
|
// and percent (thanks to calc(), which can combine them).
|
|
|
|
nscoord mLength;
|
|
|
|
float mPercent;
|
|
|
|
|
|
|
|
bool operator==(const PositionCoord& aOther) const
|
|
|
|
{ return mLength == aOther.mLength && mPercent == aOther.mPercent; }
|
|
|
|
bool operator!=(const PositionCoord& aOther) const
|
|
|
|
{ return !(*this == aOther); }
|
|
|
|
};
|
2009-02-20 05:29:21 +00:00
|
|
|
PositionCoord mXPosition, mYPosition;
|
|
|
|
|
|
|
|
// Initialize nothing
|
|
|
|
Position() {}
|
|
|
|
|
|
|
|
// Initialize to initial values
|
|
|
|
void SetInitialValues();
|
|
|
|
|
2009-10-22 23:46:08 +00:00
|
|
|
// True if the effective background image position described by this depends
|
|
|
|
// on the size of the corresponding frame.
|
|
|
|
PRBool DependsOnFrameSize() const {
|
2010-09-15 15:11:26 +00:00
|
|
|
return mXPosition.mPercent != 0.0f || mYPosition.mPercent != 0.0f;
|
2009-10-22 23:46:08 +00:00
|
|
|
}
|
|
|
|
|
2010-09-15 15:11:26 +00:00
|
|
|
bool operator==(const Position& aOther) const {
|
|
|
|
return mXPosition == aOther.mXPosition &&
|
|
|
|
mYPosition == aOther.mYPosition;
|
2009-02-20 05:29:21 +00:00
|
|
|
}
|
2010-09-15 15:11:26 +00:00
|
|
|
bool operator!=(const Position& aOther) const {
|
2009-02-20 05:29:21 +00:00
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-28 18:09:05 +00:00
|
|
|
struct Size;
|
|
|
|
friend struct Size;
|
|
|
|
struct Size {
|
2010-09-15 15:11:26 +00:00
|
|
|
struct Dimension {
|
|
|
|
// A 'background-size' can be a linear combination of length
|
|
|
|
// and percent (thanks to calc(), which can combine them).
|
|
|
|
nscoord mLength;
|
|
|
|
float mPercent;
|
|
|
|
|
|
|
|
bool operator==(const Dimension& aOther) const
|
|
|
|
{ return mLength == aOther.mLength && mPercent == aOther.mPercent; }
|
|
|
|
bool operator!=(const Dimension& aOther) const
|
|
|
|
{ return !(*this == aOther); }
|
|
|
|
};
|
2009-05-28 18:09:05 +00:00
|
|
|
Dimension mWidth, mHeight;
|
|
|
|
|
2010-09-15 15:11:26 +00:00
|
|
|
// Except for eLengthPercentage, Dimension types which might change
|
|
|
|
// how a layer is painted when the corresponding frame's dimensions
|
|
|
|
// change *must* precede all dimension types which are agnostic to
|
|
|
|
// frame size; see DependsOnFrameSize below.
|
2009-05-28 18:09:05 +00:00
|
|
|
enum DimensionType {
|
|
|
|
// If one of mWidth and mHeight is eContain or eCover, then both are.
|
|
|
|
// Also, these two values must equal the corresponding values in
|
|
|
|
// kBackgroundSizeKTable.
|
|
|
|
eContain, eCover,
|
|
|
|
|
2009-10-22 23:46:08 +00:00
|
|
|
eAuto,
|
2010-09-15 15:11:26 +00:00
|
|
|
eLengthPercentage,
|
2009-05-28 18:09:05 +00:00
|
|
|
eDimensionType_COUNT
|
|
|
|
};
|
|
|
|
PRUint8 mWidthType, mHeightType;
|
|
|
|
|
2009-12-15 20:34:19 +00:00
|
|
|
// True if the effective image size described by this depends on
|
|
|
|
// the size of the corresponding frame. Gradients depend on the
|
|
|
|
// frame size when their dimensions are 'auto', images don't; both
|
|
|
|
// types depend on the frame size when their dimensions are
|
|
|
|
// 'contain', 'cover', or a percentage.
|
2010-08-13 13:33:37 +00:00
|
|
|
// -moz-element also depends on the frame size when the dimensions
|
|
|
|
// are 'auto' since it could be an SVG gradient or pattern which
|
|
|
|
// behaves exactly like a CSS gradient.
|
2010-09-15 15:11:26 +00:00
|
|
|
bool DependsOnFrameSize(nsStyleImageType aType) const {
|
|
|
|
if ((mWidthType == eLengthPercentage && mWidth.mPercent != 0.0f) ||
|
|
|
|
(mHeightType == eLengthPercentage && mHeight.mPercent != 0.0f)) {
|
|
|
|
return true;
|
|
|
|
}
|
2009-12-15 20:34:19 +00:00
|
|
|
if (aType == eStyleImageType_Image) {
|
2010-09-15 15:11:26 +00:00
|
|
|
return mWidthType <= eCover || mHeightType <= eCover;
|
2009-12-15 20:34:19 +00:00
|
|
|
} else {
|
2010-08-13 13:33:37 +00:00
|
|
|
NS_ABORT_IF_FALSE(aType == eStyleImageType_Gradient ||
|
|
|
|
aType == eStyleImageType_Element,
|
2009-12-16 03:01:01 +00:00
|
|
|
"unrecognized image type");
|
|
|
|
return mWidthType <= eAuto || mHeightType <= eAuto;
|
2009-12-15 20:34:19 +00:00
|
|
|
}
|
2009-10-22 23:46:08 +00:00
|
|
|
}
|
|
|
|
|
2009-05-28 18:09:05 +00:00
|
|
|
// Initialize nothing
|
|
|
|
Size() {}
|
|
|
|
|
|
|
|
// Initialize to initial values
|
|
|
|
void SetInitialValues();
|
|
|
|
|
2010-09-15 15:11:26 +00:00
|
|
|
bool operator==(const Size& aOther) const;
|
|
|
|
bool operator!=(const Size& aOther) const {
|
2009-05-28 18:09:05 +00:00
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
struct Layer;
|
|
|
|
friend struct Layer;
|
|
|
|
struct Layer {
|
|
|
|
PRUint8 mAttachment; // [reset] See nsStyleConsts.h
|
|
|
|
PRUint8 mClip; // [reset] See nsStyleConsts.h
|
|
|
|
PRUint8 mOrigin; // [reset] See nsStyleConsts.h
|
|
|
|
PRUint8 mRepeat; // [reset] See nsStyleConsts.h
|
|
|
|
Position mPosition; // [reset]
|
2009-08-21 20:39:25 +00:00
|
|
|
nsStyleImage mImage; // [reset]
|
2009-05-28 18:09:05 +00:00
|
|
|
Size mSize; // [reset]
|
2009-02-19 20:33:09 +00:00
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
// Initializes only mImage
|
|
|
|
Layer();
|
|
|
|
~Layer();
|
|
|
|
|
2010-08-05 21:57:18 +00:00
|
|
|
// Register/unregister images with the document. We do this only
|
|
|
|
// after the dust has settled in ComputeBackgroundData.
|
|
|
|
void TrackImages(nsPresContext* aContext) {
|
|
|
|
if (mImage.GetType() == eStyleImageType_Image)
|
|
|
|
mImage.TrackImage(aContext);
|
|
|
|
}
|
|
|
|
void UntrackImages(nsPresContext* aContext) {
|
|
|
|
if (mImage.GetType() == eStyleImageType_Image)
|
|
|
|
mImage.UntrackImage(aContext);
|
|
|
|
}
|
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
void SetInitialValues();
|
|
|
|
|
2009-12-15 20:08:59 +00:00
|
|
|
// True if the rendering of this layer might change when the size
|
|
|
|
// of the corresponding frame changes. This is true for any
|
|
|
|
// non-solid-color background whose position or size depends on
|
2010-10-06 22:18:52 +00:00
|
|
|
// the frame size. It's also true for SVG images whose root <svg>
|
|
|
|
// node has a viewBox.
|
2010-10-06 22:18:52 +00:00
|
|
|
PRBool RenderingMightDependOnFrameSize() const;
|
2009-10-22 23:46:08 +00:00
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
// An equality operator that compares the images using URL-equality
|
|
|
|
// rather than pointer-equality.
|
|
|
|
PRBool operator==(const Layer& aOther) const;
|
|
|
|
PRBool operator!=(const Layer& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// The (positive) number of computed values of each property, since
|
|
|
|
// the lengths of the lists are independent.
|
|
|
|
PRUint32 mAttachmentCount,
|
|
|
|
mClipCount,
|
|
|
|
mOriginCount,
|
|
|
|
mRepeatCount,
|
|
|
|
mPositionCount,
|
2009-05-28 18:09:05 +00:00
|
|
|
mImageCount,
|
|
|
|
mSizeCount;
|
2009-02-20 05:29:21 +00:00
|
|
|
// Layers are stored in an array, matching the top-to-bottom order in
|
|
|
|
// which they are specified in CSS. The number of layers to be used
|
|
|
|
// should come from the background-image property. We create
|
|
|
|
// additional |Layer| objects for *any* property, not just
|
|
|
|
// background-image. This means that the bottommost layer that
|
|
|
|
// callers in layout care about (which is also the one whose
|
|
|
|
// background-clip applies to the background-color) may not be last
|
|
|
|
// layer. In layers below the bottom layer, properties will be
|
2009-05-28 18:09:05 +00:00
|
|
|
// uninitialized unless their count, above, indicates that they are
|
2009-02-20 05:29:21 +00:00
|
|
|
// present.
|
|
|
|
nsAutoTArray<Layer, 1> mLayers;
|
|
|
|
|
|
|
|
const Layer& BottomLayer() const { return mLayers[mImageCount - 1]; }
|
|
|
|
|
|
|
|
#define NS_FOR_VISIBLE_BACKGROUND_LAYERS_BACK_TO_FRONT(var_, stylebg_) \
|
|
|
|
for (PRUint32 var_ = (stylebg_)->mImageCount; var_-- != 0; )
|
2003-01-19 02:36:04 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
nscolor mBackgroundColor; // [reset]
|
2009-02-20 05:29:21 +00:00
|
|
|
|
|
|
|
// FIXME: This (now background-break in css3-background) should
|
|
|
|
// probably move into a different struct so that everything in
|
|
|
|
// nsStyleBackground is set by the background shorthand.
|
|
|
|
PRUint8 mBackgroundInlinePolicy; // [reset] See nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-09-12 15:35:53 +00:00
|
|
|
// True if this background is completely transparent.
|
2009-02-20 05:29:21 +00:00
|
|
|
PRBool IsTransparent() const;
|
2004-09-13 05:39:27 +00:00
|
|
|
|
2004-09-13 20:40:46 +00:00
|
|
|
// We have to take slower codepaths for fixed background attachment,
|
|
|
|
// but we don't want to do that when there's no image.
|
|
|
|
// Not inline because it uses an nsCOMPtr<imgIRequest>
|
2008-07-17 06:30:25 +00:00
|
|
|
// FIXME: Should be in nsStyleStructInlines.h.
|
2004-09-13 20:40:46 +00:00
|
|
|
PRBool HasFixedBackground() const;
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-09-13 03:45:37 +00:00
|
|
|
// See https://bugzilla.mozilla.org/show_bug.cgi?id=271586#c43 for why
|
|
|
|
// this is hard to replace with 'currentColor'.
|
2001-05-31 22:19:43 +00:00
|
|
|
#define BORDER_COLOR_FOREGROUND 0x20
|
2007-03-15 16:16:20 +00:00
|
|
|
#define OUTLINE_COLOR_INITIAL 0x80
|
2008-09-12 15:35:53 +00:00
|
|
|
// FOREGROUND | INITIAL(OUTLINE)
|
|
|
|
#define BORDER_COLOR_SPECIAL 0xA0
|
2001-05-31 22:19:43 +00:00
|
|
|
#define BORDER_STYLE_MASK 0x1F
|
|
|
|
|
|
|
|
#define NS_SPACING_MARGIN 0
|
|
|
|
#define NS_SPACING_PADDING 1
|
|
|
|
#define NS_SPACING_BORDER 2
|
|
|
|
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleMargin {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleMargin(void);
|
|
|
|
nsStyleMargin(const nsStyleMargin& aMargin);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleMargin(void) {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleMargin);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW;
|
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
void RecalcData();
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleMargin& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_TRUE; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2010-08-31 16:05:12 +00:00
|
|
|
nsStyleSides mMargin; // [reset] coord, percent, calc, auto
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2010-11-09 21:14:05 +00:00
|
|
|
PRBool IsWidthDependent() const { return !mHasCachedMargin; }
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool GetMargin(nsMargin& aMargin) const
|
|
|
|
{
|
|
|
|
if (mHasCachedMargin) {
|
|
|
|
aMargin = mCachedMargin;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRPackedBool mHasCachedMargin;
|
|
|
|
nsMargin mCachedMargin;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStylePadding {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStylePadding(void);
|
|
|
|
nsStylePadding(const nsStylePadding& aPadding);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStylePadding(void) {
|
|
|
|
MOZ_COUNT_DTOR(nsStylePadding);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW;
|
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
void RecalcData();
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStylePadding& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_TRUE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2010-08-31 16:05:12 +00:00
|
|
|
nsStyleSides mPadding; // [reset] coord, percent, calc
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2010-11-09 21:14:05 +00:00
|
|
|
PRBool IsWidthDependent() const { return !mHasCachedPadding; }
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool GetPadding(nsMargin& aPadding) const
|
|
|
|
{
|
|
|
|
if (mHasCachedPadding) {
|
|
|
|
aPadding = mCachedPadding;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRPackedBool mHasCachedPadding;
|
|
|
|
nsMargin mCachedPadding;
|
|
|
|
};
|
|
|
|
|
2001-12-05 08:35:05 +00:00
|
|
|
struct nsBorderColors {
|
|
|
|
nsBorderColors* mNext;
|
|
|
|
nscolor mColor;
|
2001-12-11 11:13:16 +00:00
|
|
|
|
2008-10-17 08:13:16 +00:00
|
|
|
nsBorderColors() : mNext(nsnull), mColor(NS_RGB(0,0,0)) {}
|
|
|
|
nsBorderColors(const nscolor& aColor) : mNext(nsnull), mColor(aColor) {}
|
|
|
|
~nsBorderColors();
|
2001-12-05 08:35:05 +00:00
|
|
|
|
2008-10-17 08:13:16 +00:00
|
|
|
nsBorderColors* Clone() const { return Clone(PR_TRUE); }
|
2001-12-19 11:59:31 +00:00
|
|
|
|
2008-09-12 15:35:53 +00:00
|
|
|
static PRBool Equal(const nsBorderColors* c1,
|
|
|
|
const nsBorderColors* c2) {
|
|
|
|
if (c1 == c2)
|
|
|
|
return PR_TRUE;
|
2001-12-19 11:59:31 +00:00
|
|
|
while (c1 && c2) {
|
2008-09-12 15:35:53 +00:00
|
|
|
if (c1->mColor != c2->mColor)
|
2001-12-19 11:59:31 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
c1 = c1->mNext;
|
|
|
|
c2 = c2->mNext;
|
|
|
|
}
|
2008-09-12 15:35:53 +00:00
|
|
|
// both should be NULL if these are equal, otherwise one
|
|
|
|
// has more colors than another
|
2001-12-19 11:59:31 +00:00
|
|
|
return !c1 && !c2;
|
|
|
|
}
|
2008-10-17 08:13:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsBorderColors* Clone(PRBool aDeep) const;
|
2001-12-05 08:35:05 +00:00
|
|
|
};
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-07-08 00:56:52 +00:00
|
|
|
struct nsCSSShadowItem {
|
2008-09-13 03:45:37 +00:00
|
|
|
nscoord mXOffset;
|
|
|
|
nscoord mYOffset;
|
|
|
|
nscoord mRadius;
|
|
|
|
nscoord mSpread;
|
2008-07-08 00:56:52 +00:00
|
|
|
|
|
|
|
nscolor mColor;
|
|
|
|
PRPackedBool mHasColor; // Whether mColor should be used
|
2009-02-10 08:45:13 +00:00
|
|
|
PRPackedBool mInset;
|
2008-07-08 00:56:52 +00:00
|
|
|
|
|
|
|
nsCSSShadowItem() : mHasColor(PR_FALSE) {
|
|
|
|
MOZ_COUNT_CTOR(nsCSSShadowItem);
|
|
|
|
}
|
|
|
|
~nsCSSShadowItem() {
|
|
|
|
MOZ_COUNT_DTOR(nsCSSShadowItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator==(const nsCSSShadowItem& aOther) {
|
|
|
|
return (mXOffset == aOther.mXOffset &&
|
|
|
|
mYOffset == aOther.mYOffset &&
|
|
|
|
mRadius == aOther.mRadius &&
|
|
|
|
mHasColor == aOther.mHasColor &&
|
|
|
|
mSpread == aOther.mSpread &&
|
2009-02-10 08:45:13 +00:00
|
|
|
mInset == aOther.mInset &&
|
2008-07-08 00:56:52 +00:00
|
|
|
(!mHasColor || mColor == aOther.mColor));
|
|
|
|
}
|
|
|
|
PRBool operator!=(const nsCSSShadowItem& aOther) {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsCSSShadowArray {
|
|
|
|
public:
|
|
|
|
void* operator new(size_t aBaseSize, PRUint32 aArrayLen) {
|
|
|
|
// We can allocate both this nsCSSShadowArray and the
|
|
|
|
// actual array in one allocation. The amount of memory to
|
|
|
|
// allocate is equal to the class's size + the number of bytes for all
|
|
|
|
// but the first array item (because aBaseSize includes one
|
|
|
|
// item, see the private declarations)
|
|
|
|
return ::operator new(aBaseSize +
|
|
|
|
(aArrayLen - 1) * sizeof(nsCSSShadowItem));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSShadowArray(PRUint32 aArrayLen) :
|
2010-04-01 18:05:40 +00:00
|
|
|
mLength(aArrayLen)
|
2008-07-08 00:56:52 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsCSSShadowArray);
|
|
|
|
for (PRUint32 i = 1; i < mLength; ++i) {
|
|
|
|
// Make sure we call the constructors of each nsCSSShadowItem
|
|
|
|
// (the first one is called for us because we declared it under private)
|
|
|
|
new (&mArray[i]) nsCSSShadowItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
~nsCSSShadowArray() {
|
|
|
|
MOZ_COUNT_DTOR(nsCSSShadowArray);
|
|
|
|
for (PRUint32 i = 1; i < mLength; ++i) {
|
|
|
|
mArray[i].~nsCSSShadowItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 Length() const { return mLength; }
|
|
|
|
nsCSSShadowItem* ShadowAt(PRUint32 i) {
|
|
|
|
NS_ABORT_IF_FALSE(i < mLength, "Accessing too high an index in the text shadow array!");
|
|
|
|
return &mArray[i];
|
|
|
|
}
|
|
|
|
const nsCSSShadowItem* ShadowAt(PRUint32 i) const {
|
|
|
|
NS_ABORT_IF_FALSE(i < mLength, "Accessing too high an index in the text shadow array!");
|
|
|
|
return &mArray[i];
|
|
|
|
}
|
|
|
|
|
2010-04-01 18:05:40 +00:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(nsCSSShadowArray)
|
|
|
|
|
2008-07-08 00:56:52 +00:00
|
|
|
private:
|
|
|
|
PRUint32 mLength;
|
|
|
|
nsCSSShadowItem mArray[1]; // This MUST be the last item
|
|
|
|
};
|
|
|
|
|
2008-03-25 04:55:47 +00:00
|
|
|
// Border widths are rounded to the nearest-below integer number of pixels,
|
|
|
|
// but values between zero and one device pixels are always rounded up to
|
|
|
|
// one device pixel.
|
2006-12-27 14:21:43 +00:00
|
|
|
#define NS_ROUND_BORDER_TO_PIXELS(l,tpp) \
|
2009-09-16 15:01:36 +00:00
|
|
|
((l) == 0) ? 0 : NS_MAX((tpp), (l) / (tpp) * (tpp))
|
2007-02-08 21:04:54 +00:00
|
|
|
// Outline offset is rounded to the nearest integer number of pixels, but values
|
|
|
|
// between zero and one device pixels are always rounded up to one device pixel.
|
|
|
|
// Note that the offset can be negative.
|
|
|
|
#define NS_ROUND_OFFSET_TO_PIXELS(l,tpp) \
|
|
|
|
(((l) == 0) ? 0 : \
|
2009-09-16 15:01:36 +00:00
|
|
|
((l) > 0) ? NS_MAX( (tpp), ((l) + ((tpp) / 2)) / (tpp) * (tpp)) : \
|
|
|
|
NS_MIN(-(tpp), ((l) - ((tpp) / 2)) / (tpp) * (tpp)))
|
2006-12-27 14:21:43 +00:00
|
|
|
|
2008-07-19 10:38:25 +00:00
|
|
|
// Returns if the given border style type is visible or not
|
|
|
|
static PRBool IsVisibleBorderStyle(PRUint8 aStyle)
|
|
|
|
{
|
|
|
|
return (aStyle != NS_STYLE_BORDER_STYLE_NONE &&
|
|
|
|
aStyle != NS_STYLE_BORDER_STYLE_HIDDEN);
|
|
|
|
}
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleBorder {
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleBorder(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleBorder(const nsStyleBorder& aBorder);
|
2008-07-17 06:30:25 +00:00
|
|
|
~nsStyleBorder();
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW;
|
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleBorder& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2008-07-17 06:30:25 +00:00
|
|
|
PRBool ImageBorderDiffers() const;
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2010-09-09 15:21:45 +00:00
|
|
|
nsStyleCorners mBorderRadius; // [reset] coord, percent, calc
|
2008-07-17 06:30:25 +00:00
|
|
|
nsStyleSides mBorderImageSplit; // [reset] integer, percent
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mFloatEdge; // [reset] see nsStyleConsts.h
|
2008-07-17 06:30:25 +00:00
|
|
|
PRUint8 mBorderImageHFill; // [reset]
|
|
|
|
PRUint8 mBorderImageVFill; // [reset]
|
2001-12-05 08:35:05 +00:00
|
|
|
nsBorderColors** mBorderColors; // [reset] multiple levels of color for a border.
|
2008-07-08 00:56:52 +00:00
|
|
|
nsRefPtr<nsCSSShadowArray> mBoxShadow; // [reset] NULL for 'none'
|
2008-07-17 06:30:25 +00:00
|
|
|
PRBool mHaveBorderImageWidth; // [reset]
|
|
|
|
nsMargin mBorderImageWidth; // [reset]
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-12-05 08:35:05 +00:00
|
|
|
void EnsureBorderColors() {
|
|
|
|
if (!mBorderColors) {
|
|
|
|
mBorderColors = new nsBorderColors*[4];
|
|
|
|
if (mBorderColors)
|
|
|
|
for (PRInt32 i = 0; i < 4; i++)
|
|
|
|
mBorderColors[i] = nsnull;
|
|
|
|
}
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void ClearBorderColors(mozilla::css::Side aSide) {
|
2008-12-23 14:06:56 +00:00
|
|
|
if (mBorderColors && mBorderColors[aSide]) {
|
2001-12-11 11:13:16 +00:00
|
|
|
delete mBorderColors[aSide];
|
|
|
|
mBorderColors[aSide] = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-29 15:44:38 +00:00
|
|
|
// Return whether aStyle is a visible style. Invisible styles cause
|
|
|
|
// the relevant computed border width to be 0.
|
2008-07-17 06:30:25 +00:00
|
|
|
// Note that this does *not* consider the effects of 'border-image':
|
|
|
|
// if border-style is none, but there is a loaded border image,
|
|
|
|
// HasVisibleStyle will be false even though there *is* a border.
|
2010-04-27 16:15:02 +00:00
|
|
|
PRBool HasVisibleStyle(mozilla::css::Side aSide)
|
2008-07-17 06:30:25 +00:00
|
|
|
{
|
2008-07-19 10:38:25 +00:00
|
|
|
return IsVisibleBorderStyle(GetBorderStyle(aSide));
|
2008-07-17 05:59:14 +00:00
|
|
|
}
|
2005-04-29 15:44:38 +00:00
|
|
|
|
|
|
|
// aBorderWidth is in twips
|
2010-04-27 16:15:02 +00:00
|
|
|
void SetBorderWidth(mozilla::css::Side aSide, nscoord aBorderWidth)
|
2008-07-17 05:59:14 +00:00
|
|
|
{
|
2008-07-17 06:30:25 +00:00
|
|
|
nscoord roundedWidth =
|
|
|
|
NS_ROUND_BORDER_TO_PIXELS(aBorderWidth, mTwipsPerPixel);
|
|
|
|
mBorder.side(aSide) = roundedWidth;
|
|
|
|
if (HasVisibleStyle(aSide))
|
|
|
|
mComputedBorder.side(aSide) = roundedWidth;
|
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void SetBorderImageWidthOverride(mozilla::css::Side aSide, nscoord aBorderWidth)
|
2008-07-17 06:30:25 +00:00
|
|
|
{
|
|
|
|
mBorderImageWidth.side(aSide) =
|
|
|
|
NS_ROUND_BORDER_TO_PIXELS(aBorderWidth, mTwipsPerPixel);
|
2008-07-17 05:59:14 +00:00
|
|
|
}
|
|
|
|
|
2008-07-17 06:30:25 +00:00
|
|
|
// Get the actual border, in twips. (If there is no border-image
|
|
|
|
// loaded, this is the same as GetComputedBorder. If there is a
|
|
|
|
// border-image loaded, it uses the border-image width overrides if
|
|
|
|
// present, and otherwise mBorder, which is GetComputedBorder without
|
|
|
|
// considering border-style: none.)
|
|
|
|
const nsMargin& GetActualBorder() const;
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2008-07-17 06:30:25 +00:00
|
|
|
// Get the computed border (plus rounding). This does consider the
|
|
|
|
// effects of 'border-style: none', but does not consider
|
|
|
|
// 'border-image'.
|
|
|
|
const nsMargin& GetComputedBorder() const
|
2005-04-29 15:44:38 +00:00
|
|
|
{
|
2008-07-17 06:30:25 +00:00
|
|
|
return mComputedBorder;
|
2005-04-29 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
2009-05-08 01:52:22 +00:00
|
|
|
// Get the actual border width for a particular side, in appunits. Note that
|
2005-04-29 15:44:38 +00:00
|
|
|
// this is zero if and only if there is no border to be painted for this
|
2006-12-27 14:21:43 +00:00
|
|
|
// side. That is, this value takes into account the border style and the
|
|
|
|
// value is rounded to the nearest device pixel by NS_ROUND_BORDER_TO_PIXELS.
|
2010-04-27 16:15:02 +00:00
|
|
|
nscoord GetActualBorderWidth(mozilla::css::Side aSide) const
|
2005-04-29 15:44:38 +00:00
|
|
|
{
|
2008-07-17 06:30:25 +00:00
|
|
|
return GetActualBorder().side(aSide);
|
2006-12-27 14:21:43 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
PRUint8 GetBorderStyle(mozilla::css::Side aSide) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2010-04-27 16:15:01 +00:00
|
|
|
NS_ASSERTION(aSide <= NS_SIDE_LEFT, "bad side");
|
|
|
|
return (mBorderStyle[aSide] & BORDER_STYLE_MASK);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void SetBorderStyle(mozilla::css::Side aSide, PRUint8 aStyle)
|
2008-07-17 05:59:14 +00:00
|
|
|
{
|
2010-04-27 16:15:01 +00:00
|
|
|
NS_ASSERTION(aSide <= NS_SIDE_LEFT, "bad side");
|
|
|
|
mBorderStyle[aSide] &= ~BORDER_STYLE_MASK;
|
2008-07-17 05:59:14 +00:00
|
|
|
mBorderStyle[aSide] |= (aStyle & BORDER_STYLE_MASK);
|
2008-07-17 06:30:25 +00:00
|
|
|
mComputedBorder.side(aSide) =
|
|
|
|
(HasVisibleStyle(aSide) ? mBorder.side(aSide) : 0);
|
2008-07-17 05:59:14 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-07-17 06:30:25 +00:00
|
|
|
// Defined in nsStyleStructInlines.h
|
|
|
|
inline PRBool IsBorderImageLoaded() const;
|
2009-09-12 22:44:18 +00:00
|
|
|
inline nsresult RequestDecode();
|
2008-07-17 06:30:25 +00:00
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void GetBorderColor(mozilla::css::Side aSide, nscolor& aColor,
|
2008-09-12 15:35:53 +00:00
|
|
|
PRBool& aForeground) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2008-09-12 15:35:53 +00:00
|
|
|
aForeground = PR_FALSE;
|
2010-04-27 16:15:01 +00:00
|
|
|
NS_ASSERTION(aSide <= NS_SIDE_LEFT, "bad side");
|
2001-05-31 22:19:43 +00:00
|
|
|
if ((mBorderStyle[aSide] & BORDER_COLOR_SPECIAL) == 0)
|
2010-04-27 16:15:01 +00:00
|
|
|
aColor = mBorderColor[aSide];
|
2001-05-31 22:19:43 +00:00
|
|
|
else if (mBorderStyle[aSide] & BORDER_COLOR_FOREGROUND)
|
|
|
|
aForeground = PR_TRUE;
|
|
|
|
else
|
2008-09-12 15:35:53 +00:00
|
|
|
NS_NOTREACHED("OUTLINE_COLOR_INITIAL should not be set here");
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void SetBorderColor(mozilla::css::Side aSide, nscolor aColor)
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2010-04-27 16:15:01 +00:00
|
|
|
NS_ASSERTION(aSide <= NS_SIDE_LEFT, "bad side");
|
|
|
|
mBorderColor[aSide] = aColor;
|
2001-05-31 22:19:43 +00:00
|
|
|
mBorderStyle[aSide] &= ~BORDER_COLOR_SPECIAL;
|
|
|
|
}
|
|
|
|
|
2008-07-17 06:30:25 +00:00
|
|
|
// These are defined in nsStyleStructInlines.h
|
|
|
|
inline void SetBorderImage(imgIRequest* aImage);
|
|
|
|
inline imgIRequest* GetBorderImage() const;
|
|
|
|
|
2010-09-08 00:30:40 +00:00
|
|
|
bool HasBorderImage() {return !!mBorderImage;}
|
|
|
|
|
|
|
|
void TrackImage(nsPresContext* aContext);
|
|
|
|
void UntrackImage(nsPresContext* aContext);
|
|
|
|
|
2009-11-14 04:23:00 +00:00
|
|
|
// These methods are used for the caller to caches the sub images created during
|
|
|
|
// a border-image paint operation
|
|
|
|
inline void SetSubImage(PRUint8 aIndex, imgIContainer* aSubImage) const;
|
|
|
|
inline imgIContainer* GetSubImage(PRUint8 aIndex) const;
|
|
|
|
|
2001-12-05 08:35:05 +00:00
|
|
|
void GetCompositeColors(PRInt32 aIndex, nsBorderColors** aColors) const
|
|
|
|
{
|
|
|
|
if (!mBorderColors)
|
|
|
|
*aColors = nsnull;
|
|
|
|
else
|
|
|
|
*aColors = mBorderColors[aIndex];
|
|
|
|
}
|
|
|
|
|
2008-09-12 15:35:53 +00:00
|
|
|
void AppendBorderColor(PRInt32 aIndex, nscolor aColor)
|
2001-12-05 08:35:05 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aIndex >= 0 && aIndex <= 3, "bad side for composite border color");
|
2008-09-12 15:35:53 +00:00
|
|
|
nsBorderColors* colorEntry = new nsBorderColors(aColor);
|
2001-12-05 08:35:05 +00:00
|
|
|
if (!mBorderColors[aIndex])
|
|
|
|
mBorderColors[aIndex] = colorEntry;
|
|
|
|
else {
|
|
|
|
nsBorderColors* last = mBorderColors[aIndex];
|
|
|
|
while (last->mNext)
|
|
|
|
last = last->mNext;
|
|
|
|
last->mNext = colorEntry;
|
|
|
|
}
|
|
|
|
mBorderStyle[aIndex] &= ~BORDER_COLOR_SPECIAL;
|
|
|
|
}
|
|
|
|
|
2010-04-27 16:15:02 +00:00
|
|
|
void SetBorderToForeground(mozilla::css::Side aSide)
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2010-04-27 16:15:01 +00:00
|
|
|
NS_ASSERTION(aSide <= NS_SIDE_LEFT, "bad side");
|
2001-05-31 22:19:43 +00:00
|
|
|
mBorderStyle[aSide] &= ~BORDER_COLOR_SPECIAL;
|
2010-04-27 16:15:01 +00:00
|
|
|
mBorderStyle[aSide] |= BORDER_COLOR_FOREGROUND;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
2010-09-08 00:30:40 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool mImageTracked;
|
|
|
|
#endif
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
protected:
|
2008-07-17 06:30:25 +00:00
|
|
|
// mComputedBorder holds the CSS2.1 computed border-width values. In
|
2005-04-29 15:44:38 +00:00
|
|
|
// particular, these widths take into account the border-style for the
|
2008-07-17 06:30:25 +00:00
|
|
|
// relevant side and the values are rounded to the nearest device
|
|
|
|
// pixel. They are also rounded (which is not part of the definition
|
|
|
|
// of computed values). However, they do *not* take into account the
|
|
|
|
// presence of border-image. See GetActualBorder above for how to
|
|
|
|
// really get the actual border.
|
|
|
|
nsMargin mComputedBorder;
|
2005-04-29 15:44:38 +00:00
|
|
|
|
|
|
|
// mBorder holds the nscoord values for the border widths as they would be if
|
|
|
|
// all the border-style values were visible (not hidden or none). This
|
2008-07-17 06:30:25 +00:00
|
|
|
// member exists so that when we create structs using the copy
|
2005-04-29 15:44:38 +00:00
|
|
|
// constructor during style resolution the new structs will know what the
|
|
|
|
// specified values of the border were in case they have more specific rules
|
|
|
|
// setting the border style. Note that this isn't quite the CSS specified
|
|
|
|
// value, since this has had the enumerated border widths converted to
|
|
|
|
// lengths, and all lengths converted to twips. But it's not quite the
|
2008-07-17 06:30:25 +00:00
|
|
|
// computed value either. The values are rounded to the nearest device pixel
|
|
|
|
// We also use these values when we have a loaded border-image that
|
|
|
|
// does not have width overrides.
|
2005-04-29 15:44:38 +00:00
|
|
|
nsMargin mBorder;
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint8 mBorderStyle[4]; // [reset] See nsStyleConsts.h
|
2001-12-05 08:35:05 +00:00
|
|
|
nscolor mBorderColor[4]; // [reset] the colors to use for a simple border. not used
|
|
|
|
// if -moz-border-colors is specified
|
2009-12-11 04:02:13 +00:00
|
|
|
private:
|
2008-07-17 06:30:25 +00:00
|
|
|
nsCOMPtr<imgIRequest> mBorderImage; // [reset]
|
|
|
|
|
2009-11-14 04:23:00 +00:00
|
|
|
// Cache used by callers for border-image painting
|
|
|
|
nsCOMArray<imgIContainer> mSubImages;
|
|
|
|
|
2006-12-27 14:21:43 +00:00
|
|
|
nscoord mTwipsPerPixel;
|
2010-09-08 00:30:40 +00:00
|
|
|
|
|
|
|
nsStyleBorder& operator=(const nsStyleBorder& aOther); // Not to be implemented
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleOutline {
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleOutline(nsPresContext* aPresContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleOutline(const nsStyleOutline& aOutline);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleOutline(void) {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleOutline);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleOutline();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleOutline), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-11-26 18:40:58 +00:00
|
|
|
void RecalcData(nsPresContext* aContext);
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleOutline& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2010-09-09 15:21:45 +00:00
|
|
|
nsStyleCorners mOutlineRadius; // [reset] coord, percent, calc
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-09-13 03:45:37 +00:00
|
|
|
// Note that this is a specified value. You can get the actual values
|
|
|
|
// with GetOutlineWidth. You cannot get the computed value directly.
|
2008-09-13 03:45:37 +00:00
|
|
|
nsStyleCoord mOutlineWidth; // [reset] coord, enum (see nsStyleConsts.h)
|
2008-09-13 03:45:37 +00:00
|
|
|
nscoord mOutlineOffset; // [reset]
|
2004-10-26 12:57:15 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool GetOutlineWidth(nscoord& aWidth) const
|
|
|
|
{
|
|
|
|
if (mHasCachedOutline) {
|
|
|
|
aWidth = mCachedOutlineWidth;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8 GetOutlineStyle(void) const
|
|
|
|
{
|
|
|
|
return (mOutlineStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetOutlineStyle(PRUint8 aStyle)
|
|
|
|
{
|
|
|
|
mOutlineStyle &= ~BORDER_STYLE_MASK;
|
|
|
|
mOutlineStyle |= (aStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
2007-03-15 16:16:20 +00:00
|
|
|
// PR_FALSE means initial value
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool GetOutlineColor(nscolor& aColor) const
|
|
|
|
{
|
|
|
|
if ((mOutlineStyle & BORDER_COLOR_SPECIAL) == 0) {
|
|
|
|
aColor = mOutlineColor;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetOutlineColor(nscolor aColor)
|
|
|
|
{
|
|
|
|
mOutlineColor = aColor;
|
|
|
|
mOutlineStyle &= ~BORDER_COLOR_SPECIAL;
|
|
|
|
}
|
|
|
|
|
2007-03-15 16:16:20 +00:00
|
|
|
void SetOutlineInitialColor()
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2007-03-15 16:16:20 +00:00
|
|
|
mOutlineStyle |= OUTLINE_COLOR_INITIAL;
|
2001-08-21 22:37:17 +00:00
|
|
|
}
|
|
|
|
|
2007-03-15 16:16:20 +00:00
|
|
|
PRBool GetOutlineInitialColor() const
|
2001-08-21 22:37:17 +00:00
|
|
|
{
|
2007-10-10 00:00:05 +00:00
|
|
|
return !!(mOutlineStyle & OUTLINE_COLOR_INITIAL);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2006-12-27 14:21:43 +00:00
|
|
|
// This value is the actual value, so it's rounded to the nearest device
|
|
|
|
// pixel.
|
2001-05-31 22:19:43 +00:00
|
|
|
nscoord mCachedOutlineWidth;
|
|
|
|
|
2010-04-27 16:15:01 +00:00
|
|
|
nscolor mOutlineColor; // [reset]
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-12-21 07:27:44 +00:00
|
|
|
PRPackedBool mHasCachedOutline;
|
|
|
|
PRUint8 mOutlineStyle; // [reset] See nsStyleConsts.h
|
2006-12-27 14:21:43 +00:00
|
|
|
|
|
|
|
nscoord mTwipsPerPixel;
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleList {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleList(void);
|
|
|
|
nsStyleList(const nsStyleList& aStyleList);
|
|
|
|
~nsStyleList(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleList();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleList), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleList& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2009-12-11 04:02:13 +00:00
|
|
|
imgIRequest* GetListStyleImage() const { return mListStyleImage; }
|
|
|
|
void SetListStyleImage(imgIRequest* aReq)
|
|
|
|
{
|
2010-08-16 16:23:09 +00:00
|
|
|
if (mListStyleImage)
|
|
|
|
mListStyleImage->UnlockImage();
|
2009-12-11 04:02:13 +00:00
|
|
|
mListStyleImage = aReq;
|
2010-08-16 16:23:09 +00:00
|
|
|
if (mListStyleImage)
|
|
|
|
mListStyleImage->LockImage();
|
2009-12-11 04:02:13 +00:00
|
|
|
}
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mListStyleType; // [inherited] See nsStyleConsts.h
|
2009-12-11 04:02:13 +00:00
|
|
|
PRUint8 mListStylePosition; // [inherited]
|
|
|
|
private:
|
2004-08-04 03:23:37 +00:00
|
|
|
nsCOMPtr<imgIRequest> mListStyleImage; // [inherited]
|
2010-08-16 16:23:09 +00:00
|
|
|
nsStyleList& operator=(const nsStyleList& aOther); // Not to be implemented
|
2009-12-11 04:02:13 +00:00
|
|
|
public:
|
2010-04-27 16:15:01 +00:00
|
|
|
nsRect mImageRegion; // [inherited] the rect to use within an image
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStylePosition {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStylePosition(void);
|
|
|
|
nsStylePosition(const nsStylePosition& aOther);
|
|
|
|
~nsStylePosition(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStylePosition();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStylePosition), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStylePosition& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_TRUE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2010-08-25 10:17:56 +00:00
|
|
|
nsStyleSides mOffset; // [reset] coord, percent, calc, auto
|
2010-08-25 10:17:56 +00:00
|
|
|
nsStyleCoord mWidth; // [reset] coord, percent, enum, calc, auto
|
|
|
|
nsStyleCoord mMinWidth; // [reset] coord, percent, enum, calc
|
|
|
|
nsStyleCoord mMaxWidth; // [reset] coord, percent, enum, calc, none
|
2010-08-25 10:17:55 +00:00
|
|
|
nsStyleCoord mHeight; // [reset] coord, percent, calc, auto
|
|
|
|
nsStyleCoord mMinHeight; // [reset] coord, percent, calc
|
|
|
|
nsStyleCoord mMaxHeight; // [reset] coord, percent, calc, none
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mBoxSizing; // [reset] see nsStyleConsts.h
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mZIndex; // [reset] integer, auto
|
2010-08-11 19:32:52 +00:00
|
|
|
|
|
|
|
PRBool WidthDependsOnContainer() const
|
|
|
|
{ return WidthCoordDependsOnContainer(mWidth); }
|
|
|
|
PRBool MinWidthDependsOnContainer() const
|
|
|
|
{ return WidthCoordDependsOnContainer(mMinWidth); }
|
|
|
|
PRBool MaxWidthDependsOnContainer() const
|
|
|
|
{ return WidthCoordDependsOnContainer(mMaxWidth); }
|
2010-08-25 10:17:56 +00:00
|
|
|
|
|
|
|
// Note that these functions count 'auto' as depending on the
|
|
|
|
// container since that's the case for absolutely positioned elements.
|
|
|
|
// However, some callers do not care about this case and should check
|
|
|
|
// for it, since it is the most common case.
|
|
|
|
// FIXME: We should probably change the assumption to be the other way
|
|
|
|
// around.
|
2010-08-11 19:32:52 +00:00
|
|
|
PRBool HeightDependsOnContainer() const
|
|
|
|
{ return HeightCoordDependsOnContainer(mHeight); }
|
|
|
|
PRBool MinHeightDependsOnContainer() const
|
|
|
|
{ return HeightCoordDependsOnContainer(mMinHeight); }
|
|
|
|
PRBool MaxHeightDependsOnContainer() const
|
|
|
|
{ return HeightCoordDependsOnContainer(mMaxHeight); }
|
|
|
|
|
2010-08-25 10:17:56 +00:00
|
|
|
PRBool OffsetHasPercent(mozilla::css::Side aSide) const
|
|
|
|
{
|
|
|
|
return mOffset.Get(aSide).HasPercent();
|
|
|
|
}
|
|
|
|
|
2010-08-11 19:32:52 +00:00
|
|
|
private:
|
2010-08-11 19:32:53 +00:00
|
|
|
static PRBool WidthCoordDependsOnContainer(const nsStyleCoord &aCoord);
|
2010-08-11 19:32:52 +00:00
|
|
|
static PRBool HeightCoordDependsOnContainer(const nsStyleCoord &aCoord)
|
|
|
|
{
|
|
|
|
return aCoord.GetUnit() == eStyleUnit_Auto || // CSS 2.1, 10.6.4, item (5)
|
2010-08-25 10:17:55 +00:00
|
|
|
aCoord.HasPercent();
|
2010-08-11 19:32:52 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleTextReset {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleTextReset(void);
|
|
|
|
nsStyleTextReset(const nsStyleTextReset& aOther);
|
|
|
|
~nsStyleTextReset(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleTextReset();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleTextReset), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleTextReset& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mTextDecoration; // [reset] see nsStyleConsts.h
|
2001-06-29 03:15:58 +00:00
|
|
|
PRUint8 mUnicodeBidi; // [reset] see nsStyleConsts.h
|
|
|
|
|
2010-08-31 16:05:12 +00:00
|
|
|
nsStyleCoord mVerticalAlign; // [reset] coord, percent, calc, enum (see nsStyleConsts.h)
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleText {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleText(void);
|
|
|
|
nsStyleText(const nsStyleText& aOther);
|
|
|
|
~nsStyleText(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleText();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleText), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleText& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint8 mTextAlign; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mTextTransform; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mWhiteSpace; // [inherited] see nsStyleConsts.h
|
2008-07-24 07:16:18 +00:00
|
|
|
PRUint8 mWordWrap; // [inherited] see nsStyleConsts.h
|
2009-09-26 20:23:47 +00:00
|
|
|
PRInt32 mTabSize; // [inherited] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mLetterSpacing; // [inherited] coord, normal
|
|
|
|
nsStyleCoord mLineHeight; // [inherited] coord, factor, normal
|
2010-08-31 16:05:12 +00:00
|
|
|
nsStyleCoord mTextIndent; // [inherited] coord, percent, calc
|
2008-12-28 01:58:14 +00:00
|
|
|
nscoord mWordSpacing; // [inherited]
|
2008-06-05 23:06:34 +00:00
|
|
|
|
2008-07-08 00:56:52 +00:00
|
|
|
nsRefPtr<nsCSSShadowArray> mTextShadow; // [inherited] NULL in case of a zero-length
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool WhiteSpaceIsSignificant() const {
|
2002-11-15 03:14:56 +00:00
|
|
|
return mWhiteSpace == NS_STYLE_WHITESPACE_PRE ||
|
2008-02-20 02:07:48 +00:00
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_WRAP;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2006-10-19 01:47:47 +00:00
|
|
|
|
2008-08-12 08:31:56 +00:00
|
|
|
PRBool NewlineIsSignificant() const {
|
|
|
|
return mWhiteSpace == NS_STYLE_WHITESPACE_PRE ||
|
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_WRAP ||
|
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_LINE;
|
|
|
|
}
|
|
|
|
|
2006-10-19 01:47:47 +00:00
|
|
|
PRBool WhiteSpaceCanWrap() const {
|
|
|
|
return mWhiteSpace == NS_STYLE_WHITESPACE_NORMAL ||
|
2008-08-12 08:31:56 +00:00
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_WRAP ||
|
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_LINE;
|
2006-10-19 01:47:47 +00:00
|
|
|
}
|
2008-07-24 07:16:18 +00:00
|
|
|
|
|
|
|
PRBool WordCanWrap() const {
|
2008-10-16 21:34:10 +00:00
|
|
|
return WhiteSpaceCanWrap() && mWordWrap == NS_STYLE_WORDWRAP_BREAK_WORD;
|
2008-07-24 07:16:18 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleVisibility {
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleVisibility(nsPresContext* aPresContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleVisibility(const nsStyleVisibility& aVisibility);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleVisibility() {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleVisibility);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleVisibility();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleVisibility), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleVisibility& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mDirection; // [inherited] see nsStyleConsts.h NS_STYLE_DIRECTION_*
|
|
|
|
PRUint8 mVisible; // [inherited]
|
2010-02-24 17:57:44 +00:00
|
|
|
nsCOMPtr<nsIAtom> mLanguage; // [inherited]
|
2009-08-27 03:53:35 +00:00
|
|
|
PRUint8 mPointerEvents; // [inherited] see nsStyleConsts.h
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRBool IsVisible() const {
|
2008-08-04 22:15:11 +00:00
|
|
|
return (mVisible == NS_STYLE_VISIBILITY_VISIBLE);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-08-04 22:15:11 +00:00
|
|
|
PRBool IsVisibleOrCollapsed() const {
|
|
|
|
return ((mVisible == NS_STYLE_VISIBILITY_VISIBLE) ||
|
|
|
|
(mVisible == NS_STYLE_VISIBILITY_COLLAPSE));
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2009-08-20 21:52:47 +00:00
|
|
|
struct nsTimingFunction {
|
|
|
|
explicit nsTimingFunction(PRInt32 aTimingFunctionType
|
|
|
|
= NS_STYLE_TRANSITION_TIMING_FUNCTION_EASE)
|
|
|
|
{
|
|
|
|
AssignFromKeyword(aTimingFunctionType);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTimingFunction(float x1, float y1, float x2, float y2)
|
|
|
|
: mX1(x1)
|
|
|
|
, mY1(y1)
|
|
|
|
, mX2(x2)
|
|
|
|
, mY2(y2)
|
|
|
|
{}
|
|
|
|
|
|
|
|
float mX1;
|
|
|
|
float mY1;
|
|
|
|
float mX2;
|
|
|
|
float mY2;
|
|
|
|
|
|
|
|
PRBool operator==(const nsTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this != aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator!=(const nsTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return mX1 != aOther.mX1 || mY1 != aOther.mY1 ||
|
|
|
|
mX2 != aOther.mX2 || mY2 != aOther.mY2;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void AssignFromKeyword(PRInt32 aTimingFunctionType);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsTransition {
|
|
|
|
nsTransition() { /* leaves uninitialized; see also SetInitialValues */ }
|
|
|
|
explicit nsTransition(const nsTransition& aCopy);
|
|
|
|
|
|
|
|
void SetInitialValues();
|
|
|
|
|
|
|
|
// Delay and Duration are in milliseconds
|
|
|
|
|
|
|
|
nsTimingFunction& GetTimingFunction() { return mTimingFunction; }
|
|
|
|
const nsTimingFunction& GetTimingFunction() const { return mTimingFunction; }
|
|
|
|
float GetDelay() const { return mDelay; }
|
|
|
|
float GetDuration() const { return mDuration; }
|
|
|
|
nsCSSProperty GetProperty() const { return mProperty; }
|
|
|
|
nsIAtom* GetUnknownProperty() const { return mUnknownProperty; }
|
|
|
|
|
|
|
|
void SetTimingFunction(const nsTimingFunction& aTimingFunction)
|
|
|
|
{ mTimingFunction = aTimingFunction; }
|
|
|
|
void SetDelay(float aDelay) { mDelay = aDelay; }
|
|
|
|
void SetDuration(float aDuration) { mDuration = aDuration; }
|
|
|
|
void SetProperty(nsCSSProperty aProperty)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aProperty != eCSSProperty_UNKNOWN, "invalid property");
|
|
|
|
mProperty = aProperty;
|
|
|
|
}
|
|
|
|
void SetUnknownProperty(const nsAString& aUnknownProperty);
|
|
|
|
void CopyPropertyFrom(const nsTransition& aOther)
|
|
|
|
{
|
|
|
|
mProperty = aOther.mProperty;
|
|
|
|
mUnknownProperty = aOther.mUnknownProperty;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsTimingFunction mTimingFunction;
|
|
|
|
float mDuration;
|
|
|
|
float mDelay;
|
|
|
|
nsCSSProperty mProperty;
|
|
|
|
nsCOMPtr<nsIAtom> mUnknownProperty; // used when mProperty is
|
|
|
|
// eCSSProperty_UNKNOWN
|
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleDisplay {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleDisplay();
|
2010-04-27 16:15:01 +00:00
|
|
|
nsStyleDisplay(const nsStyleDisplay& aOther);
|
2009-08-07 14:38:44 +00:00
|
|
|
~nsStyleDisplay() {
|
|
|
|
MOZ_COUNT_DTOR(nsStyleDisplay);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleDisplay();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleDisplay), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleDisplay& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_TRUE; }
|
2007-07-18 21:56:57 +00:00
|
|
|
|
|
|
|
// We guarantee that if mBinding is non-null, so are mBinding->mURI and
|
|
|
|
// mBinding->mOriginPrincipal.
|
|
|
|
nsRefPtr<nsCSSValue::URL> mBinding; // [reset]
|
2002-12-21 07:27:44 +00:00
|
|
|
nsRect mClip; // [reset] offsets from upper-left border edge
|
2003-11-01 22:34:59 +00:00
|
|
|
float mOpacity; // [reset]
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mDisplay; // [reset] see nsStyleConsts.h NS_STYLE_DISPLAY_*
|
2002-08-15 23:00:23 +00:00
|
|
|
PRUint8 mOriginalDisplay; // [reset] saved mDisplay for position:absolute/fixed
|
2001-12-17 22:51:39 +00:00
|
|
|
PRUint8 mAppearance; // [reset]
|
2002-12-21 07:27:44 +00:00
|
|
|
PRUint8 mPosition; // [reset] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mFloats; // [reset] see nsStyleConsts.h NS_STYLE_FLOAT_*
|
|
|
|
PRUint8 mBreakType; // [reset] see nsStyleConsts.h NS_STYLE_CLEAR_*
|
2010-04-27 16:15:01 +00:00
|
|
|
PRPackedBool mBreakBefore; // [reset]
|
|
|
|
PRPackedBool mBreakAfter; // [reset]
|
2004-09-05 00:04:04 +00:00
|
|
|
PRUint8 mOverflowX; // [reset] see nsStyleConsts.h
|
|
|
|
PRUint8 mOverflowY; // [reset] see nsStyleConsts.h
|
2010-03-19 11:49:33 +00:00
|
|
|
PRUint8 mResize; // [reset] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mClipFlags; // [reset] see nsStyleConsts.h
|
2010-07-03 04:18:56 +00:00
|
|
|
|
|
|
|
// mSpecifiedTransform is the list of transform functions as
|
|
|
|
// specified, or null to indicate there is no transform. (inherit or
|
|
|
|
// initial are replaced by an actual list of transform functions, or
|
|
|
|
// null, as appropriate.) (owned by the style rule)
|
|
|
|
const nsCSSValueList *mSpecifiedTransform; // [reset]
|
2008-09-13 09:42:11 +00:00
|
|
|
nsStyleTransformMatrix mTransform; // [reset] The stored transform matrix
|
2010-09-15 15:11:26 +00:00
|
|
|
nsStyleCoord mTransformOrigin[2]; // [reset] percent, coord, calc
|
2010-07-03 04:18:56 +00:00
|
|
|
|
2009-08-20 21:52:47 +00:00
|
|
|
nsAutoTArray<nsTransition, 1> mTransitions; // [reset]
|
|
|
|
// The number of elements in mTransitions that are not from repeating
|
|
|
|
// a list due to another property being longer.
|
|
|
|
PRUint32 mTransitionTimingFunctionCount,
|
|
|
|
mTransitionDurationCount,
|
|
|
|
mTransitionDelayCount,
|
|
|
|
mTransitionPropertyCount;
|
2008-09-13 09:42:11 +00:00
|
|
|
|
2007-01-27 18:44:24 +00:00
|
|
|
PRBool IsBlockInside() const {
|
|
|
|
return NS_STYLE_DISPLAY_BLOCK == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_LIST_ITEM == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_BLOCK == mDisplay;
|
|
|
|
// Should TABLE_CELL and TABLE_CAPTION go here? They have
|
|
|
|
// block frames nested inside of them.
|
|
|
|
// (But please audit all callers before changing.)
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsBlockOutside() const {
|
|
|
|
return NS_STYLE_DISPLAY_BLOCK == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_LIST_ITEM == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_TABLE == mDisplay;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsInlineOutside() const {
|
|
|
|
return NS_STYLE_DISPLAY_INLINE == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_BLOCK == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_TABLE == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_BOX == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_GRID == mDisplay ||
|
2007-06-27 02:31:35 +00:00
|
|
|
NS_STYLE_DISPLAY_INLINE_STACK == mDisplay;
|
2007-01-27 18:44:24 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRBool IsFloating() const {
|
|
|
|
return NS_STYLE_FLOAT_NONE != mFloats;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsAbsolutelyPositioned() const {return (NS_STYLE_POSITION_ABSOLUTE == mPosition) ||
|
|
|
|
(NS_STYLE_POSITION_FIXED == mPosition);}
|
|
|
|
|
2008-09-13 09:42:11 +00:00
|
|
|
/* Returns true if we're positioned or there's a transform in effect. */
|
|
|
|
PRBool IsPositioned() const {
|
|
|
|
return IsAbsolutelyPositioned() ||
|
2010-07-03 04:18:56 +00:00
|
|
|
NS_STYLE_POSITION_RELATIVE == mPosition || HasTransform();
|
2008-09-13 09:42:11 +00:00
|
|
|
}
|
2004-09-02 23:18:37 +00:00
|
|
|
|
|
|
|
PRBool IsScrollableOverflow() const {
|
2004-09-05 00:04:04 +00:00
|
|
|
// mOverflowX and mOverflowY always match when one of them is
|
|
|
|
// NS_STYLE_OVERFLOW_VISIBLE or NS_STYLE_OVERFLOW_CLIP.
|
|
|
|
return mOverflowX != NS_STYLE_OVERFLOW_VISIBLE &&
|
|
|
|
mOverflowX != NS_STYLE_OVERFLOW_CLIP;
|
2004-09-02 23:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// For table elements that don't support scroll frame creation, we
|
|
|
|
// support 'overflow: hidden' to mean 'overflow: -moz-hidden-unscrollable'.
|
|
|
|
PRBool IsTableClip() const {
|
2004-09-05 00:04:04 +00:00
|
|
|
return mOverflowX == NS_STYLE_OVERFLOW_CLIP ||
|
|
|
|
(mOverflowX == NS_STYLE_OVERFLOW_HIDDEN &&
|
|
|
|
mOverflowY == NS_STYLE_OVERFLOW_HIDDEN);
|
2004-09-02 23:18:37 +00:00
|
|
|
}
|
2008-09-13 09:42:11 +00:00
|
|
|
|
|
|
|
/* Returns whether the element has the -moz-transform property. */
|
|
|
|
PRBool HasTransform() const {
|
2010-07-03 04:18:56 +00:00
|
|
|
return mSpecifiedTransform != nsnull;
|
2008-09-13 09:42:11 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleTable {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleTable(void);
|
|
|
|
nsStyleTable(const nsStyleTable& aOther);
|
|
|
|
~nsStyleTable(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleTable();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleTable), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleTable& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mLayoutStrategy;// [reset] see nsStyleConsts.h NS_STYLE_TABLE_LAYOUT_*
|
|
|
|
PRUint8 mFrame; // [reset] see nsStyleConsts.h NS_STYLE_TABLE_FRAME_*
|
|
|
|
PRUint8 mRules; // [reset] see nsStyleConsts.h NS_STYLE_TABLE_RULES_*
|
|
|
|
PRInt32 mCols; // [reset] an integer if set, or see nsStyleConsts.h NS_STYLE_TABLE_COLS_*
|
|
|
|
PRInt32 mSpan; // [reset] the number of columns spanned by a colgroup or col
|
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleTableBorder {
|
2004-07-31 23:15:21 +00:00
|
|
|
nsStyleTableBorder(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleTableBorder(const nsStyleTableBorder& aOther);
|
|
|
|
~nsStyleTableBorder(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleTableBorder();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleTableBorder), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleTableBorder& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2008-09-13 03:45:37 +00:00
|
|
|
nscoord mBorderSpacingX;// [inherited]
|
|
|
|
nscoord mBorderSpacingY;// [inherited]
|
2002-12-21 07:27:44 +00:00
|
|
|
PRUint8 mBorderCollapse;// [inherited]
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mCaptionSide; // [inherited]
|
|
|
|
PRUint8 mEmptyCells; // [inherited]
|
|
|
|
};
|
|
|
|
|
|
|
|
enum nsStyleContentType {
|
|
|
|
eStyleContentType_String = 1,
|
2004-07-14 22:19:22 +00:00
|
|
|
eStyleContentType_Image = 10,
|
2001-05-31 22:19:43 +00:00
|
|
|
eStyleContentType_Attr = 20,
|
|
|
|
eStyleContentType_Counter = 30,
|
|
|
|
eStyleContentType_Counters = 31,
|
|
|
|
eStyleContentType_OpenQuote = 40,
|
|
|
|
eStyleContentType_CloseQuote = 41,
|
|
|
|
eStyleContentType_NoOpenQuote = 42,
|
2005-09-18 18:05:40 +00:00
|
|
|
eStyleContentType_NoCloseQuote = 43,
|
|
|
|
eStyleContentType_AltContent = 50
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct nsStyleContentData {
|
|
|
|
nsStyleContentType mType;
|
2003-10-01 22:53:56 +00:00
|
|
|
union {
|
|
|
|
PRUnichar *mString;
|
2004-07-14 22:19:22 +00:00
|
|
|
imgIRequest *mImage;
|
2005-04-01 23:07:00 +00:00
|
|
|
nsCSSValue::Array* mCounters;
|
2003-10-01 22:53:56 +00:00
|
|
|
} mContent;
|
2010-08-06 17:27:01 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool mImageTracked;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsStyleContentData()
|
|
|
|
: mType(nsStyleContentType(0))
|
|
|
|
#ifdef DEBUG
|
|
|
|
, mImageTracked(false)
|
|
|
|
#endif
|
|
|
|
{ mContent.mString = nsnull; }
|
2003-10-01 22:53:56 +00:00
|
|
|
|
2004-07-14 22:19:22 +00:00
|
|
|
~nsStyleContentData();
|
|
|
|
nsStyleContentData& operator=(const nsStyleContentData& aOther);
|
2007-01-31 13:59:26 +00:00
|
|
|
PRBool operator==(const nsStyleContentData& aOther) const;
|
2003-10-01 22:53:56 +00:00
|
|
|
|
2007-01-31 13:59:26 +00:00
|
|
|
PRBool operator!=(const nsStyleContentData& aOther) const {
|
2003-10-01 22:53:56 +00:00
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
2009-12-11 04:02:13 +00:00
|
|
|
|
2010-08-06 17:27:01 +00:00
|
|
|
void TrackImage(nsPresContext* aContext);
|
|
|
|
void UntrackImage(nsPresContext* aContext);
|
|
|
|
|
2009-12-11 04:02:13 +00:00
|
|
|
void SetImage(imgIRequest* aRequest)
|
|
|
|
{
|
2010-08-06 17:27:01 +00:00
|
|
|
NS_ABORT_IF_FALSE(!mImageTracked,
|
|
|
|
"Setting a new image without untracking the old one!");
|
|
|
|
NS_ABORT_IF_FALSE(mType == eStyleContentType_Image, "Wrong type!");
|
2009-12-11 04:02:13 +00:00
|
|
|
NS_IF_ADDREF(mContent.mImage = aRequest);
|
|
|
|
}
|
2005-04-01 23:07:00 +00:00
|
|
|
private:
|
|
|
|
nsStyleContentData(const nsStyleContentData&); // not to be implemented
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct nsStyleCounterData {
|
|
|
|
nsString mCounter;
|
|
|
|
PRInt32 mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define DELETE_ARRAY_IF(array) if (array) { delete[] array; array = nsnull; }
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleQuotes {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleQuotes();
|
|
|
|
nsStyleQuotes(const nsStyleQuotes& aQuotes);
|
|
|
|
~nsStyleQuotes();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleQuotes();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleQuotes), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2008-08-19 14:18:58 +00:00
|
|
|
void SetInitial();
|
|
|
|
void CopyFrom(const nsStyleQuotes& aSource);
|
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleQuotes& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint32 QuotesCount(void) const { return mQuotesCount; } // [inherited]
|
2004-04-12 21:53:22 +00:00
|
|
|
|
|
|
|
const nsString* OpenQuoteAt(PRUint32 aIndex) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aIndex < mQuotesCount, "out of range");
|
|
|
|
return mQuotes + (aIndex * 2);
|
|
|
|
}
|
|
|
|
const nsString* CloseQuoteAt(PRUint32 aIndex) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aIndex < mQuotesCount, "out of range");
|
|
|
|
return mQuotes + (aIndex * 2 + 1);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
nsresult GetQuotesAt(PRUint32 aIndex, nsString& aOpen, nsString& aClose) const {
|
|
|
|
if (aIndex < mQuotesCount) {
|
|
|
|
aIndex *= 2;
|
|
|
|
aOpen = mQuotes[aIndex];
|
|
|
|
aClose = mQuotes[++aIndex];
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult AllocateQuotes(PRUint32 aCount) {
|
|
|
|
if (aCount != mQuotesCount) {
|
|
|
|
DELETE_ARRAY_IF(mQuotes);
|
|
|
|
if (aCount) {
|
|
|
|
mQuotes = new nsString[aCount * 2];
|
|
|
|
if (! mQuotes) {
|
|
|
|
mQuotesCount = 0;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mQuotesCount = aCount;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult SetQuotesAt(PRUint32 aIndex, const nsString& aOpen, const nsString& aClose) {
|
|
|
|
if (aIndex < mQuotesCount) {
|
|
|
|
aIndex *= 2;
|
|
|
|
mQuotes[aIndex] = aOpen;
|
|
|
|
mQuotes[++aIndex] = aClose;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRUint32 mQuotesCount;
|
|
|
|
nsString* mQuotes;
|
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleContent {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleContent(void);
|
|
|
|
nsStyleContent(const nsStyleContent& aContent);
|
|
|
|
~nsStyleContent(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2010-08-06 17:27:01 +00:00
|
|
|
void Destroy(nsPresContext* aContext);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleContent& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint32 ContentCount(void) const { return mContentCount; } // [reset]
|
2003-10-01 22:53:56 +00:00
|
|
|
|
|
|
|
const nsStyleContentData& ContentAt(PRUint32 aIndex) const {
|
|
|
|
NS_ASSERTION(aIndex < mContentCount, "out of range");
|
|
|
|
return mContents[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleContentData& ContentAt(PRUint32 aIndex) {
|
|
|
|
NS_ASSERTION(aIndex < mContentCount, "out of range");
|
|
|
|
return mContents[aIndex];
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
2004-07-14 23:51:25 +00:00
|
|
|
nsresult AllocateContents(PRUint32 aCount);
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint32 CounterIncrementCount(void) const { return mIncrementCount; } // [reset]
|
2005-04-01 23:07:00 +00:00
|
|
|
const nsStyleCounterData* GetCounterIncrementAt(PRUint32 aIndex) const {
|
|
|
|
NS_ASSERTION(aIndex < mIncrementCount, "out of range");
|
|
|
|
return &mIncrements[aIndex];
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult AllocateCounterIncrements(PRUint32 aCount) {
|
|
|
|
if (aCount != mIncrementCount) {
|
|
|
|
DELETE_ARRAY_IF(mIncrements);
|
|
|
|
if (aCount) {
|
|
|
|
mIncrements = new nsStyleCounterData[aCount];
|
|
|
|
if (! mIncrements) {
|
|
|
|
mIncrementCount = 0;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mIncrementCount = aCount;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult SetCounterIncrementAt(PRUint32 aIndex, const nsString& aCounter, PRInt32 aIncrement) {
|
|
|
|
if (aIndex < mIncrementCount) {
|
|
|
|
mIncrements[aIndex].mCounter = aCounter;
|
|
|
|
mIncrements[aIndex].mValue = aIncrement;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 CounterResetCount(void) const { return mResetCount; } // [reset]
|
2005-04-01 23:07:00 +00:00
|
|
|
const nsStyleCounterData* GetCounterResetAt(PRUint32 aIndex) const {
|
|
|
|
NS_ASSERTION(aIndex < mResetCount, "out of range");
|
|
|
|
return &mResets[aIndex];
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult AllocateCounterResets(PRUint32 aCount) {
|
|
|
|
if (aCount != mResetCount) {
|
|
|
|
DELETE_ARRAY_IF(mResets);
|
|
|
|
if (aCount) {
|
|
|
|
mResets = new nsStyleCounterData[aCount];
|
|
|
|
if (! mResets) {
|
|
|
|
mResetCount = 0;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mResetCount = aCount;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult SetCounterResetAt(PRUint32 aIndex, const nsString& aCounter, PRInt32 aValue) {
|
|
|
|
if (aIndex < mResetCount) {
|
|
|
|
mResets[aIndex].mCounter = aCounter;
|
|
|
|
mResets[aIndex].mValue = aValue;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mMarkerOffset; // [reset] coord, auto
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsStyleContentData* mContents;
|
|
|
|
nsStyleCounterData* mIncrements;
|
2009-05-13 08:26:48 +00:00
|
|
|
nsStyleCounterData* mResets;
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2009-05-13 08:26:48 +00:00
|
|
|
PRUint32 mContentCount;
|
|
|
|
PRUint32 mIncrementCount;
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint32 mResetCount;
|
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleUIReset {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleUIReset(void);
|
|
|
|
nsStyleUIReset(const nsStyleUIReset& aOther);
|
|
|
|
~nsStyleUIReset(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleUIReset();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleUIReset), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleUIReset& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-12-21 07:27:44 +00:00
|
|
|
PRUint8 mUserSelect; // [reset] (selection-style)
|
2002-03-26 20:14:05 +00:00
|
|
|
PRUint8 mForceBrokenImageIcon; // [reset] (0 if not forcing, otherwise forcing)
|
2007-05-16 15:51:37 +00:00
|
|
|
PRUint8 mIMEMode; // [reset]
|
2008-10-14 14:44:25 +00:00
|
|
|
PRUint8 mWindowShadow; // [reset]
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2005-07-01 04:29:42 +00:00
|
|
|
struct nsCursorImage {
|
|
|
|
PRBool mHaveHotspot;
|
|
|
|
float mHotspotX, mHotspotY;
|
|
|
|
|
|
|
|
nsCursorImage();
|
2010-08-16 16:19:26 +00:00
|
|
|
nsCursorImage(const nsCursorImage& aOther);
|
|
|
|
~nsCursorImage();
|
|
|
|
|
|
|
|
nsCursorImage& operator=(const nsCursorImage& aOther);
|
|
|
|
/*
|
|
|
|
* We hide mImage and force access through the getter and setter so that we
|
|
|
|
* can lock the images we use. Cursor images are likely to be small, so we
|
|
|
|
* don't care about discarding them. See bug 512260.
|
|
|
|
* */
|
|
|
|
void SetImage(imgIRequest *aImage) {
|
|
|
|
if (mImage)
|
|
|
|
mImage->UnlockImage();
|
|
|
|
mImage = aImage;
|
|
|
|
if (mImage)
|
|
|
|
mImage->LockImage();
|
|
|
|
}
|
|
|
|
imgIRequest* GetImage() const {
|
|
|
|
return mImage;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<imgIRequest> mImage;
|
2005-07-01 04:29:42 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleUserInterface {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleUserInterface(void);
|
|
|
|
nsStyleUserInterface(const nsStyleUserInterface& aOther);
|
|
|
|
~nsStyleUserInterface(void);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleUserInterface();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleUserInterface), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleUserInterface& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint8 mUserInput; // [inherited]
|
|
|
|
PRUint8 mUserModify; // [inherited] (modify-content)
|
|
|
|
PRUint8 mUserFocus; // [inherited] (auto-select)
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2004-01-18 01:12:58 +00:00
|
|
|
PRUint8 mCursor; // [inherited] See nsStyleConsts.h
|
2005-07-01 04:29:42 +00:00
|
|
|
|
|
|
|
PRUint32 mCursorArrayLength;
|
|
|
|
nsCursorImage *mCursorArray;// [inherited] The specified URL values
|
|
|
|
// and coordinates. Takes precedence over
|
|
|
|
// mCursor. Zero-length array is represented
|
|
|
|
// by null pointer.
|
|
|
|
|
|
|
|
// Does not free mCursorArray; the caller is responsible for calling
|
|
|
|
// |delete [] mCursorArray| first if it is needed.
|
|
|
|
void CopyCursorArrayFrom(const nsStyleUserInterface& aSource);
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleXUL {
|
2001-05-31 22:19:43 +00:00
|
|
|
nsStyleXUL();
|
|
|
|
nsStyleXUL(const nsStyleXUL& aSource);
|
|
|
|
~nsStyleXUL();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-06-01 21:04:23 +00:00
|
|
|
this->~nsStyleXUL();
|
2001-05-31 22:19:43 +00:00
|
|
|
aContext->FreeToShell(sizeof(nsStyleXUL), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleXUL& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2002-12-21 07:27:44 +00:00
|
|
|
float mBoxFlex; // [reset] see nsStyleConsts.h
|
|
|
|
PRUint32 mBoxOrdinal; // [reset] see nsStyleConsts.h
|
2001-08-02 00:09:27 +00:00
|
|
|
PRUint8 mBoxAlign; // [reset] see nsStyleConsts.h
|
|
|
|
PRUint8 mBoxDirection; // [reset] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mBoxOrient; // [reset] see nsStyleConsts.h
|
2001-08-02 00:09:27 +00:00
|
|
|
PRUint8 mBoxPack; // [reset] see nsStyleConsts.h
|
2008-06-05 06:46:24 +00:00
|
|
|
PRPackedBool mStretchStack; // [reset] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleColumn {
|
2008-07-19 10:38:25 +00:00
|
|
|
nsStyleColumn(nsPresContext* aPresContext);
|
2004-06-17 11:57:37 +00:00
|
|
|
nsStyleColumn(const nsStyleColumn& aSource);
|
|
|
|
~nsStyleColumn();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-06-17 11:57:37 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2004-06-17 11:57:37 +00:00
|
|
|
this->~nsStyleColumn();
|
|
|
|
aContext->FreeToShell(sizeof(nsStyleColumn), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2004-06-17 11:57:37 +00:00
|
|
|
|
|
|
|
nsChangeHint CalcDifference(const nsStyleColumn& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2004-06-17 11:57:37 +00:00
|
|
|
|
|
|
|
PRUint32 mColumnCount; // [reset] see nsStyleConsts.h
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mColumnWidth; // [reset] coord, auto
|
2009-10-08 03:22:42 +00:00
|
|
|
nsStyleCoord mColumnGap; // [reset] coord, normal
|
2008-07-19 10:38:25 +00:00
|
|
|
|
|
|
|
nscolor mColumnRuleColor; // [reset]
|
|
|
|
PRUint8 mColumnRuleStyle; // [reset]
|
2008-09-13 03:45:37 +00:00
|
|
|
// See https://bugzilla.mozilla.org/show_bug.cgi?id=271586#c43 for why
|
|
|
|
// this is hard to replace with 'currentColor'.
|
2008-07-19 10:38:25 +00:00
|
|
|
PRPackedBool mColumnRuleColorIsForeground;
|
|
|
|
|
|
|
|
void SetColumnRuleWidth(nscoord aWidth) {
|
|
|
|
mColumnRuleWidth = NS_ROUND_BORDER_TO_PIXELS(aWidth, mTwipsPerPixel);
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord GetComputedColumnRuleWidth() const {
|
|
|
|
return (IsVisibleBorderStyle(mColumnRuleStyle) ? mColumnRuleWidth : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nscoord mColumnRuleWidth; // [reset] coord
|
|
|
|
nscoord mTwipsPerPixel;
|
2004-06-17 11:57:37 +00:00
|
|
|
};
|
|
|
|
|
2001-12-12 07:59:31 +00:00
|
|
|
enum nsStyleSVGPaintType {
|
2007-10-19 15:36:15 +00:00
|
|
|
eStyleSVGPaintType_None = 1,
|
2001-12-12 07:59:31 +00:00
|
|
|
eStyleSVGPaintType_Color,
|
|
|
|
eStyleSVGPaintType_Server
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nsStyleSVGPaint
|
|
|
|
{
|
2004-10-14 23:02:53 +00:00
|
|
|
union {
|
|
|
|
nscolor mColor;
|
|
|
|
nsIURI *mPaintServer;
|
|
|
|
} mPaint;
|
2009-05-13 08:26:48 +00:00
|
|
|
nsStyleSVGPaintType mType;
|
2007-01-09 11:02:17 +00:00
|
|
|
nscolor mFallbackColor;
|
2004-10-14 23:02:53 +00:00
|
|
|
|
2007-10-19 15:36:15 +00:00
|
|
|
nsStyleSVGPaint() : mType(nsStyleSVGPaintType(0)) { mPaint.mPaintServer = nsnull; }
|
|
|
|
~nsStyleSVGPaint();
|
|
|
|
void SetType(nsStyleSVGPaintType aType);
|
2004-10-14 23:02:53 +00:00
|
|
|
nsStyleSVGPaint& operator=(const nsStyleSVGPaint& aOther);
|
2010-04-27 16:15:01 +00:00
|
|
|
PRBool operator==(const nsStyleSVGPaint& aOther) const;
|
2004-10-14 23:02:53 +00:00
|
|
|
|
|
|
|
PRBool operator!=(const nsStyleSVGPaint& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
2001-12-12 07:59:31 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleSVG {
|
2001-12-12 07:59:31 +00:00
|
|
|
nsStyleSVG();
|
|
|
|
nsStyleSVG(const nsStyleSVG& aSource);
|
|
|
|
~nsStyleSVG();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
2001-12-12 07:59:31 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
2001-12-12 07:59:31 +00:00
|
|
|
this->~nsStyleSVG();
|
|
|
|
aContext->FreeToShell(sizeof(nsStyleSVG), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2001-12-12 07:59:31 +00:00
|
|
|
|
2002-08-24 14:41:28 +00:00
|
|
|
nsChangeHint CalcDifference(const nsStyleSVG& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
2001-12-12 07:59:31 +00:00
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
nsStyleSVGPaint mFill; // [inherited]
|
2005-01-25 03:55:03 +00:00
|
|
|
nsStyleSVGPaint mStroke; // [inherited]
|
2004-12-09 03:16:15 +00:00
|
|
|
nsCOMPtr<nsIURI> mMarkerEnd; // [inherited]
|
|
|
|
nsCOMPtr<nsIURI> mMarkerMid; // [inherited]
|
|
|
|
nsCOMPtr<nsIURI> mMarkerStart; // [inherited]
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord *mStrokeDasharray; // [inherited] coord, percent, factor
|
2005-04-04 21:42:26 +00:00
|
|
|
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mStrokeDashoffset; // [inherited] coord, percent, factor
|
|
|
|
nsStyleCoord mStrokeWidth; // [inherited] coord, percent, factor
|
2005-01-25 03:55:03 +00:00
|
|
|
|
|
|
|
float mFillOpacity; // [inherited]
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
float mStrokeMiterlimit; // [inherited]
|
|
|
|
float mStrokeOpacity; // [inherited]
|
2005-01-25 03:55:03 +00:00
|
|
|
|
|
|
|
PRUint32 mStrokeDasharrayLength;
|
2006-05-30 16:15:35 +00:00
|
|
|
PRUint8 mClipRule; // [inherited]
|
2007-01-30 13:19:55 +00:00
|
|
|
PRUint8 mColorInterpolation; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mColorInterpolationFilters; // [inherited] see nsStyleConsts.h
|
2006-05-30 16:15:35 +00:00
|
|
|
PRUint8 mFillRule; // [inherited] see nsStyleConsts.h
|
2009-03-21 15:36:38 +00:00
|
|
|
PRUint8 mImageRendering; // [inherited] see nsStyleConsts.h
|
2006-05-30 16:15:35 +00:00
|
|
|
PRUint8 mShapeRendering; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mStrokeLinecap; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mStrokeLinejoin; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mTextAnchor; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mTextRendering; // [inherited] see nsStyleConsts.h
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
};
|
|
|
|
|
2008-01-10 20:56:49 +00:00
|
|
|
struct nsStyleSVGReset {
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
nsStyleSVGReset();
|
|
|
|
nsStyleSVGReset(const nsStyleSVGReset& aSource);
|
|
|
|
~nsStyleSVGReset();
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void* operator new(size_t sz, nsPresContext* aContext) CPP_THROW_NEW {
|
2004-04-13 00:28:44 +00:00
|
|
|
return aContext->AllocateFromShell(sz);
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
}
|
2004-07-31 23:15:21 +00:00
|
|
|
void Destroy(nsPresContext* aContext) {
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
this->~nsStyleSVGReset();
|
|
|
|
aContext->FreeToShell(sizeof(nsStyleSVGReset), this);
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
|
|
|
|
nsChangeHint CalcDifference(const nsStyleSVGReset& aOther) const;
|
2004-10-01 03:33:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
static nsChangeHint MaxDifference();
|
|
|
|
#endif
|
2009-11-18 13:25:02 +00:00
|
|
|
static PRBool ForceCompare() { return PR_FALSE; }
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
|
2005-01-25 03:55:03 +00:00
|
|
|
nsCOMPtr<nsIURI> mClipPath; // [reset]
|
2005-09-06 22:30:40 +00:00
|
|
|
nsCOMPtr<nsIURI> mFilter; // [reset]
|
2006-01-20 17:00:43 +00:00
|
|
|
nsCOMPtr<nsIURI> mMask; // [reset]
|
2009-05-13 08:26:48 +00:00
|
|
|
nscolor mStopColor; // [reset]
|
|
|
|
nscolor mFloodColor; // [reset]
|
|
|
|
nscolor mLightingColor; // [reset]
|
2005-09-06 22:30:40 +00:00
|
|
|
|
2005-04-04 21:42:26 +00:00
|
|
|
float mStopOpacity; // [reset]
|
2007-01-09 20:40:09 +00:00
|
|
|
float mFloodOpacity; // [reset]
|
2005-09-06 22:30:40 +00:00
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 12:39:26 +00:00
|
|
|
PRUint8 mDominantBaseline; // [reset] see nsStyleConsts.h
|
2001-12-12 07:59:31 +00:00
|
|
|
};
|
|
|
|
|
2001-11-28 05:04:23 +00:00
|
|
|
#endif /* nsStyleStruct_h___ */
|