OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 bool isFontValue() const { return m_classType == FontClass; } | 76 bool isFontValue() const { return m_classType == FontClass; } |
77 bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; } | 77 bool isFontFaceSrcValue() const { return m_classType == FontFaceSrcClass; } |
78 bool isFunctionValue() const { return m_classType == FunctionClass; } | 78 bool isFunctionValue() const { return m_classType == FunctionClass; } |
79 bool isImageGeneratorValue() const { return m_classType >= CanvasClass && m_
classType <= RadialGradientClass; } | 79 bool isImageGeneratorValue() const { return m_classType >= CanvasClass && m_
classType <= RadialGradientClass; } |
80 bool isGradientValue() const { return m_classType >= LinearGradientClass &&
m_classType <= RadialGradientClass; } | 80 bool isGradientValue() const { return m_classType >= LinearGradientClass &&
m_classType <= RadialGradientClass; } |
81 bool isImageSetValue() const { return m_classType == ImageSetClass; } | 81 bool isImageSetValue() const { return m_classType == ImageSetClass; } |
82 bool isImageValue() const { return m_classType == ImageClass; } | 82 bool isImageValue() const { return m_classType == ImageClass; } |
83 bool isImplicitInitialValue() const; | 83 bool isImplicitInitialValue() const; |
84 bool isInheritedValue() const { return m_classType == InheritedClass; } | 84 bool isInheritedValue() const { return m_classType == InheritedClass; } |
85 bool isInitialValue() const { return m_classType == InitialClass; } | 85 bool isInitialValue() const { return m_classType == InitialClass; } |
| 86 bool isLinearGradientValue() const { return m_classType == LinearGradientCla
ss; } |
| 87 bool isRadialGradientValue() const { return m_classType == RadialGradientCla
ss; } |
86 bool isReflectValue() const { return m_classType == ReflectClass; } | 88 bool isReflectValue() const { return m_classType == ReflectClass; } |
87 bool isShadowValue() const { return m_classType == ShadowClass; } | 89 bool isShadowValue() const { return m_classType == ShadowClass; } |
88 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB
ezierTimingFunctionClass; } | 90 bool isCubicBezierTimingFunctionValue() const { return m_classType == CubicB
ezierTimingFunctionClass; } |
89 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF
unctionClass; } | 91 bool isStepsTimingFunctionValue() const { return m_classType == StepsTimingF
unctionClass; } |
90 bool isCSSTransformValue() const { return m_classType == CSSTransformClass;
} | 92 bool isCSSTransformValue() const { return m_classType == CSSTransformClass;
} |
91 bool isCSSLineBoxContainValue() const { return m_classType == LineBoxContain
Class; } | 93 bool isCSSLineBoxContainValue() const { return m_classType == LineBoxContain
Class; } |
92 bool isCalcValue() const {return m_classType == CalculationClass; } | 94 bool isCalcValue() const {return m_classType == CalculationClass; } |
93 bool isCSSFilterValue() const { return m_classType == CSSFilterClass; } | 95 bool isCSSFilterValue() const { return m_classType == CSSFilterClass; } |
94 bool isCSSArrayFunctionValue() const { return m_classType == CSSArrayFunctio
nValueClass; } | 96 bool isCSSArrayFunctionValue() const { return m_classType == CSSArrayFunctio
nValueClass; } |
95 bool isCSSMixFunctionValue() const { return m_classType == CSSMixFunctionVal
ueClass; } | 97 bool isCSSMixFunctionValue() const { return m_classType == CSSMixFunctionVal
ueClass; } |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 { \ | 249 { \ |
248 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \ | 250 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->is##ValueTypeName()); \ |
249 return static_cast<CSS##ValueTypeName*>(value); \ | 251 return static_cast<CSS##ValueTypeName*>(value); \ |
250 } \ | 252 } \ |
251 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \ | 253 void toCSS##ValueTypeName(const CSS##ValueTypeName*); \ |
252 void toCSS##ValueTypeName(const CSS##ValueTypeName&) | 254 void toCSS##ValueTypeName(const CSS##ValueTypeName&) |
253 | 255 |
254 } // namespace WebCore | 256 } // namespace WebCore |
255 | 257 |
256 #endif // CSSValue_h | 258 #endif // CSSValue_h |
OLD | NEW |