blob: d26ef2ebd8c27cfefe413f4836d95e3bc3eaad04 [file] [log] [blame]
/*
* This file is part of the DOM implementation for KDE.
*
* Copyright (C) 1997 Martin Jones (mjones@kde.org)
* (C) 1997 Torben Weis (weis@kde.org)
* (C) 1998 Waldo Bastian (bastian@kde.org)
* (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef HTMLTableElement_h
#define HTMLTableElement_h
#include "HTMLElement.h"
namespace WebCore {
class HTMLCollection;
class HTMLTableSectionElement;
class HTMLTableCellElement;
class HTMLTableCaptionElement;
class HTMLTableElement : public HTMLElement {
public:
enum Rules {
None = 0x00,
RGroups = 0x01,
CGroups = 0x02,
Groups = 0x03,
Rows = 0x05,
Cols = 0x0a,
All = 0x0f
};
enum Frame {
Void = 0x00,
Above = 0x01,
Below = 0x02,
Lhs = 0x04,
Rhs = 0x08,
Hsides = 0x03,
Vsides = 0x0c,
Box = 0x0f
};
HTMLTableElement(Document*);
~HTMLTableElement();
virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
virtual int tagPriority() const { return 9; }
virtual bool checkDTD(const Node*);
HTMLTableCaptionElement* caption() const { return m_caption; }
Node* setCaption(HTMLTableCaptionElement*);
HTMLTableSectionElement* tHead() const { return m_head; }
Node* setTHead(HTMLTableSectionElement*);
HTMLTableSectionElement* tFoot() const { return m_foot; }
Node* setTFoot(HTMLTableSectionElement*);
HTMLTableSectionElement* firstTBody() const { return m_firstBody; }
Node* setTBody(HTMLTableSectionElement*);
HTMLElement* createTHead();
void deleteTHead();
HTMLElement* createTFoot();
void deleteTFoot();
HTMLElement* createCaption();
void deleteCaption();
PassRefPtr<HTMLElement> insertRow(int index, ExceptionCode&);
void deleteRow(int index, ExceptionCode&);
PassRefPtr<HTMLCollection> rows();
PassRefPtr<HTMLCollection> tBodies();
String align() const;
void setAlign(const String&);
String bgColor() const;
void setBgColor(const String&);
String border() const;
void setBorder(const String&);
String cellPadding() const;
void setCellPadding(const String&);
String cellSpacing() const;
void setCellSpacing(const String&);
String frame() const;
void setFrame(const String&);
String rules() const;
void setRules(const String&);
String summary() const;
void setSummary(const String&);
String width() const;
void setWidth(const String&);
// overrides
virtual ContainerNode* addChild(PassRefPtr<Node>);
virtual void childrenChanged();
virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
virtual void parseMappedAttribute(MappedAttribute*);
// Used to obtain either a solid or outset border decl and to deal with the frame
// and rules attributes.
virtual CSSMutableStyleDeclaration* additionalAttributeStyleDecl();
CSSMutableStyleDeclaration* getSharedCellDecl();
CSSMutableStyleDeclaration* getSharedGroupDecl(bool rows);
virtual void attach();
virtual bool isURLAttribute(Attribute*) const;
enum TableRules { UnsetRules, NoneRules, GroupsRules, RowsRules, ColsRules, AllRules };
protected:
HTMLTableSectionElement* m_head;
HTMLTableSectionElement* m_foot;
HTMLTableSectionElement* m_firstBody;
HTMLTableCaptionElement* m_caption;
bool m_borderAttr; // Sets a precise border width and creates an outset border for the table and for its cells.
bool m_borderColorAttr; // Overrides the outset border and makes it solid for the table and cells instead.
bool m_frameAttr; // Implies a thin border width if no border is set and then a certain set of solid/hidden borders based off the value.
TableRules m_rulesAttr; // Implies a thin border width, a collapsing border model, and all borders on the table becoming set to hidden (if frame/border
// are present, to none otherwise).
unsigned short m_padding;
friend class HTMLTableCellElement;
};
} //namespace
#endif