#include "core/html/HTMLElement.h"
namespace WebCore {
enum VTTNodeType {
VTTNodeTypeNone = 0,
VTTNodeTypeClass,
VTTNodeTypeItalic,
VTTNodeTypeLanguage,
VTTNodeTypeBold,
VTTNodeTypeUnderline,
VTTNodeTypeRuby,
VTTNodeTypeRubyText,
VTTNodeTypeVoice
};
class VTTElement FINAL : public Element {
public:
static PassRefPtr<VTTElement> create(const VTTNodeType, Document*);
static PassRefPtr<VTTElement> create(const QualifiedName&, Document*);
PassRefPtr<HTMLElement> createEquivalentHTMLElement(Document&);
virtual PassRefPtr<Element> cloneElementWithoutAttributesAndChildren() OVERRIDE;
void setVTTNodeType(VTTNodeType type) { m_webVTTNodeType = static_cast<unsigned>(type); }
VTTNodeType webVTTNodeType() const { return static_cast<VTTNodeType>(m_webVTTNodeType); }
bool isPastNode() const { return m_isPastNode; }
void setIsPastNode(bool value) { m_isPastNode = value; }
virtual bool isVTTElement() const OVERRIDE { return true; }
AtomicString language() const { return m_language; }
void setLanguage(AtomicString value) { m_language = value; }
static const QualifiedName& voiceAttributeName()
{
DEFINE_STATIC_LOCAL(QualifiedName, voiceAttr, (nullAtom, "voice", nullAtom));
return voiceAttr;
}
static const QualifiedName& langAttributeName()
{
DEFINE_STATIC_LOCAL(QualifiedName, voiceAttr, (nullAtom, "lang", nullAtom));
return voiceAttr;
}
private:
VTTElement(const QualifiedName&, Document*);
VTTElement(VTTNodeType, Document*);
unsigned m_isPastNode : 1;
unsigned m_webVTTNodeType : 4;
AtomicString m_language;
};
DEFINE_ELEMENT_TYPE_CASTS(VTTElement, isVTTElement());
}