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 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 float SVGZoomEvent::previousScale() const | 42 float SVGZoomEvent::previousScale() const |
43 { | 43 { |
44 return m_previousScale; | 44 return m_previousScale; |
45 } | 45 } |
46 | 46 |
47 void SVGZoomEvent::setPreviousScale(float scale) | 47 void SVGZoomEvent::setPreviousScale(float scale) |
48 { | 48 { |
49 m_previousScale = scale; | 49 m_previousScale = scale; |
50 } | 50 } |
51 | 51 |
52 FloatPoint SVGZoomEvent::previousTranslate() const | 52 SVGPoint SVGZoomEvent::previousTranslate() const |
53 { | 53 { |
54 return m_previousTranslate; | 54 return m_previousTranslate; |
55 } | 55 } |
56 | 56 |
57 float SVGZoomEvent::newScale() const | 57 float SVGZoomEvent::newScale() const |
58 { | 58 { |
59 return m_newScale; | 59 return m_newScale; |
60 } | 60 } |
61 | 61 |
62 void SVGZoomEvent::setNewScale(float scale) | 62 void SVGZoomEvent::setNewScale(float scale) |
63 { | 63 { |
64 m_newScale = scale; | 64 m_newScale = scale; |
65 } | 65 } |
66 | 66 |
67 FloatPoint SVGZoomEvent::newTranslate() const | 67 SVGPoint SVGZoomEvent::newTranslate() const |
68 { | 68 { |
69 return m_newTranslate; | 69 return m_newTranslate; |
70 } | 70 } |
71 | 71 |
72 const AtomicString& SVGZoomEvent::interfaceName() const | 72 const AtomicString& SVGZoomEvent::interfaceName() const |
73 { | 73 { |
74 return eventNames().interfaceForSVGZoomEvent; | 74 return eventNames().interfaceForSVGZoomEvent; |
75 } | 75 } |
76 | 76 |
77 } // namespace WebCore | 77 } // namespace WebCore |
OLD | NEW |