~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/rendering/svg/SVGRenderSupport.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright (C) 2007 Rob Buis <buis@kde.org>
 
3
 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
 
4
 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
 
5
 * Copyright (C) 2009 Google, Inc.  All rights reserved.
 
6
 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Library General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Library General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Library General Public License
 
19
 * along with this library; see the file COPYING.LIB.  If not, write to
 
20
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
21
 * Boston, MA 02110-1301, USA.
 
22
 */
 
23
 
 
24
#ifndef SVGRenderSupport_h
 
25
#define SVGRenderSupport_h
 
26
 
 
27
#if ENABLE(SVG)
 
28
#include "PaintInfo.h"
 
29
 
 
30
namespace WebCore {
 
31
 
 
32
class FloatPoint;
 
33
class FloatRect;
 
34
class ImageBuffer;
 
35
class LayoutRect;
 
36
class RenderBoxModelObject;
 
37
class RenderGeometryMap;
 
38
class RenderLayerModelObject;
 
39
class RenderObject;
 
40
class RenderStyle;
 
41
class RenderSVGRoot;
 
42
class TransformState;
 
43
 
 
44
// SVGRendererSupport is a helper class sharing code between all SVG renderers.
 
45
class SVGRenderSupport {
 
46
public:
 
47
    // Shares child layouting code between RenderSVGRoot/RenderSVG(Hidden)Container
 
48
    static void layoutChildren(RenderObject*, bool selfNeedsLayout);
 
49
 
 
50
    // Helper function determining wheter overflow is hidden
 
51
    static bool isOverflowHidden(const RenderObject*);
 
52
 
 
53
    static void intersectRepaintRectWithShadows(const RenderObject*, FloatRect&);
 
54
 
 
55
    // Calculates the repaintRect in combination with filter, clipper and masker in local coordinates.
 
56
    static void intersectRepaintRectWithResources(const RenderObject*, FloatRect&);
 
57
 
 
58
    // Determines whether a container needs to be laid out because it's filtered and a child is being laid out.
 
59
    static bool filtersForceContainerLayout(RenderObject*);
 
60
 
 
61
    // Determines whether the passed point lies in a clipping area
 
62
    static bool pointInClippingArea(RenderObject*, const FloatPoint&);
 
63
 
 
64
    static void computeContainerBoundingBoxes(const RenderObject* container, FloatRect& objectBoundingBox, bool& objectBoundingBoxValid, FloatRect& strokeBoundingBox, FloatRect& repaintBoundingBox);
 
65
    static bool paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo&);
 
66
 
 
67
    // Important functions used by nearly all SVG renderers centralizing coordinate transformations / repaint rect calculations
 
68
    static FloatRect repaintRectForRendererInLocalCoordinatesExcludingSVGShadow(const RenderObject*);
 
69
    static LayoutRect clippedOverflowRectForRepaint(const RenderObject*, const RenderLayerModelObject* repaintContainer);
 
70
    static void computeFloatRectForRepaint(const RenderObject*, const RenderLayerModelObject* repaintContainer, FloatRect&, bool fixed);
 
71
    static void mapLocalToContainer(const RenderObject*, const RenderLayerModelObject* repaintContainer, TransformState&, bool snapOffsetForTransforms = true, bool* wasFixed = 0);
 
72
    static const RenderObject* pushMappingToContainer(const RenderObject*, const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&);
 
73
    static bool checkForSVGRepaintDuringLayout(RenderObject*);
 
74
 
 
75
    // Shared between SVG renderers and resources.
 
76
    static void applyStrokeStyleToContext(GraphicsContext*, const RenderStyle*, const RenderObject*);
 
77
 
 
78
    // Determines if any ancestor's transform has changed.
 
79
    static bool transformToRootChanged(RenderObject*);
 
80
 
 
81
    // Helper functions to keep track of whether a renderer has an SVG shadow applied.
 
82
    static bool rendererHasSVGShadow(const RenderObject*);
 
83
    static void setRendererHasSVGShadow(RenderObject*, bool hasShadow);
 
84
 
 
85
    static void childAdded(RenderObject* parent, RenderObject* child);
 
86
    static void styleChanged(RenderObject*);
 
87
 
 
88
    // FIXME: These methods do not belong here.
 
89
    static const RenderSVGRoot* findTreeRootObject(const RenderObject*);
 
90
 
 
91
private:
 
92
    // This class is not constructable.
 
93
    SVGRenderSupport();
 
94
    ~SVGRenderSupport();
 
95
};
 
96
 
 
97
} // namespace WebCore
 
98
 
 
99
#endif // ENABLE(SVG)
 
100
#endif // SVGRenderSupport_h