gecko-dev/layout/style/nsCSSStruct.cpp

3647 строки
127 KiB
C++
Исходник Обычный вид История

1998-04-14 00:24:54 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "nsICSSDeclaration.h"
#include "nsString.h"
#include "nsCRT.h"
#include "nsCSSProps.h"
#include "nsUnitConversion.h"
1998-07-17 09:50:35 +04:00
#include "nsVoidArray.h"
1998-04-14 00:24:54 +04:00
#include "nsStyleConsts.h"
1998-04-22 10:38:31 +04:00
//#define DEBUG_REFS
1998-04-14 00:24:54 +04:00
static NS_DEFINE_IID(kCSSFontSID, NS_CSS_FONT_SID);
static NS_DEFINE_IID(kCSSColorSID, NS_CSS_COLOR_SID);
1998-04-25 22:43:42 +04:00
static NS_DEFINE_IID(kCSSDisplaySID, NS_CSS_DISPLAY_SID);
1998-04-14 00:24:54 +04:00
static NS_DEFINE_IID(kCSSTextSID, NS_CSS_TEXT_SID);
static NS_DEFINE_IID(kCSSMarginSID, NS_CSS_MARGIN_SID);
static NS_DEFINE_IID(kCSSPositionSID, NS_CSS_POSITION_SID);
static NS_DEFINE_IID(kCSSListSID, NS_CSS_LIST_SID);
1998-10-08 05:31:58 +04:00
static NS_DEFINE_IID(kCSSTableSID, NS_CSS_TABLE_SID);
static NS_DEFINE_IID(kCSSBreaksSID, NS_CSS_BREAKS_SID);
static NS_DEFINE_IID(kCSSPageSID, NS_CSS_PAGE_SID);
static NS_DEFINE_IID(kCSSContentSID, NS_CSS_CONTENT_SID);
1999-07-24 23:04:42 +04:00
static NS_DEFINE_IID(kCSSUserInterfaceSID, NS_CSS_USER_INTERFACE_SID);
1998-10-08 05:31:58 +04:00
static NS_DEFINE_IID(kCSSAuralSID, NS_CSS_AURAL_SID);
1998-04-14 00:24:54 +04:00
static NS_DEFINE_IID(kICSSDeclarationIID, NS_ICSS_DECLARATION_IID);
1998-10-27 02:22:40 +03:00
#define CSS_IF_DELETE(ptr) if (nsnull != ptr) { delete ptr; ptr = nsnull; }
nsCSSStruct::~nsCSSStruct()
{
}
1998-10-08 05:31:58 +04:00
// --- nsCSSFont -----------------
1998-04-14 00:24:54 +04:00
1999-06-03 05:58:11 +04:00
nsCSSFont::nsCSSFont(void)
{
}
nsCSSFont::nsCSSFont(const nsCSSFont& aCopy)
: mFamily(aCopy.mFamily),
mStyle(aCopy.mStyle),
mVariant(aCopy.mVariant),
mWeight(aCopy.mWeight),
mSize(aCopy.mSize),
mSizeAdjust(aCopy.mSizeAdjust),
mStretch(aCopy.mStretch)
{
}
nsCSSFont::~nsCSSFont(void)
{
}
1998-04-14 00:24:54 +04:00
const nsID& nsCSSFont::GetID(void)
{
return kCSSFontSID;
}
void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mFamily.AppendToString(buffer, eCSSProperty_font_family);
mStyle.AppendToString(buffer, eCSSProperty_font_style);
mVariant.AppendToString(buffer, eCSSProperty_font_variant);
mWeight.AppendToString(buffer, eCSSProperty_font_weight);
mSize.AppendToString(buffer, eCSSProperty_font_size);
mSizeAdjust.AppendToString(buffer, eCSSProperty_font_size_adjust);
mStretch.AppendToString(buffer, eCSSProperty_font_stretch);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
}
1998-10-27 02:22:40 +03:00
// --- support -----------------
1999-06-03 05:58:11 +04:00
#define CSS_IF_COPY(val, type) \
if (aCopy.val) (val) = new type(*(aCopy.val));
1999-06-03 05:58:11 +04:00
1998-10-27 02:22:40 +03:00
nsCSSValueList::nsCSSValueList(void)
: mValue(),
mNext(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSValueList::nsCSSValueList(const nsCSSValueList& aCopy)
: mValue(aCopy.mValue),
mNext(nsnull)
{
CSS_IF_COPY(mNext, nsCSSValueList);
}
1998-10-27 02:22:40 +03:00
nsCSSValueList::~nsCSSValueList(void)
{
CSS_IF_DELETE(mNext);
}
1998-04-14 00:24:54 +04:00
1998-10-08 05:31:58 +04:00
// --- nsCSSColor -----------------
1998-10-27 02:22:40 +03:00
nsCSSColor::nsCSSColor(void)
: mCursor(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSColor::nsCSSColor(const nsCSSColor& aCopy)
: mColor(aCopy.mColor),
mBackColor(aCopy.mBackColor),
mBackImage(aCopy.mBackImage),
mBackRepeat(aCopy.mBackRepeat),
mBackAttachment(aCopy.mBackAttachment),
mBackPositionX(aCopy.mBackPositionX),
mBackPositionY(aCopy.mBackPositionY),
mCursor(nsnull),
mOpacity(aCopy.mOpacity)
{
CSS_IF_COPY(mCursor, nsCSSValueList);
}
1998-10-27 02:22:40 +03:00
nsCSSColor::~nsCSSColor(void)
{
CSS_IF_DELETE(mCursor);
}
1998-04-14 00:24:54 +04:00
const nsID& nsCSSColor::GetID(void)
{
return kCSSColorSID;
}
void nsCSSColor::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mColor.AppendToString(buffer, eCSSProperty_color);
mBackColor.AppendToString(buffer, eCSSProperty_background_color);
mBackImage.AppendToString(buffer, eCSSProperty_background_image);
mBackRepeat.AppendToString(buffer, eCSSProperty_background_repeat);
mBackAttachment.AppendToString(buffer, eCSSProperty_background_attachment);
mBackPositionX.AppendToString(buffer, eCSSProperty_background_x_position);
mBackPositionY.AppendToString(buffer, eCSSProperty_background_y_position);
1998-10-27 02:22:40 +03:00
nsCSSValueList* cursor = mCursor;
while (nsnull != cursor) {
cursor->mValue.AppendToString(buffer, eCSSProperty_cursor);
1998-10-27 02:22:40 +03:00
cursor = cursor->mNext;
}
mOpacity.AppendToString(buffer, eCSSProperty_opacity);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
}
1998-10-27 02:22:40 +03:00
// --- nsCSSText support -----------------
1998-10-08 05:31:58 +04:00
nsCSSShadow::nsCSSShadow(void)
: mNext(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSShadow::nsCSSShadow(const nsCSSShadow& aCopy)
: mColor(aCopy.mColor),
mXOffset(aCopy.mXOffset),
mYOffset(aCopy.mYOffset),
mRadius(aCopy.mRadius),
mNext(nsnull)
{
CSS_IF_COPY(mNext, nsCSSShadow);
}
1998-10-08 05:31:58 +04:00
nsCSSShadow::~nsCSSShadow(void)
{
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mNext);
1998-10-08 05:31:58 +04:00
}
// --- nsCSSText -----------------
nsCSSText::nsCSSText(void)
: mTextShadow(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSText::nsCSSText(const nsCSSText& aCopy)
: mWordSpacing(aCopy.mWordSpacing),
mLetterSpacing(aCopy.mLetterSpacing),
mDecoration(aCopy.mDecoration),
mVerticalAlign(aCopy.mVerticalAlign),
mTextTransform(aCopy.mTextTransform),
mTextAlign(aCopy.mTextAlign),
mTextIndent(aCopy.mTextIndent),
mTextShadow(nsnull),
mUnicodeBidi(aCopy.mUnicodeBidi),
mLineHeight(aCopy.mLineHeight),
mWhiteSpace(aCopy.mWhiteSpace)
{
}
1998-10-08 05:31:58 +04:00
nsCSSText::~nsCSSText(void)
{
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mTextShadow);
1998-10-08 05:31:58 +04:00
}
1998-04-14 00:24:54 +04:00
const nsID& nsCSSText::GetID(void)
{
return kCSSTextSID;
}
void nsCSSText::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mWordSpacing.AppendToString(buffer, eCSSProperty_word_spacing);
mLetterSpacing.AppendToString(buffer, eCSSProperty_letter_spacing);
mDecoration.AppendToString(buffer, eCSSProperty_text_decoration);
mVerticalAlign.AppendToString(buffer, eCSSProperty_vertical_align);
mTextTransform.AppendToString(buffer, eCSSProperty_text_transform);
mTextAlign.AppendToString(buffer, eCSSProperty_text_align);
mTextIndent.AppendToString(buffer, eCSSProperty_text_indent);
1998-10-08 05:31:58 +04:00
if (nsnull != mTextShadow) {
1998-10-27 02:22:40 +03:00
if (mTextShadow->mXOffset.IsLengthUnit()) {
1998-10-08 05:31:58 +04:00
nsCSSShadow* shadow = mTextShadow;
while (nsnull != shadow) {
shadow->mColor.AppendToString(buffer, eCSSProperty_text_shadow_color);
shadow->mXOffset.AppendToString(buffer, eCSSProperty_text_shadow_x);
shadow->mYOffset.AppendToString(buffer, eCSSProperty_text_shadow_y);
shadow->mRadius.AppendToString(buffer, eCSSProperty_text_shadow_radius);
1998-10-08 05:31:58 +04:00
shadow = shadow->mNext;
}
}
else {
mTextShadow->mXOffset.AppendToString(buffer, eCSSProperty_text_shadow);
1998-10-08 05:31:58 +04:00
}
}
mUnicodeBidi.AppendToString(buffer, eCSSProperty_unicode_bidi);
mLineHeight.AppendToString(buffer, eCSSProperty_line_height);
mWhiteSpace.AppendToString(buffer, eCSSProperty_white_space);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSRect -----------------
1999-06-03 05:58:11 +04:00
nsCSSRect::nsCSSRect(void)
{
}
nsCSSRect::nsCSSRect(const nsCSSRect& aCopy)
: mTop(aCopy.mTop),
mRight(aCopy.mRight),
mBottom(aCopy.mBottom),
mLeft(aCopy.mLeft)
{
}
void nsCSSRect::List(FILE* out, nsCSSProperty aPropID, PRInt32 aIndent) const
1998-05-27 03:16:55 +04:00
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
if (eCSSProperty_UNKNOWN < aPropID) {
buffer.Append(nsCSSProps::GetStringValue(aPropID));
1998-05-27 03:16:55 +04:00
buffer.Append(": ");
}
mTop.AppendToString(buffer);
mRight.AppendToString(buffer);
mBottom.AppendToString(buffer);
mLeft.AppendToString(buffer);
fputs(buffer, out);
}
void nsCSSRect::List(FILE* out, PRInt32 aIndent, const nsCSSProperty aTRBL[]) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
if (eCSSUnit_Null != mTop.GetUnit()) {
buffer.Append(nsCSSProps::GetStringValue(aTRBL[0]));
buffer.Append(": ");
mTop.AppendToString(buffer);
}
if (eCSSUnit_Null != mRight.GetUnit()) {
buffer.Append(nsCSSProps::GetStringValue(aTRBL[1]));
buffer.Append(": ");
mRight.AppendToString(buffer);
}
if (eCSSUnit_Null != mBottom.GetUnit()) {
buffer.Append(nsCSSProps::GetStringValue(aTRBL[2]));
buffer.Append(": ");
mBottom.AppendToString(buffer);
}
if (eCSSUnit_Null != mLeft.GetUnit()) {
buffer.Append(nsCSSProps::GetStringValue(aTRBL[3]));
buffer.Append(": ");
mLeft.AppendToString(buffer);
}
fputs(buffer, out);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSDisplay -----------------
1998-05-27 03:16:55 +04:00
nsCSSDisplay::nsCSSDisplay(void)
: mClip(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSDisplay::nsCSSDisplay(const nsCSSDisplay& aCopy)
: mDirection(aCopy.mDirection),
mDisplay(aCopy.mDisplay),
mFloat(aCopy.mFloat),
mClear(aCopy.mClear),
mClip(nsnull),
mOverflow(aCopy.mOverflow),
mVisibility(aCopy.mVisibility)
1999-06-03 05:58:11 +04:00
{
CSS_IF_COPY(mClip, nsCSSRect);
}
1998-05-27 03:16:55 +04:00
nsCSSDisplay::~nsCSSDisplay(void)
{
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mClip);
1998-05-27 03:16:55 +04:00
}
1998-04-25 22:43:42 +04:00
const nsID& nsCSSDisplay::GetID(void)
{
return kCSSDisplaySID;
}
void nsCSSDisplay::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mDirection.AppendToString(buffer, eCSSProperty_direction);
mDisplay.AppendToString(buffer, eCSSProperty_display);
mFloat.AppendToString(buffer, eCSSProperty_float);
mClear.AppendToString(buffer, eCSSProperty_clear);
mVisibility.AppendToString(buffer, eCSSProperty_visibility);
1998-04-25 22:43:42 +04:00
fputs(buffer, out);
1998-05-27 03:16:55 +04:00
if (nsnull != mClip) {
mClip->List(out, eCSSProperty_clip);
1998-04-14 00:24:54 +04:00
}
1998-05-27 03:16:55 +04:00
buffer.SetLength(0);
mOverflow.AppendToString(buffer, eCSSProperty_overflow);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSMargin -----------------
1998-04-14 00:24:54 +04:00
nsCSSMargin::nsCSSMargin(void)
1998-10-08 05:31:58 +04:00
: mMargin(nsnull), mPadding(nsnull),
mBorderWidth(nsnull), mBorderColor(nsnull), mBorderStyle(nsnull)
1998-04-14 00:24:54 +04:00
{
}
1999-06-03 05:58:11 +04:00
nsCSSMargin::nsCSSMargin(const nsCSSMargin& aCopy)
: mMargin(nsnull), mPadding(nsnull),
mBorderWidth(nsnull), mBorderColor(nsnull), mBorderStyle(nsnull),
mBorderRadius(aCopy.mBorderRadius),
mOutlineWidth(aCopy.mOutlineWidth),
mOutlineColor(aCopy.mOutlineColor),
1999-07-24 23:04:42 +04:00
mOutlineStyle(aCopy.mOutlineStyle),
mFloatEdge(aCopy.mFloatEdge)
1999-06-03 05:58:11 +04:00
{
CSS_IF_COPY(mMargin, nsCSSRect);
CSS_IF_COPY(mPadding, nsCSSRect);
CSS_IF_COPY(mBorderWidth, nsCSSRect);
CSS_IF_COPY(mBorderColor, nsCSSRect);
CSS_IF_COPY(mBorderStyle, nsCSSRect);
}
1998-04-14 00:24:54 +04:00
nsCSSMargin::~nsCSSMargin(void)
{
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mMargin);
CSS_IF_DELETE(mPadding);
CSS_IF_DELETE(mBorderWidth);
CSS_IF_DELETE(mBorderColor);
CSS_IF_DELETE(mBorderStyle);
1998-04-14 00:24:54 +04:00
}
const nsID& nsCSSMargin::GetID(void)
{
return kCSSMarginSID;
}
void nsCSSMargin::List(FILE* out, PRInt32 aIndent) const
{
if (nsnull != mMargin) {
static const nsCSSProperty trbl[] = {
eCSSProperty_margin_top,
eCSSProperty_margin_right,
eCSSProperty_margin_bottom,
eCSSProperty_margin_left
};
mMargin->List(out, aIndent, trbl);
1998-04-14 00:24:54 +04:00
}
if (nsnull != mPadding) {
static const nsCSSProperty trbl[] = {
eCSSProperty_padding_top,
eCSSProperty_padding_right,
eCSSProperty_padding_bottom,
eCSSProperty_padding_left
};
mPadding->List(out, aIndent, trbl);
1998-04-14 00:24:54 +04:00
}
1998-10-08 05:31:58 +04:00
if (nsnull != mBorderWidth) {
static const nsCSSProperty trbl[] = {
eCSSProperty_border_top_width,
eCSSProperty_border_right_width,
eCSSProperty_border_bottom_width,
eCSSProperty_border_left_width
};
1998-10-08 05:31:58 +04:00
mBorderWidth->List(out, aIndent, trbl);
1998-04-14 00:24:54 +04:00
}
1998-10-08 05:31:58 +04:00
if (nsnull != mBorderColor) {
mBorderColor->List(out, eCSSProperty_border_color, aIndent);
1998-04-14 00:24:54 +04:00
}
1998-10-08 05:31:58 +04:00
if (nsnull != mBorderStyle) {
mBorderStyle->List(out, eCSSProperty_border_style, aIndent);
1998-10-08 05:31:58 +04:00
}
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mBorderRadius.AppendToString(buffer, eCSSProperty__moz_border_radius);
mOutlineWidth.AppendToString(buffer, eCSSProperty_outline_width);
mOutlineColor.AppendToString(buffer, eCSSProperty_outline_color);
mOutlineStyle.AppendToString(buffer, eCSSProperty_outline_style);
1999-07-24 23:04:42 +04:00
mFloatEdge.AppendToString(buffer, eCSSProperty_float_edge);
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
// --- nsCSSPosition -----------------
nsCSSPosition::nsCSSPosition(void)
: mOffset(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSPosition::nsCSSPosition(const nsCSSPosition& aCopy)
: mPosition(aCopy.mPosition),
mWidth(aCopy.mWidth),
mMinWidth(aCopy.mMinWidth),
mMaxWidth(aCopy.mMaxWidth),
mHeight(aCopy.mHeight),
mMinHeight(aCopy.mMinHeight),
mMaxHeight(aCopy.mMaxHeight),
1999-07-24 23:04:42 +04:00
mBoxSizing(aCopy.mBoxSizing),
1999-06-03 05:58:11 +04:00
mOffset(nsnull),
mZIndex(aCopy.mZIndex)
{
CSS_IF_COPY(mOffset, nsCSSRect);
}
1998-10-08 05:31:58 +04:00
nsCSSPosition::~nsCSSPosition(void)
{
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mOffset);
1998-04-14 00:24:54 +04:00
}
const nsID& nsCSSPosition::GetID(void)
{
return kCSSPositionSID;
}
void nsCSSPosition::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mPosition.AppendToString(buffer, eCSSProperty_position);
mWidth.AppendToString(buffer, eCSSProperty_width);
mMinWidth.AppendToString(buffer, eCSSProperty_min_width);
mMaxWidth.AppendToString(buffer, eCSSProperty_max_width);
mHeight.AppendToString(buffer, eCSSProperty_height);
mMinHeight.AppendToString(buffer, eCSSProperty_min_height);
mMaxHeight.AppendToString(buffer, eCSSProperty_max_height);
1999-07-24 23:04:42 +04:00
mBoxSizing.AppendToString(buffer, eCSSProperty_box_sizing);
mZIndex.AppendToString(buffer, eCSSProperty_z_index);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
1998-10-08 05:31:58 +04:00
if (nsnull != mOffset) {
static const nsCSSProperty trbl[] = {
eCSSProperty_top,
eCSSProperty_right,
eCSSProperty_bottom,
eCSSProperty_left
1998-10-08 05:31:58 +04:00
};
mOffset->List(out, aIndent, trbl);
}
1998-04-14 00:24:54 +04:00
}
1998-10-08 05:31:58 +04:00
// --- nsCSSList -----------------
1999-06-03 05:58:11 +04:00
nsCSSList::nsCSSList(void)
{
}
nsCSSList::nsCSSList(const nsCSSList& aCopy)
: mType(aCopy.mType),
mImage(aCopy.mImage),
mPosition(aCopy.mPosition)
{
}
nsCSSList::~nsCSSList(void)
{
}
1998-04-14 00:24:54 +04:00
const nsID& nsCSSList::GetID(void)
{
return kCSSListSID;
}
void nsCSSList::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mType.AppendToString(buffer, eCSSProperty_list_style_type);
mImage.AppendToString(buffer, eCSSProperty_list_style_image);
mPosition.AppendToString(buffer, eCSSProperty_list_style_position);
1998-04-14 00:24:54 +04:00
fputs(buffer, out);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSTable -----------------
1999-06-03 05:58:11 +04:00
nsCSSTable::nsCSSTable(void)
{
}
nsCSSTable::nsCSSTable(const nsCSSTable& aCopy)
: mBorderCollapse(aCopy.mBorderCollapse),
mBorderSpacingX(aCopy.mBorderSpacingX),
mBorderSpacingY(aCopy.mBorderSpacingY),
mCaptionSide(aCopy.mCaptionSide),
mEmptyCells(aCopy.mEmptyCells),
mLayout(aCopy.mLayout)
{
}
nsCSSTable::~nsCSSTable(void)
{
}
1998-10-08 05:31:58 +04:00
const nsID& nsCSSTable::GetID(void)
{
return kCSSTableSID;
}
void nsCSSTable::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mBorderCollapse.AppendToString(buffer, eCSSProperty_border_collapse);
mBorderSpacingX.AppendToString(buffer, eCSSProperty_border_x_spacing);
mBorderSpacingY.AppendToString(buffer, eCSSProperty_border_y_spacing);
mCaptionSide.AppendToString(buffer, eCSSProperty_caption_side);
mEmptyCells.AppendToString(buffer, eCSSProperty_empty_cells);
mLayout.AppendToString(buffer, eCSSProperty_table_layout);
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
// --- nsCSSBreaks -----------------
1999-06-03 05:58:11 +04:00
nsCSSBreaks::nsCSSBreaks(void)
{
}
nsCSSBreaks::nsCSSBreaks(const nsCSSBreaks& aCopy)
: mOrphans(aCopy.mOrphans),
mWidows(aCopy.mWidows),
mPage(aCopy.mPage),
mPageBreakAfter(aCopy.mPageBreakAfter),
mPageBreakBefore(aCopy.mPageBreakBefore),
mPageBreakInside(aCopy.mPageBreakInside)
{
}
nsCSSBreaks::~nsCSSBreaks(void)
{
}
1998-10-08 05:31:58 +04:00
const nsID& nsCSSBreaks::GetID(void)
{
return kCSSBreaksSID;
}
void nsCSSBreaks::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mOrphans.AppendToString(buffer, eCSSProperty_orphans);
mWidows.AppendToString(buffer, eCSSProperty_widows);
mPage.AppendToString(buffer, eCSSProperty_page);
mPageBreakAfter.AppendToString(buffer, eCSSProperty_page_break_after);
mPageBreakBefore.AppendToString(buffer, eCSSProperty_page_break_before);
mPageBreakInside.AppendToString(buffer, eCSSProperty_page_break_inside);
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
// --- nsCSSPage -----------------
1999-06-03 05:58:11 +04:00
nsCSSPage::nsCSSPage(void)
{
}
nsCSSPage::nsCSSPage(const nsCSSPage& aCopy)
: mMarks(aCopy.mMarks),
mSizeWidth(aCopy.mSizeWidth),
mSizeHeight(aCopy.mSizeHeight)
{
}
nsCSSPage::~nsCSSPage(void)
{
}
1998-10-08 05:31:58 +04:00
const nsID& nsCSSPage::GetID(void)
{
return kCSSPageSID;
}
void nsCSSPage::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mMarks.AppendToString(buffer, eCSSProperty_marks);
mSizeWidth.AppendToString(buffer, eCSSProperty_size_width);
mSizeHeight.AppendToString(buffer, eCSSProperty_size_height);
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
1998-10-27 02:22:40 +03:00
// --- nsCSSContent support -----------------
nsCSSCounterData::nsCSSCounterData(void)
: mNext(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSCounterData::nsCSSCounterData(const nsCSSCounterData& aCopy)
: mCounter(aCopy.mCounter),
mValue(aCopy.mValue),
mNext(nsnull)
{
CSS_IF_COPY(mNext, nsCSSCounterData);
}
1998-10-27 02:22:40 +03:00
nsCSSCounterData::~nsCSSCounterData(void)
{
CSS_IF_DELETE(mNext);
}
nsCSSQuotes::nsCSSQuotes(void)
: mNext(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSQuotes::nsCSSQuotes(const nsCSSQuotes& aCopy)
: mOpen(aCopy.mOpen),
mClose(aCopy.mClose),
mNext(nsnull)
{
CSS_IF_COPY(mNext, nsCSSQuotes);
}
1998-10-27 02:22:40 +03:00
nsCSSQuotes::~nsCSSQuotes(void)
{
CSS_IF_DELETE(mNext);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSContent -----------------
1998-10-27 02:22:40 +03:00
nsCSSContent::nsCSSContent(void)
: mContent(nsnull),
mCounterIncrement(nsnull),
mCounterReset(nsnull),
mQuotes(nsnull)
{
}
1999-06-03 05:58:11 +04:00
nsCSSContent::nsCSSContent(const nsCSSContent& aCopy)
: mContent(nsnull),
mCounterIncrement(nsnull),
mCounterReset(nsnull),
mMarkerOffset(aCopy.mMarkerOffset),
mQuotes(nsnull)
{
CSS_IF_COPY(mContent, nsCSSValueList);
CSS_IF_COPY(mCounterIncrement, nsCSSCounterData);
CSS_IF_COPY(mCounterReset, nsCSSCounterData);
CSS_IF_COPY(mQuotes, nsCSSQuotes);
}
1998-10-27 02:22:40 +03:00
nsCSSContent::~nsCSSContent(void)
{
CSS_IF_DELETE(mContent);
CSS_IF_DELETE(mCounterIncrement);
CSS_IF_DELETE(mCounterReset);
CSS_IF_DELETE(mQuotes);
}
1998-10-08 05:31:58 +04:00
const nsID& nsCSSContent::GetID(void)
{
return kCSSContentSID;
}
void nsCSSContent::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
1998-10-27 02:22:40 +03:00
nsCSSValueList* content = mContent;
while (nsnull != content) {
content->mValue.AppendToString(buffer, eCSSProperty_content);
1998-10-27 02:22:40 +03:00
content = content->mNext;
}
nsCSSCounterData* counter = mCounterIncrement;
while (nsnull != counter) {
counter->mCounter.AppendToString(buffer, eCSSProperty_counter_increment);
counter->mValue.AppendToString(buffer, eCSSProperty_UNKNOWN);
1998-10-27 02:22:40 +03:00
counter = counter->mNext;
}
counter = mCounterReset;
while (nsnull != counter) {
counter->mCounter.AppendToString(buffer, eCSSProperty_counter_reset);
counter->mValue.AppendToString(buffer, eCSSProperty_UNKNOWN);
1998-10-27 02:22:40 +03:00
counter = counter->mNext;
}
mMarkerOffset.AppendToString(buffer, eCSSProperty_marker_offset);
1998-10-27 02:22:40 +03:00
nsCSSQuotes* quotes = mQuotes;
while (nsnull != quotes) {
quotes->mOpen.AppendToString(buffer, eCSSProperty_quotes_open);
quotes->mClose.AppendToString(buffer, eCSSProperty_quotes_close);
1998-10-27 02:22:40 +03:00
quotes = quotes->mNext;
}
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
1999-07-24 23:04:42 +04:00
// --- nsCSSUserInterface -----------------
nsCSSUserInterface::nsCSSUserInterface(void)
: mKeyEquivalent(nsnull)
{
}
nsCSSUserInterface::nsCSSUserInterface(const nsCSSUserInterface& aCopy)
: mUserInput(aCopy.mUserInput),
1999-09-04 03:40:35 +04:00
mUserModify(aCopy.mUserModify),
mUserSelect(aCopy.mUserSelect),
1999-07-24 23:04:42 +04:00
mKeyEquivalent(nsnull),
1999-09-04 03:40:35 +04:00
mUserFocus(aCopy.mUserFocus),
1999-07-24 23:04:42 +04:00
mResizer(aCopy.mResizer)
{
CSS_IF_COPY(mKeyEquivalent, nsCSSValueList);
}
nsCSSUserInterface::~nsCSSUserInterface(void)
{
CSS_IF_DELETE(mKeyEquivalent);
}
const nsID& nsCSSUserInterface::GetID(void)
{
return kCSSUserInterfaceSID;
}
void nsCSSUserInterface::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mUserInput.AppendToString(buffer, eCSSProperty_user_input);
1999-09-04 03:40:35 +04:00
mUserModify.AppendToString(buffer, eCSSProperty_user_modify);
mUserSelect.AppendToString(buffer, eCSSProperty_user_select);
1999-07-24 23:04:42 +04:00
nsCSSValueList* keyEquiv = mKeyEquivalent;
while (nsnull != keyEquiv) {
keyEquiv->mValue.AppendToString(buffer, eCSSProperty_key_equivalent);
keyEquiv= keyEquiv->mNext;
}
1999-09-04 03:40:35 +04:00
mUserFocus.AppendToString(buffer, eCSSProperty_user_focus);
1999-07-24 23:04:42 +04:00
mResizer.AppendToString(buffer, eCSSProperty_resizer);
fputs(buffer, out);
}
1998-10-08 05:31:58 +04:00
// --- nsCSSAural -----------------
1999-06-03 05:58:11 +04:00
nsCSSAural::nsCSSAural(void)
{
}
nsCSSAural::nsCSSAural(const nsCSSAural& aCopy)
: mAzimuth(aCopy.mAzimuth),
mElevation(aCopy.mElevation),
mCueAfter(aCopy.mCueAfter),
mCueBefore(aCopy.mCueBefore),
mPauseAfter(aCopy.mPauseAfter),
mPauseBefore(aCopy.mPauseBefore),
mPitch(aCopy.mPitch),
mPitchRange(aCopy.mPitchRange),
mPlayDuring(aCopy.mPlayDuring),
mPlayDuringFlags(aCopy.mPlayDuringFlags),
mRichness(aCopy.mRichness),
mSpeak(aCopy.mSpeak),
mSpeakHeader(aCopy.mSpeakHeader),
mSpeakNumeral(aCopy.mSpeakNumeral),
mSpeakPunctuation(aCopy.mSpeakPunctuation),
mSpeechRate(aCopy.mSpeechRate),
mStress(aCopy.mStress),
mVoiceFamily(aCopy.mVoiceFamily),
mVolume(aCopy.mVolume)
{
}
nsCSSAural::~nsCSSAural(void)
{
}
1998-10-08 05:31:58 +04:00
const nsID& nsCSSAural::GetID(void)
{
return kCSSAuralSID;
}
void nsCSSAural::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
nsAutoString buffer;
mAzimuth.AppendToString(buffer, eCSSProperty_azimuth);
mElevation.AppendToString(buffer, eCSSProperty_elevation);
mCueAfter.AppendToString(buffer, eCSSProperty_cue_after);
mCueBefore.AppendToString(buffer, eCSSProperty_cue_before);
mPauseAfter.AppendToString(buffer, eCSSProperty_pause_after);
mPauseBefore.AppendToString(buffer, eCSSProperty_pause_before);
mPitch.AppendToString(buffer, eCSSProperty_pitch);
mPitchRange.AppendToString(buffer, eCSSProperty_pitch_range);
mPlayDuring.AppendToString(buffer, eCSSProperty_play_during);
mPlayDuringFlags.AppendToString(buffer, eCSSProperty_play_during_flags);
mRichness.AppendToString(buffer, eCSSProperty_richness);
mSpeak.AppendToString(buffer, eCSSProperty_speak);
mSpeakHeader.AppendToString(buffer, eCSSProperty_speak_header);
mSpeakNumeral.AppendToString(buffer, eCSSProperty_speak_numeral);
mSpeakPunctuation.AppendToString(buffer, eCSSProperty_speak_punctuation);
mSpeechRate.AppendToString(buffer, eCSSProperty_speech_rate);
mStress.AppendToString(buffer, eCSSProperty_stress);
mVoiceFamily.AppendToString(buffer, eCSSProperty_voice_family);
mVolume.AppendToString(buffer, eCSSProperty_volume);
1998-10-08 05:31:58 +04:00
fputs(buffer, out);
}
// --- nsCSSDeclaration -----------------
1998-04-14 00:24:54 +04:00
class CSSDeclarationImpl : public nsICSSDeclaration {
public:
CSSDeclarationImpl(void);
1999-06-03 05:58:11 +04:00
CSSDeclarationImpl(const CSSDeclarationImpl& aCopy);
virtual ~CSSDeclarationImpl(void);
1998-04-14 00:24:54 +04:00
1999-02-26 23:02:06 +03:00
NS_DECL_ZEROING_OPERATOR_NEW
1998-04-14 00:24:54 +04:00
NS_DECL_ISUPPORTS
1999-01-06 04:25:39 +03:00
NS_IMETHOD GetData(const nsID& aSID, nsCSSStruct** aData);
NS_IMETHOD EnsureData(const nsID& aSID, nsCSSStruct** aData);
1998-04-14 00:24:54 +04:00
NS_IMETHOD AppendValue(nsCSSProperty aProperty, const nsCSSValue& aValue);
NS_IMETHOD AppendStructValue(nsCSSProperty aProperty, void* aStruct);
NS_IMETHOD SetValueImportant(nsCSSProperty aProperty);
1999-01-06 04:25:39 +03:00
NS_IMETHOD AppendComment(const nsString& aComment);
1998-07-17 09:50:35 +04:00
NS_IMETHOD GetValue(nsCSSProperty aProperty, nsCSSValue& aValue);
NS_IMETHOD GetValue(nsCSSProperty aProperty, nsString& aValue);
1999-01-06 04:25:39 +03:00
NS_IMETHOD GetValue(const nsString& aProperty, nsString& aValue);
1998-04-14 00:24:54 +04:00
1999-01-06 04:25:39 +03:00
NS_IMETHOD GetImportantValues(nsICSSDeclaration*& aResult);
NS_IMETHOD GetValueIsImportant(nsCSSProperty aProperty, PRBool& aIsImportant);
1999-01-06 04:25:39 +03:00
NS_IMETHOD GetValueIsImportant(const nsString& aProperty, PRBool& aIsImportant);
PRBool AppendValueToString(nsCSSProperty aProperty, nsString& aResult);
PRBool AppendValueToString(nsCSSProperty aProperty, const nsCSSValue& aValue, nsString& aResult);
1998-10-08 05:31:58 +04:00
1999-01-06 04:25:39 +03:00
NS_IMETHOD ToString(nsString& aString);
1998-09-10 05:19:26 +04:00
1999-06-03 05:58:11 +04:00
NS_IMETHOD Clone(nsICSSDeclaration*& aClone) const;
1998-04-14 00:24:54 +04:00
void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
1999-01-06 04:25:39 +03:00
NS_IMETHOD Count(PRUint32* aCount);
NS_IMETHOD GetNthProperty(PRUint32 aIndex, nsString& aReturn);
NS_IMETHOD GetStyleImpact(PRInt32* aHint) const;
1998-04-14 00:24:54 +04:00
private:
CSSDeclarationImpl& operator=(const CSSDeclarationImpl& aCopy);
PRBool operator==(const CSSDeclarationImpl& aCopy) const;
protected:
nsCSSFont* mFont;
nsCSSColor* mColor;
nsCSSText* mText;
nsCSSMargin* mMargin;
nsCSSPosition* mPosition;
nsCSSList* mList;
1998-04-25 22:43:42 +04:00
nsCSSDisplay* mDisplay;
1998-10-08 05:31:58 +04:00
nsCSSTable* mTable;
nsCSSBreaks* mBreaks;
nsCSSPage* mPage;
nsCSSContent* mContent;
1999-07-24 23:04:42 +04:00
nsCSSUserInterface* mUserInterface;
1998-10-08 05:31:58 +04:00
nsCSSAural* mAural;
1998-06-26 09:51:55 +04:00
CSSDeclarationImpl* mImportant;
1998-07-17 09:50:35 +04:00
nsVoidArray* mOrder;
1999-06-03 05:58:11 +04:00
nsStringArray* mComments;
1998-04-14 00:24:54 +04:00
};
1998-04-22 10:38:31 +04:00
#ifdef DEBUG_REFS
static PRInt32 gInstanceCount;
#endif
1999-02-26 23:02:06 +03:00
NS_IMPL_ZEROING_OPERATOR_NEW(CSSDeclarationImpl)
1999-02-26 20:13:10 +03:00
1998-04-14 00:24:54 +04:00
CSSDeclarationImpl::CSSDeclarationImpl(void)
{
NS_INIT_REFCNT();
1998-04-22 10:38:31 +04:00
#ifdef DEBUG_REFS
++gInstanceCount;
fprintf(stdout, "%d + CSSDeclaration\n", gInstanceCount);
#endif
1998-04-14 00:24:54 +04:00
}
1999-06-03 05:58:11 +04:00
#define DECL_IF_COPY(type) \
if (aCopy.m##type) m##type = new nsCSS##type(*(aCopy.m##type))
CSSDeclarationImpl::CSSDeclarationImpl(const CSSDeclarationImpl& aCopy)
{
NS_INIT_REFCNT();
DECL_IF_COPY(Font);
DECL_IF_COPY(Color);
DECL_IF_COPY(Text);
DECL_IF_COPY(Margin);
DECL_IF_COPY(Position);
DECL_IF_COPY(List);
DECL_IF_COPY(Display);
DECL_IF_COPY(Table);
DECL_IF_COPY(Breaks);
DECL_IF_COPY(Page);
DECL_IF_COPY(Content);
1999-07-24 23:04:42 +04:00
DECL_IF_COPY(UserInterface);
1999-06-03 05:58:11 +04:00
DECL_IF_COPY(Aural);
if (aCopy.mImportant) {
mImportant = new CSSDeclarationImpl(*(aCopy.mImportant));
NS_IF_ADDREF(mImportant);
}
if (aCopy.mOrder) {
mOrder = new nsVoidArray();
if (mOrder) {
(*mOrder) = *(aCopy.mOrder);
}
}
if (aCopy.mComments) {
mComments = new nsStringArray();
if (mComments) {
(*mComments) = *(aCopy.mComments);
}
}
}
1998-04-14 00:24:54 +04:00
CSSDeclarationImpl::~CSSDeclarationImpl(void)
{
1998-10-08 05:31:58 +04:00
CSS_IF_DELETE(mFont);
CSS_IF_DELETE(mColor);
CSS_IF_DELETE(mText);
CSS_IF_DELETE(mMargin);
CSS_IF_DELETE(mPosition);
CSS_IF_DELETE(mList);
CSS_IF_DELETE(mDisplay);
CSS_IF_DELETE(mTable);
CSS_IF_DELETE(mBreaks);
CSS_IF_DELETE(mPage);
CSS_IF_DELETE(mContent);
1999-07-24 23:04:42 +04:00
CSS_IF_DELETE(mUserInterface);
1998-10-08 05:31:58 +04:00
CSS_IF_DELETE(mAural);
1998-06-26 09:51:55 +04:00
NS_IF_RELEASE(mImportant);
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mOrder);
1999-06-03 05:58:11 +04:00
CSS_IF_DELETE(mComments);
1998-06-26 09:51:55 +04:00
1998-04-22 10:38:31 +04:00
#ifdef DEBUG_REFS
--gInstanceCount;
fprintf(stdout, "%d - CSSDeclaration\n", gInstanceCount);
#endif
1998-04-14 00:24:54 +04:00
}
NS_IMPL_ISUPPORTS(CSSDeclarationImpl, kICSSDeclarationIID);
1998-10-08 05:31:58 +04:00
#define CSS_IF_GET_ELSE(sid,ptr,result) \
if (sid.Equals(kCSS##ptr##SID)) { *result = m##ptr; } else
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetData(const nsID& aSID, nsCSSStruct** aDataPtr)
1998-04-14 00:24:54 +04:00
{
if (nsnull == aDataPtr) {
return NS_ERROR_NULL_POINTER;
}
1998-10-08 05:31:58 +04:00
CSS_IF_GET_ELSE(aSID, Font, aDataPtr)
CSS_IF_GET_ELSE(aSID, Color, aDataPtr)
CSS_IF_GET_ELSE(aSID, Display, aDataPtr)
CSS_IF_GET_ELSE(aSID, Text, aDataPtr)
CSS_IF_GET_ELSE(aSID, Margin, aDataPtr)
CSS_IF_GET_ELSE(aSID, Position, aDataPtr)
CSS_IF_GET_ELSE(aSID, List, aDataPtr)
CSS_IF_GET_ELSE(aSID, Table, aDataPtr)
CSS_IF_GET_ELSE(aSID, Breaks, aDataPtr)
CSS_IF_GET_ELSE(aSID, Page, aDataPtr)
CSS_IF_GET_ELSE(aSID, Content, aDataPtr)
1999-07-24 23:04:42 +04:00
CSS_IF_GET_ELSE(aSID, UserInterface, aDataPtr)
1998-10-08 05:31:58 +04:00
CSS_IF_GET_ELSE(aSID, Aural, aDataPtr) {
1998-04-14 00:24:54 +04:00
return NS_NOINTERFACE;
}
return NS_OK;
}
1998-10-08 05:31:58 +04:00
#define CSS_IF_ENSURE_ELSE(sid,ptr,result) \
if (sid.Equals(kCSS##ptr##SID)) { \
if (nsnull == m##ptr) { m##ptr = new nsCSS##ptr(); } \
*result = m##ptr; \
} else
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::EnsureData(const nsID& aSID, nsCSSStruct** aDataPtr)
1998-04-14 00:24:54 +04:00
{
if (nsnull == aDataPtr) {
return NS_ERROR_NULL_POINTER;
}
1998-10-08 05:31:58 +04:00
CSS_IF_ENSURE_ELSE(aSID, Font, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Color, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Display, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Text, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Margin, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Position, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, List, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Table, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Breaks, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Page, aDataPtr)
CSS_IF_ENSURE_ELSE(aSID, Content, aDataPtr)
1999-07-24 23:04:42 +04:00
CSS_IF_ENSURE_ELSE(aSID, UserInterface, aDataPtr)
1998-10-08 05:31:58 +04:00
CSS_IF_ENSURE_ELSE(aSID, Aural, aDataPtr) {
1998-04-14 00:24:54 +04:00
return NS_NOINTERFACE;
}
if (nsnull == *aDataPtr) {
return NS_ERROR_OUT_OF_MEMORY;
}
return NS_OK;
}
1998-10-08 05:31:58 +04:00
#define CSS_ENSURE(data) \
if (nsnull == m##data) { \
m##data = new nsCSS##data(); \
} \
if (nsnull == m##data) { \
result = NS_ERROR_OUT_OF_MEMORY; \
} \
else
#define CSS_ENSURE_RECT(data) \
if (nsnull == data) { \
data = new nsCSSRect(); \
} \
if (nsnull == data) { \
result = NS_ERROR_OUT_OF_MEMORY; \
} \
else
1998-10-27 02:22:40 +03:00
#define CSS_ENSURE_DATA(data,type) \
if (nsnull == data) { \
data = new type(); \
} \
if (nsnull == data) { \
result = NS_ERROR_OUT_OF_MEMORY; \
} \
else
1999-07-24 23:04:42 +04:00
#define CSS_BOGUS_DEFAULT default: NS_ERROR("should never happen"); break;
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::AppendValue(nsCSSProperty aProperty, const nsCSSValue& aValue)
1998-04-14 00:24:54 +04:00
{
nsresult result = NS_OK;
switch (aProperty) {
// nsCSSFont
case eCSSProperty_font_family:
case eCSSProperty_font_style:
case eCSSProperty_font_variant:
case eCSSProperty_font_weight:
case eCSSProperty_font_size:
case eCSSProperty_font_size_adjust:
case eCSSProperty_font_stretch:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Font) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_font_family: mFont->mFamily = aValue; break;
case eCSSProperty_font_style: mFont->mStyle = aValue; break;
case eCSSProperty_font_variant: mFont->mVariant = aValue; break;
case eCSSProperty_font_weight: mFont->mWeight = aValue; break;
case eCSSProperty_font_size: mFont->mSize = aValue; break;
case eCSSProperty_font_size_adjust: mFont->mSizeAdjust = aValue; break;
case eCSSProperty_font_stretch: mFont->mStretch = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
break;
// nsCSSColor
case eCSSProperty_color:
case eCSSProperty_background_color:
case eCSSProperty_background_image:
case eCSSProperty_background_repeat:
case eCSSProperty_background_attachment:
case eCSSProperty_background_x_position:
case eCSSProperty_background_y_position:
case eCSSProperty_cursor:
case eCSSProperty_opacity:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Color) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_color: mColor->mColor = aValue; break;
case eCSSProperty_background_color: mColor->mBackColor = aValue; break;
case eCSSProperty_background_image: mColor->mBackImage = aValue; break;
case eCSSProperty_background_repeat: mColor->mBackRepeat = aValue; break;
case eCSSProperty_background_attachment: mColor->mBackAttachment = aValue; break;
case eCSSProperty_background_x_position: mColor->mBackPositionX = aValue; break;
case eCSSProperty_background_y_position: mColor->mBackPositionY = aValue; break;
case eCSSProperty_cursor:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mColor->mCursor, nsCSSValueList) {
mColor->mCursor->mValue = aValue;
CSS_IF_DELETE(mColor->mCursor->mNext);
}
break;
case eCSSProperty_opacity: mColor->mOpacity = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
break;
// nsCSSText
case eCSSProperty_word_spacing:
case eCSSProperty_letter_spacing:
case eCSSProperty_text_decoration:
case eCSSProperty_vertical_align:
case eCSSProperty_text_transform:
case eCSSProperty_text_align:
case eCSSProperty_text_indent:
case eCSSProperty_unicode_bidi:
case eCSSProperty_line_height:
case eCSSProperty_white_space:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Text) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_word_spacing: mText->mWordSpacing = aValue; break;
case eCSSProperty_letter_spacing: mText->mLetterSpacing = aValue; break;
case eCSSProperty_text_decoration: mText->mDecoration = aValue; break;
case eCSSProperty_vertical_align: mText->mVerticalAlign = aValue; break;
case eCSSProperty_text_transform: mText->mTextTransform = aValue; break;
case eCSSProperty_text_align: mText->mTextAlign = aValue; break;
case eCSSProperty_text_indent: mText->mTextIndent = aValue; break;
case eCSSProperty_unicode_bidi: mText->mUnicodeBidi = aValue; break;
case eCSSProperty_line_height: mText->mLineHeight = aValue; break;
case eCSSProperty_white_space: mText->mWhiteSpace = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_text_shadow_color:
case eCSSProperty_text_shadow_radius:
case eCSSProperty_text_shadow_x:
case eCSSProperty_text_shadow_y:
1998-10-27 02:22:40 +03:00
CSS_ENSURE(Text) {
CSS_ENSURE_DATA(mText->mTextShadow, nsCSSShadow) {
switch (aProperty) {
case eCSSProperty_text_shadow_color: mText->mTextShadow->mColor = aValue; break;
case eCSSProperty_text_shadow_radius: mText->mTextShadow->mRadius = aValue; break;
case eCSSProperty_text_shadow_x: mText->mTextShadow->mXOffset = aValue; break;
case eCSSProperty_text_shadow_y: mText->mTextShadow->mYOffset = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-27 02:22:40 +03:00
}
CSS_IF_DELETE(mText->mTextShadow->mNext);
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSDisplay
case eCSSProperty_float:
case eCSSProperty_clear:
case eCSSProperty_display:
case eCSSProperty_direction:
case eCSSProperty_visibility:
case eCSSProperty_overflow:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Display) {
switch (aProperty) {
case eCSSProperty_float: mDisplay->mFloat = aValue; break;
case eCSSProperty_clear: mDisplay->mClear = aValue; break;
case eCSSProperty_display: mDisplay->mDisplay = aValue; break;
case eCSSProperty_direction: mDisplay->mDirection = aValue; break;
case eCSSProperty_visibility: mDisplay->mVisibility = aValue; break;
case eCSSProperty_overflow: mDisplay->mOverflow = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
break;
case eCSSProperty_clip_top:
case eCSSProperty_clip_right:
case eCSSProperty_clip_bottom:
case eCSSProperty_clip_left:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Display) {
CSS_ENSURE_RECT(mDisplay->mClip) {
switch(aProperty) {
case eCSSProperty_clip_top: mDisplay->mClip->mTop = aValue; break;
case eCSSProperty_clip_right: mDisplay->mClip->mRight = aValue; break;
case eCSSProperty_clip_bottom: mDisplay->mClip->mBottom = aValue; break;
case eCSSProperty_clip_left: mDisplay->mClip->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
1998-04-14 00:24:54 +04:00
}
break;
// nsCSSMargin
case eCSSProperty_margin_top:
case eCSSProperty_margin_right:
case eCSSProperty_margin_bottom:
case eCSSProperty_margin_left:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
CSS_ENSURE_RECT(mMargin->mMargin) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_margin_top: mMargin->mMargin->mTop = aValue; break;
case eCSSProperty_margin_right: mMargin->mMargin->mRight = aValue; break;
case eCSSProperty_margin_bottom: mMargin->mMargin->mBottom = aValue; break;
case eCSSProperty_margin_left: mMargin->mMargin->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
}
break;
case eCSSProperty_padding_top:
case eCSSProperty_padding_right:
case eCSSProperty_padding_bottom:
case eCSSProperty_padding_left:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
CSS_ENSURE_RECT(mMargin->mPadding) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_padding_top: mMargin->mPadding->mTop = aValue; break;
case eCSSProperty_padding_right: mMargin->mPadding->mRight = aValue; break;
case eCSSProperty_padding_bottom: mMargin->mPadding->mBottom = aValue; break;
case eCSSProperty_padding_left: mMargin->mPadding->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
}
break;
case eCSSProperty_border_top_width:
case eCSSProperty_border_right_width:
case eCSSProperty_border_bottom_width:
case eCSSProperty_border_left_width:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
CSS_ENSURE_RECT(mMargin->mBorderWidth) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_border_top_width: mMargin->mBorderWidth->mTop = aValue; break;
case eCSSProperty_border_right_width: mMargin->mBorderWidth->mRight = aValue; break;
case eCSSProperty_border_bottom_width: mMargin->mBorderWidth->mBottom = aValue; break;
case eCSSProperty_border_left_width: mMargin->mBorderWidth->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
}
break;
case eCSSProperty_border_top_color:
case eCSSProperty_border_right_color:
case eCSSProperty_border_bottom_color:
case eCSSProperty_border_left_color:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
CSS_ENSURE_RECT(mMargin->mBorderColor) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_border_top_color: mMargin->mBorderColor->mTop = aValue; break;
case eCSSProperty_border_right_color: mMargin->mBorderColor->mRight = aValue; break;
case eCSSProperty_border_bottom_color: mMargin->mBorderColor->mBottom = aValue; break;
case eCSSProperty_border_left_color: mMargin->mBorderColor->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
}
break;
case eCSSProperty_border_top_style:
case eCSSProperty_border_right_style:
case eCSSProperty_border_bottom_style:
case eCSSProperty_border_left_style:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
CSS_ENSURE_RECT(mMargin->mBorderStyle) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_border_top_style: mMargin->mBorderStyle->mTop = aValue; break;
case eCSSProperty_border_right_style: mMargin->mBorderStyle->mRight = aValue; break;
case eCSSProperty_border_bottom_style: mMargin->mBorderStyle->mBottom = aValue; break;
case eCSSProperty_border_left_style: mMargin->mBorderStyle->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
}
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty__moz_border_radius:
case eCSSProperty_outline_width:
case eCSSProperty_outline_color:
case eCSSProperty_outline_style:
1999-07-24 23:04:42 +04:00
case eCSSProperty_float_edge:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Margin) {
switch (aProperty) {
case eCSSProperty__moz_border_radius: mMargin->mBorderRadius = aValue; break;
case eCSSProperty_outline_width: mMargin->mOutlineWidth = aValue; break;
case eCSSProperty_outline_color: mMargin->mOutlineColor = aValue; break;
case eCSSProperty_outline_style: mMargin->mOutlineStyle = aValue; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_float_edge: mMargin->mFloatEdge = aValue; break;
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
1998-04-14 00:24:54 +04:00
}
break;
// nsCSSPosition
case eCSSProperty_position:
case eCSSProperty_width:
case eCSSProperty_min_width:
case eCSSProperty_max_width:
case eCSSProperty_height:
case eCSSProperty_min_height:
case eCSSProperty_max_height:
1999-07-24 23:04:42 +04:00
case eCSSProperty_box_sizing:
case eCSSProperty_z_index:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Position) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_position: mPosition->mPosition = aValue; break;
case eCSSProperty_width: mPosition->mWidth = aValue; break;
case eCSSProperty_min_width: mPosition->mMinWidth = aValue; break;
case eCSSProperty_max_width: mPosition->mMaxWidth = aValue; break;
case eCSSProperty_height: mPosition->mHeight = aValue; break;
case eCSSProperty_min_height: mPosition->mMinHeight = aValue; break;
case eCSSProperty_max_height: mPosition->mMaxHeight = aValue; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_box_sizing: mPosition->mBoxSizing = aValue; break;
case eCSSProperty_z_index: mPosition->mZIndex = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_top:
case eCSSProperty_right:
case eCSSProperty_bottom:
case eCSSProperty_left:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Position) {
CSS_ENSURE_RECT(mPosition->mOffset) {
switch (aProperty) {
case eCSSProperty_top: mPosition->mOffset->mTop = aValue; break;
case eCSSProperty_right: mPosition->mOffset->mRight= aValue; break;
case eCSSProperty_bottom: mPosition->mOffset->mBottom = aValue; break;
case eCSSProperty_left: mPosition->mOffset->mLeft = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
1998-04-14 00:24:54 +04:00
}
break;
// nsCSSList
case eCSSProperty_list_style_type:
case eCSSProperty_list_style_image:
case eCSSProperty_list_style_position:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(List) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_list_style_type: mList->mType = aValue; break;
case eCSSProperty_list_style_image: mList->mImage = aValue; break;
case eCSSProperty_list_style_position: mList->mPosition = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSTable
case eCSSProperty_border_collapse:
case eCSSProperty_border_x_spacing:
case eCSSProperty_border_y_spacing:
case eCSSProperty_caption_side:
case eCSSProperty_empty_cells:
case eCSSProperty_table_layout:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Table) {
1998-04-25 22:43:42 +04:00
switch (aProperty) {
case eCSSProperty_border_collapse: mTable->mBorderCollapse = aValue; break;
case eCSSProperty_border_x_spacing: mTable->mBorderSpacingX = aValue; break;
case eCSSProperty_border_y_spacing: mTable->mBorderSpacingY = aValue; break;
case eCSSProperty_caption_side: mTable->mCaptionSide = aValue; break;
case eCSSProperty_empty_cells: mTable->mEmptyCells = aValue; break;
case eCSSProperty_table_layout: mTable->mLayout = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-05-27 03:16:55 +04:00
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSBreaks
case eCSSProperty_orphans:
case eCSSProperty_widows:
case eCSSProperty_page:
case eCSSProperty_page_break_after:
case eCSSProperty_page_break_before:
case eCSSProperty_page_break_inside:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Breaks) {
switch (aProperty) {
case eCSSProperty_orphans: mBreaks->mOrphans = aValue; break;
case eCSSProperty_widows: mBreaks->mWidows = aValue; break;
case eCSSProperty_page: mBreaks->mPage = aValue; break;
case eCSSProperty_page_break_after: mBreaks->mPageBreakAfter = aValue; break;
case eCSSProperty_page_break_before: mBreaks->mPageBreakBefore = aValue; break;
case eCSSProperty_page_break_inside: mBreaks->mPageBreakInside = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-05-27 03:16:55 +04:00
}
1998-10-08 05:31:58 +04:00
}
break;
// nsCSSPage
case eCSSProperty_marks:
case eCSSProperty_size_width:
case eCSSProperty_size_height:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Page) {
switch (aProperty) {
case eCSSProperty_marks: mPage->mMarks = aValue; break;
case eCSSProperty_size_width: mPage->mSizeWidth = aValue; break;
case eCSSProperty_size_height: mPage->mSizeHeight = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-05-27 03:16:55 +04:00
}
1998-10-08 05:31:58 +04:00
}
break;
// nsCSSContent
case eCSSProperty_content:
case eCSSProperty_counter_increment:
case eCSSProperty_counter_reset:
case eCSSProperty_marker_offset:
case eCSSProperty_quotes_open:
case eCSSProperty_quotes_close:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Content) {
switch (aProperty) {
case eCSSProperty_content:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mContent->mContent, nsCSSValueList) {
mContent->mContent->mValue = aValue;
CSS_IF_DELETE(mContent->mContent->mNext);
}
break;
case eCSSProperty_counter_increment:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mContent->mCounterIncrement, nsCSSCounterData) {
mContent->mCounterIncrement->mCounter = aValue;
CSS_IF_DELETE(mContent->mCounterIncrement->mNext);
}
break;
case eCSSProperty_counter_reset:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mContent->mCounterReset, nsCSSCounterData) {
mContent->mCounterReset->mCounter = aValue;
CSS_IF_DELETE(mContent->mCounterReset->mNext);
}
break;
case eCSSProperty_marker_offset: mContent->mMarkerOffset = aValue; break;
case eCSSProperty_quotes_open:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mContent->mQuotes, nsCSSQuotes) {
mContent->mQuotes->mOpen = aValue;
CSS_IF_DELETE(mContent->mQuotes->mNext);
}
break;
case eCSSProperty_quotes_close:
1998-10-27 02:22:40 +03:00
CSS_ENSURE_DATA(mContent->mQuotes, nsCSSQuotes) {
mContent->mQuotes->mClose = aValue;
CSS_IF_DELETE(mContent->mQuotes->mNext);
}
break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
}
}
break;
// nsCSSUserInterface
case eCSSProperty_user_input:
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_modify:
case eCSSProperty_user_select:
1999-07-24 23:04:42 +04:00
case eCSSProperty_key_equivalent:
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_focus:
1999-07-24 23:04:42 +04:00
case eCSSProperty_resizer:
CSS_ENSURE(UserInterface) {
switch (aProperty) {
case eCSSProperty_user_input: mUserInterface->mUserInput = aValue; break;
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_modify: mUserInterface->mUserModify = aValue; break;
case eCSSProperty_user_select: mUserInterface->mUserSelect = aValue; break;
case eCSSProperty_key_equivalent:
1999-07-24 23:04:42 +04:00
CSS_ENSURE_DATA(mUserInterface->mKeyEquivalent, nsCSSValueList) {
mUserInterface->mKeyEquivalent->mValue = aValue;
CSS_IF_DELETE(mUserInterface->mKeyEquivalent->mNext);
}
break;
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_focus: mUserInterface->mUserFocus = aValue; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_resizer: mUserInterface->mResizer = aValue; break;
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-25 22:43:42 +04:00
}
}
1998-10-08 05:31:58 +04:00
break;
// nsCSSAural
case eCSSProperty_azimuth:
case eCSSProperty_elevation:
case eCSSProperty_cue_after:
case eCSSProperty_cue_before:
case eCSSProperty_pause_after:
case eCSSProperty_pause_before:
case eCSSProperty_pitch:
case eCSSProperty_pitch_range:
case eCSSProperty_play_during:
case eCSSProperty_play_during_flags:
case eCSSProperty_richness:
case eCSSProperty_speak:
case eCSSProperty_speak_header:
case eCSSProperty_speak_numeral:
case eCSSProperty_speak_punctuation:
case eCSSProperty_speech_rate:
case eCSSProperty_stress:
case eCSSProperty_voice_family:
case eCSSProperty_volume:
1998-10-08 05:31:58 +04:00
CSS_ENSURE(Aural) {
switch (aProperty) {
case eCSSProperty_azimuth: mAural->mAzimuth = aValue; break;
case eCSSProperty_elevation: mAural->mElevation = aValue; break;
case eCSSProperty_cue_after: mAural->mCueAfter = aValue; break;
case eCSSProperty_cue_before: mAural->mCueBefore = aValue; break;
case eCSSProperty_pause_after: mAural->mPauseAfter = aValue; break;
case eCSSProperty_pause_before: mAural->mPauseBefore = aValue; break;
case eCSSProperty_pitch: mAural->mPitch = aValue; break;
case eCSSProperty_pitch_range: mAural->mPitchRange = aValue; break;
case eCSSProperty_play_during: mAural->mPlayDuring = aValue; break;
case eCSSProperty_play_during_flags: mAural->mPlayDuringFlags = aValue; break;
case eCSSProperty_richness: mAural->mRichness = aValue; break;
case eCSSProperty_speak: mAural->mSpeak = aValue; break;
case eCSSProperty_speak_header: mAural->mSpeakHeader = aValue; break;
case eCSSProperty_speak_numeral: mAural->mSpeakNumeral = aValue; break;
case eCSSProperty_speak_punctuation: mAural->mSpeakPunctuation = aValue; break;
case eCSSProperty_speech_rate: mAural->mSpeechRate = aValue; break;
case eCSSProperty_stress: mAural->mStress = aValue; break;
case eCSSProperty_voice_family: mAural->mVoiceFamily = aValue; break;
case eCSSProperty_volume: mAural->mVolume = aValue; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
1998-04-25 22:43:42 +04:00
}
break;
1998-10-08 05:31:58 +04:00
// Shorthands
case eCSSProperty_background:
case eCSSProperty_border:
case eCSSProperty_border_spacing:
case eCSSProperty_clip:
case eCSSProperty_cue:
case eCSSProperty_font:
case eCSSProperty_list_style:
case eCSSProperty_margin:
case eCSSProperty_outline:
case eCSSProperty_padding:
case eCSSProperty_pause:
case eCSSProperty_quotes:
case eCSSProperty_size:
case eCSSProperty_text_shadow:
case eCSSProperty_background_position:
case eCSSProperty_border_top:
case eCSSProperty_border_right:
case eCSSProperty_border_bottom:
case eCSSProperty_border_left:
case eCSSProperty_border_color:
case eCSSProperty_border_style:
case eCSSProperty_border_width:
1999-02-10 11:37:28 +03:00
NS_ERROR("can't append shorthand properties");
1999-07-24 23:04:42 +04:00
// default: // XXX explicitly removing default case so compiler will help find missed props
case eCSSProperty_UNKNOWN:
case eCSSProperty_COUNT:
1998-04-14 00:24:54 +04:00
result = NS_ERROR_ILLEGAL_VALUE;
break;
}
1998-07-17 09:50:35 +04:00
if (NS_OK == result) {
if (nsnull == mOrder) {
mOrder = new nsVoidArray();
}
if (nsnull != mOrder) {
PRInt32 index = mOrder->IndexOf((void*)aProperty);
if (-1 != index) {
mOrder->RemoveElementAt(index);
}
if (eCSSUnit_Null != aValue.GetUnit()) {
mOrder->AppendElement((void*)(PRInt32)aProperty);
1998-07-17 09:50:35 +04:00
}
}
}
1998-04-14 00:24:54 +04:00
return result;
}
1999-02-10 11:37:28 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::AppendStructValue(nsCSSProperty aProperty, void* aStruct)
1999-02-10 11:37:28 +03:00
{
NS_ASSERTION(nsnull != aStruct, "must have struct");
if (nsnull == aStruct) {
return NS_ERROR_NULL_POINTER;
}
nsresult result = NS_OK;
switch (aProperty) {
case eCSSProperty_cursor:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Color) {
CSS_IF_DELETE(mColor->mCursor);
mColor->mCursor = (nsCSSValueList*)aStruct;
}
break;
case eCSSProperty_text_shadow:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Text) {
CSS_IF_DELETE(mText->mTextShadow);
mText->mTextShadow = (nsCSSShadow*)aStruct;
}
break;
case eCSSProperty_content:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Content) {
CSS_IF_DELETE(mContent->mContent);
mContent->mContent = (nsCSSValueList*)aStruct;
}
break;
case eCSSProperty_counter_increment:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Content) {
CSS_IF_DELETE(mContent->mCounterIncrement);
mContent->mCounterIncrement = (nsCSSCounterData*)aStruct;
}
break;
case eCSSProperty_counter_reset:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Content) {
CSS_IF_DELETE(mContent->mCounterReset);
mContent->mCounterReset = (nsCSSCounterData*)aStruct;
}
break;
case eCSSProperty_quotes:
1999-02-10 11:37:28 +03:00
CSS_ENSURE(Content) {
CSS_IF_DELETE(mContent->mQuotes);
mContent->mQuotes = (nsCSSQuotes*)aStruct;
}
break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_key_equivalent:
CSS_ENSURE(UserInterface) {
CSS_IF_DELETE(mUserInterface->mKeyEquivalent);
mUserInterface->mKeyEquivalent = (nsCSSValueList*)aStruct;
}
break;
1999-02-10 11:37:28 +03:00
default:
NS_ERROR("not a struct property");
result = NS_ERROR_ILLEGAL_VALUE;
break;
}
if (NS_OK == result) {
if (nsnull == mOrder) {
mOrder = new nsVoidArray();
}
if (nsnull != mOrder) {
PRInt32 index = mOrder->IndexOf((void*)(PRInt32)aProperty);
1999-02-10 11:37:28 +03:00
if (-1 != index) {
mOrder->RemoveElementAt(index);
}
mOrder->AppendElement((void*)(PRInt32)aProperty);
1999-02-10 11:37:28 +03:00
}
}
return result;
}
1998-10-08 05:31:58 +04:00
#define CSS_ENSURE_IMPORTANT(data) \
if (nsnull == mImportant->m##data) { \
mImportant->m##data = new nsCSS##data(); \
} \
if (nsnull == mImportant->m##data) { \
result = NS_ERROR_OUT_OF_MEMORY; \
} \
else
#define CSS_CASE_IMPORTANT(prop,data) \
case prop: mImportant->data = data; data.Reset(); break
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::SetValueImportant(nsCSSProperty aProperty)
1998-06-26 09:51:55 +04:00
{
nsresult result = NS_OK;
if (nsnull == mImportant) {
mImportant = new CSSDeclarationImpl();
if (nsnull != mImportant) {
NS_ADDREF(mImportant);
}
else {
result = NS_ERROR_OUT_OF_MEMORY;
}
}
if (NS_OK == result) {
switch (aProperty) {
// nsCSSFont
case eCSSProperty_font_family:
case eCSSProperty_font_style:
case eCSSProperty_font_variant:
case eCSSProperty_font_weight:
case eCSSProperty_font_size:
case eCSSProperty_font_size_adjust:
case eCSSProperty_font_stretch:
1998-06-26 09:51:55 +04:00
if (nsnull != mFont) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Font) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_font_family, mFont->mFamily);
CSS_CASE_IMPORTANT(eCSSProperty_font_style, mFont->mStyle);
CSS_CASE_IMPORTANT(eCSSProperty_font_variant, mFont->mVariant);
CSS_CASE_IMPORTANT(eCSSProperty_font_weight, mFont->mWeight);
CSS_CASE_IMPORTANT(eCSSProperty_font_size, mFont->mSize);
CSS_CASE_IMPORTANT(eCSSProperty_font_size_adjust, mFont->mSizeAdjust);
CSS_CASE_IMPORTANT(eCSSProperty_font_stretch, mFont->mStretch);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
break;
// nsCSSColor
case eCSSProperty_color:
case eCSSProperty_background_color:
case eCSSProperty_background_image:
case eCSSProperty_background_repeat:
case eCSSProperty_background_attachment:
case eCSSProperty_background_x_position:
case eCSSProperty_background_y_position:
case eCSSProperty_opacity:
1998-06-26 09:51:55 +04:00
if (nsnull != mColor) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Color) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_color, mColor->mColor);
CSS_CASE_IMPORTANT(eCSSProperty_background_color, mColor->mBackColor);
CSS_CASE_IMPORTANT(eCSSProperty_background_image, mColor->mBackImage);
CSS_CASE_IMPORTANT(eCSSProperty_background_repeat, mColor->mBackRepeat);
CSS_CASE_IMPORTANT(eCSSProperty_background_attachment, mColor->mBackAttachment);
CSS_CASE_IMPORTANT(eCSSProperty_background_x_position, mColor->mBackPositionX);
CSS_CASE_IMPORTANT(eCSSProperty_background_y_position, mColor->mBackPositionY);
CSS_CASE_IMPORTANT(eCSSProperty_opacity, mColor->mOpacity);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
break;
case eCSSProperty_cursor:
1998-10-27 02:22:40 +03:00
if (nsnull != mColor) {
if (nsnull != mColor->mCursor) {
CSS_ENSURE_IMPORTANT(Color) {
CSS_IF_DELETE(mImportant->mColor->mCursor);
mImportant->mColor->mCursor = mColor->mCursor;
mColor->mCursor = nsnull;
}
}
}
break;
1998-06-26 09:51:55 +04:00
// nsCSSText
case eCSSProperty_word_spacing:
case eCSSProperty_letter_spacing:
case eCSSProperty_text_decoration:
case eCSSProperty_vertical_align:
case eCSSProperty_text_transform:
case eCSSProperty_text_align:
case eCSSProperty_text_indent:
case eCSSProperty_unicode_bidi:
case eCSSProperty_line_height:
case eCSSProperty_white_space:
1998-06-26 09:51:55 +04:00
if (nsnull != mText) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Text) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_word_spacing, mText->mWordSpacing);
CSS_CASE_IMPORTANT(eCSSProperty_letter_spacing, mText->mLetterSpacing);
CSS_CASE_IMPORTANT(eCSSProperty_text_decoration, mText->mDecoration);
CSS_CASE_IMPORTANT(eCSSProperty_vertical_align, mText->mVerticalAlign);
CSS_CASE_IMPORTANT(eCSSProperty_text_transform, mText->mTextTransform);
CSS_CASE_IMPORTANT(eCSSProperty_text_align, mText->mTextAlign);
CSS_CASE_IMPORTANT(eCSSProperty_text_indent, mText->mTextIndent);
CSS_CASE_IMPORTANT(eCSSProperty_unicode_bidi, mText->mUnicodeBidi);
CSS_CASE_IMPORTANT(eCSSProperty_line_height, mText->mLineHeight);
CSS_CASE_IMPORTANT(eCSSProperty_white_space, mText->mWhiteSpace);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
1998-06-26 09:51:55 +04:00
}
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_text_shadow:
1998-10-08 05:31:58 +04:00
if (nsnull != mText) {
if (nsnull != mText->mTextShadow) {
CSS_ENSURE_IMPORTANT(Text) {
1998-10-27 02:22:40 +03:00
CSS_IF_DELETE(mImportant->mText->mTextShadow);
1998-10-08 05:31:58 +04:00
mImportant->mText->mTextShadow = mText->mTextShadow;
mText->mTextShadow = nsnull;
}
}
}
break;
// nsCSSDisplay
case eCSSProperty_direction:
case eCSSProperty_display:
case eCSSProperty_float:
case eCSSProperty_clear:
case eCSSProperty_overflow:
case eCSSProperty_visibility:
1998-10-08 05:31:58 +04:00
if (nsnull != mDisplay) {
CSS_ENSURE_IMPORTANT(Display) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_direction, mDisplay->mDirection);
CSS_CASE_IMPORTANT(eCSSProperty_display, mDisplay->mDisplay);
CSS_CASE_IMPORTANT(eCSSProperty_float, mDisplay->mFloat);
CSS_CASE_IMPORTANT(eCSSProperty_clear, mDisplay->mClear);
CSS_CASE_IMPORTANT(eCSSProperty_overflow, mDisplay->mOverflow);
CSS_CASE_IMPORTANT(eCSSProperty_visibility, mDisplay->mVisibility);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_clip_top:
case eCSSProperty_clip_right:
case eCSSProperty_clip_bottom:
case eCSSProperty_clip_left:
1998-10-08 05:31:58 +04:00
if (nsnull != mDisplay) {
if (nsnull != mDisplay->mClip) {
CSS_ENSURE_IMPORTANT(Display) {
CSS_ENSURE_RECT(mImportant->mDisplay->mClip) {
switch(aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_clip_top, mDisplay->mClip->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_clip_right, mDisplay->mClip->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_clip_bottom, mDisplay->mClip->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_clip_left, mDisplay->mClip->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
}
1998-06-26 09:51:55 +04:00
}
}
break;
// nsCSSMargin
case eCSSProperty_margin_top:
case eCSSProperty_margin_right:
case eCSSProperty_margin_bottom:
case eCSSProperty_margin_left:
1998-06-26 09:51:55 +04:00
if (nsnull != mMargin) {
if (nsnull != mMargin->mMargin) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Margin) {
CSS_ENSURE_RECT(mImportant->mMargin->mMargin) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_margin_top, mMargin->mMargin->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_margin_right, mMargin->mMargin->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_margin_bottom, mMargin->mMargin->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_margin_left, mMargin->mMargin->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
}
}
break;
case eCSSProperty_padding_top:
case eCSSProperty_padding_right:
case eCSSProperty_padding_bottom:
case eCSSProperty_padding_left:
1998-06-26 09:51:55 +04:00
if (nsnull != mMargin) {
if (nsnull != mMargin->mPadding) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Margin) {
CSS_ENSURE_RECT(mImportant->mMargin->mPadding) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_padding_top, mMargin->mPadding->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_padding_right, mMargin->mPadding->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_padding_bottom, mMargin->mPadding->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_padding_left, mMargin->mPadding->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
}
}
break;
case eCSSProperty_border_top_width:
case eCSSProperty_border_right_width:
case eCSSProperty_border_bottom_width:
case eCSSProperty_border_left_width:
1998-06-26 09:51:55 +04:00
if (nsnull != mMargin) {
1998-10-08 05:31:58 +04:00
if (nsnull != mMargin->mBorderWidth) {
CSS_ENSURE_IMPORTANT(Margin) {
CSS_ENSURE_RECT(mImportant->mMargin->mBorderWidth) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_border_top_width, mMargin->mBorderWidth->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_border_right_width, mMargin->mBorderWidth->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_border_bottom_width, mMargin->mBorderWidth->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_border_left_width, mMargin->mBorderWidth->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
}
}
break;
case eCSSProperty_border_top_color:
case eCSSProperty_border_right_color:
case eCSSProperty_border_bottom_color:
case eCSSProperty_border_left_color:
1998-06-26 09:51:55 +04:00
if (nsnull != mMargin) {
1998-10-08 05:31:58 +04:00
if (nsnull != mMargin->mBorderColor) {
CSS_ENSURE_IMPORTANT(Margin) {
CSS_ENSURE_RECT(mImportant->mMargin->mBorderColor) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_border_top_color, mMargin->mBorderColor->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_border_right_color, mMargin->mBorderColor->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_border_bottom_color, mMargin->mBorderColor->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_border_left_color, mMargin->mBorderColor->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
}
}
break;
case eCSSProperty_border_top_style:
case eCSSProperty_border_right_style:
case eCSSProperty_border_bottom_style:
case eCSSProperty_border_left_style:
1998-06-26 09:51:55 +04:00
if (nsnull != mMargin) {
1998-10-08 05:31:58 +04:00
if (nsnull != mMargin->mBorderStyle) {
CSS_ENSURE_IMPORTANT(Margin) {
CSS_ENSURE_RECT(mImportant->mMargin->mBorderStyle) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_border_top_style, mMargin->mBorderStyle->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_border_right_style, mMargin->mBorderStyle->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_border_bottom_style, mMargin->mBorderStyle->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_border_left_style, mMargin->mBorderStyle->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
1998-10-08 05:31:58 +04:00
}
}
break;
case eCSSProperty__moz_border_radius:
case eCSSProperty_outline_width:
case eCSSProperty_outline_color:
case eCSSProperty_outline_style:
1999-07-24 23:04:42 +04:00
case eCSSProperty_float_edge:
1998-10-08 05:31:58 +04:00
if (nsnull != mMargin) {
CSS_ENSURE_IMPORTANT(Margin) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty__moz_border_radius, mMargin->mBorderRadius);
CSS_CASE_IMPORTANT(eCSSProperty_outline_width, mMargin->mOutlineWidth);
CSS_CASE_IMPORTANT(eCSSProperty_outline_color, mMargin->mOutlineColor);
CSS_CASE_IMPORTANT(eCSSProperty_outline_style, mMargin->mOutlineStyle);
1999-07-24 23:04:42 +04:00
CSS_CASE_IMPORTANT(eCSSProperty_float_edge, mMargin->mFloatEdge);
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
break;
// nsCSSPosition
case eCSSProperty_position:
case eCSSProperty_width:
case eCSSProperty_min_width:
case eCSSProperty_max_width:
case eCSSProperty_height:
case eCSSProperty_min_height:
case eCSSProperty_max_height:
1999-07-24 23:04:42 +04:00
case eCSSProperty_box_sizing:
case eCSSProperty_z_index:
1998-06-26 09:51:55 +04:00
if (nsnull != mPosition) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(Position) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_position, mPosition->mPosition);
CSS_CASE_IMPORTANT(eCSSProperty_width, mPosition->mWidth);
CSS_CASE_IMPORTANT(eCSSProperty_min_width, mPosition->mMinWidth);
CSS_CASE_IMPORTANT(eCSSProperty_max_width, mPosition->mMaxWidth);
CSS_CASE_IMPORTANT(eCSSProperty_height, mPosition->mHeight);
CSS_CASE_IMPORTANT(eCSSProperty_min_height, mPosition->mMinHeight);
CSS_CASE_IMPORTANT(eCSSProperty_max_height, mPosition->mMaxHeight);
1999-07-24 23:04:42 +04:00
CSS_CASE_IMPORTANT(eCSSProperty_box_sizing, mPosition->mBoxSizing);
CSS_CASE_IMPORTANT(eCSSProperty_z_index, mPosition->mZIndex);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_top:
case eCSSProperty_right:
case eCSSProperty_bottom:
case eCSSProperty_left:
1998-10-08 05:31:58 +04:00
if (nsnull != mPosition) {
if (nsnull != mPosition->mOffset) {
CSS_ENSURE_IMPORTANT(Position) {
CSS_ENSURE_RECT(mImportant->mPosition->mOffset) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_top, mPosition->mOffset->mTop);
CSS_CASE_IMPORTANT(eCSSProperty_right, mPosition->mOffset->mRight);
CSS_CASE_IMPORTANT(eCSSProperty_bottom, mPosition->mOffset->mBottom);
CSS_CASE_IMPORTANT(eCSSProperty_left, mPosition->mOffset->mLeft);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
}
1998-06-26 09:51:55 +04:00
}
}
break;
// nsCSSList
case eCSSProperty_list_style_type:
case eCSSProperty_list_style_image:
case eCSSProperty_list_style_position:
1998-06-26 09:51:55 +04:00
if (nsnull != mList) {
1998-10-08 05:31:58 +04:00
CSS_ENSURE_IMPORTANT(List) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_list_style_type, mList->mType);
CSS_CASE_IMPORTANT(eCSSProperty_list_style_image, mList->mImage);
CSS_CASE_IMPORTANT(eCSSProperty_list_style_position, mList->mPosition);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSTable
case eCSSProperty_border_collapse:
case eCSSProperty_border_x_spacing:
case eCSSProperty_border_y_spacing:
case eCSSProperty_caption_side:
case eCSSProperty_empty_cells:
case eCSSProperty_table_layout:
1998-10-08 05:31:58 +04:00
if (nsnull != mTable) {
CSS_ENSURE_IMPORTANT(Table) {
1998-06-26 09:51:55 +04:00
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_border_collapse, mTable->mBorderCollapse);
CSS_CASE_IMPORTANT(eCSSProperty_border_x_spacing, mTable->mBorderSpacingX);
CSS_CASE_IMPORTANT(eCSSProperty_border_y_spacing, mTable->mBorderSpacingY);
CSS_CASE_IMPORTANT(eCSSProperty_caption_side, mTable->mCaptionSide);
CSS_CASE_IMPORTANT(eCSSProperty_empty_cells, mTable->mEmptyCells);
CSS_CASE_IMPORTANT(eCSSProperty_table_layout, mTable->mLayout);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
1998-10-08 05:31:58 +04:00
}
break;
// nsCSSBreaks
case eCSSProperty_orphans:
case eCSSProperty_widows:
case eCSSProperty_page:
case eCSSProperty_page_break_after:
case eCSSProperty_page_break_before:
case eCSSProperty_page_break_inside:
1998-10-08 05:31:58 +04:00
if (nsnull != mBreaks) {
CSS_ENSURE_IMPORTANT(Breaks) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_orphans, mBreaks->mOrphans);
CSS_CASE_IMPORTANT(eCSSProperty_widows, mBreaks->mWidows);
CSS_CASE_IMPORTANT(eCSSProperty_page, mBreaks->mPage);
CSS_CASE_IMPORTANT(eCSSProperty_page_break_after, mBreaks->mPageBreakAfter);
CSS_CASE_IMPORTANT(eCSSProperty_page_break_before, mBreaks->mPageBreakBefore);
CSS_CASE_IMPORTANT(eCSSProperty_page_break_inside, mBreaks->mPageBreakInside);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
1998-06-26 09:51:55 +04:00
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSPage
case eCSSProperty_marks:
case eCSSProperty_size_width:
case eCSSProperty_size_height:
1998-10-08 05:31:58 +04:00
if (nsnull != mPage) {
CSS_ENSURE_IMPORTANT(Page) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_marks, mPage->mMarks);
CSS_CASE_IMPORTANT(eCSSProperty_size_width, mPage->mSizeWidth);
CSS_CASE_IMPORTANT(eCSSProperty_size_height, mPage->mSizeHeight);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
1998-10-08 05:31:58 +04:00
}
}
break;
// nsCSSContent
case eCSSProperty_content:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent) {
if (nsnull != mContent->mContent) {
CSS_ENSURE_IMPORTANT(Content) {
CSS_IF_DELETE(mImportant->mContent->mContent);
mImportant->mContent->mContent = mContent->mContent;
mContent->mContent = nsnull;
}
}
}
break;
case eCSSProperty_counter_increment:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent) {
if (nsnull != mContent->mCounterIncrement) {
CSS_ENSURE_IMPORTANT(Content) {
CSS_IF_DELETE(mImportant->mContent->mCounterIncrement);
mImportant->mContent->mCounterIncrement = mContent->mCounterIncrement;
mContent->mCounterIncrement = nsnull;
}
}
}
break;
case eCSSProperty_counter_reset:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent) {
if (nsnull != mContent->mCounterReset) {
CSS_ENSURE_IMPORTANT(Content) {
CSS_IF_DELETE(mImportant->mContent->mCounterReset);
mImportant->mContent->mCounterReset = mContent->mCounterReset;
mContent->mCounterReset = nsnull;
}
}
}
break;
case eCSSProperty_marker_offset:
1998-10-08 05:31:58 +04:00
if (nsnull != mContent) {
CSS_ENSURE_IMPORTANT(Content) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_marker_offset, mContent->mMarkerOffset);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-27 02:22:40 +03:00
}
}
}
break;
case eCSSProperty_quotes:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent) {
if (nsnull != mContent->mQuotes) {
CSS_ENSURE_IMPORTANT(Content) {
CSS_IF_DELETE(mImportant->mContent->mQuotes);
mImportant->mContent->mQuotes = mContent->mQuotes;
mContent->mQuotes = nsnull;
1998-06-26 09:51:55 +04:00
}
1998-10-08 05:31:58 +04:00
}
}
break;
1999-07-24 23:04:42 +04:00
// nsCSSUserInterface
case eCSSProperty_user_input:
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_modify:
case eCSSProperty_user_select:
case eCSSProperty_user_focus:
1999-07-24 23:04:42 +04:00
case eCSSProperty_resizer:
if (nsnull != mUserInterface) {
CSS_ENSURE_IMPORTANT(UserInterface) {
switch (aProperty) {
1999-09-04 03:40:35 +04:00
CSS_CASE_IMPORTANT(eCSSProperty_user_input, mUserInterface->mUserInput);
CSS_CASE_IMPORTANT(eCSSProperty_user_modify, mUserInterface->mUserModify);
CSS_CASE_IMPORTANT(eCSSProperty_user_select, mUserInterface->mUserSelect);
CSS_CASE_IMPORTANT(eCSSProperty_user_focus, mUserInterface->mUserFocus);
CSS_CASE_IMPORTANT(eCSSProperty_resizer, mUserInterface->mResizer);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
}
}
}
break;
case eCSSProperty_key_equivalent:
if (nsnull != mUserInterface) {
if (nsnull != mUserInterface->mKeyEquivalent) {
CSS_ENSURE_IMPORTANT(UserInterface) {
CSS_IF_DELETE(mImportant->mUserInterface->mKeyEquivalent);
mImportant->mUserInterface->mKeyEquivalent = mUserInterface->mKeyEquivalent;
mUserInterface->mKeyEquivalent = nsnull;
}
}
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSAural
case eCSSProperty_azimuth:
case eCSSProperty_elevation:
case eCSSProperty_cue_after:
case eCSSProperty_cue_before:
case eCSSProperty_pause_after:
case eCSSProperty_pause_before:
case eCSSProperty_pitch:
case eCSSProperty_pitch_range:
case eCSSProperty_richness:
case eCSSProperty_speak:
case eCSSProperty_speak_header:
case eCSSProperty_speak_numeral:
case eCSSProperty_speak_punctuation:
case eCSSProperty_speech_rate:
case eCSSProperty_stress:
case eCSSProperty_voice_family:
case eCSSProperty_volume:
1998-10-08 05:31:58 +04:00
if (nsnull != mAural) {
CSS_ENSURE_IMPORTANT(Aural) {
switch (aProperty) {
CSS_CASE_IMPORTANT(eCSSProperty_azimuth, mAural->mAzimuth);
CSS_CASE_IMPORTANT(eCSSProperty_elevation, mAural->mElevation);
CSS_CASE_IMPORTANT(eCSSProperty_cue_after, mAural->mCueAfter);
CSS_CASE_IMPORTANT(eCSSProperty_cue_before, mAural->mCueBefore);
CSS_CASE_IMPORTANT(eCSSProperty_pause_after, mAural->mPauseAfter);
CSS_CASE_IMPORTANT(eCSSProperty_pause_before, mAural->mPauseBefore);
CSS_CASE_IMPORTANT(eCSSProperty_pitch, mAural->mPitch);
CSS_CASE_IMPORTANT(eCSSProperty_pitch_range, mAural->mPitchRange);
CSS_CASE_IMPORTANT(eCSSProperty_richness, mAural->mRichness);
CSS_CASE_IMPORTANT(eCSSProperty_speak, mAural->mSpeak);
CSS_CASE_IMPORTANT(eCSSProperty_speak_header, mAural->mSpeakHeader);
CSS_CASE_IMPORTANT(eCSSProperty_speak_numeral, mAural->mSpeakNumeral);
CSS_CASE_IMPORTANT(eCSSProperty_speak_punctuation, mAural->mSpeakPunctuation);
CSS_CASE_IMPORTANT(eCSSProperty_speech_rate, mAural->mSpeechRate);
CSS_CASE_IMPORTANT(eCSSProperty_stress, mAural->mStress);
CSS_CASE_IMPORTANT(eCSSProperty_voice_family, mAural->mVoiceFamily);
CSS_CASE_IMPORTANT(eCSSProperty_volume, mAural->mVolume);
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-06-26 09:51:55 +04:00
}
}
}
break;
case eCSSProperty_play_during:
1998-10-27 02:22:40 +03:00
if (nsnull != mAural) {
CSS_ENSURE_IMPORTANT(Aural) {
mImportant->mAural->mPlayDuring = mAural->mPlayDuring;
mAural->mPlayDuring.Reset();
mImportant->mAural->mPlayDuringFlags = mAural->mPlayDuringFlags;
mAural->mPlayDuringFlags.Reset();
}
}
break;
1998-10-08 05:31:58 +04:00
// Shorthands
case eCSSProperty_background:
SetValueImportant(eCSSProperty_background_color);
SetValueImportant(eCSSProperty_background_image);
SetValueImportant(eCSSProperty_background_repeat);
SetValueImportant(eCSSProperty_background_attachment);
SetValueImportant(eCSSProperty_background_x_position);
SetValueImportant(eCSSProperty_background_y_position);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border:
SetValueImportant(eCSSProperty_border_top_width);
SetValueImportant(eCSSProperty_border_right_width);
SetValueImportant(eCSSProperty_border_bottom_width);
SetValueImportant(eCSSProperty_border_left_width);
SetValueImportant(eCSSProperty_border_top_style);
SetValueImportant(eCSSProperty_border_right_style);
SetValueImportant(eCSSProperty_border_bottom_style);
SetValueImportant(eCSSProperty_border_left_style);
SetValueImportant(eCSSProperty_border_top_color);
SetValueImportant(eCSSProperty_border_right_color);
SetValueImportant(eCSSProperty_border_bottom_color);
SetValueImportant(eCSSProperty_border_left_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_spacing:
SetValueImportant(eCSSProperty_border_x_spacing);
SetValueImportant(eCSSProperty_border_y_spacing);
case eCSSProperty_clip:
SetValueImportant(eCSSProperty_clip_top);
SetValueImportant(eCSSProperty_clip_right);
SetValueImportant(eCSSProperty_clip_bottom);
SetValueImportant(eCSSProperty_clip_left);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_cue:
SetValueImportant(eCSSProperty_cue_after);
SetValueImportant(eCSSProperty_cue_before);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_font:
SetValueImportant(eCSSProperty_font_family);
SetValueImportant(eCSSProperty_font_style);
SetValueImportant(eCSSProperty_font_variant);
SetValueImportant(eCSSProperty_font_weight);
SetValueImportant(eCSSProperty_font_size);
SetValueImportant(eCSSProperty_line_height);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_list_style:
SetValueImportant(eCSSProperty_list_style_type);
SetValueImportant(eCSSProperty_list_style_image);
SetValueImportant(eCSSProperty_list_style_position);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_margin:
SetValueImportant(eCSSProperty_margin_top);
SetValueImportant(eCSSProperty_margin_right);
SetValueImportant(eCSSProperty_margin_bottom);
SetValueImportant(eCSSProperty_margin_left);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_outline:
SetValueImportant(eCSSProperty_outline_color);
SetValueImportant(eCSSProperty_outline_style);
SetValueImportant(eCSSProperty_outline_width);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_padding:
SetValueImportant(eCSSProperty_padding_top);
SetValueImportant(eCSSProperty_padding_right);
SetValueImportant(eCSSProperty_padding_bottom);
SetValueImportant(eCSSProperty_padding_left);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_pause:
SetValueImportant(eCSSProperty_pause_after);
SetValueImportant(eCSSProperty_pause_before);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_size:
SetValueImportant(eCSSProperty_size_width);
SetValueImportant(eCSSProperty_size_height);
1998-10-27 02:22:40 +03:00
break;
case eCSSProperty_background_position:
SetValueImportant(eCSSProperty_background_x_position);
SetValueImportant(eCSSProperty_background_y_position);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_top:
SetValueImportant(eCSSProperty_border_top_width);
SetValueImportant(eCSSProperty_border_top_style);
SetValueImportant(eCSSProperty_border_top_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_right:
SetValueImportant(eCSSProperty_border_right_width);
SetValueImportant(eCSSProperty_border_right_style);
SetValueImportant(eCSSProperty_border_right_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_bottom:
SetValueImportant(eCSSProperty_border_bottom_width);
SetValueImportant(eCSSProperty_border_bottom_style);
SetValueImportant(eCSSProperty_border_bottom_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_left:
SetValueImportant(eCSSProperty_border_left_width);
SetValueImportant(eCSSProperty_border_left_style);
SetValueImportant(eCSSProperty_border_left_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_color:
SetValueImportant(eCSSProperty_border_top_color);
SetValueImportant(eCSSProperty_border_right_color);
SetValueImportant(eCSSProperty_border_bottom_color);
SetValueImportant(eCSSProperty_border_left_color);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_style:
SetValueImportant(eCSSProperty_border_top_style);
SetValueImportant(eCSSProperty_border_right_style);
SetValueImportant(eCSSProperty_border_bottom_style);
SetValueImportant(eCSSProperty_border_left_style);
1998-06-26 09:51:55 +04:00
break;
case eCSSProperty_border_width:
SetValueImportant(eCSSProperty_border_top_width);
SetValueImportant(eCSSProperty_border_right_width);
SetValueImportant(eCSSProperty_border_bottom_width);
SetValueImportant(eCSSProperty_border_left_width);
1998-06-26 09:51:55 +04:00
break;
default:
result = NS_ERROR_ILLEGAL_VALUE;
break;
}
}
return result;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::AppendComment(const nsString& aComment)
1998-07-17 09:50:35 +04:00
{
nsresult result = NS_ERROR_OUT_OF_MEMORY;
if (nsnull == mOrder) {
mOrder = new nsVoidArray();
}
if (nsnull == mComments) {
1999-06-03 05:58:11 +04:00
mComments = new nsStringArray();
1998-07-17 09:50:35 +04:00
}
if ((nsnull != mComments) && (nsnull != mOrder)) {
1999-06-03 05:58:11 +04:00
mComments->AppendString(aComment);
1998-07-17 09:50:35 +04:00
mOrder->AppendElement((void*)-mComments->Count());
result = NS_OK;
}
return result;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetValue(nsCSSProperty aProperty, nsCSSValue& aValue)
1998-04-14 00:24:54 +04:00
{
nsresult result = NS_OK;
switch (aProperty) {
// nsCSSFont
case eCSSProperty_font_family:
case eCSSProperty_font_style:
case eCSSProperty_font_variant:
case eCSSProperty_font_weight:
case eCSSProperty_font_size:
case eCSSProperty_font_size_adjust:
case eCSSProperty_font_stretch:
1998-04-14 00:24:54 +04:00
if (nsnull != mFont) {
switch (aProperty) {
case eCSSProperty_font_family: aValue = mFont->mFamily; break;
case eCSSProperty_font_style: aValue = mFont->mStyle; break;
case eCSSProperty_font_variant: aValue = mFont->mVariant; break;
case eCSSProperty_font_weight: aValue = mFont->mWeight; break;
case eCSSProperty_font_size: aValue = mFont->mSize; break;
case eCSSProperty_font_size_adjust: aValue = mFont->mSizeAdjust; break;
case eCSSProperty_font_stretch: aValue = mFont->mStretch; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSColor
case eCSSProperty_color:
case eCSSProperty_background_color:
case eCSSProperty_background_image:
case eCSSProperty_background_repeat:
case eCSSProperty_background_attachment:
case eCSSProperty_background_x_position:
case eCSSProperty_background_y_position:
case eCSSProperty_cursor:
case eCSSProperty_opacity:
1998-04-14 00:24:54 +04:00
if (nsnull != mColor) {
switch (aProperty) {
case eCSSProperty_color: aValue = mColor->mColor; break;
case eCSSProperty_background_color: aValue = mColor->mBackColor; break;
case eCSSProperty_background_image: aValue = mColor->mBackImage; break;
case eCSSProperty_background_repeat: aValue = mColor->mBackRepeat; break;
case eCSSProperty_background_attachment: aValue = mColor->mBackAttachment; break;
case eCSSProperty_background_x_position: aValue = mColor->mBackPositionX; break;
case eCSSProperty_background_y_position: aValue = mColor->mBackPositionY; break;
case eCSSProperty_cursor:
1998-10-27 02:22:40 +03:00
if (nsnull != mColor->mCursor) {
aValue = mColor->mCursor->mValue;
}
break;
case eCSSProperty_opacity: aValue = mColor->mOpacity; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSText
case eCSSProperty_word_spacing:
case eCSSProperty_letter_spacing:
case eCSSProperty_text_decoration:
case eCSSProperty_vertical_align:
case eCSSProperty_text_transform:
case eCSSProperty_text_align:
case eCSSProperty_text_indent:
case eCSSProperty_unicode_bidi:
case eCSSProperty_line_height:
case eCSSProperty_white_space:
1998-04-14 00:24:54 +04:00
if (nsnull != mText) {
switch (aProperty) {
case eCSSProperty_word_spacing: aValue = mText->mWordSpacing; break;
case eCSSProperty_letter_spacing: aValue = mText->mLetterSpacing; break;
case eCSSProperty_text_decoration: aValue = mText->mDecoration; break;
case eCSSProperty_vertical_align: aValue = mText->mVerticalAlign; break;
case eCSSProperty_text_transform: aValue = mText->mTextTransform; break;
case eCSSProperty_text_align: aValue = mText->mTextAlign; break;
case eCSSProperty_text_indent: aValue = mText->mTextIndent; break;
case eCSSProperty_unicode_bidi: aValue = mText->mUnicodeBidi; break;
case eCSSProperty_line_height: aValue = mText->mLineHeight; break;
case eCSSProperty_white_space: aValue = mText->mWhiteSpace; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_text_shadow_color:
case eCSSProperty_text_shadow_x:
case eCSSProperty_text_shadow_y:
case eCSSProperty_text_shadow_radius:
1998-10-08 05:31:58 +04:00
if ((nsnull != mText) && (nsnull != mText->mTextShadow)) {
switch (aProperty) {
case eCSSProperty_text_shadow_color: aValue = mText->mTextShadow->mColor; break;
case eCSSProperty_text_shadow_x: aValue = mText->mTextShadow->mXOffset; break;
case eCSSProperty_text_shadow_y: aValue = mText->mTextShadow->mYOffset; break;
case eCSSProperty_text_shadow_radius: aValue = mText->mTextShadow->mRadius; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
break;
// nsCSSDisplay
case eCSSProperty_float:
case eCSSProperty_clear:
case eCSSProperty_display:
case eCSSProperty_direction:
case eCSSProperty_visibility:
case eCSSProperty_overflow:
1998-10-08 05:31:58 +04:00
if (nsnull != mDisplay) {
switch (aProperty) {
case eCSSProperty_float: aValue = mDisplay->mFloat; break;
case eCSSProperty_clear: aValue = mDisplay->mClear; break;
case eCSSProperty_display: aValue = mDisplay->mDisplay; break;
case eCSSProperty_direction: aValue = mDisplay->mDirection; break;
case eCSSProperty_visibility: aValue = mDisplay->mVisibility; break;
case eCSSProperty_overflow: aValue = mDisplay->mOverflow; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_clip_top:
case eCSSProperty_clip_right:
case eCSSProperty_clip_bottom:
case eCSSProperty_clip_left:
1998-10-08 05:31:58 +04:00
if ((nsnull != mDisplay) && (nsnull != mDisplay->mClip)) {
switch(aProperty) {
case eCSSProperty_clip_top: aValue = mDisplay->mClip->mTop; break;
case eCSSProperty_clip_right: aValue = mDisplay->mClip->mRight; break;
case eCSSProperty_clip_bottom: aValue = mDisplay->mClip->mBottom; break;
case eCSSProperty_clip_left: aValue = mDisplay->mClip->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
1998-04-14 00:24:54 +04:00
// nsCSSMargin
case eCSSProperty_margin_top:
case eCSSProperty_margin_right:
case eCSSProperty_margin_bottom:
case eCSSProperty_margin_left:
1998-04-14 00:24:54 +04:00
if ((nsnull != mMargin) && (nsnull != mMargin->mMargin)) {
switch (aProperty) {
case eCSSProperty_margin_top: aValue = mMargin->mMargin->mTop; break;
case eCSSProperty_margin_right: aValue = mMargin->mMargin->mRight; break;
case eCSSProperty_margin_bottom: aValue = mMargin->mMargin->mBottom; break;
case eCSSProperty_margin_left: aValue = mMargin->mMargin->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_padding_top:
case eCSSProperty_padding_right:
case eCSSProperty_padding_bottom:
case eCSSProperty_padding_left:
1998-04-14 00:24:54 +04:00
if ((nsnull != mMargin) && (nsnull != mMargin->mPadding)) {
switch (aProperty) {
case eCSSProperty_padding_top: aValue = mMargin->mPadding->mTop; break;
case eCSSProperty_padding_right: aValue = mMargin->mPadding->mRight; break;
case eCSSProperty_padding_bottom: aValue = mMargin->mPadding->mBottom; break;
case eCSSProperty_padding_left: aValue = mMargin->mPadding->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_border_top_width:
case eCSSProperty_border_right_width:
case eCSSProperty_border_bottom_width:
case eCSSProperty_border_left_width:
1998-10-08 05:31:58 +04:00
if ((nsnull != mMargin) && (nsnull != mMargin->mBorderWidth)) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_border_top_width: aValue = mMargin->mBorderWidth->mTop; break;
case eCSSProperty_border_right_width: aValue = mMargin->mBorderWidth->mRight; break;
case eCSSProperty_border_bottom_width: aValue = mMargin->mBorderWidth->mBottom; break;
case eCSSProperty_border_left_width: aValue = mMargin->mBorderWidth->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_border_top_color:
case eCSSProperty_border_right_color:
case eCSSProperty_border_bottom_color:
case eCSSProperty_border_left_color:
1998-10-08 05:31:58 +04:00
if ((nsnull != mMargin) && (nsnull != mMargin->mBorderColor)) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty_border_top_color: aValue = mMargin->mBorderColor->mTop; break;
case eCSSProperty_border_right_color: aValue = mMargin->mBorderColor->mRight; break;
case eCSSProperty_border_bottom_color: aValue = mMargin->mBorderColor->mBottom; break;
case eCSSProperty_border_left_color: aValue = mMargin->mBorderColor->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_border_top_style:
case eCSSProperty_border_right_style:
case eCSSProperty_border_bottom_style:
case eCSSProperty_border_left_style:
1998-10-08 05:31:58 +04:00
if ((nsnull != mMargin) && (nsnull != mMargin->mBorderStyle)) {
switch (aProperty) {
case eCSSProperty_border_top_style: aValue = mMargin->mBorderStyle->mTop; break;
case eCSSProperty_border_right_style: aValue = mMargin->mBorderStyle->mRight; break;
case eCSSProperty_border_bottom_style: aValue = mMargin->mBorderStyle->mBottom; break;
case eCSSProperty_border_left_style: aValue = mMargin->mBorderStyle->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty__moz_border_radius:
case eCSSProperty_outline_width:
case eCSSProperty_outline_color:
case eCSSProperty_outline_style:
1999-07-24 23:04:42 +04:00
case eCSSProperty_float_edge:
1998-10-08 05:31:58 +04:00
if (nsnull != mMargin) {
1998-04-14 00:24:54 +04:00
switch (aProperty) {
case eCSSProperty__moz_border_radius: aValue = mMargin->mBorderRadius; break;
case eCSSProperty_outline_width: aValue = mMargin->mOutlineWidth; break;
case eCSSProperty_outline_color: aValue = mMargin->mOutlineColor; break;
case eCSSProperty_outline_style: aValue = mMargin->mOutlineStyle; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_float_edge: aValue = mMargin->mFloatEdge; break;
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSPosition
case eCSSProperty_position:
case eCSSProperty_width:
case eCSSProperty_min_width:
case eCSSProperty_max_width:
case eCSSProperty_height:
case eCSSProperty_min_height:
case eCSSProperty_max_height:
1999-07-24 23:04:42 +04:00
case eCSSProperty_box_sizing:
case eCSSProperty_z_index:
1998-04-14 00:24:54 +04:00
if (nsnull != mPosition) {
switch (aProperty) {
case eCSSProperty_position: aValue = mPosition->mPosition; break;
case eCSSProperty_width: aValue = mPosition->mWidth; break;
case eCSSProperty_min_width: aValue = mPosition->mMinWidth; break;
case eCSSProperty_max_width: aValue = mPosition->mMaxWidth; break;
case eCSSProperty_height: aValue = mPosition->mHeight; break;
case eCSSProperty_min_height: aValue = mPosition->mMinHeight; break;
case eCSSProperty_max_height: aValue = mPosition->mMaxHeight; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_box_sizing: aValue = mPosition->mBoxSizing; break;
case eCSSProperty_z_index: aValue = mPosition->mZIndex; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
case eCSSProperty_top:
case eCSSProperty_right:
case eCSSProperty_bottom:
case eCSSProperty_left:
1998-10-08 05:31:58 +04:00
if ((nsnull != mPosition) && (nsnull != mPosition->mOffset)) {
switch (aProperty) {
case eCSSProperty_top: aValue = mPosition->mOffset->mTop; break;
case eCSSProperty_right: aValue = mPosition->mOffset->mRight; break;
case eCSSProperty_bottom: aValue = mPosition->mOffset->mBottom; break;
case eCSSProperty_left: aValue = mPosition->mOffset->mLeft; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
1998-04-14 00:24:54 +04:00
// nsCSSList
case eCSSProperty_list_style_type:
case eCSSProperty_list_style_image:
case eCSSProperty_list_style_position:
1998-04-14 00:24:54 +04:00
if (nsnull != mList) {
switch (aProperty) {
case eCSSProperty_list_style_type: aValue = mList->mType; break;
case eCSSProperty_list_style_image: aValue = mList->mImage; break;
case eCSSProperty_list_style_position: aValue = mList->mPosition; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-14 00:24:54 +04:00
}
}
else {
aValue.Reset();
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSTable
case eCSSProperty_border_collapse:
case eCSSProperty_border_x_spacing:
case eCSSProperty_border_y_spacing:
case eCSSProperty_caption_side:
case eCSSProperty_empty_cells:
case eCSSProperty_table_layout:
1998-10-08 05:31:58 +04:00
if (nsnull != mTable) {
1998-04-25 22:43:42 +04:00
switch (aProperty) {
case eCSSProperty_border_collapse: aValue = mTable->mBorderCollapse; break;
case eCSSProperty_border_x_spacing: aValue = mTable->mBorderSpacingX; break;
case eCSSProperty_border_y_spacing: aValue = mTable->mBorderSpacingY; break;
case eCSSProperty_caption_side: aValue = mTable->mCaptionSide; break;
case eCSSProperty_empty_cells: aValue = mTable->mEmptyCells; break;
case eCSSProperty_table_layout: aValue = mTable->mLayout; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-05-27 03:16:55 +04:00
}
}
else {
aValue.Reset();
}
break;
1998-10-08 05:31:58 +04:00
// nsCSSBreaks
case eCSSProperty_orphans:
case eCSSProperty_widows:
case eCSSProperty_page:
case eCSSProperty_page_break_after:
case eCSSProperty_page_break_before:
case eCSSProperty_page_break_inside:
1998-10-08 05:31:58 +04:00
if (nsnull != mBreaks) {
switch (aProperty) {
case eCSSProperty_orphans: aValue = mBreaks->mOrphans; break;
case eCSSProperty_widows: aValue = mBreaks->mWidows; break;
case eCSSProperty_page: aValue = mBreaks->mPage; break;
case eCSSProperty_page_break_after: aValue = mBreaks->mPageBreakAfter; break;
case eCSSProperty_page_break_before: aValue = mBreaks->mPageBreakBefore; break;
case eCSSProperty_page_break_inside: aValue = mBreaks->mPageBreakInside; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSPage
case eCSSProperty_marks:
case eCSSProperty_size_width:
case eCSSProperty_size_height:
1998-10-08 05:31:58 +04:00
if (nsnull != mPage) {
switch (aProperty) {
case eCSSProperty_marks: aValue = mPage->mMarks; break;
case eCSSProperty_size_width: aValue = mPage->mSizeWidth; break;
case eCSSProperty_size_height: aValue = mPage->mSizeHeight; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSContent
case eCSSProperty_content:
case eCSSProperty_counter_increment:
case eCSSProperty_counter_reset:
case eCSSProperty_marker_offset:
case eCSSProperty_quotes_open:
case eCSSProperty_quotes_close:
1998-10-08 05:31:58 +04:00
if (nsnull != mContent) {
switch (aProperty) {
case eCSSProperty_content:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent->mContent) {
aValue = mContent->mContent->mValue;
}
break;
case eCSSProperty_counter_increment:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent->mCounterIncrement) {
aValue = mContent->mCounterIncrement->mCounter;
}
break;
case eCSSProperty_counter_reset:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent->mCounterReset) {
aValue = mContent->mCounterReset->mCounter;
}
break;
case eCSSProperty_marker_offset: aValue = mContent->mMarkerOffset; break;
case eCSSProperty_quotes_open:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent->mQuotes) {
aValue = mContent->mQuotes->mOpen;
}
break;
case eCSSProperty_quotes_close:
1998-10-27 02:22:40 +03:00
if (nsnull != mContent->mQuotes) {
aValue = mContent->mQuotes->mClose;
}
break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
}
}
else {
aValue.Reset();
}
break;
// nsCSSUserInterface
case eCSSProperty_user_input:
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_modify:
case eCSSProperty_user_select:
1999-07-24 23:04:42 +04:00
case eCSSProperty_key_equivalent:
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_focus:
1999-07-24 23:04:42 +04:00
case eCSSProperty_resizer:
if (nsnull != mUserInterface) {
switch (aProperty) {
case eCSSProperty_user_input: aValue = mUserInterface->mUserInput; break;
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_modify: aValue = mUserInterface->mUserModify; break;
case eCSSProperty_user_select: aValue = mUserInterface->mUserSelect; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_key_equivalent:
if (nsnull != mUserInterface->mKeyEquivalent) {
aValue = mUserInterface->mKeyEquivalent->mValue;
}
break;
1999-09-04 03:40:35 +04:00
case eCSSProperty_user_focus: aValue = mUserInterface->mUserFocus; break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_resizer: aValue = mUserInterface->mResizer; break;
CSS_BOGUS_DEFAULT; // make compiler happy
1998-10-08 05:31:58 +04:00
}
}
else {
aValue.Reset();
}
break;
// nsCSSAural
case eCSSProperty_azimuth:
case eCSSProperty_elevation:
case eCSSProperty_cue_after:
case eCSSProperty_cue_before:
case eCSSProperty_pause_after:
case eCSSProperty_pause_before:
case eCSSProperty_pitch:
case eCSSProperty_pitch_range:
case eCSSProperty_play_during:
case eCSSProperty_play_during_flags:
case eCSSProperty_richness:
case eCSSProperty_speak:
case eCSSProperty_speak_header:
case eCSSProperty_speak_numeral:
case eCSSProperty_speak_punctuation:
case eCSSProperty_speech_rate:
case eCSSProperty_stress:
case eCSSProperty_voice_family:
case eCSSProperty_volume:
1998-10-08 05:31:58 +04:00
if (nsnull != mAural) {
switch (aProperty) {
case eCSSProperty_azimuth: aValue = mAural->mAzimuth; break;
case eCSSProperty_elevation: aValue = mAural->mElevation; break;
case eCSSProperty_cue_after: aValue = mAural->mCueAfter; break;
case eCSSProperty_cue_before: aValue = mAural->mCueBefore; break;
case eCSSProperty_pause_after: aValue = mAural->mPauseAfter; break;
case eCSSProperty_pause_before: aValue = mAural->mPauseBefore; break;
case eCSSProperty_pitch: aValue = mAural->mPitch; break;
case eCSSProperty_pitch_range: aValue = mAural->mPitchRange; break;
case eCSSProperty_play_during: aValue = mAural->mPlayDuring; break;
case eCSSProperty_play_during_flags: aValue = mAural->mPlayDuringFlags; break;
case eCSSProperty_richness: aValue = mAural->mRichness; break;
case eCSSProperty_speak: aValue = mAural->mSpeak; break;
case eCSSProperty_speak_header: aValue = mAural->mSpeakHeader; break;
case eCSSProperty_speak_numeral: aValue = mAural->mSpeakNumeral; break;
case eCSSProperty_speak_punctuation: aValue = mAural->mSpeakPunctuation; break;
case eCSSProperty_speech_rate: aValue = mAural->mSpeechRate; break;
case eCSSProperty_stress: aValue = mAural->mStress; break;
case eCSSProperty_voice_family: aValue = mAural->mVoiceFamily; break;
case eCSSProperty_volume: aValue = mAural->mVolume; break;
1999-07-24 23:04:42 +04:00
CSS_BOGUS_DEFAULT; // make compiler happy
1998-04-25 22:43:42 +04:00
}
}
else {
aValue.Reset();
}
break;
1998-10-08 05:31:58 +04:00
// Shorthands
case eCSSProperty_background:
case eCSSProperty_border:
case eCSSProperty_border_spacing:
case eCSSProperty_clip:
case eCSSProperty_cue:
case eCSSProperty_font:
case eCSSProperty_list_style:
case eCSSProperty_margin:
case eCSSProperty_outline:
case eCSSProperty_padding:
case eCSSProperty_pause:
case eCSSProperty_quotes:
case eCSSProperty_size:
case eCSSProperty_text_shadow:
case eCSSProperty_background_position:
case eCSSProperty_border_top:
case eCSSProperty_border_right:
case eCSSProperty_border_bottom:
case eCSSProperty_border_left:
case eCSSProperty_border_color:
case eCSSProperty_border_style:
case eCSSProperty_border_width:
1998-04-14 00:24:54 +04:00
NS_ERROR("can't query for shorthand properties");
default:
result = NS_ERROR_ILLEGAL_VALUE;
break;
}
return result;
}
1998-09-30 05:08:59 +04:00
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetValue(const nsString& aProperty, nsString& aValue)
1998-09-30 05:08:59 +04:00
{
nsCSSProperty propID = nsCSSProps::LookupProperty(aProperty);
1998-09-30 05:08:59 +04:00
return GetValue(propID, aValue);
}
PRBool CSSDeclarationImpl::AppendValueToString(nsCSSProperty aProperty, nsString& aResult)
1998-09-30 05:08:59 +04:00
{
nsCSSValue value;
GetValue(aProperty, value);
1998-10-08 05:31:58 +04:00
return AppendValueToString(aProperty, value, aResult);
}
1998-09-30 05:08:59 +04:00
PRBool CSSDeclarationImpl::AppendValueToString(nsCSSProperty aProperty, const nsCSSValue& aValue, nsString& aResult)
1998-10-08 05:31:58 +04:00
{
nsCSSUnit unit = aValue.GetUnit();
1998-09-30 05:08:59 +04:00
if (eCSSUnit_Null == unit) {
1998-10-08 05:31:58 +04:00
return PR_FALSE;
1998-09-30 05:08:59 +04:00
}
1998-10-27 02:22:40 +03:00
if ((eCSSUnit_String <= unit) && (unit <= eCSSUnit_Counters)) {
switch (unit) {
case eCSSUnit_URL: aResult.Append("url("); break;
case eCSSUnit_Attr: aResult.Append("attr("); break;
case eCSSUnit_Counter: aResult.Append("counter("); break;
case eCSSUnit_Counters: aResult.Append("counters("); break;
default: break;
}
1998-09-30 05:08:59 +04:00
nsAutoString buffer;
1998-10-08 05:31:58 +04:00
aValue.GetStringValue(buffer);
aResult.Append(buffer);
1998-09-30 05:08:59 +04:00
}
else if (eCSSUnit_Integer == unit) {
1998-10-08 05:31:58 +04:00
aResult.Append(aValue.GetIntValue(), 10);
1998-09-30 05:08:59 +04:00
}
else if (eCSSUnit_Enumerated == unit) {
if (eCSSProperty_text_decoration == aProperty) {
1998-10-08 05:31:58 +04:00
PRInt32 intValue = aValue.GetIntValue();
1998-09-30 05:08:59 +04:00
if (NS_STYLE_TEXT_DECORATION_NONE != intValue) {
PRInt32 mask;
for (mask = NS_STYLE_TEXT_DECORATION_UNDERLINE;
mask <= NS_STYLE_TEXT_DECORATION_BLINK;
mask <<= 1) {
if ((mask & intValue) == mask) {
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, mask));
1998-09-30 05:08:59 +04:00
intValue &= ~mask;
if (0 != intValue) { // more left
1998-10-08 05:31:58 +04:00
aResult.Append(' ');
1998-09-30 05:08:59 +04:00
}
}
}
}
else {
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_TEXT_DECORATION_NONE));
1998-09-30 05:08:59 +04:00
}
}
else if (eCSSProperty_azimuth == aProperty) {
1998-10-27 02:22:40 +03:00
PRInt32 intValue = aValue.GetIntValue();
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, (intValue & ~NS_STYLE_AZIMUTH_BEHIND)));
1998-10-27 02:22:40 +03:00
if ((NS_STYLE_AZIMUTH_BEHIND & intValue) != 0) {
aResult.Append(' ');
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_AZIMUTH_BEHIND));
1998-10-27 02:22:40 +03:00
}
}
else if (eCSSProperty_play_during_flags == aProperty) {
1998-10-27 02:22:40 +03:00
PRInt32 intValue = aValue.GetIntValue();
if ((NS_STYLE_PLAY_DURING_MIX & intValue) != 0) {
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_PLAY_DURING_MIX));
1998-10-27 02:22:40 +03:00
}
if ((NS_STYLE_PLAY_DURING_REPEAT & intValue) != 0) {
if (NS_STYLE_PLAY_DURING_REPEAT != intValue) {
aResult.Append(' ');
}
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_PLAY_DURING_REPEAT));
1998-10-27 02:22:40 +03:00
}
}
else if (eCSSProperty_marks == aProperty) {
1999-02-10 11:37:28 +03:00
PRInt32 intValue = aValue.GetIntValue();
if ((NS_STYLE_PAGE_MARKS_CROP & intValue) != 0) {
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_PAGE_MARKS_CROP));
1999-02-10 11:37:28 +03:00
}
if ((NS_STYLE_PAGE_MARKS_REGISTER & intValue) != 0) {
if ((NS_STYLE_PAGE_MARKS_CROP & intValue) != 0) {
aResult.Append(' ');
}
aResult.Append(nsCSSProps::LookupPropertyValue(aProperty, NS_STYLE_PAGE_MARKS_REGISTER));
1999-02-10 11:37:28 +03:00
}
}
1998-09-30 05:08:59 +04:00
else {
const nsString& name = nsCSSProps::LookupPropertyValue(aProperty, aValue.GetIntValue());
aResult.Append(name);
1998-09-30 05:08:59 +04:00
}
}
else if (eCSSUnit_Color == unit){
1998-10-08 05:31:58 +04:00
nscolor color = aValue.GetColorValue();
1998-10-27 02:22:40 +03:00
aResult.Append("rgb(");
aResult.Append(NS_GET_R(color), 10);
aResult.Append(",");
aResult.Append(NS_GET_G(color), 10);
aResult.Append(",");
aResult.Append(NS_GET_B(color), 10);
aResult.Append(')');
1998-09-30 05:08:59 +04:00
}
else if (eCSSUnit_Percent == unit) {
1998-10-08 05:31:58 +04:00
aResult.Append(aValue.GetPercentValue() * 100.0f);
1998-09-30 05:08:59 +04:00
}
else if (eCSSUnit_Percent < unit) { // length unit
1998-10-08 05:31:58 +04:00
aResult.Append(aValue.GetFloatValue());
1998-09-30 05:08:59 +04:00
}
switch (unit) {
1998-10-27 02:22:40 +03:00
case eCSSUnit_Null: break;
case eCSSUnit_Auto: aResult.Append("auto"); break;
case eCSSUnit_Inherit: aResult.Append("inherit"); break;
case eCSSUnit_None: aResult.Append("none"); break;
case eCSSUnit_Normal: aResult.Append("normal"); break;
case eCSSUnit_String: break;
case eCSSUnit_URL:
case eCSSUnit_Attr:
case eCSSUnit_Counter:
case eCSSUnit_Counters: aResult.Append(')'); break;
case eCSSUnit_Integer: break;
case eCSSUnit_Enumerated: break;
case eCSSUnit_Color: break;
case eCSSUnit_Percent: aResult.Append("%"); break;
case eCSSUnit_Number: break;
case eCSSUnit_Inch: aResult.Append("in"); break;
case eCSSUnit_Foot: aResult.Append("ft"); break;
case eCSSUnit_Mile: aResult.Append("mi"); break;
case eCSSUnit_Millimeter: aResult.Append("mm"); break;
case eCSSUnit_Centimeter: aResult.Append("cm"); break;
case eCSSUnit_Meter: aResult.Append("m"); break;
case eCSSUnit_Kilometer: aResult.Append("km"); break;
case eCSSUnit_Point: aResult.Append("pt"); break;
case eCSSUnit_Pica: aResult.Append("pc"); break;
case eCSSUnit_Didot: aResult.Append("dt"); break;
case eCSSUnit_Cicero: aResult.Append("cc"); break;
case eCSSUnit_EM: aResult.Append("em"); break;
case eCSSUnit_EN: aResult.Append("en"); break;
case eCSSUnit_XHeight: aResult.Append("ex"); break;
case eCSSUnit_CapHeight: aResult.Append("cap"); break;
case eCSSUnit_Char: aResult.Append("ch"); break;
1998-10-27 02:22:40 +03:00
case eCSSUnit_Pixel: aResult.Append("px"); break;
case eCSSUnit_Degree: aResult.Append("deg"); break;
case eCSSUnit_Grad: aResult.Append("grad"); break;
case eCSSUnit_Radian: aResult.Append("rad"); break;
case eCSSUnit_Hertz: aResult.Append("Hz"); break;
case eCSSUnit_Kilohertz: aResult.Append("kHz"); break;
case eCSSUnit_Seconds: aResult.Append("s"); break;
case eCSSUnit_Milliseconds: aResult.Append("ms"); break;
1998-10-08 05:31:58 +04:00
}
return PR_TRUE;
}
#define HAS_VALUE(strct,data) \
((nsnull != strct) && (eCSSUnit_Null != strct->data.GetUnit()))
#define HAS_RECT(strct,rect) \
((nsnull != strct) && (nsnull != strct->rect) && \
(eCSSUnit_Null != strct->rect->mTop.GetUnit()) && \
(eCSSUnit_Null != strct->rect->mRight.GetUnit()) && \
(eCSSUnit_Null != strct->rect->mBottom.GetUnit()) && \
(eCSSUnit_Null != strct->rect->mLeft.GetUnit()))
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetValue(nsCSSProperty aProperty, nsString& aValue)
1998-10-08 05:31:58 +04:00
{
PRBool isImportant = PR_FALSE;
GetValueIsImportant(aProperty, isImportant);
if (PR_TRUE == isImportant) {
return mImportant->GetValue(aProperty, aValue);
}
1998-10-08 05:31:58 +04:00
aValue.Truncate(0);
1998-09-30 05:08:59 +04:00
1998-10-08 05:31:58 +04:00
// shorthands
switch (aProperty) {
case eCSSProperty_background:
if (AppendValueToString(eCSSProperty_background_color, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_background_image, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_background_repeat, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_background_attachment, aValue)) aValue.Append(' ');
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mColor,mBackPositionX) && HAS_VALUE(mColor,mBackPositionY)) {
AppendValueToString(eCSSProperty_background_x_position, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_background_y_position, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_border:
if (AppendValueToString(eCSSProperty_border_top_width, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_border_top_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_border_top_color, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_border_spacing:
if (AppendValueToString(eCSSProperty_border_x_spacing, aValue)) {
1998-10-27 02:22:40 +03:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_border_y_spacing, aValue);
1998-10-27 02:22:40 +03:00
}
break;
case eCSSProperty_clip:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mDisplay,mClip)) {
aValue.Append("rect(");
AppendValueToString(eCSSProperty_clip_top, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_clip_right, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_clip_bottom, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_clip_left, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(")");
}
break;
case eCSSProperty_cue:
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mAural,mCueAfter) && HAS_VALUE(mAural,mCueBefore)) {
AppendValueToString(eCSSProperty_cue_after, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_cue_before, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_cursor:
1998-10-27 02:22:40 +03:00
if ((nsnull != mColor) && (nsnull != mColor->mCursor)) {
nsCSSValueList* cursor = mColor->mCursor;
do {
AppendValueToString(eCSSProperty_cursor, cursor->mValue, aValue);
1998-10-27 02:22:40 +03:00
cursor = cursor->mNext;
if (nsnull != cursor) {
aValue.Append(' ');
}
} while (nsnull != cursor);
}
break;
case eCSSProperty_font:
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mFont,mSize)) {
if (AppendValueToString(eCSSProperty_font_style, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_font_variant, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_font_weight, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_font_size, aValue);
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mText,mLineHeight)) {
aValue.Append('/');
AppendValueToString(eCSSProperty_line_height, aValue);
1998-10-08 05:31:58 +04:00
}
aValue.Append(' ');
AppendValueToString(eCSSProperty_font_family, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_list_style:
if (AppendValueToString(eCSSProperty_list_style_type, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_list_style_position, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_list_style_image, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_margin:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mMargin,mMargin)) {
AppendValueToString(eCSSProperty_margin_top, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_margin_right, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_margin_bottom, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_margin_left, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_outline:
if (AppendValueToString(eCSSProperty_outline_color, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_outline_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_outline_width, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_padding:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mMargin,mPadding)) {
AppendValueToString(eCSSProperty_padding_top, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_padding_right, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_padding_bottom, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_padding_left, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_pause:
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mAural,mPauseAfter) && HAS_VALUE(mAural,mPauseBefore)) {
AppendValueToString(eCSSProperty_pause_after, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_pause_before, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_size:
1998-10-27 02:22:40 +03:00
if (HAS_VALUE(mPage,mSizeWidth) && HAS_VALUE(mPage,mSizeHeight)) {
AppendValueToString(eCSSProperty_size_width, aValue);
1998-10-27 02:22:40 +03:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_size_height, aValue);
1998-10-27 02:22:40 +03:00
}
break;
case eCSSProperty_text_shadow:
1998-10-08 05:31:58 +04:00
if ((nsnull != mText) && (nsnull != mText->mTextShadow)) {
1998-10-27 02:22:40 +03:00
if (mText->mTextShadow->mXOffset.IsLengthUnit()) {
1998-10-08 05:31:58 +04:00
nsCSSShadow* shadow = mText->mTextShadow;
while (nsnull != shadow) {
if (AppendValueToString(eCSSProperty_text_shadow_color, shadow->mColor, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_text_shadow_x, shadow->mXOffset, aValue)) {
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_text_shadow_y, shadow->mYOffset, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
}
if (AppendValueToString(eCSSProperty_text_shadow_radius, shadow->mRadius, aValue)) aValue.Append(' ');
1998-10-08 05:31:58 +04:00
shadow = shadow->mNext;
}
}
else { // none or inherit
AppendValueToString(eCSSProperty_text_shadow_x, aValue);
1998-10-08 05:31:58 +04:00
}
}
break;
case eCSSProperty_background_position:
1998-10-08 05:31:58 +04:00
if (HAS_VALUE(mColor,mBackPositionX) && HAS_VALUE(mColor,mBackPositionY)) {
AppendValueToString(eCSSProperty_background_x_position, aValue);
1998-10-08 05:31:58 +04:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_background_y_position, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_border_top:
if (AppendValueToString(eCSSProperty_border_top_width, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_border_top_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_border_top_color, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_border_right:
if (AppendValueToString(eCSSProperty_border_right_width, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_border_right_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_border_right_color, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_border_bottom:
if (AppendValueToString(eCSSProperty_border_bottom_width, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_border_bottom_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_border_bottom_color, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_border_left:
if (AppendValueToString(eCSSProperty_border_left_width, aValue)) aValue.Append(' ');
if (AppendValueToString(eCSSProperty_border_left_style, aValue)) aValue.Append(' ');
AppendValueToString(eCSSProperty_border_left_color, aValue);
1998-10-08 05:31:58 +04:00
break;
case eCSSProperty_border_color:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mMargin,mBorderColor)) {
AppendValueToString(eCSSProperty_border_top_color, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_right_color, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_bottom_color, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_left_color, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_border_style:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mMargin,mBorderStyle)) {
AppendValueToString(eCSSProperty_border_top_style, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_right_style, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_bottom_style, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_left_style, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_border_width:
1998-10-08 05:31:58 +04:00
if (HAS_RECT(mMargin,mBorderWidth)) {
AppendValueToString(eCSSProperty_border_top_width, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_right_width, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_bottom_width, aValue); aValue.Append(' ');
AppendValueToString(eCSSProperty_border_left_width, aValue);
1998-10-08 05:31:58 +04:00
}
break;
case eCSSProperty_content:
1998-10-27 02:22:40 +03:00
if ((nsnull != mContent) && (nsnull != mContent->mContent)) {
nsCSSValueList* content = mContent->mContent;
do {
AppendValueToString(eCSSProperty_content, content->mValue, aValue);
1998-10-27 02:22:40 +03:00
content = content->mNext;
if (nsnull != content) {
aValue.Append(' ');
}
} while (nsnull != content);
}
break;
case eCSSProperty_counter_increment:
1998-10-27 02:22:40 +03:00
if ((nsnull != mContent) && (nsnull != mContent->mCounterIncrement)) {
nsCSSCounterData* data = mContent->mCounterIncrement;
do {
if (AppendValueToString(eCSSProperty_counter_increment, data->mCounter, aValue)) {
1998-10-27 02:22:40 +03:00
if (HAS_VALUE(data, mValue)) {
aValue.Append(' ');
AppendValueToString(eCSSProperty_counter_increment, data->mValue, aValue);
1998-10-27 02:22:40 +03:00
}
}
data = data->mNext;
if (nsnull != data) {
aValue.Append(' ');
}
} while (nsnull != data);
}
break;
case eCSSProperty_counter_reset:
1998-10-27 02:22:40 +03:00
if ((nsnull != mContent) && (nsnull != mContent->mCounterReset)) {
nsCSSCounterData* data = mContent->mCounterReset;
do {
if (AppendValueToString(eCSSProperty_counter_reset, data->mCounter, aValue)) {
1998-10-27 02:22:40 +03:00
if (HAS_VALUE(data, mValue)) {
aValue.Append(' ');
AppendValueToString(eCSSProperty_counter_reset, data->mValue, aValue);
1998-10-27 02:22:40 +03:00
}
}
data = data->mNext;
if (nsnull != data) {
aValue.Append(' ');
}
} while (nsnull != data);
}
break;
case eCSSProperty_play_during:
1998-10-27 02:22:40 +03:00
if (HAS_VALUE(mAural, mPlayDuring)) {
AppendValueToString(eCSSProperty_play_during, aValue);
1998-10-27 02:22:40 +03:00
if (HAS_VALUE(mAural, mPlayDuringFlags)) {
aValue.Append(' ');
AppendValueToString(eCSSProperty_play_during_flags, aValue);
1998-10-27 02:22:40 +03:00
}
}
break;
case eCSSProperty_quotes:
1998-10-27 02:22:40 +03:00
if ((nsnull != mContent) && (nsnull != mContent->mQuotes)) {
nsCSSQuotes* quotes = mContent->mQuotes;
do {
AppendValueToString(eCSSProperty_quotes_open, quotes->mOpen, aValue);
1998-10-27 02:22:40 +03:00
aValue.Append(' ');
AppendValueToString(eCSSProperty_quotes_close, quotes->mClose, aValue);
1998-10-27 02:22:40 +03:00
quotes = quotes->mNext;
if (nsnull != quotes) {
aValue.Append(' ');
}
} while (nsnull != quotes);
}
break;
1999-07-24 23:04:42 +04:00
case eCSSProperty_key_equivalent:
if ((nsnull != mUserInterface) && (nsnull != mUserInterface->mKeyEquivalent)) {
nsCSSValueList* keyEquiv = mUserInterface->mKeyEquivalent;
do {
AppendValueToString(eCSSProperty_key_equivalent, keyEquiv->mValue, aValue);
keyEquiv = keyEquiv->mNext;
if (nsnull != keyEquiv) {
aValue.Append(' ');
}
} while (nsnull != keyEquiv);
}
break;
1998-10-08 05:31:58 +04:00
default:
AppendValueToString(aProperty, aValue);
break;
}
1998-09-30 05:08:59 +04:00
return NS_OK;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetImportantValues(nsICSSDeclaration*& aResult)
1998-06-26 09:51:55 +04:00
{
if (nsnull != mImportant) {
aResult = mImportant;
NS_ADDREF(aResult);
}
else {
aResult = nsnull;
}
return NS_OK;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetValueIsImportant(const nsString& aProperty,
PRBool& aIsImportant)
{
nsCSSProperty propID = nsCSSProps::LookupProperty(aProperty);
return GetValueIsImportant(propID, aIsImportant);
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetValueIsImportant(nsCSSProperty aProperty,
1999-01-06 04:25:39 +03:00
PRBool& aIsImportant)
{
nsCSSValue val;
1998-09-10 05:19:26 +04:00
if (nsnull != mImportant) {
mImportant->GetValue(aProperty, val);
if (eCSSUnit_Null != val.GetUnit()) {
aIsImportant = PR_TRUE;
1998-09-10 05:19:26 +04:00
}
else {
aIsImportant = PR_FALSE;
}
}
else {
aIsImportant = PR_FALSE;
}
return NS_OK;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::ToString(nsString& aString)
{
1998-09-10 05:19:26 +04:00
if (nsnull != mOrder) {
PRInt32 count = mOrder->Count();
PRInt32 index;
for (index = 0; index < count; index++) {
nsCSSProperty property = (nsCSSProperty)(PRInt32)mOrder->ElementAt(index);
1998-09-10 05:19:26 +04:00
if (0 <= property) {
aString.Append(nsCSSProps::GetStringValue(property));
1998-09-10 05:19:26 +04:00
aString.Append(": ");
1998-09-30 05:08:59 +04:00
nsAutoString value;
GetValue(property, value);
aString.Append(value);
if (index < count) {
aString.Append("; ");
1998-09-10 05:19:26 +04:00
}
}
else { // is comment
aString.Append("/* ");
1999-06-03 05:58:11 +04:00
nsString* comment = mComments->StringAt((-1) - property);
1998-09-10 05:19:26 +04:00
aString.Append(*comment);
aString.Append(" */ ");
}
}
}
return NS_OK;
}
1998-09-10 05:19:26 +04:00
void CSSDeclarationImpl::List(FILE* out, PRInt32 aIndent) const
{
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
fputs("{ ", out);
if (nsnull != mFont) {
mFont->List(out);
}
if (nsnull != mColor) {
mColor->List(out);
}
if (nsnull != mText) {
mText->List(out);
}
1998-10-08 05:31:58 +04:00
if (nsnull != mDisplay) {
mDisplay->List(out);
}
1998-09-10 05:19:26 +04:00
if (nsnull != mMargin) {
mMargin->List(out);
}
if (nsnull != mPosition) {
mPosition->List(out);
}
if (nsnull != mList) {
mList->List(out);
}
1998-10-08 05:31:58 +04:00
if (nsnull != mTable) {
mTable->List(out);
}
if (nsnull != mBreaks) {
mBreaks->List(out);
}
if (nsnull != mPage) {
mPage->List(out);
}
if (nsnull != mContent) {
mContent->List(out);
}
1999-07-24 23:04:42 +04:00
if (nsnull != mUserInterface) {
mUserInterface->List(out);
}
1998-10-08 05:31:58 +04:00
if (nsnull != mAural) {
mAural->List(out);
1998-09-10 05:19:26 +04:00
}
fputs("}", out);
if (nsnull != mImportant) {
fputs(" ! important ", out);
mImportant->List(out, 0);
}
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::Count(PRUint32* aCount)
{
if (nsnull != mOrder) {
*aCount = (PRUint32)mOrder->Count();
}
else {
*aCount = 0;
}
return NS_OK;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetNthProperty(PRUint32 aIndex, nsString& aReturn)
{
aReturn.SetLength(0);
if (nsnull != mOrder) {
nsCSSProperty property = (nsCSSProperty)(PRInt32)mOrder->ElementAt(aIndex);
if (0 <= property) {
aReturn.Append(nsCSSProps::GetStringValue(property));
}
}
return NS_OK;
}
1999-01-06 04:25:39 +03:00
NS_IMETHODIMP
CSSDeclarationImpl::GetStyleImpact(PRInt32* aHint) const
{
NS_ASSERTION(nsnull != aHint, "null pointer");
if (nsnull == aHint) {
return NS_ERROR_NULL_POINTER;
}
PRInt32 hint = NS_STYLE_HINT_NONE;
1999-01-06 04:25:39 +03:00
if (nsnull != mOrder) {
PRInt32 count = mOrder->Count();
PRInt32 index;
for (index = 0; index < count; index++) {
nsCSSProperty property = (nsCSSProperty)(PRInt32)mOrder->ElementAt(index);
if (eCSSProperty_UNKNOWN < property) {
1999-01-06 04:25:39 +03:00
if (hint < nsCSSProps::kHintTable[property]) {
hint = nsCSSProps::kHintTable[property];
}
}
}
}
*aHint = hint;
return NS_OK;
}
1999-06-03 05:58:11 +04:00
NS_IMETHODIMP
CSSDeclarationImpl::Clone(nsICSSDeclaration*& aClone) const
{
CSSDeclarationImpl* clone = new CSSDeclarationImpl(*this);
if (clone) {
return clone->QueryInterface(kICSSDeclarationIID, (void**)&aClone);
}
aClone = nsnull;
return NS_ERROR_OUT_OF_MEMORY;
}
1998-09-10 05:19:26 +04:00
NS_HTML nsresult
NS_NewCSSDeclaration(nsICSSDeclaration** aInstancePtrResult)
{
if (aInstancePtrResult == nsnull) {
return NS_ERROR_NULL_POINTER;
}
CSSDeclarationImpl *it;
NS_NEWXPCOM(it, CSSDeclarationImpl);
1998-09-10 05:19:26 +04:00
if (nsnull == it) {
return NS_ERROR_OUT_OF_MEMORY;
}
return it->QueryInterface(kICSSDeclarationIID, (void **) aInstancePtrResult);
}