#ifndef RenderDeprecatedFlexibleBox_h
#define RenderDeprecatedFlexibleBox_h
#include "core/rendering/RenderBlock.h"
namespace WebCore {
class FlexBoxIterator;
class RenderDeprecatedFlexibleBox FINAL : public RenderBlock {
public:
RenderDeprecatedFlexibleBox(Element*);
virtual ~RenderDeprecatedFlexibleBox();
static RenderDeprecatedFlexibleBox* createAnonymous(Document*);
virtual const char* renderName() const OVERRIDE;
virtual void styleWillChange(StyleDifference, const RenderStyle& newStyle) OVERRIDE;
virtual void layoutBlock(bool relayoutChildren) OVERRIDE;
void layoutHorizontalBox(bool relayoutChildren);
void layoutVerticalBox(bool relayoutChildren);
virtual bool avoidsFloats() const OVERRIDE { return true; }
virtual bool isDeprecatedFlexibleBox() const OVERRIDE { return true; }
bool isStretchingChildren() const { return m_stretchingChildren; }
virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false; }
void placeChild(RenderBox* child, const LayoutPoint& location);
protected:
virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const OVERRIDE;
virtual void computePreferredLogicalWidths() OVERRIDE;
LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group);
bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; }
bool isVertical() const { return style()->boxOrient() == VERTICAL; }
bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; }
bool m_stretchingChildren;
private:
void applyLineClamp(FlexBoxIterator&, bool relayoutChildren);
void clearLineClamp();
};
DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderDeprecatedFlexibleBox, isDeprecatedFlexibleBox());
}
#endif