gecko-dev/layout/style/nsCSSStruct.cpp

338 lines
7.0 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
1998-04-13 20:24:54 +00:00
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
1998-04-13 20:24:54 +00:00
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
1998-04-13 20:24:54 +00:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Daniel Glazman <glazman@netscape.com>
* Mats Palmgren <mats.palmgren@bredband.net>
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/*
* temporary (expanded) representation of the property-value pairs
* within a CSS declaration using during parsing and mutation, and
* representation of complex values for CSS properties
*/
#include "nsCSSStruct.h"
1998-04-13 20:24:54 +00:00
#include "nsString.h"
1998-10-08 01:31:58 +00:00
// --- nsCSSFont -----------------
1998-04-13 20:24:54 +00:00
1999-06-03 01:58:11 +00:00
nsCSSFont::nsCSSFont(void)
{
MOZ_COUNT_CTOR(nsCSSFont);
1999-06-03 01:58:11 +00:00
}
nsCSSFont::~nsCSSFont(void)
{
MOZ_COUNT_DTOR(nsCSSFont);
}
1998-10-08 01:31:58 +00:00
// --- nsCSSColor -----------------
1998-10-26 23:22:40 +00:00
nsCSSColor::nsCSSColor(void)
: mBackImage(nsnull)
, mBackRepeat(nsnull)
, mBackAttachment(nsnull)
, mBackClip(nsnull)
, mBackOrigin(nsnull)
1998-10-26 23:22:40 +00:00
{
MOZ_COUNT_CTOR(nsCSSColor);
1998-10-26 23:22:40 +00:00
}
nsCSSColor::~nsCSSColor(void)
{
MOZ_COUNT_DTOR(nsCSSColor);
delete mBackImage;
delete mBackRepeat;
delete mBackAttachment;
delete mBackClip;
delete mBackOrigin;
1998-10-26 23:22:40 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSText -----------------
nsCSSText::nsCSSText(void)
: mTextShadow(nsnull)
{
MOZ_COUNT_CTOR(nsCSSText);
1998-10-08 01:31:58 +00:00
}
nsCSSText::~nsCSSText(void)
{
MOZ_COUNT_DTOR(nsCSSText);
delete mTextShadow;
1998-10-08 01:31:58 +00:00
}
// --- nsCSSCornerSizes -----------------
nsCSSCornerSizes::nsCSSCornerSizes(void)
{
MOZ_COUNT_CTOR(nsCSSCornerSizes);
}
nsCSSCornerSizes::nsCSSCornerSizes(const nsCSSCornerSizes& aCopy)
: mTopLeft(aCopy.mTopLeft),
mTopRight(aCopy.mTopRight),
mBottomRight(aCopy.mBottomRight),
mBottomLeft(aCopy.mBottomLeft)
{
MOZ_COUNT_CTOR(nsCSSCornerSizes);
}
nsCSSCornerSizes::~nsCSSCornerSizes()
{
MOZ_COUNT_DTOR(nsCSSCornerSizes);
}
void
nsCSSCornerSizes::Reset()
{
NS_FOR_CSS_FULL_CORNERS(corner) {
this->GetCorner(corner).Reset();
}
}
PR_STATIC_ASSERT(NS_CORNER_TOP_LEFT == 0 && NS_CORNER_TOP_RIGHT == 1 && \
NS_CORNER_BOTTOM_RIGHT == 2 && NS_CORNER_BOTTOM_LEFT == 3);
/* static */ const nsCSSCornerSizes::corner_type
nsCSSCornerSizes::corners[4] = {
&nsCSSCornerSizes::mTopLeft,
&nsCSSCornerSizes::mTopRight,
&nsCSSCornerSizes::mBottomRight,
&nsCSSCornerSizes::mBottomLeft,
};
// --- nsCSSValueListRect -----------------
nsCSSValueListRect::nsCSSValueListRect(void)
: mTop(nsnull),
mRight(nsnull),
mBottom(nsnull),
mLeft(nsnull)
{
MOZ_COUNT_CTOR(nsCSSValueListRect);
}
nsCSSValueListRect::nsCSSValueListRect(const nsCSSValueListRect& aCopy)
: mTop(aCopy.mTop),
mRight(aCopy.mRight),
mBottom(aCopy.mBottom),
mLeft(aCopy.mLeft)
{
MOZ_COUNT_CTOR(nsCSSValueListRect);
}
nsCSSValueListRect::~nsCSSValueListRect()
{
MOZ_COUNT_DTOR(nsCSSValueListRect);
}
/* static */ const nsCSSValueListRect::side_type
nsCSSValueListRect::sides[4] = {
&nsCSSValueListRect::mTop,
&nsCSSValueListRect::mRight,
&nsCSSValueListRect::mBottom,
&nsCSSValueListRect::mLeft,
};
1998-10-08 01:31:58 +00:00
// --- nsCSSDisplay -----------------
/* During allocation, null-out the transform list. */
nsCSSDisplay::nsCSSDisplay(void) : mTransform(nsnull)
, mTransitionProperty(nsnull)
, mTransitionDuration(nsnull)
, mTransitionTimingFunction(nsnull)
, mTransitionDelay(nsnull)
1998-05-26 23:16:55 +00:00
{
MOZ_COUNT_CTOR(nsCSSDisplay);
1998-05-26 23:16:55 +00:00
}
nsCSSDisplay::~nsCSSDisplay(void)
{
MOZ_COUNT_DTOR(nsCSSDisplay);
1998-04-25 18:43:42 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSMargin -----------------
1998-04-13 20:24:54 +00:00
nsCSSMargin::nsCSSMargin(void)
: mBoxShadow(nsnull)
1998-04-13 20:24:54 +00:00
{
MOZ_COUNT_CTOR(nsCSSMargin);
1998-04-13 20:24:54 +00:00
}
nsCSSMargin::~nsCSSMargin(void)
{
MOZ_COUNT_DTOR(nsCSSMargin);
delete mBoxShadow;
1998-04-13 20:24:54 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSPosition -----------------
nsCSSPosition::nsCSSPosition(void)
{
MOZ_COUNT_CTOR(nsCSSPosition);
1998-10-08 01:31:58 +00:00
}
nsCSSPosition::~nsCSSPosition(void)
{
MOZ_COUNT_DTOR(nsCSSPosition);
1998-04-13 20:24:54 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSList -----------------
1999-06-03 01:58:11 +00:00
nsCSSList::nsCSSList(void)
{
MOZ_COUNT_CTOR(nsCSSList);
1999-06-03 01:58:11 +00:00
}
nsCSSList::~nsCSSList(void)
{
MOZ_COUNT_DTOR(nsCSSList);
1998-04-13 20:24:54 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSTable -----------------
1999-06-03 01:58:11 +00:00
nsCSSTable::nsCSSTable(void)
{
MOZ_COUNT_CTOR(nsCSSTable);
1999-06-03 01:58:11 +00:00
}
nsCSSTable::~nsCSSTable(void)
{
MOZ_COUNT_DTOR(nsCSSTable);
}
1998-10-08 01:31:58 +00:00
// --- nsCSSBreaks -----------------
1999-06-03 01:58:11 +00:00
nsCSSBreaks::nsCSSBreaks(void)
{
MOZ_COUNT_CTOR(nsCSSBreaks);
1999-06-03 01:58:11 +00:00
}
nsCSSBreaks::~nsCSSBreaks(void)
{
MOZ_COUNT_DTOR(nsCSSBreaks);
}
1998-10-08 01:31:58 +00:00
// --- nsCSSPage -----------------
1999-06-03 01:58:11 +00:00
nsCSSPage::nsCSSPage(void)
{
MOZ_COUNT_CTOR(nsCSSPage);
1999-06-03 01:58:11 +00:00
}
nsCSSPage::~nsCSSPage(void)
{
MOZ_COUNT_DTOR(nsCSSPage);
}
1998-10-08 01:31:58 +00:00
// --- nsCSSContent -----------------
1998-10-26 23:22:40 +00:00
nsCSSContent::nsCSSContent(void)
: mContent(nsnull)
1998-10-26 23:22:40 +00:00
{
MOZ_COUNT_CTOR(nsCSSContent);
1998-10-26 23:22:40 +00:00
}
nsCSSContent::~nsCSSContent(void)
{
MOZ_COUNT_DTOR(nsCSSContent);
delete mContent;
1998-10-26 23:22:40 +00:00
}
1999-07-24 19:04:42 +00:00
// --- nsCSSUserInterface -----------------
nsCSSUserInterface::nsCSSUserInterface(void)
: mCursor(nsnull)
1999-07-24 19:04:42 +00:00
{
MOZ_COUNT_CTOR(nsCSSUserInterface);
1999-07-24 19:04:42 +00:00
}
nsCSSUserInterface::~nsCSSUserInterface(void)
{
MOZ_COUNT_DTOR(nsCSSUserInterface);
delete mCursor;
1999-07-24 19:04:42 +00:00
}
1998-10-08 01:31:58 +00:00
// --- nsCSSAural -----------------
1999-06-03 01:58:11 +00:00
nsCSSAural::nsCSSAural(void)
{
MOZ_COUNT_CTOR(nsCSSAural);
1999-06-03 01:58:11 +00:00
}
nsCSSAural::~nsCSSAural(void)
{
MOZ_COUNT_DTOR(nsCSSAural);
}
2001-03-06 02:30:30 +00:00
// --- nsCSSXUL -----------------
nsCSSXUL::nsCSSXUL(void)
{
MOZ_COUNT_CTOR(nsCSSXUL);
}
nsCSSXUL::~nsCSSXUL(void)
{
MOZ_COUNT_DTOR(nsCSSXUL);
}
// --- nsCSSColumn -----------------
nsCSSColumn::nsCSSColumn(void)
{
MOZ_COUNT_CTOR(nsCSSColumn);
}
nsCSSColumn::~nsCSSColumn(void)
{
MOZ_COUNT_DTOR(nsCSSColumn);
}
// --- nsCSSSVG -----------------
nsCSSSVG::nsCSSSVG(void) : mStrokeDasharray(nsnull)
{
MOZ_COUNT_CTOR(nsCSSSVG);
}
nsCSSSVG::~nsCSSSVG(void)
{
MOZ_COUNT_DTOR(nsCSSSVG);
delete mStrokeDasharray;
}