2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-25 05:47:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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___
|
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
#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
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_INHERIT_MASK 0x007fffff
|
2001-06-29 22:42:46 +00:00
|
|
|
|
2003-03-06 19:14:17 +00:00
|
|
|
// Additional bits for nsStyleContext's mBits:
|
2011-04-23 05:16:41 +00:00
|
|
|
// See nsStyleContext::HasTextDecorationLines
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_HAS_TEXT_DECORATION_LINES 0x00800000
|
2009-08-10 22:52:29 +00:00
|
|
|
// See nsStyleContext::HasPseudoElementData.
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_HAS_PSEUDO_ELEMENT_DATA 0x01000000
|
2010-04-03 01:58:25 +00:00
|
|
|
// See nsStyleContext::RelevantLinkIsVisited
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_RELEVANT_LINK_VISITED 0x02000000
|
2010-04-06 19:42:41 +00:00
|
|
|
// See nsStyleContext::IsStyleIfVisited
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_IS_STYLE_IF_VISITED 0x04000000
|
2009-12-11 07:37:40 +00:00
|
|
|
// See nsStyleContext::GetPseudoEnum
|
2011-05-27 10:36:19 +00:00
|
|
|
#define NS_STYLE_CONTEXT_TYPE_MASK 0xf8000000
|
|
|
|
#define NS_STYLE_CONTEXT_TYPE_SHIFT 27
|
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);
|
2012-01-24 13:09:55 +00:00
|
|
|
private:
|
|
|
|
void Init(nsPresContext *aPresContext);
|
|
|
|
public:
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
|
|
|
|
|
|
// 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]
|
2012-01-24 13:09:55 +00:00
|
|
|
nsCOMPtr<nsIAtom> mLanguage; // [inherited]
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mRepeating;
|
2012-07-07 14:27:08 +00:00
|
|
|
bool mLegacySyntax;
|
2009-11-02 19:36:43 +00:00
|
|
|
|
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
|
|
|
|
2012-07-07 14:27:08 +00:00
|
|
|
nsStyleCoord mRadiusX; // percent, coord, calc, none
|
|
|
|
nsStyleCoord mRadiusY; // percent, coord, calc, none
|
|
|
|
|
2009-08-01 15:53:40 +00:00
|
|
|
// stops are in the order specified in the stylesheet
|
|
|
|
nsTArray<nsStyleGradientStop> mStops;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleGradient& aOther) const;
|
|
|
|
bool operator!=(const nsStyleGradient& aOther) const {
|
2009-08-01 15:53:40 +00:00
|
|
|
return !(*this == aOther);
|
2012-07-15 04:15:35 +00:00
|
|
|
}
|
2009-08-01 15:53:40 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsOpaque();
|
2011-01-03 01:48:09 +00:00
|
|
|
|
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() {}
|
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
nsStyleGradient(const nsStyleGradient& aOther) MOZ_DELETE;
|
|
|
|
nsStyleGradient& operator=(const nsStyleGradient& aOther) MOZ_DELETE;
|
2009-08-01 15:53:40 +00:00
|
|
|
};
|
|
|
|
|
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.
|
2011-10-17 14:59:28 +00:00
|
|
|
* @param aIsEntireImage true iff |aActualCropRect| is identical to the
|
2009-08-21 20:39:25 +00:00
|
|
|
* source image bounds.
|
2011-10-17 14:59:28 +00:00
|
|
|
* @return true iff |aActualCropRect| holds a meaningful value.
|
2009-08-21 20:39:25 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool ComputeActualCropRect(nsIntRect& aActualCropRect,
|
2012-07-30 14:20:58 +00:00
|
|
|
bool* aIsEntireImage = nullptr) const;
|
2009-08-21 20:39:25 +00:00
|
|
|
|
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
|
|
|
/**
|
2011-10-17 14:59:28 +00:00
|
|
|
* @return true if the item is definitely opaque --- i.e., paints every
|
2009-08-21 20:39:25 +00:00
|
|
|
* pixel within its bounds opaquely, and the bounds contains at least a pixel.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsOpaque() const;
|
2009-08-21 20:39:25 +00:00
|
|
|
/**
|
2011-10-17 14:59:28 +00:00
|
|
|
* @return true if this image is fully loaded, and its size is calculated;
|
|
|
|
* always returns true if |mType| is |eStyleImageType_Gradient| or
|
2010-08-13 13:33:37 +00:00
|
|
|
* |eStyleImageType_Element|.
|
2009-08-21 20:39:25 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsComplete() const;
|
2009-08-21 20:39:25 +00:00
|
|
|
/**
|
2011-10-17 14:59:28 +00:00
|
|
|
* @return true if it is 100% confident that this image contains no pixel
|
2009-08-21 20:39:25 +00:00
|
|
|
* to draw.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsEmpty() const {
|
2009-08-21 20:39:25 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleImage& aOther) const;
|
|
|
|
bool operator!=(const nsStyleImage& aOther) const {
|
2009-08-21 20:39:25 +00:00
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2012-07-19 19:44:04 +00:00
|
|
|
static bool ForceCompare() { return true; }
|
2002-10-08 10:24:53 +00:00
|
|
|
|
2009-02-20 05:29:21 +00:00
|
|
|
struct Position;
|
|
|
|
friend struct Position;
|
|
|
|
struct Position {
|
2011-05-23 20:36:18 +00:00
|
|
|
typedef nsStyleCoord::Calc PositionCoord;
|
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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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 {
|
2011-01-13 10:40:12 +00:00
|
|
|
struct Dimension : public nsStyleCoord::Calc {
|
|
|
|
nscoord ResolveLengthPercentage(nscoord aAvailable) const {
|
|
|
|
double d = double(mPercent) * double(aAvailable) + double(mLength);
|
|
|
|
if (d < 0.0)
|
|
|
|
return 0;
|
|
|
|
return NSToCoordRoundWithClamp(float(d));
|
|
|
|
}
|
|
|
|
};
|
2009-05-28 18:09:05 +00:00
|
|
|
Dimension mWidth, mHeight;
|
|
|
|
|
2011-01-13 10:40:12 +00:00
|
|
|
nscoord ResolveWidthLengthPercentage(const nsSize& aBgPositioningArea) const {
|
|
|
|
NS_ABORT_IF_FALSE(mWidthType == eLengthPercentage,
|
|
|
|
"resolving non-length/percent dimension!");
|
|
|
|
return mWidth.ResolveLengthPercentage(aBgPositioningArea.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord ResolveHeightLengthPercentage(const nsSize& aBgPositioningArea) const {
|
|
|
|
NS_ABORT_IF_FALSE(mHeightType == eLengthPercentage,
|
|
|
|
"resolving non-length/percent dimension!");
|
|
|
|
return mHeight.ResolveLengthPercentage(aBgPositioningArea.height);
|
|
|
|
}
|
|
|
|
|
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
|
2011-01-13 10:40:12 +00:00
|
|
|
// frame size; see DependsOnFrameSize.
|
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;
|
|
|
|
|
2011-01-13 10:40:12 +00:00
|
|
|
// True if the effective image size described by this depends on the size of
|
|
|
|
// the corresponding frame, when aImage (which must not have null type) is
|
|
|
|
// the background image.
|
|
|
|
bool DependsOnFrameSize(const nsStyleImage& aImage) const;
|
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);
|
|
|
|
}
|
|
|
|
};
|
2012-02-25 05:23:14 +00:00
|
|
|
|
|
|
|
struct Repeat;
|
|
|
|
friend struct Repeat;
|
|
|
|
struct Repeat {
|
|
|
|
PRUint8 mXRepeat, mYRepeat;
|
|
|
|
|
|
|
|
// Initialize nothing
|
|
|
|
Repeat() {}
|
|
|
|
|
|
|
|
// Initialize to initial values
|
|
|
|
void SetInitialValues();
|
|
|
|
|
|
|
|
bool operator==(const Repeat& aOther) const {
|
|
|
|
return mXRepeat == aOther.mXRepeat &&
|
|
|
|
mYRepeat == aOther.mYRepeat;
|
|
|
|
}
|
|
|
|
bool operator!=(const Repeat& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
};
|
2009-05-28 18:09:05 +00:00
|
|
|
|
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
|
2012-02-25 05:23:14 +00:00
|
|
|
Repeat mRepeat; // [reset] See nsStyleConsts.h
|
2009-02-20 05:29:21 +00:00
|
|
|
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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const Layer& aOther) const;
|
|
|
|
bool operator!=(const Layer& aOther) const {
|
2009-02-20 05:29:21 +00:00
|
|
|
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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsWidthDependent() const { return !mHasCachedMargin; }
|
|
|
|
bool GetMargin(nsMargin& aMargin) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
|
|
|
if (mHasCachedMargin) {
|
|
|
|
aMargin = mCachedMargin;
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasCachedMargin;
|
2001-05-31 22:19:43 +00:00
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsWidthDependent() const { return !mHasCachedPadding; }
|
|
|
|
bool GetPadding(nsMargin& aPadding) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
|
|
|
if (mHasCachedPadding) {
|
|
|
|
aPadding = mCachedPadding;
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasCachedPadding;
|
2001-05-31 22:19:43 +00:00
|
|
|
nsMargin mCachedPadding;
|
|
|
|
};
|
|
|
|
|
2001-12-05 08:35:05 +00:00
|
|
|
struct nsBorderColors {
|
|
|
|
nsBorderColors* mNext;
|
|
|
|
nscolor mColor;
|
2001-12-11 11:13:16 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsBorderColors() : mNext(nullptr), mColor(NS_RGB(0,0,0)) {}
|
|
|
|
nsBorderColors(const nscolor& aColor) : mNext(nullptr), mColor(aColor) {}
|
2008-10-17 08:13:16 +00:00
|
|
|
~nsBorderColors();
|
2001-12-05 08:35:05 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
nsBorderColors* Clone() const { return Clone(true); }
|
2001-12-19 11:59:31 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool Equal(const nsBorderColors* c1,
|
2008-09-12 15:35:53 +00:00
|
|
|
const nsBorderColors* c2) {
|
|
|
|
if (c1 == c2)
|
2011-10-17 14:59:28 +00:00
|
|
|
return 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)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2001-12-19 11:59:31 +00:00
|
|
|
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:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsBorderColors* Clone(bool 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;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasColor; // Whether mColor should be used
|
|
|
|
bool mInset;
|
2008-07-08 00:56:52 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
nsCSSShadowItem() : mHasColor(false) {
|
2008-07-08 00:56:52 +00:00
|
|
|
MOZ_COUNT_CTOR(nsCSSShadowItem);
|
|
|
|
}
|
|
|
|
~nsCSSShadowItem() {
|
|
|
|
MOZ_COUNT_DTOR(nsCSSShadowItem);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsCSSShadowItem& aOther) {
|
2008-07-08 00:56:52 +00:00
|
|
|
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));
|
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator!=(const nsCSSShadowItem& aOther) {
|
2008-07-08 00:56:52 +00:00
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
2012-04-16 05:43:33 +00:00
|
|
|
bool HasShadowWithInset(bool aInset) {
|
|
|
|
for (PRUint32 i = 0; i < mLength; ++i) {
|
|
|
|
if (mArray[i].mInset == aInset)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsVisibleBorderStyle(PRUint8 aStyle)
|
2008-07-19 10:38:25 +00:00
|
|
|
{
|
|
|
|
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
|
2012-04-05 17:14:54 +00:00
|
|
|
// ForceCompare is true, because a change to our border-style might
|
|
|
|
// change border-width on descendants (requiring reflow of those)
|
|
|
|
// but not our own border-width (thus not requiring us to reflow).
|
|
|
|
static bool ForceCompare() { return true; }
|
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++)
|
2012-07-30 14:20:58 +00:00
|
|
|
mBorderColors[i] = nullptr;
|
2001-12-05 08:35:05 +00:00
|
|
|
}
|
|
|
|
}
|
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];
|
2012-07-30 14:20:58 +00:00
|
|
|
mBorderColors[aSide] = nullptr;
|
2001-12-11 11:13:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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);
|
2011-04-19 03:07:22 +00:00
|
|
|
mBorder.Side(aSide) = roundedWidth;
|
2008-07-17 06:30:25 +00:00
|
|
|
if (HasVisibleStyle(aSide))
|
2011-04-19 03:07:22 +00:00
|
|
|
mComputedBorder.Side(aSide) = roundedWidth;
|
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
|
|
|
}
|
|
|
|
|
2012-04-18 05:14:31 +00:00
|
|
|
bool HasBorder() const
|
|
|
|
{
|
|
|
|
return mComputedBorder != nsMargin(0,0,0,0) || mBorderImageSource;
|
|
|
|
}
|
|
|
|
|
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.
|
2012-05-31 05:19:49 +00:00
|
|
|
nscoord GetComputedBorderWidth(mozilla::css::Side aSide) const
|
2005-04-29 15:44:38 +00:00
|
|
|
{
|
2012-05-31 05:19:49 +00:00
|
|
|
return GetComputedBorder().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);
|
2011-04-19 03:07:22 +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
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool 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,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool& aForeground) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
aForeground = 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)
|
2011-10-17 14:59:28 +00:00
|
|
|
aForeground = true;
|
2001-05-31 22:19:43 +00:00
|
|
|
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;
|
|
|
|
|
2011-12-22 23:34:45 +00:00
|
|
|
bool HasBorderImage() {return !!mBorderImageSource;}
|
2010-09-08 00:30:40 +00:00
|
|
|
|
|
|
|
void TrackImage(nsPresContext* aContext);
|
|
|
|
void UntrackImage(nsPresContext* aContext);
|
|
|
|
|
2011-12-22 23:34:45 +00:00
|
|
|
nsMargin GetImageOutset() const;
|
|
|
|
|
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)
|
2012-07-30 14:20:58 +00:00
|
|
|
*aColors = nullptr;
|
2001-12-05 08:35:05 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-22 23:34:45 +00:00
|
|
|
public:
|
|
|
|
nsBorderColors** mBorderColors; // [reset] composite (stripe) colors
|
|
|
|
nsRefPtr<nsCSSShadowArray> mBoxShadow; // [reset] NULL for 'none'
|
|
|
|
|
2010-09-08 00:30:40 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool mImageTracked;
|
|
|
|
#endif
|
|
|
|
|
2001-05-31 22:19:43 +00:00
|
|
|
protected:
|
2011-12-22 23:34:45 +00:00
|
|
|
nsCOMPtr<imgIRequest> mBorderImageSource; // [reset]
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsStyleCorners mBorderRadius; // [reset] coord, percent
|
|
|
|
nsStyleSides mBorderImageSlice; // [reset] factor, percent
|
|
|
|
nsStyleSides mBorderImageWidth; // [reset] length, factor, percent, auto
|
|
|
|
nsStyleSides mBorderImageOutset; // [reset] length, factor
|
|
|
|
|
2012-04-17 19:22:49 +00:00
|
|
|
PRUint8 mBorderImageFill; // [reset]
|
2011-12-22 23:34:45 +00:00
|
|
|
PRUint8 mBorderImageRepeatH; // [reset] see nsStyleConsts.h
|
|
|
|
PRUint8 mBorderImageRepeatV; // [reset]
|
|
|
|
PRUint8 mFloatEdge; // [reset]
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// mComputedBorder holds the CSS2.1 computed border-width values.
|
|
|
|
// In particular, these widths take into account the border-style
|
|
|
|
// for the relevant side, and the values are rounded to the nearest
|
|
|
|
// device pixel (which is not part of the definition of computed
|
|
|
|
// values). The presence or absence of a border-image does not
|
|
|
|
// affect border-width values.
|
2008-07-17 06:30:25 +00:00
|
|
|
nsMargin mComputedBorder;
|
2005-04-29 15:44:38 +00:00
|
|
|
|
2011-12-22 23:34:45 +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 member exists so that when we create structs
|
|
|
|
// using the copy 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 computed
|
|
|
|
// value either. The values are rounded to the nearest device pixel.
|
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
|
2011-12-22 23:34:45 +00:00
|
|
|
nscolor mBorderColor[4]; // [reset] the colors to use for a simple
|
|
|
|
// border. not used for -moz-border-colors
|
2009-12-11 04:02:13 +00:00
|
|
|
private:
|
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
|
|
|
|
2011-12-16 19:42:07 +00:00
|
|
|
nsStyleBorder& operator=(const nsStyleBorder& aOther) MOZ_DELETE;
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetOutlineWidth(nscoord& aWidth) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
|
|
|
if (mHasCachedOutline) {
|
|
|
|
aWidth = mCachedOutlineWidth;
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8 GetOutlineStyle(void) const
|
|
|
|
{
|
|
|
|
return (mOutlineStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetOutlineStyle(PRUint8 aStyle)
|
|
|
|
{
|
|
|
|
mOutlineStyle &= ~BORDER_STYLE_MASK;
|
|
|
|
mOutlineStyle |= (aStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
// false means initial value
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetOutlineColor(nscolor& aColor) const
|
2001-05-31 22:19:43 +00:00
|
|
|
{
|
|
|
|
if ((mOutlineStyle & BORDER_COLOR_SPECIAL) == 0) {
|
|
|
|
aColor = mOutlineColor;
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2001-05-31 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasCachedOutline;
|
2002-12-21 07:27:44 +00:00
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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]
|
2011-12-16 19:42:07 +00:00
|
|
|
nsStyleList& operator=(const nsStyleList& aOther) MOZ_DELETE;
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2012-07-07 00:06:23 +00:00
|
|
|
#ifdef MOZ_FLEXBOX
|
|
|
|
nsStyleCoord mFlexBasis; // [reset] coord, percent, enum, calc, auto
|
|
|
|
#endif // MOZ_FLEXBOX
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mBoxSizing; // [reset] see nsStyleConsts.h
|
2012-07-07 00:06:19 +00:00
|
|
|
#ifdef MOZ_FLEXBOX
|
2012-07-07 00:06:21 +00:00
|
|
|
PRUint8 mAlignItems; // [reset] see nsStyleConsts.h
|
2012-07-07 00:06:21 +00:00
|
|
|
PRUint8 mAlignSelf; // [reset] see nsStyleConsts.h
|
2012-07-07 00:06:20 +00:00
|
|
|
PRUint8 mFlexDirection; // [reset] see nsStyleConsts.h
|
2012-07-07 00:06:19 +00:00
|
|
|
PRUint8 mJustifyContent; // [reset] see nsStyleConsts.h
|
2012-07-07 00:06:19 +00:00
|
|
|
PRInt32 mOrder; // [reset] integer
|
2012-07-07 00:06:22 +00:00
|
|
|
float mFlexGrow; // [reset] float
|
|
|
|
float mFlexShrink; // [reset] float
|
2012-07-07 00:06:19 +00:00
|
|
|
#endif // MOZ_FLEXBOX
|
2008-08-04 22:15:11 +00:00
|
|
|
nsStyleCoord mZIndex; // [reset] integer, auto
|
2010-08-11 19:32:52 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool WidthDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ return WidthCoordDependsOnContainer(mWidth); }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool MinWidthDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ return WidthCoordDependsOnContainer(mMinWidth); }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool MaxWidthDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ 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.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HeightDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ return HeightCoordDependsOnContainer(mHeight); }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool MinHeightDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ return HeightCoordDependsOnContainer(mMinHeight); }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool MaxHeightDependsOnContainer() const
|
2010-08-11 19:32:52 +00:00
|
|
|
{ return HeightCoordDependsOnContainer(mMaxHeight); }
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool OffsetHasPercent(mozilla::css::Side aSide) const
|
2010-08-25 10:17:56 +00:00
|
|
|
{
|
|
|
|
return mOffset.Get(aSide).HasPercent();
|
|
|
|
}
|
|
|
|
|
2010-08-11 19:32:52 +00:00
|
|
|
private:
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool WidthCoordDependsOnContainer(const nsStyleCoord &aCoord);
|
|
|
|
static bool HeightCoordDependsOnContainer(const nsStyleCoord &aCoord)
|
2010-08-11 19:32:52 +00:00
|
|
|
{
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2011-08-20 20:41:39 +00:00
|
|
|
struct nsStyleTextOverflowSide {
|
|
|
|
nsStyleTextOverflowSide() : mType(NS_STYLE_TEXT_OVERFLOW_CLIP) {}
|
2011-06-22 18:11:47 +00:00
|
|
|
|
2011-08-20 20:41:39 +00:00
|
|
|
bool operator==(const nsStyleTextOverflowSide& aOther) const {
|
2011-06-22 18:11:47 +00:00
|
|
|
return mType == aOther.mType &&
|
|
|
|
(mType != NS_STYLE_TEXT_OVERFLOW_STRING ||
|
|
|
|
mString == aOther.mString);
|
|
|
|
}
|
2011-08-20 20:41:39 +00:00
|
|
|
bool operator!=(const nsStyleTextOverflowSide& aOther) const {
|
2011-06-22 18:11:47 +00:00
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString mString;
|
|
|
|
PRUint8 mType;
|
|
|
|
};
|
|
|
|
|
2011-08-20 20:41:39 +00:00
|
|
|
struct nsStyleTextOverflow {
|
2011-10-12 16:20:46 +00:00
|
|
|
nsStyleTextOverflow() : mLogicalDirections(true) {}
|
2011-08-20 20:41:39 +00:00
|
|
|
bool operator==(const nsStyleTextOverflow& aOther) const {
|
|
|
|
return mLeft == aOther.mLeft && mRight == aOther.mRight;
|
|
|
|
}
|
|
|
|
bool operator!=(const nsStyleTextOverflow& aOther) const {
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
|
2011-10-12 16:20:46 +00:00
|
|
|
// Returns the value to apply on the left side.
|
|
|
|
const nsStyleTextOverflowSide& GetLeft(PRUint8 aDirection) const {
|
|
|
|
NS_ASSERTION(aDirection == NS_STYLE_DIRECTION_LTR ||
|
|
|
|
aDirection == NS_STYLE_DIRECTION_RTL, "bad direction");
|
|
|
|
return !mLogicalDirections || aDirection == NS_STYLE_DIRECTION_LTR ?
|
|
|
|
mLeft : mRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the value to apply on the right side.
|
|
|
|
const nsStyleTextOverflowSide& GetRight(PRUint8 aDirection) const {
|
|
|
|
NS_ASSERTION(aDirection == NS_STYLE_DIRECTION_LTR ||
|
|
|
|
aDirection == NS_STYLE_DIRECTION_RTL, "bad direction");
|
|
|
|
return !mLogicalDirections || aDirection == NS_STYLE_DIRECTION_LTR ?
|
|
|
|
mRight : mLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the first value that was specified.
|
|
|
|
const nsStyleTextOverflowSide* GetFirstValue() const {
|
|
|
|
return mLogicalDirections ? &mRight : &mLeft;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the second value, or null if there was only one value specified.
|
|
|
|
const nsStyleTextOverflowSide* GetSecondValue() const {
|
2012-07-30 14:20:58 +00:00
|
|
|
return mLogicalDirections ? nullptr : &mRight;
|
2011-10-12 16:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsStyleTextOverflowSide mLeft; // start side when mLogicalDirections is true
|
|
|
|
nsStyleTextOverflowSide mRight; // end side when mLogicalDirections is true
|
|
|
|
bool mLogicalDirections; // true when only one value was specified
|
2011-08-20 20:41:39 +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
|
|
|
|
2011-03-31 12:26:35 +00:00
|
|
|
PRUint8 GetDecorationStyle() const
|
|
|
|
{
|
|
|
|
return (mTextDecorationStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDecorationStyle(PRUint8 aStyle)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE((aStyle & BORDER_STYLE_MASK) == aStyle,
|
|
|
|
"style doesn't fit");
|
|
|
|
mTextDecorationStyle &= ~BORDER_STYLE_MASK;
|
|
|
|
mTextDecorationStyle |= (aStyle & BORDER_STYLE_MASK);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void GetDecorationColor(nscolor& aColor, bool& aForeground) const
|
2011-03-31 12:26:35 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
aForeground = false;
|
2011-03-31 12:26:35 +00:00
|
|
|
if ((mTextDecorationStyle & BORDER_COLOR_SPECIAL) == 0) {
|
|
|
|
aColor = mTextDecorationColor;
|
|
|
|
} else if (mTextDecorationStyle & BORDER_COLOR_FOREGROUND) {
|
2011-10-17 14:59:28 +00:00
|
|
|
aForeground = true;
|
2011-03-31 12:26:35 +00:00
|
|
|
} else {
|
|
|
|
NS_NOTREACHED("OUTLINE_COLOR_INITIAL should not be set here");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDecorationColor(nscolor aColor)
|
|
|
|
{
|
|
|
|
mTextDecorationColor = aColor;
|
|
|
|
mTextDecorationStyle &= ~BORDER_COLOR_SPECIAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetDecorationColorToForeground()
|
|
|
|
{
|
|
|
|
mTextDecorationStyle &= ~BORDER_COLOR_SPECIAL;
|
|
|
|
mTextDecorationStyle |= BORDER_COLOR_FOREGROUND;
|
|
|
|
}
|
|
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return false; }
|
2010-04-27 16:15:01 +00:00
|
|
|
|
2011-03-31 12:26:35 +00:00
|
|
|
nsStyleCoord mVerticalAlign; // [reset] coord, percent, calc, enum (see nsStyleConsts.h)
|
2011-06-22 18:11:47 +00:00
|
|
|
nsStyleTextOverflow mTextOverflow; // [reset] enum, string
|
2011-03-31 12:26:35 +00:00
|
|
|
|
2011-04-23 05:16:41 +00:00
|
|
|
PRUint8 mTextBlink; // [reset] see nsStyleConsts.h
|
|
|
|
PRUint8 mTextDecorationLine; // [reset] see nsStyleConsts.h
|
2001-06-29 03:15:58 +00:00
|
|
|
PRUint8 mUnicodeBidi; // [reset] see nsStyleConsts.h
|
2011-03-31 12:26:35 +00:00
|
|
|
protected:
|
|
|
|
PRUint8 mTextDecorationStyle; // [reset] see nsStyleConsts.h
|
2001-06-29 03:15:58 +00:00
|
|
|
|
2011-03-31 12:26:35 +00:00
|
|
|
nscolor mTextDecorationColor; // [reset] the colors to use for a decoration lines, not used at currentColor
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return false; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
|
|
|
PRUint8 mTextAlign; // [inherited] see nsStyleConsts.h
|
2012-01-12 17:52:21 +00:00
|
|
|
PRUint8 mTextAlignLast; // [inherited] see nsStyleConsts.h
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mTextTransform; // [inherited] see nsStyleConsts.h
|
|
|
|
PRUint8 mWhiteSpace; // [inherited] see nsStyleConsts.h
|
2012-05-07 19:18:23 +00:00
|
|
|
PRUint8 mWordBreak; // [inherited] see nsStyleConsts.h
|
2008-07-24 07:16:18 +00:00
|
|
|
PRUint8 mWordWrap; // [inherited] see nsStyleConsts.h
|
2011-05-04 11:14:50 +00:00
|
|
|
PRUint8 mHyphens; // [inherited] see nsStyleConsts.h
|
2011-11-24 02:48:23 +00:00
|
|
|
PRUint8 mTextSizeAdjust; // [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
|
|
|
|
2012-04-17 19:22:49 +00:00
|
|
|
nscoord mWordSpacing; // [inherited]
|
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-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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool NewlineIsSignificant() const {
|
2008-08-12 08:31:56 +00:00
|
|
|
return mWhiteSpace == NS_STYLE_WHITESPACE_PRE ||
|
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_WRAP ||
|
|
|
|
mWhiteSpace == NS_STYLE_WHITESPACE_PRE_LINE;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool WhiteSpaceCanWrap() const {
|
2006-10-19 01:47:47 +00:00
|
|
|
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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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]
|
2009-08-27 03:53:35 +00:00
|
|
|
PRUint8 mPointerEvents; // [inherited] see nsStyleConsts.h
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsVisible() const {
|
2008-08-04 22:15:11 +00:00
|
|
|
return (mVisible == NS_STYLE_VISIBILITY_VISIBLE);
|
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsVisibleOrCollapsed() const {
|
2008-08-04 22:15:11 +00:00
|
|
|
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 {
|
2011-04-12 06:18:42 +00:00
|
|
|
enum Type { Function, StepStart, StepEnd };
|
|
|
|
|
2009-08-20 21:52:47 +00:00
|
|
|
explicit nsTimingFunction(PRInt32 aTimingFunctionType
|
|
|
|
= NS_STYLE_TRANSITION_TIMING_FUNCTION_EASE)
|
|
|
|
{
|
|
|
|
AssignFromKeyword(aTimingFunctionType);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTimingFunction(float x1, float y1, float x2, float y2)
|
2011-04-12 06:18:42 +00:00
|
|
|
: mType(Function)
|
|
|
|
{
|
|
|
|
mFunc.mX1 = x1;
|
|
|
|
mFunc.mY1 = y1;
|
|
|
|
mFunc.mX2 = x2;
|
|
|
|
mFunc.mY2 = y2;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTimingFunction(Type aType, PRUint32 aSteps)
|
|
|
|
: mType(aType)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(mType == StepStart || mType == StepEnd, "wrong type");
|
|
|
|
mSteps = aSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTimingFunction(const nsTimingFunction& aOther)
|
|
|
|
{
|
2011-04-22 03:17:30 +00:00
|
|
|
*this = aOther;
|
2011-04-12 06:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Type mType;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
float mX1;
|
|
|
|
float mY1;
|
|
|
|
float mX2;
|
|
|
|
float mY2;
|
|
|
|
} mFunc;
|
|
|
|
PRUint32 mSteps;
|
|
|
|
};
|
|
|
|
|
2011-04-22 03:17:30 +00:00
|
|
|
nsTimingFunction&
|
|
|
|
operator=(const nsTimingFunction& aOther)
|
|
|
|
{
|
|
|
|
if (&aOther == this)
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
mType = aOther.mType;
|
|
|
|
|
|
|
|
if (mType == Function) {
|
|
|
|
mFunc.mX1 = aOther.mFunc.mX1;
|
|
|
|
mFunc.mY1 = aOther.mFunc.mY1;
|
|
|
|
mFunc.mX2 = aOther.mFunc.mX2;
|
|
|
|
mFunc.mY2 = aOther.mFunc.mY2;
|
|
|
|
} else {
|
|
|
|
mSteps = aOther.mSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-04-12 06:18:42 +00:00
|
|
|
bool operator==(const nsTimingFunction& aOther) const
|
2009-08-20 21:52:47 +00:00
|
|
|
{
|
2011-04-12 06:18:42 +00:00
|
|
|
if (mType != aOther.mType) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mType == Function) {
|
|
|
|
return mFunc.mX1 == aOther.mFunc.mX1 && mFunc.mY1 == aOther.mFunc.mY1 &&
|
|
|
|
mFunc.mX2 == aOther.mFunc.mX2 && mFunc.mY2 == aOther.mFunc.mY2;
|
|
|
|
}
|
|
|
|
return mSteps == aOther.mSteps;
|
2009-08-20 21:52:47 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 06:18:42 +00:00
|
|
|
bool operator!=(const nsTimingFunction& aOther) const
|
2009-08-20 21:52:47 +00:00
|
|
|
{
|
2011-04-12 06:18:42 +00:00
|
|
|
return !(*this == aOther);
|
2009-08-20 21:52:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-22 03:17:30 +00:00
|
|
|
nsTimingFunction& TimingFunctionSlot() { return mTimingFunction; }
|
|
|
|
|
2009-08-20 21:52:47 +00:00
|
|
|
private:
|
|
|
|
nsTimingFunction mTimingFunction;
|
|
|
|
float mDuration;
|
|
|
|
float mDelay;
|
|
|
|
nsCSSProperty mProperty;
|
|
|
|
nsCOMPtr<nsIAtom> mUnknownProperty; // used when mProperty is
|
|
|
|
// eCSSProperty_UNKNOWN
|
|
|
|
};
|
|
|
|
|
2011-04-12 06:18:42 +00:00
|
|
|
struct nsAnimation {
|
|
|
|
nsAnimation() { /* leaves uninitialized; see also SetInitialValues */ }
|
|
|
|
explicit nsAnimation(const nsAnimation& aCopy);
|
|
|
|
|
|
|
|
void SetInitialValues();
|
|
|
|
|
|
|
|
// Delay and Duration are in milliseconds
|
|
|
|
|
|
|
|
const nsTimingFunction& GetTimingFunction() const { return mTimingFunction; }
|
|
|
|
float GetDelay() const { return mDelay; }
|
|
|
|
float GetDuration() const { return mDuration; }
|
|
|
|
const nsString& GetName() const { return mName; }
|
|
|
|
PRUint8 GetDirection() const { return mDirection; }
|
|
|
|
PRUint8 GetFillMode() const { return mFillMode; }
|
|
|
|
PRUint8 GetPlayState() const { return mPlayState; }
|
|
|
|
float GetIterationCount() const { return mIterationCount; }
|
|
|
|
|
|
|
|
void SetTimingFunction(const nsTimingFunction& aTimingFunction)
|
|
|
|
{ mTimingFunction = aTimingFunction; }
|
|
|
|
void SetDelay(float aDelay) { mDelay = aDelay; }
|
|
|
|
void SetDuration(float aDuration) { mDuration = aDuration; }
|
|
|
|
void SetName(const nsSubstring& aName) { mName = aName; }
|
|
|
|
void SetDirection(PRUint8 aDirection) { mDirection = aDirection; }
|
|
|
|
void SetFillMode(PRUint8 aFillMode) { mFillMode = aFillMode; }
|
|
|
|
void SetPlayState(PRUint8 aPlayState) { mPlayState = aPlayState; }
|
|
|
|
void SetIterationCount(float aIterationCount)
|
|
|
|
{ mIterationCount = aIterationCount; }
|
|
|
|
|
2011-04-22 03:17:30 +00:00
|
|
|
nsTimingFunction& TimingFunctionSlot() { return mTimingFunction; }
|
|
|
|
|
2011-04-12 06:18:42 +00:00
|
|
|
private:
|
|
|
|
nsTimingFunction mTimingFunction;
|
|
|
|
float mDuration;
|
|
|
|
float mDelay;
|
|
|
|
nsString mName; // empty string for 'none'
|
|
|
|
PRUint8 mDirection;
|
|
|
|
PRUint8 mFillMode;
|
|
|
|
PRUint8 mPlayState;
|
|
|
|
float mIterationCount; // NS_IEEEPositiveInfinity() means infinite
|
|
|
|
};
|
|
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return true; }
|
2007-07-18 21:56:57 +00:00
|
|
|
|
2011-05-11 15:28:53 +00:00
|
|
|
// We guarantee that if mBinding is non-null, so are mBinding->GetURI() and
|
2007-07-18 21:56:57 +00:00
|
|
|
// mBinding->mOriginPrincipal.
|
|
|
|
nsRefPtr<nsCSSValue::URL> mBinding; // [reset]
|
2012-03-16 01:13:08 +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
|
2011-10-29 07:04:20 +00:00
|
|
|
// and float:left/right; otherwise equal
|
|
|
|
// to mDisplay
|
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_*
|
2011-10-29 07:04:20 +00:00
|
|
|
PRUint8 mOriginalFloats; // [reset] saved mFloats for position:absolute/fixed;
|
|
|
|
// otherwise equal to mFloats
|
2001-05-31 22:19:43 +00:00
|
|
|
PRUint8 mBreakType; // [reset] see nsStyleConsts.h NS_STYLE_CLEAR_*
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mBreakBefore; // [reset]
|
|
|
|
bool 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
|
2012-03-16 01:13:08 +00:00
|
|
|
PRUint8 mClipFlags; // [reset] see nsStyleConsts.h
|
2011-05-10 13:47:46 +00:00
|
|
|
PRUint8 mOrient; // [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)
|
2012-04-17 19:22:49 +00:00
|
|
|
PRUint8 mBackfaceVisibility;
|
|
|
|
PRUint8 mTransformStyle;
|
2010-07-03 04:18:56 +00:00
|
|
|
const nsCSSValueList *mSpecifiedTransform; // [reset]
|
2011-08-03 03:04:23 +00:00
|
|
|
nsStyleCoord mTransformOrigin[3]; // [reset] percent, coord, calc, 3rd param is coord, calc only
|
2011-08-03 03:04:22 +00:00
|
|
|
nsStyleCoord mChildPerspective; // [reset] coord
|
2011-08-03 03:04:24 +00:00
|
|
|
nsStyleCoord mPerspectiveOrigin[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
|
|
|
|
2011-04-12 06:18:42 +00:00
|
|
|
nsAutoTArray<nsAnimation, 1> mAnimations; // [reset]
|
|
|
|
// The number of elements in mAnimations that are not from repeating
|
|
|
|
// a list due to another property being longer.
|
|
|
|
PRUint32 mAnimationTimingFunctionCount,
|
|
|
|
mAnimationDurationCount,
|
|
|
|
mAnimationDelayCount,
|
|
|
|
mAnimationNameCount,
|
|
|
|
mAnimationDirectionCount,
|
|
|
|
mAnimationFillModeCount,
|
|
|
|
mAnimationPlayStateCount,
|
|
|
|
mAnimationIterationCountCount;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsBlockInside() const {
|
2007-01-27 18:44:24 +00:00
|
|
|
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.)
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsBlockOutside() const {
|
2007-01-27 18:44:24 +00:00
|
|
|
return NS_STYLE_DISPLAY_BLOCK == mDisplay ||
|
2012-06-26 22:11:38 +00:00
|
|
|
#ifdef MOZ_FLEXBOX
|
|
|
|
NS_STYLE_DISPLAY_FLEX == mDisplay ||
|
|
|
|
#endif // MOZ_FLEXBOX
|
2007-01-27 18:44:24 +00:00
|
|
|
NS_STYLE_DISPLAY_LIST_ITEM == mDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_TABLE == mDisplay;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsDisplayTypeInlineOutside(PRUint8 aDisplay) {
|
2011-07-29 01:11:51 +00:00
|
|
|
return NS_STYLE_DISPLAY_INLINE == aDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_BLOCK == aDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_TABLE == aDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_BOX == aDisplay ||
|
2012-06-26 22:11:38 +00:00
|
|
|
#ifdef MOZ_FLEXBOX
|
|
|
|
NS_STYLE_DISPLAY_INLINE_FLEX == aDisplay ||
|
|
|
|
#endif // MOZ_FLEXBOX
|
2011-07-29 01:11:51 +00:00
|
|
|
NS_STYLE_DISPLAY_INLINE_GRID == aDisplay ||
|
|
|
|
NS_STYLE_DISPLAY_INLINE_STACK == aDisplay;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsInlineOutside() const {
|
2011-07-29 01:11:51 +00:00
|
|
|
return IsDisplayTypeInlineOutside(mDisplay);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsOriginalDisplayInlineOutside() const {
|
2011-07-29 01:11:51 +00:00
|
|
|
return IsDisplayTypeInlineOutside(mOriginalDisplay);
|
2007-01-27 18:44:24 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2012-08-02 11:38:49 +00:00
|
|
|
bool IsFloatingStyle() const {
|
2001-05-31 22:19:43 +00:00
|
|
|
return NS_STYLE_FLOAT_NONE != mFloats;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsAbsolutelyPositioned() const {return (NS_STYLE_POSITION_ABSOLUTE == mPosition) ||
|
2001-05-31 22:19:43 +00:00
|
|
|
(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. */
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPositioned() const {
|
2008-09-13 09:42:11 +00:00
|
|
|
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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
|
|
}
|
|
|
|
|
2008-09-13 09:42:11 +00:00
|
|
|
/* Returns whether the element has the -moz-transform property. */
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasTransform() const {
|
2012-07-30 14:20:58 +00:00
|
|
|
return mSpecifiedTransform != nullptr ||
|
2012-03-12 02:03:29 +00:00
|
|
|
mTransformStyle == NS_STYLE_TRANSFORM_STYLE_PRESERVE_3D ||
|
|
|
|
mBackfaceVisibility == NS_STYLE_BACKFACE_VISIBILITY_HIDDEN;
|
2008-09-13 09:42:11 +00:00
|
|
|
}
|
2012-08-02 11:38:49 +00:00
|
|
|
|
|
|
|
// These are defined in nsStyleStructInlines.h.
|
|
|
|
inline bool IsFloating(const nsIFrame* aFrame) const;
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2012-07-30 14:20:58 +00:00
|
|
|
{ mContent.mString = nullptr; }
|
2003-10-01 22:53:56 +00:00
|
|
|
|
2004-07-14 22:19:22 +00:00
|
|
|
~nsStyleContentData();
|
|
|
|
nsStyleContentData& operator=(const nsStyleContentData& aOther);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleContentData& aOther) const;
|
2003-10-01 22:53:56 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
#define DELETE_ARRAY_IF(array) if (array) { delete[] array; array = nullptr; }
|
2001-05-31 22:19:43 +00:00
|
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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 {
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHaveHotspot;
|
2005-07-01 04:29:42 +00:00
|
|
|
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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ForceCompare() { return 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]
|
2012-07-31 16:21:19 +00:00
|
|
|
PRUint8 mColumnFill; // [reset] see nsStyleConsts.h
|
|
|
|
|
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'.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mColumnRuleColorIsForeground;
|
2008-07-19 10:38:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsStyleSVGPaint() : mType(nsStyleSVGPaintType(0)) { mPaint.mPaintServer = nullptr; }
|
2007-10-19 15:36:15 +00:00
|
|
|
~nsStyleSVGPaint();
|
|
|
|
void SetType(nsStyleSVGPaintType aType);
|
2004-10-14 23:02:53 +00:00
|
|
|
nsStyleSVGPaint& operator=(const nsStyleSVGPaint& aOther);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const nsStyleSVGPaint& aOther) const;
|
2004-10-14 23:02:53 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator!=(const nsStyleSVGPaint& aOther) const {
|
2004-10-14 23:02:53 +00:00
|
|
|
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
|
2012-07-19 19:44:04 +00:00
|
|
|
static bool ForceCompare() { return true; }
|
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
|
2012-07-19 19:44:04 +00:00
|
|
|
static bool ForceCompare() { return true; }
|
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
|
2012-05-18 08:33:40 +00:00
|
|
|
PRUint8 mVectorEffect; // [reset] see nsStyleConsts.h
|
2001-12-12 07:59:31 +00:00
|
|
|
};
|
|
|
|
|
2001-11-28 05:04:23 +00:00
|
|
|
#endif /* nsStyleStruct_h___ */
|