blob: c31946d546d7433a44eec9068c7405f50c1ad7a3 [file] [log] [blame]
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +01001/*
2 * Copyright (C) 2004, 2005, 2008, 2009 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 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 SVGURIReference_h
22#define SVGURIReference_h
23
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010024#include "core/dom/Document.h"
Torne (Richard Coles)09380292014-02-21 12:17:33 +000025#include "core/svg/SVGAnimatedString.h"
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010026
27namespace WebCore {
28
29class Attribute;
30class Element;
31
32class SVGURIReference {
33public:
34 virtual ~SVGURIReference() { }
35
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010036 bool isKnownAttribute(const QualifiedName&);
37 void addSupportedAttributes(HashSet<QualifiedName>&);
38
Torne (Richard Coles)09380292014-02-21 12:17:33 +000039 static AtomicString fragmentIdentifierFromIRIString(const String&, const Document&);
40 static Element* targetElementFromIRIString(const String&, const Document&, AtomicString* = 0, Document* = 0);
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010041
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +010042 static inline bool isExternalURIReference(const String& uri, const Document& document)
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010043 {
44 // Fragment-only URIs are always internal
45 if (uri.startsWith('#'))
46 return false;
47
48 // If the URI matches our documents URL, we're dealing with a local reference.
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +010049 KURL url = document.completeURL(uri);
50 return !equalIgnoringFragmentIdentifier(url, document.url());
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010051 }
52
Torne (Richard Coles)09380292014-02-21 12:17:33 +000053 // SVGURIReference JS API.
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000054 static SVGAnimatedString* href(SVGURIReference& object) { return object.href(); }
Torne (Richard Coles)09380292014-02-21 12:17:33 +000055
56 SVGAnimatedString* href() const { return m_href.get(); }
57 const String& hrefString() const { return m_href->currentValue()->value(); }
58
59 bool parseAttribute(const QualifiedName&, const AtomicString& value, SVGParsingError&);
60
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010061protected:
Torne (Richard Coles)09380292014-02-21 12:17:33 +000062 explicit SVGURIReference(SVGElement*);
63
64private:
65 RefPtr<SVGAnimatedString> m_href;
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010066};
67
68} // namespace WebCore
69
Torne (Richard Coles)53e740f2013-05-09 18:38:43 +010070#endif // SVGURIReference_h