You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/khtml
tpearson a93c19aaac
All documentation references to KDE should now be converted to Trinity for the new API website
14 years ago
..
css Merge commit 1170303 from the Enterprise branch 14 years ago
dom TQt conversion fixes 14 years ago
ecma * Imported all kdelibs bugfix patches from Chakra project 14 years ago
html TQt conversion fixes 14 years ago
java TQt conversion fixes 14 years ago
kmultipart Trinity Qt initial conversion 14 years ago
misc TQt conversion fixes 14 years ago
pics Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
rendering Merge commit 1170303 from the Enterprise branch 14 years ago
test Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
xml TQt conversion fixes 14 years ago
.emacs-dirvars Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
ChangeLog Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
DESIGN.html Trinity Qt initial conversion 14 years ago
Mainpage.dox All documentation references to KDE should now be converted to Trinity for the new API website 14 years ago
Makefile.am kdelibs update to Trinity v3.5.11 15 years ago
README.HTMLWidget Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
SAFARI_MERGE Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
configure.in.in Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
design.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
domtreeview.cpp Trinity Qt initial conversion 14 years ago
domtreeview.h Trinity Qt initial conversion 14 years ago
htmlpageinfo.ui Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml-devel-gdb Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml.desktop Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml_browser.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml_caret.cpp Trinity Qt initial conversion 14 years ago
khtml_caret_p.h TQt conversion fixes 14 years ago
khtml_events.cpp Trinity Qt initial conversion 14 years ago
khtml_events.h Trinity Qt initial conversion 14 years ago
khtml_ext.cpp TQt conversion fixes 14 years ago
khtml_ext.h Trinity Qt initial conversion 14 years ago
khtml_factory.cpp Trinity Qt initial conversion 14 years ago
khtml_factory.h Trinity Qt initial conversion 14 years ago
khtml_iface.cc Trinity Qt initial conversion 14 years ago
khtml_iface.h Trinity Qt initial conversion 14 years ago
khtml_pagecache.cpp Trinity Qt initial conversion 14 years ago
khtml_pagecache.h Trinity Qt initial conversion 14 years ago
khtml_part.cpp Trinity Qt initial conversion 14 years ago
khtml_part.h Trinity Qt initial conversion 14 years ago
khtml_popupmenu.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml_printsettings.cpp Trinity Qt initial conversion 14 years ago
khtml_printsettings.h TQt conversion fixes 14 years ago
khtml_run.cpp Trinity Qt initial conversion 14 years ago
khtml_run.h Trinity Qt initial conversion 14 years ago
khtml_settings.cc TQt conversion fixes 14 years ago
khtml_settings.h Trinity Qt initial conversion 14 years ago
khtmldefaults.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtmlimage.cpp Trinity Qt initial conversion 14 years ago
khtmlimage.desktop Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtmlimage.h Trinity Qt initial conversion 14 years ago
khtmlpart_p.h Trinity Qt initial conversion 14 years ago
khtmlview.cpp * Large set of SuSE patches to fix bugs and add functionality 14 years ago
khtmlview.h * Large set of SuSE patches to fix bugs and add functionality 14 years ago
kjserrordlg.ui Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kjserrordlg.ui.h Trinity Qt initial conversion 14 years ago
libkhtml.map Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
test_regression.cpp TQt conversion fixes 14 years ago
test_regression.h TQt conversion fixes 14 years ago
test_regression_fontoverload.cpp TQt conversion fixes 14 years ago
testkhtml.cpp Trinity Qt initial conversion 14 years ago
testkhtml.h Trinity Qt initial conversion 14 years ago

README.HTMLWidget

KDE HTML Widget
===============

Developers
----------

The first version was written by

Torben Weis <weis@stud.uni-frankfurt.de>

It was extended by

Josip A. Gracin <grac@fly.cc.fer.hr>,
Martin Jones <mjones@kde.org>,
Waldo Bastian <bastian@kde.org>
Lars Knoll <knoll@kde.org>
Antti Koivisto <koivisto@iki.fi>
Dirk Mueller <mueller@kde.org>
Peter Kelly <pmk@post.com>

It is currently primarily maintained and developed by
Lars Knoll, Dirk Mueller and Antti Koivisto.


Revision History
----------------

This library is called libkhtml.
This library used to be called libkhtmlw. With the release of KDE 1.1 a 
source incompatible version called libkhtml has been created. 
libkhtmlw will not be maintained any more, all application writers are 
urgently requested to make use of the new libkhtml library.


Starting Point
--------------

You can add the widget to your program by doing something like:

#include <khtml.h>

   .
   .
   .

    KHTMLWidget *view = new KHTMLWidget( parent, "Name" );
	view->show();

	view->begin( "file:/tmp/test.html" );
	view->parse();
	view->write( "<HTML><TITLE>...." );
	view->write( "..." );
	    .
		.
		.
	view->write( "</HTML>" );
	view->end();


After doing this, control must be returned to the event loop as the HTML
is parsed in the background using a Qt timer.

For more information see the full documentation in JavaDoc format included
in the header files.