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
Francois Andriot ca0faebe9a
Fix possible DOS in konqueror (CVE-2009-2537)
11 years ago
..
css Rename obsolete tq methods to standard names 12 years ago
dom Rename a few stragglers 12 years ago
ecma Fix possible DOS in konqueror (CVE-2009-2537) 11 years ago
html Rename obsolete tq methods to standard names 12 years ago
java Remove additional unneeded tq method conversions 12 years ago
kmultipart Remove additional unneeded tq method conversions 12 years ago
misc Rename obsolete tq methods to standard names 12 years ago
pics [kdelibs] added initial cmake support 14 years ago
rendering Rename obsolete tq methods to standard names 12 years ago
test Remove additional unneeded tq method conversions 12 years ago
xml Fix slot warnings when no partManager is available 11 years ago
.emacs-dirvars
CMakeLists.txt [kdelibs] move "-include tqt.h" directive to CMAKE_CXX_FLAGS; move TQT_CFLAGS_OTHER definitions to main CMakeLists.txt; remove useless defintions 13 years ago
ChangeLog Revert automated changes 13 years ago
DESIGN.html Rename obsolete tq methods to standard names 12 years ago
Mainpage.dox Fix khtml dox web page link 13 years ago
Makefile.am Aviod conflicts with Qt4 namespace members 13 years ago
README.HTMLWidget
SAFARI_MERGE Revert automated changes 13 years ago
TODO
configure.in.in Revert automated changes 13 years ago
design.h
domtreeview.cpp Trinity Qt initial conversion 14 years ago
domtreeview.h Trinity Qt initial conversion 14 years ago
htmlpageinfo.ui Use non-tq sizeHint functions to fix bindings 12 years ago
khtml-devel-gdb
khtml.desktop
khtml.rc Revert automated changes 13 years ago
khtml_browser.rc Revert automated changes 13 years ago
khtml_caret.cpp Rename obsolete tq methods to standard names 12 years ago
khtml_caret_p.h Rename obsolete tq methods to standard names 12 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 obsolete tq methods to standard names 12 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 13 years ago
khtml_pagecache.cpp Remove additional unneeded tq method conversions 12 years ago
khtml_pagecache.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 years ago
khtml_part.cpp Fix slot warnings when no partManager is available 11 years ago
khtml_part.h Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 years ago
khtml_popupmenu.rc
khtml_printsettings.cpp Finished remaining porting to new TQt API 13 years ago
khtml_printsettings.h Finished remaining porting to new TQt API 13 years ago
khtml_run.cpp Rename old tq methods that no longer need a unique name 12 years ago
khtml_run.h Trinity Qt initial conversion 14 years ago
khtml_settings.cc Remove additional unneeded tq method conversions 12 years ago
khtml_settings.h Finished remaining porting to new TQt API 13 years ago
khtmldefaults.h Finished remaining porting to new TQt API 13 years ago
khtmlimage.cpp Remove the tq in front of these incorrectly TQt4-converted methods/data members: 13 years ago
khtmlimage.desktop
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 13 years ago
khtmlview.cpp Rename obsolete tq methods to standard names 12 years ago
khtmlview.h Fix inadvertent tqt changes. 12 years ago
kjserrordlg.ui Use non-tq sizeHint functions to fix bindings 12 years ago
kjserrordlg.ui.h Trinity Qt initial conversion 14 years ago
libkhtml.map
test_regression.cpp Add source code module name to stdout/stderr messages to improve readability. 11 years ago
test_regression.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 years ago
test_regression_fontoverload.cpp Rename old tq methods that no longer need a unique name 12 years ago
testkhtml.cpp Rename old tq methods that no longer need a unique name 12 years ago
testkhtml.h Initial conversion for TQt for Qt4 3.4.0 TP2 13 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.