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 bdb1b50208
Rename kprocess.{h,cpp} to tdeprocess.{h.cpp}.
2 weeks ago
..
css Rename kdemacros.* files to tdemacros.* 6 months ago
dom Rename kdemacros.* files to tdemacros.* 6 months ago
ecma Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
html Drop Borland compiler specific code 2 months ago
java Rename kprocess.{h,cpp} to tdeprocess.{h.cpp}. 2 weeks ago
misc Rename kdemacros.* files to tdemacros.* 6 months ago
rendering Adapt to renamed tqt3 header files 3 months ago
tdemultipart Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 11 months ago
test
xml Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
.emacs-dirvars
CMakeL10n.txt Desktop file translations: 5 years ago
CMakeLists.txt Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
ChangeLog Renaming of files in preparation for code style tools. 4 years ago
DESIGN.html qt -> tqt conversion: 6 years ago
Mainpage.dox Removed code formatting modelines. 4 years ago
Makefile.am Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
README.HTMLWidget
SAFARI_MERGE
TODO
configure.in.in
design.h
domtreeview.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 11 months ago
domtreeview.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
htmlpageinfo.ui Replaced 'includehints' with 'includes' in *.ui files. 3 years ago
kjserrordlg.ui Replace Q_SIGNALS and Q_SLOTS 10 months ago
kjserrordlg.ui.h
libtdehtml.map
tdehtml-devel-gdb
tdehtml.desktop Desktop file translations: 5 years ago
tdehtml.rc
tdehtml_browser.rc
tdehtml_caret.cpp Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
tdehtml_caret_p.h Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
tdehtml_events.cpp
tdehtml_events.h
tdehtml_ext.cpp Rename kprocess.{h,cpp} to tdeprocess.{h.cpp}. 2 weeks ago
tdehtml_ext.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_factory.cpp Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
tdehtml_factory.h Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
tdehtml_iface.cpp Replace Qt with TQt 1 year ago
tdehtml_iface.h
tdehtml_pagecache.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 11 months ago
tdehtml_pagecache.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtml_part.cpp Adapt to renamed tqt3 header files 3 months ago
tdehtml_part.h Rename kdemacros.* files to tdemacros.* 6 months ago
tdehtml_popupmenu.rc
tdehtml_printsettings.cpp Fix -tdehtml-* rename regression. This resolves bugs 1825 and 1692 11 years ago
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 Replaced various '#define' with actual strings - part 3 1 year ago
tdehtml_settings.h
tdehtmldefaults.h
tdehtmlimage.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 11 months ago
tdehtmlimage.desktop Added image/webp to tdehtmlimage's list of supported formats 7 months ago
tdehtmlimage.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
tdehtmlpart_p.h Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
tdehtmlview.cpp Replace Q_WS_* defines with TQ_WS_* equivalents 10 months ago
tdehtmlview.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
test_regression.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 11 months ago
test_regression.h Replace Q_OBJECT with TQ_OBJECT 1 year ago
test_regression_fontoverload.cpp Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT 8 months ago
testtdehtml.cpp Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY. Temporarily __KDE_HAVE_GCC_VISIBILITY is still provided, till renaming on all TDE code base is completed. 5 months ago
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.