| 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 13 matching lines...) Expand all Loading... |
| 24 #define RenderDeprecatedFlexibleBox_h | 24 #define RenderDeprecatedFlexibleBox_h |
| 25 | 25 |
| 26 #include "core/rendering/RenderBlock.h" | 26 #include "core/rendering/RenderBlock.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class FlexBoxIterator; | 30 class FlexBoxIterator; |
| 31 | 31 |
| 32 class RenderDeprecatedFlexibleBox FINAL : public RenderBlock { | 32 class RenderDeprecatedFlexibleBox FINAL : public RenderBlock { |
| 33 public: | 33 public: |
| 34 RenderDeprecatedFlexibleBox(Element*); | 34 RenderDeprecatedFlexibleBox(Element&); |
| 35 virtual ~RenderDeprecatedFlexibleBox(); | 35 virtual ~RenderDeprecatedFlexibleBox(); |
| 36 | 36 |
| 37 static RenderDeprecatedFlexibleBox* createAnonymous(Document*); | |
| 38 | |
| 39 virtual const char* renderName() const OVERRIDE; | 37 virtual const char* renderName() const OVERRIDE; |
| 40 | 38 |
| 41 virtual void styleWillChange(StyleDifference, const RenderStyle& newStyle) O
VERRIDE; | 39 virtual void styleWillChange(StyleDifference, const RenderStyle& newStyle) O
VERRIDE; |
| 42 | 40 |
| 43 virtual void layoutBlock(bool relayoutChildren) OVERRIDE; | 41 virtual void layoutBlock(bool relayoutChildren) OVERRIDE; |
| 44 void layoutHorizontalBox(bool relayoutChildren); | 42 void layoutHorizontalBox(bool relayoutChildren); |
| 45 void layoutVerticalBox(bool relayoutChildren); | 43 void layoutVerticalBox(bool relayoutChildren); |
| 46 | 44 |
| 47 virtual bool isDeprecatedFlexibleBox() const OVERRIDE { return true; } | 45 virtual bool isDeprecatedFlexibleBox() const OVERRIDE { return true; } |
| 48 bool isStretchingChildren() const { return m_stretchingChildren; } | 46 bool isStretchingChildren() const { return m_stretchingChildren; } |
| 49 virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false;
} | 47 virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false;
} |
| 50 | 48 |
| 51 void placeChild(RenderBox* child, const LayoutPoint& location); | 49 void placeChild(RenderBox* child, const LayoutPoint& location); |
| 52 | 50 |
| 53 protected: | 51 private: |
| 54 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; | 52 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; |
| 55 virtual void computePreferredLogicalWidths() OVERRIDE; | 53 virtual void computePreferredLogicalWidths() OVERRIDE; |
| 56 | 54 |
| 57 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group
); | 55 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group
); |
| 58 | 56 |
| 59 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; } | 57 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; } |
| 60 bool isVertical() const { return style()->boxOrient() == VERTICAL; } | 58 bool isVertical() const { return style()->boxOrient() == VERTICAL; } |
| 61 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } | 59 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } |
| 62 | 60 |
| 63 bool m_stretchingChildren; | |
| 64 | |
| 65 private: | |
| 66 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren); | 61 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren); |
| 67 void clearLineClamp(); | 62 void clearLineClamp(); |
| 63 |
| 64 bool m_stretchingChildren; |
| 68 }; | 65 }; |
| 69 | 66 |
| 70 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderDeprecatedFlexibleBox, isDeprecatedFlexibl
eBox()); | 67 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderDeprecatedFlexibleBox, isDeprecatedFlexibl
eBox()); |
| 71 | 68 |
| 72 } // namespace blink | 69 } // namespace blink |
| 73 | 70 |
| 74 #endif // RenderDeprecatedFlexibleBox_h | 71 #endif // RenderDeprecatedFlexibleBox_h |
| OLD | NEW |