| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the render object implementation for KHTML. | 2 * This file is part of the render object implementation for KHTML. |
| 3 * | 3 * |
| 4 * Copyright (C) 2003 Apple Computer, Inc. | 4 * Copyright (C) 2003 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageHeight = 0); | 45 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageHeight = 0); |
| 46 void layoutHorizontalBox(bool relayoutChildren); | 46 void layoutHorizontalBox(bool relayoutChildren); |
| 47 void layoutVerticalBox(bool relayoutChildren); | 47 void layoutVerticalBox(bool relayoutChildren); |
| 48 | 48 |
| 49 virtual bool avoidsFloats() const { return true; } | 49 virtual bool avoidsFloats() const { return true; } |
| 50 | 50 |
| 51 virtual bool isDeprecatedFlexibleBox() const { return true; } | 51 virtual bool isDeprecatedFlexibleBox() const { return true; } |
| 52 virtual bool isFlexingChildren() const { return m_flexingChildren; } | 52 virtual bool isFlexingChildren() const { return m_flexingChildren; } |
| 53 virtual bool isStretchingChildren() const { return m_stretchingChildren; } | 53 virtual bool isStretchingChildren() const { return m_stretchingChildren; } |
| 54 virtual bool canHaveGeneratedChildren() const { return true; } | |
| 55 | 54 |
| 56 void placeChild(RenderBox* child, const LayoutPoint& location); | 55 void placeChild(RenderBox* child, const LayoutPoint& location); |
| 57 | 56 |
| 58 protected: | 57 protected: |
| 59 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group
); | 58 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group
); |
| 60 | 59 |
| 61 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; } | 60 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; } |
| 62 bool isVertical() const { return style()->boxOrient() == VERTICAL; } | 61 bool isVertical() const { return style()->boxOrient() == VERTICAL; } |
| 63 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } | 62 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } |
| 64 | 63 |
| 65 bool m_flexingChildren : 1; | 64 bool m_flexingChildren : 1; |
| 66 bool m_stretchingChildren : 1; | 65 bool m_stretchingChildren : 1; |
| 67 | 66 |
| 68 private: | 67 private: |
| 69 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren); | 68 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren); |
| 70 void clearLineClamp(); | 69 void clearLineClamp(); |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 } // namespace WebCore | 72 } // namespace WebCore |
| 74 | 73 |
| 75 #endif // RenderDeprecatedFlexibleBox_h | 74 #endif // RenderDeprecatedFlexibleBox_h |
| OLD | NEW |