OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 ~RenderLineBoxList(); | 46 ~RenderLineBoxList(); |
47 #endif | 47 #endif |
48 | 48 |
49 InlineFlowBox* firstLineBox() const { return m_firstLineBox; } | 49 InlineFlowBox* firstLineBox() const { return m_firstLineBox; } |
50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; } | 50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; } |
51 | 51 |
52 void checkConsistency() const; | 52 void checkConsistency() const; |
53 | 53 |
54 void appendLineBox(InlineFlowBox*); | 54 void appendLineBox(InlineFlowBox*); |
55 | 55 |
56 void deleteLineBoxTree(RenderArena*); | 56 void deleteLineBoxTree(); |
57 void deleteLineBoxes(RenderArena*); | 57 void deleteLineBoxes(); |
58 | 58 |
59 void extractLineBox(InlineFlowBox*); | 59 void extractLineBox(InlineFlowBox*); |
60 void attachLineBox(InlineFlowBox*); | 60 void attachLineBox(InlineFlowBox*); |
61 void removeLineBox(InlineFlowBox*); | 61 void removeLineBox(InlineFlowBox*); |
62 | 62 |
63 void dirtyLineBoxes(); | 63 void dirtyLineBoxes(); |
64 void dirtyLinesFromChangedChild(RenderObject* parent, RenderObject* child); | 64 void dirtyLinesFromChangedChild(RenderObject* parent, RenderObject* child); |
65 | 65 |
66 void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const; | 66 void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const; |
67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, c
onst HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset,
HitTestAction) const; | 67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, c
onst HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset,
HitTestAction) const; |
(...skipping 13 matching lines...) Expand all Loading... |
81 | 81 |
82 #ifdef NDEBUG | 82 #ifdef NDEBUG |
83 inline void RenderLineBoxList::checkConsistency() const | 83 inline void RenderLineBoxList::checkConsistency() const |
84 { | 84 { |
85 } | 85 } |
86 #endif | 86 #endif |
87 | 87 |
88 } // namespace WebCore | 88 } // namespace WebCore |
89 | 89 |
90 #endif // RenderFlow_h | 90 #endif // RenderFlow_h |
OLD | NEW |