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 ce1138c8ba
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
10 years ago
..
css Fix -tdehtml-* rename regression. This resolves bugs 1825 and 1692 11 years ago
dom
ecma Bring stop, lock, exit, and run icons into XDG compliance 10 years ago
html Don't use insane (negative) layout values if layout engine does not allocate sufficient space for a text string 10 years ago
java Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications 10 years ago
misc Additional k => tde renaming and fixes 11 years ago
pics
rendering Don't use insane (negative) layout values if layout engine does not allocate sufficient space for a text string 10 years ago
tdemultipart Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications 10 years ago
test
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
CMakeLists.txt Revert commit 1d498994 11 years ago
ChangeLog Fix -tdehtml-* rename regression. This resolves bugs 1825 and 1692 11 years ago
DESIGN.html
Mainpage.dox Additional k => tde renaming and fixes 11 years ago
Makefile.am Additional k => tde renaming and fixes 11 years ago
README.HTMLWidget
SAFARI_MERGE
TODO
configure.in.in
design.h
domtreeview.cpp Rename a number of classes to enhance compatibility with KDE4 12 years ago
domtreeview.h Rename many classes and header files to avoid conflicts with KDE4 12 years ago
htmlpageinfo.ui
kjserrordlg.ui Rebranding, tooltip, and What's This string cleanup. 11 years ago
kjserrordlg.ui.h
libtdehtml.map
tdehtml-devel-gdb
tdehtml.desktop Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications 10 years ago
tdehtml.rc
tdehtml_browser.rc
tdehtml_caret.cpp Fix remnant QMIN/QMAX to TQMIN/TQMAX. 11 years ago
tdehtml_caret_p.h
tdehtml_events.cpp
tdehtml_events.h
tdehtml_ext.cpp Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance 10 years ago
tdehtml_ext.h Rename many classes and header files to avoid conflicts with KDE4 12 years ago
tdehtml_factory.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
tdehtml_factory.h
tdehtml_iface.cc
tdehtml_iface.h
tdehtml_pagecache.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
tdehtml_pagecache.h Additional k => tde renaming and fixes 11 years ago
tdehtml_part.cpp Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance 10 years ago
tdehtml_part.h Additional k => tde renaming and fixes 11 years ago
tdehtml_popupmenu.rc
tdehtml_printsettings.cpp Fix -tdehtml-* rename regression. This resolves bugs 1825 and 1692 11 years ago
tdehtml_printsettings.h
tdehtml_run.cpp Additional k => tde renaming and fixes 11 years ago
tdehtml_run.h
tdehtml_settings.cc Rename additional header files to avoid conflicts with KDE4 12 years ago
tdehtml_settings.h
tdehtmldefaults.h
tdehtmlimage.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
tdehtmlimage.desktop Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications 10 years ago
tdehtmlimage.h
tdehtmlpart_p.h Rename KWallet to TDEWallet 11 years ago
tdehtmlview.cpp Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance 10 years ago
tdehtmlview.h
test_regression.cpp Rename additional header files to avoid conflicts with KDE4 12 years ago
test_regression.h
test_regression_fontoverload.cpp Rename common header files for consistency with class renaming 12 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

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.