Home | History | Annotate | Download | only in html
      1 /*
      2  * Copyright (C) 1999 Lars Knoll (knoll (at) kde.org)
      3  *           (C) 1999 Antti Koivisto (koivisto (at) kde.org)
      4  *           (C) 2000 Simon Hausmann <hausmann (at) kde.org>
      5  * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved.
      6  *
      7  * This library is free software; you can redistribute it and/or
      8  * modify it under the terms of the GNU Library General Public
      9  * License as published by the Free Software Foundation; either
     10  * version 2 of the License, or (at your option) any later version.
     11  *
     12  * This library is distributed in the hope that it will be useful,
     13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     15  * Library General Public License for more details.
     16  *
     17  * You should have received a copy of the GNU Library General Public License
     18  * along with this library; see the file COPYING.LIB.  If not, write to
     19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     20  * Boston, MA 02110-1301, USA.
     21  *
     22  */
     23 
     24 #ifndef HTMLBodyElement_h
     25 #define HTMLBodyElement_h
     26 
     27 #include "core/dom/Document.h"
     28 #include "core/html/HTMLElement.h"
     29 
     30 namespace blink {
     31 
     32 class Document;
     33 
     34 class HTMLBodyElement FINAL : public HTMLElement {
     35     DEFINE_WRAPPERTYPEINFO();
     36 public:
     37     DECLARE_NODE_FACTORY(HTMLBodyElement);
     38     virtual ~HTMLBodyElement();
     39 
     40     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur);
     41     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error);
     42     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus);
     43     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load);
     44     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize);
     45     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll);
     46     DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange);
     47 
     48 private:
     49     explicit HTMLBodyElement(Document&);
     50 
     51     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
     52     virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
     53     virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
     54 
     55     virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
     56     virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
     57 
     58     virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
     59     virtual bool hasLegalLinkAttribute(const QualifiedName&) const OVERRIDE;
     60     virtual const QualifiedName& subResourceAttributeName() const OVERRIDE;
     61 
     62     virtual bool supportsFocus() const OVERRIDE;
     63 
     64     virtual double scrollLeft() OVERRIDE;
     65     virtual void setScrollLeft(double) OVERRIDE;
     66 
     67     virtual double scrollTop() OVERRIDE;
     68     virtual void setScrollTop(double) OVERRIDE;
     69 
     70     virtual int scrollHeight() OVERRIDE;
     71     virtual int scrollWidth() OVERRIDE;
     72 };
     73 
     74 } // namespace blink
     75 
     76 #endif // HTMLBodyElement_h
     77