| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 bool startsNewTextChunk() const { return m_startsNewTextChunk; } | 55 bool startsNewTextChunk() const { return m_startsNewTextChunk; } |
| 56 void setStartsNewTextChunk(bool newTextChunk) { m_startsNewTextChunk = newTe
xtChunk; } | 56 void setStartsNewTextChunk(bool newTextChunk) { m_startsNewTextChunk = newTe
xtChunk; } |
| 57 | 57 |
| 58 int offsetForPositionInFragment(const SVGTextFragment&, LayoutUnit position,
bool includePartialGlyphs) const; | 58 int offsetForPositionInFragment(const SVGTextFragment&, LayoutUnit position,
bool includePartialGlyphs) const; |
| 59 FloatRect selectionRectForTextFragment(const SVGTextFragment&, int fragmentS
tartPosition, int fragmentEndPosition, const ComputedStyle&) const; | 59 FloatRect selectionRectForTextFragment(const SVGTextFragment&, int fragmentS
tartPosition, int fragmentEndPosition, const ComputedStyle&) const; |
| 60 TextRun constructTextRun(const ComputedStyle&, const SVGTextFragment&) const
; | 60 TextRun constructTextRun(const ComputedStyle&, const SVGTextFragment&) const
; |
| 61 | 61 |
| 62 private: | 62 private: |
| 63 void paintDocumentMarker(GraphicsContext*, const LayoutPoint&, DocumentMarke
r*, const ComputedStyle&, const Font&, bool) const final; | 63 void paintDocumentMarker(GraphicsContext*, const LayoutPoint&, DocumentMarke
r*, const ComputedStyle&, const Font&, bool) const final; |
| 64 void paintTextMatchMarker(GraphicsContext*, const LayoutPoint&, DocumentMark
er*, const ComputedStyle&, const Font&) const final; | 64 void paintTextMatchMarker(GraphicsContext*, const LayoutPoint&, DocumentMark
er*, const ComputedStyle&, const Font&, bool background = true) const final; |
| 65 | 65 |
| 66 bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer,
const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit lineBottom
) override; | 66 bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer,
const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit lineBottom
) override; |
| 67 | 67 |
| 68 LayoutUnit m_logicalHeight; | 68 LayoutUnit m_logicalHeight; |
| 69 bool m_startsNewTextChunk : 1; | 69 bool m_startsNewTextChunk : 1; |
| 70 Vector<SVGTextFragment> m_textFragments; | 70 Vector<SVGTextFragment> m_textFragments; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineTextBox); | 73 DEFINE_INLINE_BOX_TYPE_CASTS(SVGInlineTextBox); |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif // SVGInlineTextBox_h | 77 #endif // SVGInlineTextBox_h |
| OLD | NEW |