| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmial.com> | 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmial.com> |
| 5 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #ifndef SVGPaint_h | 23 #ifndef SVGPaint_h |
| 24 #define SVGPaint_h | 24 #define SVGPaint_h |
| 25 | 25 |
| 26 #include "core/css/CSSValue.h" | 26 #include "core/css/CSSValue.h" |
| 27 #include "core/css/StyleColor.h" | 27 #include "core/css/StyleColor.h" |
| 28 #include "platform/graphics/Color.h" | 28 #include "platform/graphics/Color.h" |
| 29 #include "wtf/text/WTFString.h" | 29 #include "wtf/text/WTFString.h" |
| 30 | 30 |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 class ExceptionState; | |
| 34 | |
| 35 class SVGPaint : public CSSValue { | 33 class SVGPaint : public CSSValue { |
| 36 public: | 34 public: |
| 37 enum SVGPaintType { | 35 enum SVGPaintType { |
| 38 SVG_PAINTTYPE_UNKNOWN, | 36 SVG_PAINTTYPE_UNKNOWN, |
| 39 SVG_PAINTTYPE_RGBCOLOR, | 37 SVG_PAINTTYPE_RGBCOLOR, |
| 40 SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR, | 38 SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR, |
| 41 SVG_PAINTTYPE_NONE, | 39 SVG_PAINTTYPE_NONE, |
| 42 SVG_PAINTTYPE_CURRENTCOLOR, | 40 SVG_PAINTTYPE_CURRENTCOLOR, |
| 43 SVG_PAINTTYPE_URI_NONE, | 41 SVG_PAINTTYPE_URI_NONE, |
| 44 SVG_PAINTTYPE_URI_CURRENTCOLOR, | 42 SVG_PAINTTYPE_URI_CURRENTCOLOR, |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 SVGPaintType m_paintType; | 125 SVGPaintType m_paintType; |
| 128 Color m_color; | 126 Color m_color; |
| 129 String m_uri; | 127 String m_uri; |
| 130 }; | 128 }; |
| 131 | 129 |
| 132 DEFINE_CSS_VALUE_TYPE_CASTS(SVGPaint, isSVGPaint()); | 130 DEFINE_CSS_VALUE_TYPE_CASTS(SVGPaint, isSVGPaint()); |
| 133 | 131 |
| 134 } // namespace WebCore | 132 } // namespace WebCore |
| 135 | 133 |
| 136 #endif // SVGPaint_h | 134 #endif // SVGPaint_h |
| OLD | NEW |