OSDN Git Service

auto import from //depot/cupcake/@135843
[android-x86/external-webkit.git] / WebCore / css / CSSCursorImageValue.cpp
1 /*
2  * Copyright (C) 2006 Rob Buis <buis@kde.org>
3  *           (C) 2008 Nikolas Zimmermann <zimmermann@kde.org>
4  * Copyright (C) 2008 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #include "config.h"
23 #include "CSSCursorImageValue.h"
24
25 #include "DocLoader.h"
26 #include "Document.h"
27 #include "PlatformString.h"
28 #include "RenderStyle.h"
29 #include <wtf/MathExtras.h>
30
31 #if ENABLE(SVG)
32 #include "SVGCursorElement.h"
33 #include "SVGURIReference.h"
34 #endif
35
36 namespace WebCore {
37
38 #if ENABLE(SVG)
39 static inline bool isSVGCursorIdentifier(const String& url)
40 {
41     KURL kurl(url);
42     return kurl.hasRef();
43 }
44
45 static inline SVGCursorElement* resourceReferencedByCursorElement(const String& fragmentId, Document* document)
46 {
47     Element* element = document->getElementById(SVGURIReference::getTarget(fragmentId));
48     if (element && element->hasTagName(SVGNames::cursorTag))
49         return static_cast<SVGCursorElement*>(element);
50
51     return 0;
52 }
53 #endif
54
55 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotspot)
56     : CSSImageValue(url)
57     , m_hotspot(hotspot)
58 {
59 }
60
61 CSSCursorImageValue::~CSSCursorImageValue()
62 {
63 #if ENABLE(SVG)
64     const String& url = getStringValue();
65     if (!isSVGCursorIdentifier(url))
66         return;
67
68     HashSet<SVGElement*>::const_iterator it = m_referencedElements.begin();
69     HashSet<SVGElement*>::const_iterator end = m_referencedElements.end();
70
71     for (; it != end; ++it) {
72         SVGElement* referencedElement = *it;
73         if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->document()))
74             cursorElement->removeClient(referencedElement);
75     }
76 #endif
77 }
78
79 bool CSSCursorImageValue::updateIfSVGCursorIsUsed(Element* element)
80 {
81 #if ENABLE(SVG)
82     if (!element || !element->isSVGElement())
83         return false;
84
85     const String& url = getStringValue();
86     if (!isSVGCursorIdentifier(url))
87         return false;
88
89     if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->document())) {
90         float x = roundf(cursorElement->x().value(0));
91         m_hotspot.setX(static_cast<int>(x));
92
93         float y = roundf(cursorElement->y().value(0));
94         m_hotspot.setY(static_cast<int>(y));
95
96         if (cachedImageURL() != element->document()->completeURL(cursorElement->href()))
97             clearCachedImage();
98
99         SVGElement* svgElement = static_cast<SVGElement*>(element);
100         m_referencedElements.add(svgElement);
101         cursorElement->addClient(svgElement);
102         return true;
103     }
104 #endif
105
106     return false;
107 }
108
109 StyleCachedImage* CSSCursorImageValue::cachedImage(DocLoader* loader)
110 {
111     String url = getStringValue();
112
113 #if ENABLE(SVG) 
114     if (isSVGCursorIdentifier(url) && loader && loader->doc()) {
115         if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, loader->doc()))
116             url = cursorElement->href();
117     }
118 #endif
119
120     return CSSImageValue::cachedImage(loader, url);
121 }
122
123 } // namespace WebCore