OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 26 matching lines...) Expand all Loading... |
37 public: | 37 public: |
38 RenderMultiColumnBlock(Element*); | 38 RenderMultiColumnBlock(Element*); |
39 | 39 |
40 LayoutUnit columnHeightAvailable() const { return m_columnHeightAvailable; } | 40 LayoutUnit columnHeightAvailable() const { return m_columnHeightAvailable; } |
41 | 41 |
42 LayoutUnit columnWidth() const { return m_columnWidth; } | 42 LayoutUnit columnWidth() const { return m_columnWidth; } |
43 unsigned columnCount() const { return m_columnCount; } | 43 unsigned columnCount() const { return m_columnCount; } |
44 | 44 |
45 RenderMultiColumnFlowThread* flowThread() const { return m_flowThread; } | 45 RenderMultiColumnFlowThread* flowThread() const { return m_flowThread; } |
46 | 46 |
47 bool requiresBalancing() const { return !m_columnHeightAvailable; } | 47 bool requiresBalancing() const { return !m_columnHeightAvailable || style()-
>columnFill() == ColumnFillBalance; } |
48 | 48 |
49 private: | 49 private: |
50 virtual bool isRenderMultiColumnBlock() const { return true; } | 50 virtual bool isRenderMultiColumnBlock() const { return true; } |
51 | 51 |
52 virtual const char* renderName() const; | 52 virtual const char* renderName() const; |
53 | 53 |
54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, Subt
reeLayoutScope&) OVERRIDE; | 54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, Subt
reeLayoutScope&) OVERRIDE; |
55 | 55 |
56 virtual void styleDidChange(StyleDifference, const RenderStyle*) OVERRIDE; | 56 virtual void styleDidChange(StyleDifference, const RenderStyle*) OVERRIDE; |
57 | 57 |
(...skipping 29 matching lines...) Expand all Loading... |
87 return static_cast<const RenderMultiColumnBlock*>(object); | 87 return static_cast<const RenderMultiColumnBlock*>(object); |
88 } | 88 } |
89 | 89 |
90 // This will catch anyone doing an unnecessary cast. | 90 // This will catch anyone doing an unnecessary cast. |
91 void toRenderMultiColumnBlock(const RenderMultiColumnBlock*); | 91 void toRenderMultiColumnBlock(const RenderMultiColumnBlock*); |
92 | 92 |
93 } // namespace WebCore | 93 } // namespace WebCore |
94 | 94 |
95 #endif // RenderMultiColumnBlock_h | 95 #endif // RenderMultiColumnBlock_h |
96 | 96 |
OLD | NEW |