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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 void ensureColumnSets(); | 68 void ensureColumnSets(); |
69 | 69 |
70 RenderMultiColumnFlowThread* m_flowThread; | 70 RenderMultiColumnFlowThread* m_flowThread; |
71 unsigned m_columnCount; // The default column count/width that are based o
ff our containing block width. These values represent only the default, | 71 unsigned m_columnCount; // The default column count/width that are based o
ff our containing block width. These values represent only the default, |
72 LayoutUnit m_columnWidth; // since a multi-column block that is split across
variable width pages or regions will have different column counts and widths in
each. | 72 LayoutUnit m_columnWidth; // since a multi-column block that is split across
variable width pages or regions will have different column counts and widths in
each. |
73 // These values will be cached (eventually) for mu
lti-column blocks. | 73 // These values will be cached (eventually) for mu
lti-column blocks. |
74 LayoutUnit m_columnHeightAvailable; // Total height available to columns, or
0 if auto. | 74 LayoutUnit m_columnHeightAvailable; // Total height available to columns, or
0 if auto. |
75 bool m_inBalancingPass; // Set when relayouting for column balancing. | 75 bool m_inBalancingPass; // Set when relayouting for column balancing. |
76 }; | 76 }; |
77 | 77 |
78 inline RenderMultiColumnBlock* toRenderMultiColumnBlock(RenderObject* object) | 78 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMultiColumnBlock, isRenderMultiColumnBlock
()); |
79 { | |
80 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderMultiColumnBlock
()); | |
81 return static_cast<RenderMultiColumnBlock*>(object); | |
82 } | |
83 | |
84 inline const RenderMultiColumnBlock* toRenderMultiColumnBlock(const RenderObject
* object) | |
85 { | |
86 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderMultiColumnBlock
()); | |
87 return static_cast<const RenderMultiColumnBlock*>(object); | |
88 } | |
89 | |
90 // This will catch anyone doing an unnecessary cast. | |
91 void toRenderMultiColumnBlock(const RenderMultiColumnBlock*); | |
92 | 79 |
93 } // namespace WebCore | 80 } // namespace WebCore |
94 | 81 |
95 #endif // RenderMultiColumnBlock_h | 82 #endif // RenderMultiColumnBlock_h |
96 | 83 |
OLD | NEW |