| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 virtual void adjustInlineDirectionLineBounds(unsigned /* expansionOpportunit
yCount */, float& /* logicalLeft */, float& /* logicalWidth */) const { } | 279 virtual void adjustInlineDirectionLineBounds(unsigned /* expansionOpportunit
yCount */, float& /* logicalLeft */, float& /* logicalWidth */) const { } |
| 280 | 280 |
| 281 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; | 281 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; |
| 282 virtual void computePreferredLogicalWidths() override; | 282 virtual void computePreferredLogicalWidths() override; |
| 283 void adjustIntrinsicLogicalWidthsForColumns(LayoutUnit& minLogicalWidth, Lay
outUnit& maxLogicalWidth) const; | 283 void adjustIntrinsicLogicalWidthsForColumns(LayoutUnit& minLogicalWidth, Lay
outUnit& maxLogicalWidth) const; |
| 284 | 284 |
| 285 virtual int firstLineBoxBaseline() const override; | 285 virtual int firstLineBoxBaseline() const override; |
| 286 virtual int inlineBlockBaseline(LineDirectionMode) const override; | 286 virtual int inlineBlockBaseline(LineDirectionMode) const override; |
| 287 int lastLineBoxBaseline(LineDirectionMode) const; | 287 int lastLineBoxBaseline(LineDirectionMode) const; |
| 288 | 288 |
| 289 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) overrid
e; | 289 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&, const L
ayoutRect&) override; |
| 290 | 290 |
| 291 // Delay update scrollbar until finishDelayUpdateScrollInfo() will be | 291 // Delay update scrollbar until finishDelayUpdateScrollInfo() will be |
| 292 // called. This function is used when a flexbox is laying out its | 292 // called. This function is used when a flexbox is laying out its |
| 293 // descendant. If multiple calls are made to startDelayUpdateScrollInfo(), | 293 // descendant. If multiple calls are made to startDelayUpdateScrollInfo(), |
| 294 // finishDelayUpdateScrollInfo() will do nothing until finishDelayUpdateScro
llInfo() | 294 // finishDelayUpdateScrollInfo() will do nothing until finishDelayUpdateScro
llInfo() |
| 295 // is called the same number of times. | 295 // is called the same number of times. |
| 296 static void startDelayUpdateScrollInfo(); | 296 static void startDelayUpdateScrollInfo(); |
| 297 static void finishDelayUpdateScrollInfo(); | 297 static void finishDelayUpdateScrollInfo(); |
| 298 | 298 |
| 299 void updateScrollInfoAfterLayout(); | 299 void updateScrollInfoAfterLayout(); |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 // FIXME: This is temporary as we move code that accesses block flow | 475 // FIXME: This is temporary as we move code that accesses block flow |
| 476 // member variables out of LayoutBlock and into LayoutBlockFlow. | 476 // member variables out of LayoutBlock and into LayoutBlockFlow. |
| 477 friend class LayoutBlockFlow; | 477 friend class LayoutBlockFlow; |
| 478 }; | 478 }; |
| 479 | 479 |
| 480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); | 480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); |
| 481 | 481 |
| 482 } // namespace blink | 482 } // namespace blink |
| 483 | 483 |
| 484 #endif // LayoutBlock_h | 484 #endif // LayoutBlock_h |
| OLD | NEW |