| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 PassRefPtr<SVGTransformListTearOff> transformFromJavascript() { return m_tra
nsform ? m_transform->baseVal() : 0; } | 50 PassRefPtr<SVGTransformListTearOff> transformFromJavascript() { return m_tra
nsform ? m_transform->baseVal() : 0; } |
| 51 SVGElement* viewTarget() const; | 51 SVGElement* viewTarget() const; |
| 52 String viewBoxString() const; | 52 String viewBoxString() const; |
| 53 String preserveAspectRatioString() const; | 53 String preserveAspectRatioString() const; |
| 54 String transformString() const; | 54 String transformString() const; |
| 55 String viewTargetString() const { return m_viewTargetString; } | 55 String viewTargetString() const { return m_viewTargetString; } |
| 56 // override SVGZoomAndPan.setZoomAndPan so can throw exception on write | 56 // override SVGZoomAndPan.setZoomAndPan so can throw exception on write |
| 57 void setZoomAndPan(unsigned short value) { } // read only | 57 void setZoomAndPan(unsigned short value) { } // read only |
| 58 void setZoomAndPan(unsigned short value, ExceptionState&); | 58 void setZoomAndPan(unsigned short value, ExceptionState&); |
| 59 | 59 |
| 60 void trace(Visitor*); | 60 virtual void trace(Visitor*); |
| 61 | 61 |
| 62 SVGSVGElement* contextElement() { return m_contextElement.get(); } | 62 SVGSVGElement* contextElement() { return m_contextElement.get(); } |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 explicit SVGViewSpec(SVGSVGElement*); | 65 explicit SVGViewSpec(SVGSVGElement*); |
| 66 | 66 |
| 67 template<typename CharType> | 67 template<typename CharType> |
| 68 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); | 68 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); |
| 69 | 69 |
| 70 RawPtrWillBeMember<SVGSVGElement> m_contextElement; | 70 RawPtrWillBeMember<SVGSVGElement> m_contextElement; |
| 71 RefPtr<SVGAnimatedTransformList> m_transform; | 71 RefPtr<SVGAnimatedTransformList> m_transform; |
| 72 String m_viewTargetString; | 72 String m_viewTargetString; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif | 77 #endif |
| OLD | NEW |