OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SVGPaintServer_h |
| 6 #define SVGPaintServer_h |
| 7 |
| 8 #include "core/rendering/svg/RenderSVGResource.h" |
| 9 #include "platform/graphics/Gradient.h" |
| 10 #include "platform/graphics/Pattern.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class GraphicsContext; |
| 15 class GraphicsContextStateSaver; |
| 16 |
| 17 class SVGPaintServer { |
| 18 WTF_MAKE_FAST_ALLOCATED; |
| 19 public: |
| 20 SVGPaintServer(Color); |
| 21 SVGPaintServer(PassRefPtr<Gradient>); |
| 22 SVGPaintServer(PassRefPtr<Pattern>); |
| 23 |
| 24 // Update the GC state (on |stateSaver.context()|) for painting |renderer| |
| 25 // using |style|. |resourceModeFlags| is used to decide between fill/stroke. |
| 26 // Previous state will be saved (if needed) using |stateSaver|. |
| 27 static bool updateGraphicsContext(GraphicsContextStateSaver&, RenderStyle*,
RenderObject&, RenderSVGResourceModeFlags); |
| 28 |
| 29 void apply(GraphicsContext&, RenderSVGResourceMode, GraphicsContextStateSave
r* = 0); |
| 30 |
| 31 private: |
| 32 static PassOwnPtr<SVGPaintServer> requestForRenderer(RenderObject&, RenderSt
yle*, RenderSVGResourceModeFlags); |
| 33 |
| 34 RefPtr<Gradient> m_gradient; |
| 35 RefPtr<Pattern> m_pattern; |
| 36 Color m_color; |
| 37 }; |
| 38 |
| 39 } // namespace blink |
| 40 |
| 41 #endif // SVGPaintServer_h |
OLD | NEW |