Chromium Code Reviews

Side by Side Diff: Source/core/paint/BoxBorderPainter.h

Issue 1162863006: Relocate box border painting code into BoxBorderPainter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: minor cleanup Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/paint/BoxBorderPainter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
pdr. 2015/06/02 00:59:56 Nit: Not your fault but line lengths are all over
f(malita) 2015/06/02 01:12:53 Agreed, will do. I tend to wrap at ~100 whatever I
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 BoxBorderPainter_h
6 #define BoxBorderPainter_h
7
8 #include "core/layout/LayoutBoxModelObject.h"
9 #include "platform/heap/Heap.h"
10
11 namespace blink {
12
13 class ComputedStyle;
14 class LayoutBox;
15 class LayoutRect;
16 struct PaintInfo;
17
18 // TODO(fmalita): this class will evolve into a stateful painter (merged w/ BoxB orderInfo), with no
19 // static methods.
20 class BoxBorderPainter {
21 STACK_ALLOCATED();
22 public:
23 void paintBorder(LayoutBoxModelObject&, const PaintInfo&, const LayoutRect&, const ComputedStyle&,
24 BackgroundBleedAvoidance, bool includeLogicalLeftEdge, bool includeLogic alRightEdge) const;
25
26 private:
27 static void paintTranslucentBorderSides(GraphicsContext*, const ComputedStyl e&, const FloatRoundedRect& outerBorder, const FloatRoundedRect& innerBorder,
28 const BorderEdge[], BorderEdgeFlags, BackgroundBleedAvoidance, bool incl udeLogicalLeftEdge, bool includeLogicalRightEdge, bool antialias = false);
pdr. 2015/06/02 00:59:56 The optional antialias value doesn't seem to be us
f(malita) 2015/06/02 01:12:53 it's computed in paintBorder() & passed through to
pdr. 2015/06/02 01:17:33 I just mean the optional part: "bool antialias = f
29 static void paintOneBorderSide(GraphicsContext*, const ComputedStyle&, const FloatRoundedRect& outerBorder, const FloatRoundedRect& innerBorder,
pdr. 2015/06/02 00:59:56 The optional overrideColor value doesn't seem to b
f(malita) 2015/06/02 01:12:53 computed in paintTranslucentBorderSides() & used f
30 const FloatRect& sideRect, BoxSide, BoxSide adjacentSide1, BoxSide adjac entSide2, const BorderEdge[],
31 const Path*, BackgroundBleedAvoidance, bool includeLogicalLeftEdge, bool includeLogicalRightEdge, bool antialias, const Color* overrideColor = 0);
32 static void paintBorderSides(GraphicsContext*, const ComputedStyle&, const F loatRoundedRect& outerBorder, const FloatRoundedRect& innerBorder,
pdr. 2015/06/02 00:59:56 The optional antialias value doesn't seem to be us
f(malita) 2015/06/02 01:12:53 ah, if only that was true... my sleep for the last
33 const BorderEdge[], BorderEdgeFlags, BackgroundBleedAvoidance, bool incl udeLogicalLeftEdge,
34 bool includeLogicalRightEdge, bool antialias = false, const Color* overr ideColor = 0);
35 static void drawBoxSideFromPath(GraphicsContext*, const LayoutRect&, const P ath&, const BorderEdge[],
36 float thickness, float drawThickness, BoxSide, const ComputedStyle&,
37 Color, EBorderStyle, BackgroundBleedAvoidance, bool includeLogicalLeftEd ge, bool includeLogicalRightEdge);
38 static void clipBorderSidePolygon(GraphicsContext*, const FloatRoundedRect& outerBorder, const FloatRoundedRect& innerBorder,
39 BoxSide, bool firstEdgeMatches, bool secondEdgeMatches);
40 static void clipBorderSideForComplexInnerPath(GraphicsContext*, const FloatR oundedRect&, const FloatRoundedRect&, BoxSide, const BorderEdge[]);
41 };
42
43 } // namespace blink
44
45 #endif
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/paint/BoxBorderPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine