OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
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, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #ifndef SVGViewElement_h | 21 #ifndef SVGViewElement_h |
22 #define SVGViewElement_h | 22 #define SVGViewElement_h |
23 | 23 |
24 #include "SVGNames.h" | 24 #include "SVGNames.h" |
25 #include "core/svg/SVGAnimatedBoolean.h" | 25 #include "core/svg/SVGAnimatedBoolean.h" |
26 #include "core/svg/SVGAnimatedPreserveAspectRatio.h" | 26 #include "core/svg/SVGAnimatedPreserveAspectRatio.h" |
27 #include "core/svg/SVGAnimatedRect.h" | 27 #include "core/svg/SVGAnimatedRect.h" |
28 #include "core/svg/SVGElement.h" | 28 #include "core/svg/SVGElement.h" |
29 #include "core/svg/SVGExternalResourcesRequired.h" | |
30 #include "core/svg/SVGFitToViewBox.h" | 29 #include "core/svg/SVGFitToViewBox.h" |
31 #include "core/svg/SVGStringList.h" | 30 #include "core/svg/SVGStringList.h" |
32 #include "core/svg/SVGZoomAndPan.h" | 31 #include "core/svg/SVGZoomAndPan.h" |
33 | 32 |
34 namespace WebCore { | 33 namespace WebCore { |
35 | 34 |
36 class SVGViewElement FINAL : public SVGElement, | 35 class SVGViewElement FINAL : public SVGElement, |
37 public SVGExternalResourcesRequired, | |
38 public SVGFitToViewBox, | 36 public SVGFitToViewBox, |
39 public SVGZoomAndPan { | 37 public SVGZoomAndPan { |
40 public: | 38 public: |
41 static PassRefPtr<SVGViewElement> create(const QualifiedName&, Document&); | 39 static PassRefPtr<SVGViewElement> create(const QualifiedName&, Document&); |
42 | 40 |
43 using SVGElement::ref; | 41 using SVGElement::ref; |
44 using SVGElement::deref; | 42 using SVGElement::deref; |
45 | 43 |
46 SVGStringList& viewTarget() { return m_viewTarget; } | 44 SVGStringList& viewTarget() { return m_viewTarget; } |
47 SVGZoomAndPanType zoomAndPan() const { return m_zoomAndPan; } | 45 SVGZoomAndPanType zoomAndPan() const { return m_zoomAndPan; } |
48 void setZoomAndPan(unsigned short zoomAndPan) { m_zoomAndPan = SVGZoomAndPan
::parseFromNumber(zoomAndPan); } | 46 void setZoomAndPan(unsigned short zoomAndPan) { m_zoomAndPan = SVGZoomAndPan
::parseFromNumber(zoomAndPan); } |
49 | 47 |
50 private: | 48 private: |
51 SVGViewElement(const QualifiedName&, Document&); | 49 SVGViewElement(const QualifiedName&, Document&); |
52 | 50 |
53 // FIXME: svgAttributeChanged missing. | 51 // FIXME: svgAttributeChanged missing. |
54 bool isSupportedAttribute(const QualifiedName&); | 52 bool isSupportedAttribute(const QualifiedName&); |
55 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
56 | 54 |
57 virtual bool rendererIsNeeded(const RenderStyle&) { return false; } | 55 virtual bool rendererIsNeeded(const RenderStyle&) { return false; } |
58 | 56 |
59 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGViewElement) | 57 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGViewElement) |
60 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | |
61 DECLARE_ANIMATED_RECT(ViewBox, viewBox) | 58 DECLARE_ANIMATED_RECT(ViewBox, viewBox) |
62 DECLARE_ANIMATED_PRESERVEASPECTRATIO(PreserveAspectRatio, preserveAspect
Ratio) | 59 DECLARE_ANIMATED_PRESERVEASPECTRATIO(PreserveAspectRatio, preserveAspect
Ratio) |
63 END_DECLARE_ANIMATED_PROPERTIES | 60 END_DECLARE_ANIMATED_PROPERTIES |
64 | 61 |
65 SVGZoomAndPanType m_zoomAndPan; | 62 SVGZoomAndPanType m_zoomAndPan; |
66 SVGStringList m_viewTarget; | 63 SVGStringList m_viewTarget; |
67 }; | 64 }; |
68 | 65 |
69 DEFINE_NODE_TYPE_CASTS(SVGViewElement, hasTagName(SVGNames::viewTag)); | 66 DEFINE_NODE_TYPE_CASTS(SVGViewElement, hasTagName(SVGNames::viewTag)); |
70 | 67 |
71 } // namespace WebCore | 68 } // namespace WebCore |
72 | 69 |
73 #endif | 70 #endif |
OLD | NEW |