2b267c3d5ee5f6d3dff6fa07670c522d62a6bd6b
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFitToViewBox.h
1 /*
2  * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
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
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef SVGFitToViewBox_h
22 #define SVGFitToViewBox_h
23
24 #include "SVGNames.h"
25 #include "core/dom/QualifiedName.h"
26 #include "core/svg/SVGDocumentExtensions.h"
27 #include "core/svg/SVGParsingError.h"
28 #include "core/svg/SVGPreserveAspectRatio.h"
29 #include "core/svg/SVGRect.h"
30 #include "wtf/HashSet.h"
31
32 namespace WebCore {
33
34 class AffineTransform;
35 class Document;
36
37 class SVGFitToViewBox {
38 public:
39     static AffineTransform viewBoxToViewTransform(const FloatRect& viewBoxRect, PassRefPtr<SVGPreserveAspectRatio>, float viewWidth, float viewHeight);
40
41     static bool isKnownAttribute(const QualifiedName&);
42     static void addSupportedAttributes(HashSet<QualifiedName>&);
43
44     template<class SVGElementTarget>
45     static bool parseAttribute(SVGElementTarget* target, const QualifiedName& name, const AtomicString& value)
46     {
47         ASSERT(target);
48
49         SVGParsingError parseError = NoError;
50
51         if (name == SVGNames::viewBoxAttr) {
52             target->viewBox()->setBaseValueAsString(value, parseError);
53             if (target->viewBox()->baseValue()->width() < 0.0f) {
54                 target->document().accessSVGExtensions()->reportError("A negative value for ViewBox width is not allowed");
55                 target->viewBox()->baseValue()->setInvalid();
56             }
57             if (target->viewBox()->baseValue()->height() < 0.0f) {
58                 target->document().accessSVGExtensions()->reportError("A negative value for ViewBox height is not allowed");
59                 target->viewBox()->baseValue()->setInvalid();
60             }
61         } else if (name == SVGNames::preserveAspectRatioAttr) {
62             target->preserveAspectRatio()->setBaseValueAsString(value, parseError);
63         } else {
64             return false;
65         }
66
67         target->reportAttributeParsingError(parseError, name, value);
68         return true;
69     }
70 };
71
72 } // namespace WebCore
73
74 #endif // SVGFitToViewBox_h