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/tdehtml
Timothy Pearson 21bc754111
Fix a few remaining references to kio_
11 years ago
..
css Rename KHTML and kiobuffer 11 years ago
dom Rename KHTML and kiobuffer 11 years ago
ecma Fix a few remaining references to kio_ 11 years ago
html Rename KHTML and kiobuffer 11 years ago
java Rename a few build variables for overall consistency 11 years ago
misc Rename KHTML and kiobuffer 11 years ago
pics Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
rendering Rename KHTML and kiobuffer 11 years ago
tdemultipart Fix a few remaining references to kio_ 11 years ago
test Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
xml Rename KHTML and kiobuffer 11 years ago
.emacs-dirvars Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
CMakeLists.txt Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
ChangeLog Rename KHTML and kiobuffer 11 years ago
DESIGN.html Rename KHTML and kiobuffer 11 years ago
Mainpage.dox Rename KHTML and kiobuffer 11 years ago
Makefile.am Rename a few build variables for overall consistency 11 years ago
README.HTMLWidget Rename KHTML and kiobuffer 11 years ago
SAFARI_MERGE Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
TODO Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
configure.in.in Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
design.h Rename KHTML and kiobuffer 11 years ago
domtreeview.cpp Rename KHTML and kiobuffer 11 years ago
domtreeview.h Rename KHTML and kiobuffer 11 years ago
htmlpageinfo.ui Rename KHTML and kiobuffer 11 years ago
kjserrordlg.ui Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
kjserrordlg.ui.h Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
libtdehtml.map Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml-devel-gdb Rename KHTML and kiobuffer 11 years ago
tdehtml.desktop Rename KHTML and kiobuffer 11 years ago
tdehtml.rc Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_browser.rc Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_caret.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_caret_p.h Rename KHTML and kiobuffer 11 years ago
tdehtml_events.cpp Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_events.h Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_ext.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_ext.h Rename KHTML and kiobuffer 11 years ago
tdehtml_factory.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_factory.h Rename KHTML and kiobuffer 11 years ago
tdehtml_iface.cc Rename KHTML and kiobuffer 11 years ago
tdehtml_iface.h Rename KHTML and kiobuffer 11 years ago
tdehtml_pagecache.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_pagecache.h Fix a few remaining references to kio_ 11 years ago
tdehtml_part.cpp Fix a few remaining references to kio_ 11 years ago
tdehtml_part.h Rename KHTML and kiobuffer 11 years ago
tdehtml_popupmenu.rc Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_printsettings.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_printsettings.h Rename KHTML and kiobuffer 11 years ago
tdehtml_run.cpp Rename KHTML and kiobuffer 11 years ago
tdehtml_run.h Rename KHTML and kiobuffer 11 years ago
tdehtml_settings.cc Rename KHTML and kiobuffer 11 years ago
tdehtml_settings.h Rename KHTML and kiobuffer 11 years ago
tdehtmldefaults.h Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtmlimage.cpp Rename KHTML and kiobuffer 11 years ago
tdehtmlimage.desktop Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtmlimage.h Rename KHTML and kiobuffer 11 years ago
tdehtmlpart_p.h Rename KHTML and kiobuffer 11 years ago
tdehtmlview.cpp Rename KHTML and kiobuffer 11 years ago
tdehtmlview.h Rename KHTML and kiobuffer 11 years ago
test_regression.cpp Rename KHTML and kiobuffer 11 years ago
test_regression.h Rename KHTML and kiobuffer 11 years ago
test_regression_fontoverload.cpp Rename KHTML and kiobuffer 11 years ago
testtdehtml.cpp Rename KHTML and kiobuffer 11 years ago
testtdehtml.h Rename KHTML and kiobuffer 11 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 libtdehtml.
This library used to be called libtdehtmlw. With the release of KDE 1.1 a 
source incompatible version called libtdehtml has been created. 
libtdehtmlw will not be maintained any more, all application writers are 
urgently requested to make use of the new libtdehtml library.


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

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

#include <tdehtml.h>

   .
   .
   .

    TDEHTMLWidget *view = new TDEHTMLWidget( 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.