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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 FloatPoint flipForWritingMode(const FloatPoint&); | 295 FloatPoint flipForWritingMode(const FloatPoint&); |
296 void flipForWritingMode(LayoutRect&); | 296 void flipForWritingMode(LayoutRect&); |
297 LayoutPoint flipForWritingMode(const LayoutPoint&); | 297 LayoutPoint flipForWritingMode(const LayoutPoint&); |
298 | 298 |
299 bool knownToHaveNoOverflow() const { return m_bitfields.knownToHaveNoOverflo
w(); } | 299 bool knownToHaveNoOverflow() const { return m_bitfields.knownToHaveNoOverflo
w(); } |
300 void clearKnownToHaveNoOverflow(); | 300 void clearKnownToHaveNoOverflow(); |
301 | 301 |
302 bool dirOverride() const { return m_bitfields.dirOverride(); } | 302 bool dirOverride() const { return m_bitfields.dirOverride(); } |
303 void setDirOverride(bool dirOverride) { m_bitfields.setDirOverride(dirOverri
de); } | 303 void setDirOverride(bool dirOverride) { m_bitfields.setDirOverride(dirOverri
de); } |
304 | 304 |
305 virtual void reportMemoryUsage(MemoryObjectInfo*) const; | |
306 | |
307 private: | 305 private: |
308 InlineBox* m_next; // The next element on the same line as us. | 306 InlineBox* m_next; // The next element on the same line as us. |
309 InlineBox* m_prev; // The previous element on the same line as us. | 307 InlineBox* m_prev; // The previous element on the same line as us. |
310 | 308 |
311 InlineFlowBox* m_parent; // The box that contains us. | 309 InlineFlowBox* m_parent; // The box that contains us. |
312 | 310 |
313 public: | 311 public: |
314 RenderObject* m_renderer; | 312 RenderObject* m_renderer; |
315 | 313 |
316 FloatPoint m_topLeft; | 314 FloatPoint m_topLeft; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 | 436 |
439 } // namespace WebCore | 437 } // namespace WebCore |
440 | 438 |
441 #ifndef NDEBUG | 439 #ifndef NDEBUG |
442 // Outside the WebCore namespace for ease of invocation from gdb. | 440 // Outside the WebCore namespace for ease of invocation from gdb. |
443 void showTree(const WebCore::InlineBox*); | 441 void showTree(const WebCore::InlineBox*); |
444 void showLineTree(const WebCore::InlineBox*); | 442 void showLineTree(const WebCore::InlineBox*); |
445 #endif | 443 #endif |
446 | 444 |
447 #endif // InlineBox_h | 445 #endif // InlineBox_h |
OLD | NEW |