| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/paint/BlockPainter.h" | 5 #include "core/paint/BlockPainter.h" |
| 6 | 6 |
| 7 #include "core/editing/DragCaretController.h" | 7 #include "core/editing/DragCaretController.h" |
| 8 #include "core/editing/FrameSelection.h" | 8 #include "core/editing/FrameSelection.h" |
| 9 #include "core/layout/LayoutFlexibleBox.h" | 9 #include "core/layout/LayoutFlexibleBox.h" |
| 10 #include "core/layout/LayoutInline.h" | 10 #include "core/layout/LayoutInline.h" |
| 11 #include "core/layout/api/LineLayoutAPIShim.h" | 11 #include "core/layout/api/LineLayoutAPIShim.h" |
| 12 #include "core/layout/api/LineLayoutBox.h" | 12 #include "core/layout/api/LineLayoutBox.h" |
| 13 #include "core/page/Page.h" | 13 #include "core/page/Page.h" |
| 14 #include "core/paint/BlockFlowPainter.h" | 14 #include "core/paint/BlockFlowPainter.h" |
| 15 #include "core/paint/BoxClipper.h" | 15 #include "core/paint/BoxClipper.h" |
| 16 #include "core/paint/BoxPainter.h" | 16 #include "core/paint/BoxPainter.h" |
| 17 #include "core/paint/LayoutObjectDrawingRecorder.h" | 17 #include "core/paint/LayoutObjectDrawingRecorder.h" |
| 18 #include "core/paint/ObjectPaintProperties.h" | 18 #include "core/paint/ObjectPaintProperties.h" |
| 19 #include "core/paint/ObjectPainter.h" | 19 #include "core/paint/ObjectPainter.h" |
| 20 #include "core/paint/PaintInfo.h" | 20 #include "core/paint/PaintInfo.h" |
| 21 #include "core/paint/PaintLayer.h" | 21 #include "core/paint/PaintLayer.h" |
| 22 #include "core/paint/ScrollRecorder.h" | 22 #include "core/paint/ScrollRecorder.h" |
| 23 #include "core/paint/ScrollableAreaPainter.h" | 23 #include "core/paint/ScrollableAreaPainter.h" |
| 24 #include "platform/graphics/GraphicsLayer.h" |
| 24 #include "platform/graphics/paint/ClipRecorder.h" | 25 #include "platform/graphics/paint/ClipRecorder.h" |
| 25 #include "wtf/Optional.h" | 26 #include "wtf/Optional.h" |
| 26 | 27 |
| 27 namespace blink { | 28 namespace blink { |
| 28 | 29 |
| 29 void BlockPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOff
set) | 30 void BlockPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOff
set) |
| 30 { | 31 { |
| 31 LayoutPoint adjustedPaintOffset = paintOffset + m_layoutBlock.location(); | 32 LayoutPoint adjustedPaintOffset = paintOffset + m_layoutBlock.location(); |
| 32 if (!intersectsPaintRect(paintInfo, adjustedPaintOffset)) | 33 if (!intersectsPaintRect(paintInfo, adjustedPaintOffset)) |
| 33 return; | 34 return; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 } else { | 187 } else { |
| 187 paintContents(contentsPaintInfo, paintOffset); | 188 paintContents(contentsPaintInfo, paintOffset); |
| 188 } | 189 } |
| 189 } | 190 } |
| 190 | 191 |
| 191 if (shouldPaintSelfOutline(paintPhase)) | 192 if (shouldPaintSelfOutline(paintPhase)) |
| 192 ObjectPainter(m_layoutBlock).paintOutline(paintInfo, paintOffset); | 193 ObjectPainter(m_layoutBlock).paintOutline(paintInfo, paintOffset); |
| 193 | 194 |
| 194 // If the caret's node's layout object's containing block is this block, and
the paint action is PaintPhaseForeground, | 195 // If the caret's node's layout object's containing block is this block, and
the paint action is PaintPhaseForeground, |
| 195 // then paint the caret. | 196 // then paint the caret. |
| 196 if (paintPhase == PaintPhaseForeground && m_layoutBlock.hasCaret() && !Layou
tObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutBl
ock, DisplayItem::Caret)) { | 197 if (paintPhase == PaintPhaseForeground && m_layoutBlock.hasCaret()) |
| 197 LayoutRect bounds = m_layoutBlock.visualOverflowRect(); | |
| 198 bounds.moveBy(paintOffset); | |
| 199 LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutBlock, D
isplayItem::Caret, bounds); | |
| 200 paintCarets(paintInfo, paintOffset); | 198 paintCarets(paintInfo, paintOffset); |
| 201 } | |
| 202 } | 199 } |
| 203 | 200 |
| 204 void BlockPainter::paintCarets(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) | 201 void BlockPainter::paintCarets(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) |
| 205 { | 202 { |
| 206 LocalFrame* frame = m_layoutBlock.frame(); | 203 LocalFrame* frame = m_layoutBlock.frame(); |
| 207 | 204 |
| 208 if (m_layoutBlock.hasCursorCaret()) | 205 if (m_layoutBlock.hasCursorCaret()) |
| 209 frame->selection().paintCaret(paintInfo.context, paintOffset); | 206 frame->selection().paintCaret(paintInfo.context, paintOffset); |
| 210 | 207 |
| 211 if (m_layoutBlock.hasDragCaret()) | 208 if (m_layoutBlock.hasDragCaret()) |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 } | 241 } |
| 245 | 242 |
| 246 void BlockPainter::paintContents(const PaintInfo& paintInfo, const LayoutPoint&
paintOffset) | 243 void BlockPainter::paintContents(const PaintInfo& paintInfo, const LayoutPoint&
paintOffset) |
| 247 { | 244 { |
| 248 DCHECK(!m_layoutBlock.childrenInline()); | 245 DCHECK(!m_layoutBlock.childrenInline()); |
| 249 PaintInfo paintInfoForDescendants = paintInfo.forDescendants(); | 246 PaintInfo paintInfoForDescendants = paintInfo.forDescendants(); |
| 250 m_layoutBlock.paintChildren(paintInfoForDescendants, paintOffset); | 247 m_layoutBlock.paintChildren(paintInfoForDescendants, paintOffset); |
| 251 } | 248 } |
| 252 | 249 |
| 253 } // namespace blink | 250 } // namespace blink |
| OLD | NEW |