OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 void collectLeafBoxesInLogicalOrder(Vector<InlineBox*>&, CustomInlineBoxRang
eReverse customReverseImplementation = 0, void* userData = 0) const; | 89 void collectLeafBoxesInLogicalOrder(Vector<InlineBox*>&, CustomInlineBoxRang
eReverse customReverseImplementation = 0, void* userData = 0) const; |
90 | 90 |
91 virtual void setConstructed() OVERRIDE FINAL | 91 virtual void setConstructed() OVERRIDE FINAL |
92 { | 92 { |
93 InlineBox::setConstructed(); | 93 InlineBox::setConstructed(); |
94 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()
) | 94 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()
) |
95 child->setConstructed(); | 95 child->setConstructed(); |
96 } | 96 } |
97 | 97 |
98 void addToLine(InlineBox* child); | 98 void addToLine(InlineBox* child); |
99 virtual void deleteLine(RenderArena*) OVERRIDE FINAL; | 99 virtual void deleteLine() OVERRIDE FINAL; |
100 virtual void extractLine() OVERRIDE FINAL; | 100 virtual void extractLine() OVERRIDE FINAL; |
101 virtual void attachLine() OVERRIDE FINAL; | 101 virtual void attachLine() OVERRIDE FINAL; |
102 virtual void adjustPosition(float dx, float dy); | 102 virtual void adjustPosition(float dx, float dy); |
103 | 103 |
104 virtual void extractLineBoxFromRenderObject(); | 104 virtual void extractLineBoxFromRenderObject(); |
105 virtual void attachLineBoxToRenderObject(); | 105 virtual void attachLineBoxToRenderObject(); |
106 virtual void removeLineBoxFromRenderObject(); | 106 virtual void removeLineBoxFromRenderObject(); |
107 | 107 |
108 virtual void clearTruncation() OVERRIDE; | 108 virtual void clearTruncation() OVERRIDE; |
109 | 109 |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 } | 380 } |
381 | 381 |
382 } // namespace WebCore | 382 } // namespace WebCore |
383 | 383 |
384 #ifndef NDEBUG | 384 #ifndef NDEBUG |
385 // Outside the WebCore namespace for ease of invocation from gdb. | 385 // Outside the WebCore namespace for ease of invocation from gdb. |
386 void showTree(const WebCore::InlineFlowBox*); | 386 void showTree(const WebCore::InlineFlowBox*); |
387 #endif | 387 #endif |
388 | 388 |
389 #endif // InlineFlowBox_h | 389 #endif // InlineFlowBox_h |
OLD | NEW |