~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/svg/SVGStopElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
    Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3
3
                  2004, 2005, 2006 Rob Buis <buis@kde.org>
4
4
 
5
 
    This file is part of the KDE project
6
 
 
7
5
    This library is free software; you can redistribute it and/or
8
6
    modify it under the terms of the GNU Library General Public
9
7
    License as published by the Free Software Foundation; either
24
22
#define SVGStopElement_h
25
23
 
26
24
#if ENABLE(SVG)
 
25
#include "SVGNames.h"
27
26
#include "SVGStyledElement.h"
28
27
 
29
28
namespace WebCore {
33
32
        SVGStopElement(const QualifiedName&, Document*);
34
33
        virtual ~SVGStopElement();
35
34
 
 
35
    private:
36
36
        virtual bool isGradientStop() const { return true; }
37
37
 
38
38
        virtual void parseMappedAttribute(MappedAttribute*);
39
39
 
40
40
        virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
41
41
 
42
 
    private:
43
42
        ANIMATED_PROPERTY_DECLARATIONS(SVGStopElement, SVGNames::stopTagString, SVGNames::offsetAttrString, float, Offset, offset)
44
43
    };
45
44