File indexing completed on 2024-04-14 14:23:07

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 1997 Martin Jones (mjones@kde.org)
0004               (C) 1998 Waldo Bastian (bastian@kde.org)
0005               (C) 1998, 1999 Torben Weis (weis@kde.org)
0006               (C) 1999 Lars Knoll (knoll@kde.org)
0007 
0008    This library is free software; you can redistribute it and/or
0009    modify it under the terms of the GNU Library General Public
0010    License as published by the Free Software Foundation; either
0011    version 2 of the License, or (at your option) any later version.
0012 
0013    This library is distributed in the hope that it will be useful,
0014    but WITHOUT ANY WARRANTY; without even the implied warranty of
0015    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0016    Library General Public License for more details.
0017 
0018    You should have received a copy of the GNU Library General Public License
0019    along with this library; see the file COPYING.LIB.  If not, write to
0020    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0021    Boston, MA 02110-1301, USA.
0022 */
0023 
0024 /**
0025  * This library provides a full-featured HTML parser and widget. It is
0026  * used for rendering in all KDE applications which allow HTML viewing,
0027  * including the Konqueror browser/file manager, KMail, and the KDE Help
0028  * system.
0029  *
0030  * This library provides support for HTML4/XHTML, embedded Java applets,
0031  * cascading style sheets (CSS2), and JavaScript.
0032  *
0033  * If you want to add to your application a widget that only needs simple text
0034  * browsing, you can also use the KTextBrowser widget in kdeui.
0035  *
0036  * KHTMLPart :
0037  *   The main part/widget for using khtml.
0038  *
0039  * DOM :
0040  *   The dom implementation used in khtml.
0041  *
0042  */
0043 
0044 /**
0045  *
0046  * The Document Object Model (DOM) is divided into two parts, the
0047  * COREDOM core
0048  * DOM, specifying some core functionality, and the HTMLDOM HTML DOM,
0049  * which deals with the extensions needed for HTML.
0050  *
0051  *
0052  */
0053 namespace DOM
0054 {
0055 };