| 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 RenderObjectChildList* children() { return &m_children; } | 112 RenderObjectChildList* children() { return &m_children; } |
| 113 | 113 |
| 114 virtual const char* renderName() const OVERRIDE; | 114 virtual const char* renderName() const OVERRIDE; |
| 115 | 115 |
| 116 virtual bool isRenderInline() const OVERRIDE FINAL { return true; } | 116 virtual bool isRenderInline() const OVERRIDE FINAL { return true; } |
| 117 | 117 |
| 118 LayoutRect culledInlineVisualOverflowBoundingBox() const; | 118 LayoutRect culledInlineVisualOverflowBoundingBox() const; |
| 119 InlineBox* culledInlineFirstLineBox() const; | 119 InlineBox* culledInlineFirstLineBox() const; |
| 120 InlineBox* culledInlineLastLineBox() const; | 120 InlineBox* culledInlineLastLineBox() const; |
| 121 | 121 |
| 122 virtual void invalidateTreeAfterLayout(const RenderLayerModelObject&) OVERRI
DE FINAL; |
| 123 |
| 122 template<typename GeneratorContext> | 124 template<typename GeneratorContext> |
| 123 void generateLineBoxRects(GeneratorContext& yield) const; | 125 void generateLineBoxRects(GeneratorContext& yield) const; |
| 124 template<typename GeneratorContext> | 126 template<typename GeneratorContext> |
| 125 void generateCulledLineBoxRects(GeneratorContext& yield, const RenderInline*
container) const; | 127 void generateCulledLineBoxRects(GeneratorContext& yield, const RenderInline*
container) const; |
| 126 | 128 |
| 127 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChil
d); | 129 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChil
d); |
| 128 virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObje
ct* beforeChild = 0) OVERRIDE FINAL; | 130 virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObje
ct* beforeChild = 0) OVERRIDE FINAL; |
| 129 | 131 |
| 130 void splitInlines(RenderBlock* fromBlock, RenderBlock* toBlock, RenderBlock*
middleBlock, | 132 void splitInlines(RenderBlock* fromBlock, RenderBlock* toBlock, RenderBlock*
middleBlock, |
| 131 RenderObject* beforeChild, RenderBoxModelObject* oldCont); | 133 RenderObject* beforeChild, RenderBoxModelObject* oldCont); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 RenderLineBoxList m_lineBoxes; // All of the line boxes created for this i
nline flow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. | 190 RenderLineBoxList m_lineBoxes; // All of the line boxes created for this i
nline flow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. |
| 189 | 191 |
| 190 bool m_alwaysCreateLineBoxes : 1; | 192 bool m_alwaysCreateLineBoxes : 1; |
| 191 }; | 193 }; |
| 192 | 194 |
| 193 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderInline, isRenderInline()); | 195 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderInline, isRenderInline()); |
| 194 | 196 |
| 195 } // namespace WebCore | 197 } // namespace WebCore |
| 196 | 198 |
| 197 #endif // RenderInline_h | 199 #endif // RenderInline_h |
| OLD | NEW |