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.
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.
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.
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.
23 #include "CSSCursorImageValue.h"
25 #include "DocLoader.h"
27 #include "PlatformString.h"
28 #include <wtf/MathExtras.h>
29 #include <wtf/UnusedParam.h>
32 #include "SVGCursorElement.h"
33 #include "SVGURIReference.h"
39 static inline bool isSVGCursorIdentifier(const String
& url
)
41 KURL
kurl(ParsedURLString
, url
);
42 return kurl
.hasFragmentIdentifier();
45 static inline SVGCursorElement
* resourceReferencedByCursorElement(const String
& fragmentId
, Document
* document
)
47 Element
* element
= document
->getElementById(SVGURIReference::getTarget(fragmentId
));
48 if (element
&& element
->hasTagName(SVGNames::cursorTag
))
49 return static_cast<SVGCursorElement
*>(element
);
55 CSSCursorImageValue::CSSCursorImageValue(const String
& url
, const IntPoint
& hotspot
)
61 CSSCursorImageValue::~CSSCursorImageValue()
64 const String
& url
= getStringValue();
65 if (!isSVGCursorIdentifier(url
))
68 HashSet
<SVGElement
*>::const_iterator it
= m_referencedElements
.begin();
69 HashSet
<SVGElement
*>::const_iterator end
= m_referencedElements
.end();
71 for (; it
!= end
; ++it
) {
72 SVGElement
* referencedElement
= *it
;
73 referencedElement
->setCursorImageValue(0);
74 if (SVGCursorElement
* cursorElement
= resourceReferencedByCursorElement(url
, referencedElement
->document()))
75 cursorElement
->removeClient(referencedElement
);
80 bool CSSCursorImageValue::updateIfSVGCursorIsUsed(Element
* element
)
83 UNUSED_PARAM(element
);
85 if (!element
|| !element
->isSVGElement())
88 const String
& url
= getStringValue();
89 if (!isSVGCursorIdentifier(url
))
92 if (SVGCursorElement
* cursorElement
= resourceReferencedByCursorElement(url
, element
->document())) {
93 float x
= roundf(cursorElement
->x().value(0));
94 m_hotspot
.setX(static_cast<int>(x
));
96 float y
= roundf(cursorElement
->y().value(0));
97 m_hotspot
.setY(static_cast<int>(y
));
99 if (cachedImageURL() != element
->document()->completeURL(cursorElement
->href()))
102 SVGElement
* svgElement
= static_cast<SVGElement
*>(element
);
103 m_referencedElements
.add(svgElement
);
104 svgElement
->setCursorImageValue(this);
105 cursorElement
->addClient(svgElement
);
113 StyleCachedImage
* CSSCursorImageValue::cachedImage(DocLoader
* loader
)
115 String url
= getStringValue();
118 if (isSVGCursorIdentifier(url
) && loader
&& loader
->doc()) {
119 if (SVGCursorElement
* cursorElement
= resourceReferencedByCursorElement(url
, loader
->doc()))
120 url
= cursorElement
->href();
124 return CSSImageValue::cachedImage(loader
, url
);
128 void CSSCursorImageValue::removeReferencedElement(SVGElement
* element
)
130 m_referencedElements
.remove(element
);
134 } // namespace WebCore