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 b5fad55e8b
Replaced 'includehints' with 'includes' in *.ui files.
2 years ago
..
css Fixed some uncrustify's code formatting offending files. 3 years ago
dom Rename KHTML and kiobuffer 11 years ago
ecma Removed code formatting modelines. 4 years ago
html Removed code formatting modelines. 4 years ago
java Removed code formatting modelines. 4 years ago
misc Remove remaining 'register' instructions. 4 years ago
rendering Fixed more uncrustify's code formatting offending files. 3 years ago
tdemultipart Simplify CMake rules for desktop file translations. 4 years ago
test Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
xml Don't use insane (negative) layout values if layout engine does not allocate sufficient space for a text string 10 years ago
.emacs-dirvars Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
CMakeL10n.txt Desktop file translations: 4 years ago
CMakeLists.txt Renaming of files in preparation for code style tools. 3 years ago
ChangeLog Renaming of files in preparation for code style tools. 3 years ago
DESIGN.html qt -> tqt conversion: 6 years ago
Mainpage.dox Removed code formatting modelines. 4 years ago
Makefile.am Renaming of files in preparation for code style tools. 3 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 a number of classes to enhance compatibility with KDE4 11 years ago
domtreeview.h Rename many classes and header files to avoid conflicts with KDE4 11 years ago
htmlpageinfo.ui Replaced 'includehints' with 'includes' in *.ui files. 2 years ago
kjserrordlg.ui Replaced 'includehints' with 'includes' in *.ui files. 2 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 Desktop file translations: 4 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 Fixed second pass uncrustify's code formatting offending files. 3 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 Removed code formatting modelines. 4 years ago
tdehtml_ext.h Rename many classes and header files to avoid conflicts with KDE4 11 years ago
tdehtml_factory.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
tdehtml_factory.h Rename KHTML and kiobuffer 11 years ago
tdehtml_iface.cpp Renaming of files in preparation for code style tools. 3 years ago
tdehtml_iface.h Rename KHTML and kiobuffer 11 years ago
tdehtml_pagecache.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
tdehtml_pagecache.h Additional k => tde renaming and fixes 11 years ago
tdehtml_part.cpp Removed code formatting modelines. 4 years ago
tdehtml_part.h Removed code formatting modelines. 4 years ago
tdehtml_popupmenu.rc Rename a number of libraries and executables to avoid conflicts with KDE4 11 years ago
tdehtml_printsettings.cpp Fix -tdehtml-* rename regression. This resolves bugs 1825 and 1692 10 years ago
tdehtml_printsettings.h Rename KHTML and kiobuffer 11 years ago
tdehtml_run.cpp Additional k => tde renaming and fixes 11 years ago
tdehtml_run.h Rename KHTML and kiobuffer 11 years ago
tdehtml_settings.cpp Renaming of files in preparation for code style tools. 3 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 Removed code formatting modelines. 4 years ago
tdehtmlimage.desktop Desktop file translations: 4 years ago
tdehtmlimage.h Rename KHTML and kiobuffer 11 years ago
tdehtmlpart_p.h Rename KWallet to TDEWallet 11 years ago
tdehtmlview.cpp Fix TDE branding in print job metadata from HTML library. 3 years ago
tdehtmlview.h QT_NO_* -> TQT_NO_* renaming. 6 years ago
test_regression.cpp Rename additional header files to avoid conflicts with KDE4 11 years ago
test_regression.h Rename KHTML and kiobuffer 11 years ago
test_regression_fontoverload.cpp QT_NO_* -> TQT_NO_* renaming. 6 years ago
testtdehtml.cpp Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance 10 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.