Chromium Code Reviews| 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, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 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 SVGTextPositioningElement_h | 21 #ifndef SVGTextPositioningElement_h |
| 22 #define SVGTextPositioningElement_h | 22 #define SVGTextPositioningElement_h |
| 23 | 23 |
| 24 #include "SVGNames.h" | |
| 24 #include "core/svg/SVGAnimatedLengthList.h" | 25 #include "core/svg/SVGAnimatedLengthList.h" |
| 25 #include "core/svg/SVGAnimatedNumberList.h" | 26 #include "core/svg/SVGAnimatedNumberList.h" |
| 26 #include "core/svg/SVGTextContentElement.h" | 27 #include "core/svg/SVGTextContentElement.h" |
| 27 | 28 |
| 28 namespace WebCore { | 29 namespace WebCore { |
| 29 | 30 |
| 30 class SVGTextPositioningElement : public SVGTextContentElement { | 31 class SVGTextPositioningElement : public SVGTextContentElement { |
| 31 public: | 32 public: |
| 32 static SVGTextPositioningElement* elementFromRenderer(RenderObject*); | 33 static SVGTextPositioningElement* elementFromRenderer(RenderObject*); |
| 33 | 34 |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 45 | 46 |
| 46 RefPtr<SVGAnimatedLengthList> m_x; | 47 RefPtr<SVGAnimatedLengthList> m_x; |
| 47 RefPtr<SVGAnimatedLengthList> m_y; | 48 RefPtr<SVGAnimatedLengthList> m_y; |
| 48 RefPtr<SVGAnimatedLengthList> m_dx; | 49 RefPtr<SVGAnimatedLengthList> m_dx; |
| 49 RefPtr<SVGAnimatedLengthList> m_dy; | 50 RefPtr<SVGAnimatedLengthList> m_dy; |
| 50 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTextPositioningElement) | 51 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTextPositioningElement) |
| 51 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate) | 52 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate) |
| 52 END_DECLARE_ANIMATED_PROPERTIES | 53 END_DECLARE_ANIMATED_PROPERTIES |
| 53 }; | 54 }; |
| 54 | 55 |
| 56 inline bool isSVGTextPositioningElement(const Node& node) | |
| 57 { | |
| 58 return node.hasTagName(SVGNames::xAttr) || node.hasTagName(SVGNames::yAttr) || node.hasTagName(SVGNames::dxAttr) || node.hasTagName(SVGNames::dyAttr); | |
|
Stephen Chennney
2014/01/10 12:32:53
I don't think a node will ever have a tag name tha
gyuyoung-inactive
2014/01/12 04:37:31
Oops, it is my mistake. It looks SVGTextPositionin
| |
| 59 } | |
| 60 | |
| 61 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(SVGTextPositioningElement); | |
| 62 | |
| 55 } // namespace WebCore | 63 } // namespace WebCore |
| 56 | 64 |
| 57 #endif | 65 #endif |
| OLD | NEW |