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
Michele Calgaro 8d94694c14
Drop Symbian support
1 year ago
..
css Fixed some uncrustify's code formatting offending files. 4 years ago
dom Rename KHTML and kiobuffer 12 years ago
ecma Drop TQT_BASE_OBJECT* defines 1 year ago
html Drop Symbian support 1 year ago
java Drop TQT_TQ*_CONST defines 1 year ago
misc Replace Q_OBJECT with TQ_OBJECT 1 year ago
rendering Drop TQT_BASE_OBJECT* defines 1 year ago
tdemultipart Replace Q_OBJECT with TQ_OBJECT 1 year ago
test
xml Replace Q_OBJECT with TQ_OBJECT 1 year ago
.emacs-dirvars
CMakeL10n.txt
CMakeLists.txt
ChangeLog
DESIGN.html
Mainpage.dox
Makefile.am
README.HTMLWidget
SAFARI_MERGE
TODO
configure.in.in
design.h
domtreeview.cpp
domtreeview.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
htmlpageinfo.ui
kjserrordlg.ui
kjserrordlg.ui.h
libtdehtml.map
tdehtml-devel-gdb
tdehtml.desktop
tdehtml.rc
tdehtml_browser.rc
tdehtml_caret.cpp
tdehtml_caret_p.h
tdehtml_events.cpp
tdehtml_events.h
tdehtml_ext.cpp Drop TQT_TQ*_CONST defines 1 year ago
tdehtml_ext.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_factory.cpp
tdehtml_factory.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_iface.cpp
tdehtml_iface.h
tdehtml_pagecache.cpp
tdehtml_pagecache.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_part.cpp Drop TQT_TQ*_CONST defines 1 year ago
tdehtml_part.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_popupmenu.rc
tdehtml_printsettings.cpp
tdehtml_printsettings.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_run.cpp
tdehtml_run.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_settings.cpp
tdehtml_settings.h
tdehtmldefaults.h
tdehtmlimage.cpp
tdehtmlimage.desktop
tdehtmlimage.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtmlpart_p.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtmlview.cpp Drop USE_TQT4 code 1 year ago
tdehtmlview.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
test_regression.cpp
test_regression.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
test_regression_fontoverload.cpp
testtdehtml.cpp
testtdehtml.h Replace Q_OBJECT with TQ_OBJECT 1 year 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.