OSDN Git Service

am a5605499: Changing fit column to screen to exclude the padding.
[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 #include <wtf/UnusedParam.h>
31
32 #if ENABLE(SVG)
33 #include "SVGCursorElement.h"
34 #include "SVGURIReference.h"
35 #endif
36
37 namespace WebCore {
38
39 #if ENABLE(SVG)
40 static inline bool isSVGCursorIdentifier(const String& url)
41 {
42     KURL kurl(ParsedURLString, url);
43     return kurl.hasFragmentIdentifier();
44 }
45
46 static inline SVGCursorElement* resourceReferencedByCursorElement(const String& fragmentId, Document* document)
47 {
48     Element* element = document->getElementById(SVGURIReference::getTarget(fragmentId));
49     if (element && element->hasTagName(SVGNames::cursorTag))
50         return static_cast<SVGCursorElement*>(element);
51
52     return 0;
53 }
54 #endif
55
56 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotspot)
57     : CSSImageValue(url)
58     , m_hotspot(hotspot)
59 {
60 }
61
62 CSSCursorImageValue::~CSSCursorImageValue()
63 {
64 #if ENABLE(SVG)
65     const String& url = getStringValue();
66     if (!isSVGCursorIdentifier(url))
67         return;
68
69     HashSet<SVGElement*>::const_iterator it = m_referencedElements.begin();
70     HashSet<SVGElement*>::const_iterator end = m_referencedElements.end();
71
72     for (; it != end; ++it) {
73         SVGElement* referencedElement = *it;
74         referencedElement->setCursorImageValue(0);
75         if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->document()))
76             cursorElement->removeClient(referencedElement);
77     }
78 #endif
79 }
80
81 bool CSSCursorImageValue::updateIfSVGCursorIsUsed(Element* element)
82 {
83 #if !ENABLE(SVG)
84     UNUSED_PARAM(element);
85 #else
86     if (!element || !element->isSVGElement())
87         return false;
88
89     const String& url = getStringValue();
90     if (!isSVGCursorIdentifier(url))
91         return false;
92
93     if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->document())) {
94         float x = roundf(cursorElement->x().value(0));
95         m_hotspot.setX(static_cast<int>(x));
96
97         float y = roundf(cursorElement->y().value(0));
98         m_hotspot.setY(static_cast<int>(y));
99
100         if (cachedImageURL() != element->document()->completeURL(cursorElement->href()))
101             clearCachedImage();
102
103         SVGElement* svgElement = static_cast<SVGElement*>(element);
104         m_referencedElements.add(svgElement);
105         svgElement->setCursorImageValue(this);
106         cursorElement->addClient(svgElement);
107         return true;
108     }
109 #endif
110
111     return false;
112 }
113
114 StyleCachedImage* CSSCursorImageValue::cachedImage(DocLoader* loader)
115 {
116     String url = getStringValue();
117
118 #if ENABLE(SVG) 
119     if (isSVGCursorIdentifier(url) && loader && loader->doc()) {
120         if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, loader->doc()))
121             url = cursorElement->href();
122     }
123 #endif
124
125     return CSSImageValue::cachedImage(loader, url);
126 }
127
128 #if ENABLE(SVG)
129 void CSSCursorImageValue::removeReferencedElement(SVGElement* element)
130 {
131     m_referencedElements.remove(element);
132 }
133 #endif
134
135 } // namespace WebCore