~ubuntu-branches/ubuntu/maverick/webkit/maverick

« back to all changes in this revision

Viewing changes to WebCore/ksvg2/svg/SVGFEImageElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mike Hommey
  • Date: 2007-08-19 15:54:12 UTC
  • Revision ID: james.westby@ubuntu.com-20070819155412-uxxg1h9plpghmtbi
Tags: upstream-0~svn25144
ImportĀ upstreamĀ versionĀ 0~svn25144

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 2004, 2005 Nikolas Zimmermann <wildfox@kde.org>
 
3
                  2004, 2005 Rob Buis <buis@kde.org>
 
4
 
 
5
    This file is part of the KDE project
 
6
 
 
7
    This library is free software; you can redistribute it and/or
 
8
    modify it under the terms of the GNU Library General Public
 
9
    License as published by the Free Software Foundation; either
 
10
    version 2 of the License, or (at your option) any later version.
 
11
 
 
12
    This library is distributed in the hope that it will be useful,
 
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
    Library General Public License for more details.
 
16
 
 
17
    You should have received a copy of the GNU Library General Public License
 
18
    along with this library; see the file COPYING.LIB.  If not, write to
 
19
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
    Boston, MA 02111-1307, USA.
 
21
*/
 
22
 
 
23
#include "config.h"
 
24
 
 
25
#if ENABLE(SVG) && ENABLE(SVG_EXPERIMENTAL_FEATURES)
 
26
#include "SVGFEImageElement.h"
 
27
 
 
28
#include "Attr.h"
 
29
#include "CachedImage.h"
 
30
#include "DocLoader.h"
 
31
#include "Document.h"
 
32
#include "SVGLength.h"
 
33
#include "SVGNames.h"
 
34
#include "SVGPreserveAspectRatio.h"
 
35
#include "SVGResourceFilter.h"
 
36
 
 
37
namespace WebCore {
 
38
 
 
39
SVGFEImageElement::SVGFEImageElement(const QualifiedName& tagName, Document* doc)
 
40
    : SVGFilterPrimitiveStandardAttributes(tagName, doc)
 
41
    , SVGURIReference()
 
42
    , SVGLangSpace()
 
43
    , SVGExternalResourcesRequired()
 
44
    , m_preserveAspectRatio(new SVGPreserveAspectRatio(this))
 
45
    , m_cachedImage(0)
 
46
    , m_filterEffect(0)
 
47
{
 
48
}
 
49
 
 
50
SVGFEImageElement::~SVGFEImageElement()
 
51
{
 
52
    delete m_filterEffect;
 
53
    if (m_cachedImage)
 
54
        m_cachedImage->deref(this);
 
55
}
 
56
 
 
57
ANIMATED_PROPERTY_DEFINITIONS(SVGFEImageElement, SVGPreserveAspectRatio*, PreserveAspectRatio, preserveAspectRatio, PreserveAspectRatio, preserveAspectRatio, SVGNames::preserveAspectRatioAttr.localName(), m_preserveAspectRatio.get())
 
58
 
 
59
void SVGFEImageElement::parseMappedAttribute(MappedAttribute* attr)
 
60
{
 
61
    const String& value = attr->value();
 
62
    if (attr->name() == SVGNames::preserveAspectRatioAttr)
 
63
        preserveAspectRatioBaseValue()->parsePreserveAspectRatio(value);
 
64
    else {
 
65
        if (SVGURIReference::parseMappedAttribute(attr)) {
 
66
            if (!href().startsWith("#")) {
 
67
                // FIXME: this code needs to special-case url fragments and later look them up using getElementById instead of loading them here
 
68
                if (m_cachedImage)
 
69
                    m_cachedImage->deref(this);
 
70
                m_cachedImage = ownerDocument()->docLoader()->requestImage(href());
 
71
                if (m_cachedImage)
 
72
                    m_cachedImage->ref(this);
 
73
            }
 
74
            return;
 
75
        }
 
76
        if (SVGLangSpace::parseMappedAttribute(attr))
 
77
            return;
 
78
        if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
 
79
            return;
 
80
 
 
81
        SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
 
82
    }
 
83
}
 
84
 
 
85
void SVGFEImageElement::notifyFinished(CachedResource* finishedObj)
 
86
{
 
87
    if (finishedObj == m_cachedImage && filterEffect())
 
88
        filterEffect()->setCachedImage(m_cachedImage);
 
89
}
 
90
 
 
91
SVGFEImage* SVGFEImageElement::filterEffect() const
 
92
{
 
93
    if (!m_filterEffect)
 
94
        m_filterEffect = static_cast<SVGFEImage*>(SVGResourceFilter::createFilterEffect(FE_IMAGE));
 
95
    if (!m_filterEffect)
 
96
        return 0;
 
97
    setStandardAttributes(m_filterEffect);
 
98
    return m_filterEffect;
 
99
}
 
100
 
 
101
}
 
102
 
 
103
#endif // ENABLE(SVG)
 
104
 
 
105
// vim:ts=4:noet