OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 RasterShape(PassOwnPtr<RasterShapeIntervals> intervals, const IntSize& margi
nRectSize) | 83 RasterShape(PassOwnPtr<RasterShapeIntervals> intervals, const IntSize& margi
nRectSize) |
84 : m_intervals(intervals) | 84 : m_intervals(intervals) |
85 , m_marginRectSize(marginRectSize) | 85 , m_marginRectSize(marginRectSize) |
86 { | 86 { |
87 m_intervals->initializeBounds(); | 87 m_intervals->initializeBounds(); |
88 } | 88 } |
89 | 89 |
90 virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE { return s
tatic_cast<LayoutRect>(marginIntervals().bounds()); } | 90 virtual LayoutRect shapeMarginLogicalBoundingBox() const OVERRIDE { return s
tatic_cast<LayoutRect>(marginIntervals().bounds()); } |
91 virtual bool isEmpty() const OVERRIDE { return m_intervals->isEmpty(); } | 91 virtual bool isEmpty() const OVERRIDE { return m_intervals->isEmpty(); } |
92 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalH
eight, SegmentList&) const OVERRIDE; | 92 virtual void getExcludedIntervals(LayoutUnit logicalTop, LayoutUnit logicalH
eight, SegmentList&) const OVERRIDE; |
| 93 virtual void buildDisplayPaths(DisplayPaths& paths) const OVERRIDE |
| 94 { |
| 95 m_intervals->buildBoundsPath(paths.shape); |
| 96 if (shapeMargin()) |
| 97 marginIntervals().buildBoundsPath(paths.marginShape); |
| 98 } |
93 | 99 |
94 private: | 100 private: |
95 const RasterShapeIntervals& marginIntervals() const; | 101 const RasterShapeIntervals& marginIntervals() const; |
96 | 102 |
97 OwnPtr<RasterShapeIntervals> m_intervals; | 103 OwnPtr<RasterShapeIntervals> m_intervals; |
98 mutable OwnPtr<RasterShapeIntervals> m_marginIntervals; | 104 mutable OwnPtr<RasterShapeIntervals> m_marginIntervals; |
99 IntSize m_marginRectSize; | 105 IntSize m_marginRectSize; |
100 }; | 106 }; |
101 | 107 |
102 } // namespace WebCore | 108 } // namespace WebCore |
103 | 109 |
104 #endif // RasterShape_h | 110 #endif // RasterShape_h |
OLD | NEW |