#ifndef HTMLFrameSetElement_h
#define HTMLFrameSetElement_h
#include "core/html/HTMLDimension.h"
#include "core/html/HTMLElement.h"
namespace WebCore {
class HTMLFrameSetElement FINAL : public HTMLElement {
public:
static PassRefPtr<HTMLFrameSetElement> create(Document&);
bool hasFrameBorder() const { return m_frameborder; }
bool noResize() const { return m_noresize; }
size_t totalRows() const { return std::max<size_t>(1, m_rowLengths.size()); }
size_t totalCols() const { return std::max<size_t>(1, m_colLengths.size()); }
int border() const { return hasFrameBorder() ? m_border : 0; }
bool hasBorderColor() const { return m_borderColorSet; }
const Vector<HTMLDimension>& rowLengths() const { return m_rowLengths; }
const Vector<HTMLDimension>& colLengths() const { return m_colLengths; }
DOMWindow* anonymousNamedGetter(const AtomicString&);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll);
DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange);
private:
explicit HTMLFrameSetElement(Document&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
virtual void defaultEventHandler(Event*) OVERRIDE;
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
virtual void willRecalcStyle(StyleRecalcChange) OVERRIDE;
Vector<HTMLDimension> m_rowLengths;
Vector<HTMLDimension> m_colLengths;
int m_border;
bool m_borderSet;
bool m_borderColorSet;
bool m_frameborder;
bool m_frameborderSet;
bool m_noresize;
};
}
#endif