| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 void setDesiredColumnCountAndWidth(int, LayoutUnit); | 511 void setDesiredColumnCountAndWidth(int, LayoutUnit); |
| 512 | 512 |
| 513 void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFloats = f
alse); | 513 void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFloats = f
alse); |
| 514 virtual void addOverflowFromChildren(); | 514 virtual void addOverflowFromChildren(); |
| 515 void addOverflowFromFloats(); | 515 void addOverflowFromFloats(); |
| 516 void addOverflowFromPositionedObjects(); | 516 void addOverflowFromPositionedObjects(); |
| 517 void addOverflowFromBlockChildren(); | 517 void addOverflowFromBlockChildren(); |
| 518 void addOverflowFromInlineChildren(); | 518 void addOverflowFromInlineChildren(); |
| 519 void addVisualOverflowFromTheme(); | 519 void addVisualOverflowFromTheme(); |
| 520 | 520 |
| 521 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& addition
alOffset, const RenderLayerModelObject* paintContainer = 0) OVERRIDE; | 521 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint&); |
| 522 | 522 |
| 523 #if ENABLE(SVG) | 523 #if ENABLE(SVG) |
| 524 // Only used by RenderSVGText, which explicitely overrides RenderBlock::layo
utBlock(), do NOT use for anything else. | 524 // Only used by RenderSVGText, which explicitely overrides RenderBlock::layo
utBlock(), do NOT use for anything else. |
| 525 void forceLayoutInlineChildren() | 525 void forceLayoutInlineChildren() |
| 526 { | 526 { |
| 527 LayoutUnit repaintLogicalTop = 0; | 527 LayoutUnit repaintLogicalTop = 0; |
| 528 LayoutUnit repaintLogicalBottom = 0; | 528 LayoutUnit repaintLogicalBottom = 0; |
| 529 clearFloats(); | 529 clearFloats(); |
| 530 layoutInlineChildren(true, repaintLogicalTop, repaintLogicalBottom); | 530 layoutInlineChildren(true, repaintLogicalTop, repaintLogicalBottom); |
| 531 } | 531 } |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 static String string(const int value); | 1254 static String string(const int value); |
| 1255 }; | 1255 }; |
| 1256 template<> struct ValueToString<RenderBlock::FloatingObject*> { | 1256 template<> struct ValueToString<RenderBlock::FloatingObject*> { |
| 1257 static String string(const RenderBlock::FloatingObject*); | 1257 static String string(const RenderBlock::FloatingObject*); |
| 1258 }; | 1258 }; |
| 1259 #endif | 1259 #endif |
| 1260 | 1260 |
| 1261 } // namespace WebCore | 1261 } // namespace WebCore |
| 1262 | 1262 |
| 1263 #endif // RenderBlock_h | 1263 #endif // RenderBlock_h |
| OLD | NEW |