OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ight reserved. |
| 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 5 * |
| 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. |
| 10 * |
| 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. |
| 15 * |
| 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. |
| 20 * |
| 21 */ |
| 22 |
| 23 #ifndef LineBreaker_h |
| 24 #define LineBreaker_h |
| 25 |
| 26 #include "core/rendering/InlineIterator.h" |
| 27 #include "core/rendering/line/LineInfo.h" |
| 28 #include "platform/text/TextBreakIterator.h" |
| 29 #include "wtf/Vector.h" |
| 30 |
| 31 namespace WebCore { |
| 32 |
| 33 enum WhitespacePosition { LeadingWhitespace, TrailingWhitespace }; |
| 34 |
| 35 class RenderText; |
| 36 |
| 37 struct RenderTextInfo { |
| 38 RenderTextInfo(); |
| 39 ~RenderTextInfo(); |
| 40 |
| 41 RenderText* m_text; |
| 42 LazyLineBreakIterator m_lineBreakIterator; |
| 43 const Font* m_font; |
| 44 }; |
| 45 |
| 46 class LineBreaker { |
| 47 public: |
| 48 friend class BreakingContext; |
| 49 LineBreaker(RenderBlockFlow* block) |
| 50 : m_block(block) |
| 51 { |
| 52 reset(); |
| 53 } |
| 54 |
| 55 InlineIterator nextLineBreak(InlineBidiResolver&, LineInfo&, RenderTextInfo&
, FloatingObject* lastFloatFromPreviousLine, unsigned consecutiveHyphenatedLines
, WordMeasurements&); |
| 56 |
| 57 bool lineWasHyphenated() { return m_hyphenated; } |
| 58 const Vector<RenderBox*>& positionedObjects() { return m_positionedObjects;
} |
| 59 EClear clear() { return m_clear; } |
| 60 private: |
| 61 void reset(); |
| 62 |
| 63 InlineIterator nextSegmentBreak(InlineBidiResolver&, LineInfo&, RenderTextIn
fo&, FloatingObject* lastFloatFromPreviousLine, unsigned consecutiveHyphenatedLi
nes, WordMeasurements&); |
| 64 void skipLeadingWhitespace(InlineBidiResolver&, LineInfo&, FloatingObject* l
astFloatFromPreviousLine, LineWidth&); |
| 65 |
| 66 RenderBlockFlow* m_block; |
| 67 bool m_hyphenated; |
| 68 EClear m_clear; |
| 69 Vector<RenderBox*> m_positionedObjects; |
| 70 }; |
| 71 |
| 72 } |
| 73 |
| 74 #endif // LineBreaker_h |
OLD | NEW |