File indexing completed on 2024-04-28 15:22:38

0001 /**
0002  * This file is part of the DOM implementation for KDE.
0003  *
0004  * Copyright 1999 Lars Knoll (knoll@kde.org)
0005  *
0006  * This library is free software; you can redistribute it and/or
0007  * modify it under the terms of the GNU Library General Public
0008  * License as published by the Free Software Foundation; either
0009  * version 2 of the License, or (at your option) any later version.
0010  *
0011  * This library is distributed in the hope that it will be useful,
0012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014  * Library General Public License for more details.
0015  *
0016  * You should have received a copy of the GNU Library General Public License
0017  * along with this library; see the file COPYING.LIB.  If not, write to
0018  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0019  * Boston, MA 02110-1301, USA.
0020  *
0021  */
0022 #include "DOMException.h"
0023 #include "DOMString.h"
0024 
0025 #include "CSS2AzimuthImpl.h"
0026 using namespace DOM;
0027 
0028 CSS2AzimuthImpl::CSS2AzimuthImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0029 {
0030 }
0031 
0032 CSS2AzimuthImpl::~CSS2AzimuthImpl()
0033 {
0034 }
0035 
0036 unsigned short CSS2AzimuthImpl::azimuthType() const
0037 {
0038 }
0039 
0040 DOMString CSS2AzimuthImpl::identifier() const
0041 {
0042 }
0043 
0044 bool CSS2AzimuthImpl::behind() const
0045 {
0046 }
0047 
0048 void CSS2AzimuthImpl::setAngleValue(const unsigned short &unitType, const float &floatValue)
0049 {
0050 }
0051 
0052 float CSS2AzimuthImpl::getAngleValue(const unsigned short &unitType)
0053 {
0054 }
0055 
0056 void CSS2AzimuthImpl::setIdentifier(const DOMString &identifier, const bool &behind)
0057 {
0058 }
0059 
0060 #include "CSS2BackgroundPositionImpl.h"
0061 CSS2BackgroundPositionImpl::CSS2BackgroundPositionImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0062 {
0063 }
0064 
0065 CSS2BackgroundPositionImpl::~CSS2BackgroundPositionImpl()
0066 {
0067 }
0068 
0069 unsigned short CSS2BackgroundPositionImpl::horizontalType() const
0070 {
0071 }
0072 
0073 unsigned short CSS2BackgroundPositionImpl::verticalType() const
0074 {
0075 }
0076 
0077 DOMString CSS2BackgroundPositionImpl::horizontalIdentifier() const
0078 {
0079 }
0080 
0081 DOMString CSS2BackgroundPositionImpl::verticalIdentifier() const
0082 {
0083 }
0084 
0085 float CSS2BackgroundPositionImpl::getHorizontalPosition(const float &horizontalType)
0086 {
0087 }
0088 
0089 float CSS2BackgroundPositionImpl::getVerticalPosition(const float &verticalType)
0090 {
0091 }
0092 
0093 void CSS2BackgroundPositionImpl::setHorizontalPosition(const unsigned short &horizontalType, const float &value)
0094 {
0095 }
0096 
0097 void CSS2BackgroundPositionImpl::setVerticalPosition(const unsigned short &verticalType, const float &value)
0098 {
0099 }
0100 
0101 void CSS2BackgroundPositionImpl::setPositionIdentifier(const DOMString &horizontalIdentifier, const DOMString &verticalIdentifier)
0102 {
0103 }
0104 
0105 #include "CSS2BorderSpacingImpl.h"
0106 CSS2BorderSpacingImpl::CSS2BorderSpacingImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0107 {
0108 }
0109 
0110 CSS2BorderSpacingImpl::~CSS2BorderSpacingImpl()
0111 {
0112 }
0113 
0114 unsigned short CSS2BorderSpacingImpl::horizontalType() const
0115 {
0116 }
0117 
0118 unsigned short CSS2BorderSpacingImpl::verticalType() const
0119 {
0120 }
0121 
0122 float CSS2BorderSpacingImpl::getHorizontalSpacing(const float &horizontalType)
0123 {
0124 }
0125 
0126 float CSS2BorderSpacingImpl::getVerticalSpacing(const float &verticalType)
0127 {
0128 }
0129 
0130 void CSS2BorderSpacingImpl::setHorizontalSpacing(const unsigned short &horizontalType, const float &value)
0131 {
0132 }
0133 
0134 void CSS2BorderSpacingImpl::setVerticalSpacing(const unsigned short &verticalType, const float &value)
0135 {
0136 }
0137 
0138 void CSS2BorderSpacingImpl::setInherit()
0139 {
0140 }
0141 
0142 #include "CSS2CounterIncrementImpl.h"
0143 CSS2CounterIncrementImpl::CSS2CounterIncrementImpl(DocumentImpl *doc)
0144 {
0145 }
0146 
0147 CSS2CounterIncrementImpl::~CSS2CounterIncrementImpl()
0148 {
0149 }
0150 
0151 short CSS2CounterIncrementImpl::increment() const
0152 {
0153 }
0154 
0155 void CSS2CounterIncrementImpl::setIncrement(const short &)
0156 {
0157 }
0158 
0159 #include "CSS2CounterResetImpl.h"
0160 CSS2CounterResetImpl::CSS2CounterResetImpl(DocumentImpl *doc)
0161 {
0162 }
0163 
0164 CSS2CounterResetImpl::~CSS2CounterResetImpl()
0165 {
0166 }
0167 
0168 short CSS2CounterResetImpl::reset() const
0169 {
0170 }
0171 
0172 void CSS2CounterResetImpl::setReset(const short &)
0173 {
0174 }
0175 
0176 #include "CSSValueList.h"
0177 #include "CSS2CursorImpl.h"
0178 CSS2CursorImpl::CSS2CursorImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0179 {
0180 }
0181 
0182 CSS2CursorImpl::~CSS2CursorImpl()
0183 {
0184 }
0185 
0186 unsigned short CSS2CursorImpl::cursorType() const
0187 {
0188 }
0189 
0190 void CSS2CursorImpl::setCursorType(const unsigned short &)
0191 {
0192 }
0193 
0194 CSSValueList CSS2CursorImpl::uris() const
0195 {
0196 }
0197 
0198 #include "CSS2FontFaceSrcImpl.h"
0199 CSS2FontFaceSrcImpl::CSS2FontFaceSrcImpl(DocumentImpl *doc)
0200 {
0201 }
0202 
0203 CSS2FontFaceSrcImpl::~CSS2FontFaceSrcImpl()
0204 {
0205 }
0206 
0207 CSSValueList CSS2FontFaceSrcImpl::format() const
0208 {
0209 }
0210 
0211 #include "CSS2FontFaceWidthsImpl.h"
0212 CSS2FontFaceWidthsImpl::CSS2FontFaceWidthsImpl(DocumentImpl *doc)
0213 {
0214 }
0215 
0216 CSS2FontFaceWidthsImpl::~CSS2FontFaceWidthsImpl()
0217 {
0218 }
0219 
0220 CSSValueList CSS2FontFaceWidthsImpl::numbers() const
0221 {
0222 }
0223 
0224 #include "CSS2PageSizeImpl.h"
0225 CSS2PageSizeImpl::CSS2PageSizeImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0226 {
0227 }
0228 
0229 CSS2PageSizeImpl::~CSS2PageSizeImpl()
0230 {
0231 }
0232 
0233 unsigned short CSS2PageSizeImpl::widthType() const
0234 {
0235 }
0236 
0237 unsigned short CSS2PageSizeImpl::heightType() const
0238 {
0239 }
0240 
0241 DOMString CSS2PageSizeImpl::identifier() const
0242 {
0243 }
0244 
0245 float CSS2PageSizeImpl::getWidth(const float &widthType)
0246 {
0247 }
0248 
0249 float CSS2PageSizeImpl::getHeightSize(const float &heightType)
0250 {
0251 }
0252 
0253 void CSS2PageSizeImpl::setWidthSize(const unsigned short &widthType, const float &value)
0254 {
0255 }
0256 
0257 void CSS2PageSizeImpl::setHeightSize(const unsigned short &heightType, const float &value)
0258 {
0259 }
0260 
0261 void CSS2PageSizeImpl::setIdentifier(const DOMString &identifier)
0262 {
0263 }
0264 
0265 #include "CSS2PlayDuringImpl.h"
0266 CSS2PlayDuringImpl::CSS2PlayDuringImpl(DocumentImpl *doc) : CSSValueImpl(doc)
0267 {
0268 }
0269 
0270 CSS2PlayDuringImpl::~CSS2PlayDuringImpl()
0271 {
0272 }
0273 
0274 unsigned short CSS2PlayDuringImpl::playDuringType() const
0275 {
0276 }
0277 
0278 bool CSS2PlayDuringImpl::mix() const
0279 {
0280 }
0281 
0282 void CSS2PlayDuringImpl::setMix(const bool &)
0283 {
0284 }
0285 
0286 bool CSS2PlayDuringImpl::repeat() const
0287 {
0288 }
0289 
0290 void CSS2PlayDuringImpl::setRepeat(const bool &)
0291 {
0292 }
0293 
0294 #include "CSS2PropertiesImpl.h"
0295 CSS2PropertiesImpl::CSS2PropertiesImpl(DocumentImpl *doc)
0296 {
0297 }
0298 
0299 CSS2PropertiesImpl::~CSS2PropertiesImpl()
0300 {
0301 }
0302 
0303 #include "CSSValue.h"
0304 
0305 #include "CSS2TextShadowImpl.h"
0306 CSS2TextShadowImpl::CSS2TextShadowImpl(DocumentImpl *doc)
0307 {
0308 }
0309 
0310 CSS2TextShadowImpl::~CSS2TextShadowImpl()
0311 {
0312 }
0313 
0314 CSSValue CSS2TextShadowImpl::color() const
0315 {
0316 }
0317 
0318 CSSValue CSS2TextShadowImpl::horizontal() const
0319 {
0320 }
0321 
0322 CSSValue CSS2TextShadowImpl::vertical() const
0323 {
0324 }
0325 
0326 CSSValue CSS2TextShadowImpl::blur() const
0327 {
0328 }
0329