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
Timothy Pearson 3b1405169d
Additional renaming of kde to tde
13 years ago
..
css Additional renaming of kde to tde 13 years ago
dom Additional renaming of kde to tde 13 years ago
ecma Rename kwin to twin (part 1 of 2) 13 years ago
html Additional renaming of kde to tde 13 years ago
java Additional renaming of kde to tde 13 years ago
kmultipart Additional renaming of kde to tde 13 years ago
misc Additional renaming of kde to tde 13 years ago
pics [kdelibs] added initial cmake support 14 years ago
rendering Additional renaming of kde to tde 13 years ago
test Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
xml Additional renaming of kde to tde 13 years ago
.emacs-dirvars Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
CMakeLists.txt Additional renaming of kde to tde 13 years ago
ChangeLog Revert automated changes 14 years ago
DESIGN.html Convert remaining references to kde3 (e.g. in paths) to trinity 13 years ago
Mainpage.dox Additional kde to tde renaming 13 years ago
Makefile.am Additional renaming of kde to tde 13 years ago
README.HTMLWidget Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
SAFARI_MERGE Revert automated changes 14 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
configure.in.in Revert automated changes 14 years ago
design.h Additional kde to tde renaming 13 years ago
domtreeview.cpp Trinity Qt initial conversion 14 years ago
domtreeview.h Trinity Qt initial conversion 14 years ago
htmlpageinfo.ui Finished remaining porting to new TQt API 14 years ago
khtml-devel-gdb Additional renaming of kde to tde 13 years ago
khtml.desktop Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtml.rc Revert automated changes 14 years ago
khtml_browser.rc Revert automated changes 14 years ago
khtml_caret.cpp Allow kdelibs to function correctly with TQt for Qt4 13 years ago
khtml_caret_p.h Initial conversion for TQt for Qt4 3.4.0 TP2 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 rename the following methods: 13 years ago
khtml_ext.h Trinity Qt initial conversion 14 years ago
khtml_factory.cpp rename the following methods: 13 years ago
khtml_factory.h Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 years ago
khtml_iface.cc Trinity Qt initial conversion 14 years ago
khtml_iface.h Revert automated changes 14 years ago
khtml_pagecache.cpp rename the following methods: 13 years ago
khtml_pagecache.h Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
khtml_part.cpp Additional renaming of kde to tde 13 years ago
khtml_part.h Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 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 Additional kde to tde renaming 13 years ago
khtml_printsettings.h Additional kde to tde renaming 13 years ago
khtml_run.cpp Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
khtml_run.h Trinity Qt initial conversion 14 years ago
khtml_settings.cc rename the following methods: 13 years ago
khtml_settings.h Additional renaming of kde to tde 13 years ago
khtmldefaults.h Finished remaining porting to new TQt API 14 years ago
khtmlimage.cpp Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 years ago
khtmlimage.desktop Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
khtmlimage.h Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 years ago
khtmlpart_p.h Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
khtmlview.cpp Rename KDE_VERSION to TDE_VERSION 13 years ago
khtmlview.h Additional renaming of kde to tde 13 years ago
kjserrordlg.ui Finished remaining porting to new TQt API 14 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 rename the following methods: 13 years ago
test_regression.h Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
test_regression_fontoverload.cpp Initial conversion for TQt for Qt4 3.4.0 TP2 14 years ago
testkhtml.cpp rename the following methods: 13 years ago
testkhtml.h Initial conversion for TQt for Qt4 3.4.0 TP2 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.