| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 LayoutUnit blockDirectionOffset(const LayoutSize& offsetFromBlock) const; | 208 LayoutUnit blockDirectionOffset(const LayoutSize& offsetFromBlock) const; |
| 209 LayoutUnit inlineDirectionOffset(const LayoutSize& offsetFromBlock) const; | 209 LayoutUnit inlineDirectionOffset(const LayoutSize& offsetFromBlock) const; |
| 210 | 210 |
| 211 LayoutBlock* blockBeforeWithinSelectionRoot(LayoutSize& offset) const; | 211 LayoutBlock* blockBeforeWithinSelectionRoot(LayoutSize& offset) const; |
| 212 | 212 |
| 213 void setSelectionState(SelectionState) override; | 213 void setSelectionState(SelectionState) override; |
| 214 | 214 |
| 215 LayoutBoxModelObject* virtualContinuation() const final { return continuatio
n(); } | 215 LayoutBoxModelObject* virtualContinuation() const final { return continuatio
n(); } |
| 216 bool isAnonymousBlockContinuation() const { return continuation() && isAnony
mousBlock(); } | 216 bool isAnonymousBlockContinuation() const { return continuation() && isAnony
mousBlock(); } |
| 217 LayoutInline* inlineElementContinuation() const; | |
| 218 | 217 |
| 219 using LayoutBoxModelObject::continuation; | 218 using LayoutBoxModelObject::continuation; |
| 220 using LayoutBoxModelObject::setContinuation; | 219 using LayoutBoxModelObject::setContinuation; |
| 221 | 220 |
| 222 static LayoutBlock* createAnonymousWithParentAndDisplay(const LayoutObject*,
EDisplay = BLOCK); | 221 static LayoutBlock* createAnonymousWithParentAndDisplay(const LayoutObject*,
EDisplay = BLOCK); |
| 223 LayoutBlock* createAnonymousBlock(EDisplay display = BLOCK) const { return c
reateAnonymousWithParentAndDisplay(this, display); } | 222 LayoutBlock* createAnonymousBlock(EDisplay display = BLOCK) const { return c
reateAnonymousWithParentAndDisplay(this, display); } |
| 224 | 223 |
| 225 LayoutBox* createAnonymousBoxWithSameTypeAs(const LayoutObject* parent) cons
t override; | 224 LayoutBox* createAnonymousBoxWithSameTypeAs(const LayoutObject* parent) cons
t override; |
| 226 | 225 |
| 227 int columnGap() const; | 226 int columnGap() const; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 // FIXME: This is temporary as we move code that accesses block flow | 468 // FIXME: This is temporary as we move code that accesses block flow |
| 470 // member variables out of LayoutBlock and into LayoutBlockFlow. | 469 // member variables out of LayoutBlock and into LayoutBlockFlow. |
| 471 friend class LayoutBlockFlow; | 470 friend class LayoutBlockFlow; |
| 472 }; | 471 }; |
| 473 | 472 |
| 474 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); | 473 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); |
| 475 | 474 |
| 476 } // namespace blink | 475 } // namespace blink |
| 477 | 476 |
| 478 #endif // LayoutBlock_h | 477 #endif // LayoutBlock_h |
| OLD | NEW |