OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 } | 94 } |
95 void adjustBlockDirectionPosition(FloatWillBeLayoutUnit delta) | 95 void adjustBlockDirectionPosition(FloatWillBeLayoutUnit delta) |
96 { | 96 { |
97 if (isHorizontal()) | 97 if (isHorizontal()) |
98 adjustPosition(0, delta); | 98 adjustPosition(0, delta); |
99 else | 99 else |
100 adjustPosition(delta, 0); | 100 adjustPosition(delta, 0); |
101 } | 101 } |
102 | 102 |
103 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom); | 103 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop,
LayoutUnit lineBottom); |
104 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, LayoutUnit
lineTop, LayoutUnit lineBottom); | 104 virtual bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInCo
ntainer, const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit li
neBottom); |
105 | 105 |
106 // InlineBoxes are allocated out of the rendering partition. | 106 // InlineBoxes are allocated out of the rendering partition. |
107 void* operator new(size_t); | 107 void* operator new(size_t); |
108 void operator delete(void*); | 108 void operator delete(void*); |
109 | 109 |
110 #ifndef NDEBUG | 110 #ifndef NDEBUG |
111 void showTreeForThis() const; | 111 void showTreeForThis() const; |
112 void showLineTreeForThis() const; | 112 void showLineTreeForThis() const; |
113 | 113 |
114 virtual void showBox(int = 0) const; | 114 virtual void showBox(int = 0) const; |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 | 451 |
452 } // namespace blink | 452 } // namespace blink |
453 | 453 |
454 #ifndef NDEBUG | 454 #ifndef NDEBUG |
455 // Outside the WebCore namespace for ease of invocation from gdb. | 455 // Outside the WebCore namespace for ease of invocation from gdb. |
456 void showTree(const blink::InlineBox*); | 456 void showTree(const blink::InlineBox*); |
457 void showLineTree(const blink::InlineBox*); | 457 void showLineTree(const blink::InlineBox*); |
458 #endif | 458 #endif |
459 | 459 |
460 #endif // InlineBox_h | 460 #endif // InlineBox_h |
OLD | NEW |