khtml Library API Documentation

html_element.h

00001 /*
00002  * This file is part of the DOM implementation for KDE.
00003  *
00004  * (C) 1999 Lars Knoll (knoll@kde.org)
00005  *
00006  * This library is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Library General Public
00008  * License as published by the Free Software Foundation; either
00009  * version 2 of the License, or (at your option) any later version.
00010  *
00011  * This library is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  * Library General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU Library General Public License
00017  * along with this library; see the file COPYING.LIB.  If not, write to
00018  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00019  * Boston, MA 02111-1307, USA.
00020  *
00021  * This file includes excerpts from the Document Object Model (DOM)
00022  * Level 1 Specification (Recommendation)
00023  * http://www.w3.org/TR/REC-DOM-Level-1/
00024  * Copyright © World Wide Web Consortium , (Massachusetts Institute of
00025  * Technology , Institut National de Recherche en Informatique et en
00026  * Automatique , Keio University ). All Rights Reserved.
00027  *
00028  */
00029 #ifndef HTML_ELEMENT_H
00030 #define HTML_ELEMENT_H
00031 
00032 #include <dom/dom_element.h>
00033 class KHTMLView;
00034 
00035 namespace DOM {
00036 
00037 class HTMLElementImpl;
00038 class DOMString;
00039 class Element;
00040 class HTMLCollection;
00041 
00067 class HTMLElement : public Element
00068 {
00069     friend class HTMLDocument;
00070     friend class ::KHTMLView;
00071     friend class HTMLTableElement;
00072     friend class HTMLTableRowElement;
00073     friend class HTMLTableSectionElement;
00074 
00075 public:
00076     HTMLElement();
00077     HTMLElement(const HTMLElement &other);
00078     HTMLElement(const Node &other) : Element()
00079          {(*this)=other;}
00080 
00081 protected:
00082     HTMLElement(HTMLElementImpl *impl);
00083 public:
00084 
00085     HTMLElement & operator = (const HTMLElement &other);
00086     HTMLElement & operator = (const Node &other);
00087 
00088     ~HTMLElement();
00089 
00096     DOMString id() const;
00097 
00101     void setId( const DOMString & );
00102 
00109     DOMString title() const;
00110 
00114     void setTitle( const DOMString & );
00115 
00122     DOMString lang() const;
00123 
00127     void setLang( const DOMString & );
00128 
00136     DOMString dir() const;
00137 
00141     void setDir( const DOMString & );
00142 
00151     DOMString className() const;
00152 
00156     void setClassName( const DOMString & );
00157 
00162     DOMString innerHTML() const;
00163 
00171     void setInnerHTML( const DOMString &html );
00172 
00177     DOMString innerText() const;
00178 
00186     void setInnerText( const DOMString &text );
00187 
00192     HTMLCollection children() const;
00193 
00198     HTMLCollection all() const;
00199 
00200     /*
00201      * @internal
00202      */
00203     void removeCSSProperty( const DOMString& property );
00204 
00205     /*
00206      * @internal
00207      */
00208     void addCSSProperty( const DOMString &property, const DOMString &value );
00209 
00210 protected:
00211     /*
00212      * @internal
00213      */
00214     void assignOther( const Node &other, int elementId );
00215 };
00216 
00217 } //namespace
00218 
00219 #endif
KDE Logo
This file is part of the documentation for khtml Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed May 5 07:22:14 2004 by doxygen 1.3.6 written by Dimitri van Heesch, © 1997-2003