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 InlineTextBoxPainter_h |
| 6 #define InlineTextBoxPainter_h |
| 7 |
| 8 #include "core/rendering/style/RenderStyleConstants.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class Color; |
| 13 struct CompositionUnderline; |
| 14 class DocumentMarker; |
| 15 class FloatPoint; |
| 16 class Font; |
| 17 class GraphicsContext; |
| 18 struct PaintInfo; |
| 19 class LayoutPoint; |
| 20 class InlineTextBox; |
| 21 class RenderStyle; |
| 22 |
| 23 class InlineTextBoxPainter { |
| 24 public: |
| 25 InlineTextBoxPainter(InlineTextBox& inlineTextBox) : m_inlineTextBox(inlineT
extBox) { } |
| 26 |
| 27 void paint(PaintInfo&, const LayoutPoint&); |
| 28 void paintDocumentMarkers(GraphicsContext*, const FloatPoint& boxOrigin, Ren
derStyle*, const Font&, bool background); |
| 29 void paintDocumentMarker(GraphicsContext*, const FloatPoint& boxOrigin, Docu
mentMarker*, RenderStyle*, const Font&, bool grammar); |
| 30 void paintTextMatchMarker(GraphicsContext*, const FloatPoint& boxOrigin, Doc
umentMarker*, RenderStyle*, const Font&); |
| 31 |
| 32 private: |
| 33 void paintCompositionBackgrounds(GraphicsContext*, const FloatPoint& boxOrig
in, RenderStyle*, const Font&, bool useCustomUnderlines); |
| 34 void paintSingleCompositionBackgroundRun(GraphicsContext*, const FloatPoint&
boxOrigin, RenderStyle*, const Font&, Color backgroundColor, int startPos, int
endPos); |
| 35 void paintSelection(GraphicsContext*, const FloatPoint& boxOrigin, RenderSty
le*, const Font&, Color textColor); |
| 36 void paintDecoration(GraphicsContext*, const FloatPoint& boxOrigin, TextDeco
ration); |
| 37 void paintCompositionUnderline(GraphicsContext*, const FloatPoint& boxOrigin
, const CompositionUnderline&); |
| 38 unsigned underlinePaintStart(const CompositionUnderline&); |
| 39 unsigned underlinePaintEnd(const CompositionUnderline&); |
| 40 |
| 41 InlineTextBox& m_inlineTextBox; |
| 42 }; |
| 43 |
| 44 } // namespace blink |
| 45 |
| 46 #endif // InlineTextBoxPainter_h |
OLD | NEW |