| 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 #include "config.h" | 21 #include "config.h" |
| 22 | 22 |
| 23 #include "core/svg/SVGViewElement.h" | 23 #include "core/svg/SVGViewElement.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 inline SVGViewElement::SVGViewElement(Document& document) | 27 inline SVGViewElement::SVGViewElement(Document& document) |
| 28 : SVGElement(SVGNames::viewTag, document) | 28 : SVGElement(SVGNames::viewTag, document) |
| 29 , SVGFitToViewBox(this) |
| 29 , m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr)) | 30 , m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr)) |
| 30 { | 31 { |
| 31 SVGFitToViewBox::initialize(this); | |
| 32 | |
| 33 addToPropertyMap(m_viewTarget); | 32 addToPropertyMap(m_viewTarget); |
| 34 } | 33 } |
| 35 | 34 |
| 36 DEFINE_NODE_FACTORY(SVGViewElement) | 35 DEFINE_NODE_FACTORY(SVGViewElement) |
| 37 | 36 |
| 38 DEFINE_TRACE(SVGViewElement) | 37 DEFINE_TRACE(SVGViewElement) |
| 39 { | 38 { |
| 40 visitor->trace(m_viewTarget); | 39 visitor->trace(m_viewTarget); |
| 41 SVGElement::trace(visitor); | 40 SVGElement::trace(visitor); |
| 42 SVGFitToViewBox::trace(visitor); | 41 SVGFitToViewBox::trace(visitor); |
| 43 } | 42 } |
| 44 | 43 |
| 45 void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicStrin
g& value) | 44 void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicStrin
g& value) |
| 46 { | 45 { |
| 47 if (SVGZoomAndPan::parseAttribute(name, value)) | 46 if (SVGZoomAndPan::parseAttribute(name, value)) |
| 48 return; | 47 return; |
| 49 | 48 |
| 50 SVGElement::parseAttribute(name, value); | 49 SVGElement::parseAttribute(name, value); |
| 51 } | 50 } |
| 52 | 51 |
| 53 } // namespace blink | 52 } // namespace blink |
| OLD | NEW |