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.
Timothy Pearson
ce1138c8ba
|
10 years ago | |
---|---|---|
.. | ||
css | 11 years ago | |
dom | 12 years ago | |
ecma | 10 years ago | |
html | 10 years ago | |
java | 10 years ago | |
misc | 11 years ago | |
pics | 12 years ago | |
rendering | 10 years ago | |
tdemultipart | 10 years ago | |
test | 12 years ago | |
xml | 10 years ago | |
.emacs-dirvars | 12 years ago | |
CMakeLists.txt | 11 years ago | |
ChangeLog | 11 years ago | |
DESIGN.html | 12 years ago | |
Mainpage.dox | 11 years ago | |
Makefile.am | 11 years ago | |
README.HTMLWidget | 12 years ago | |
SAFARI_MERGE | 12 years ago | |
TODO | 12 years ago | |
configure.in.in | 12 years ago | |
design.h | 12 years ago | |
domtreeview.cpp | 12 years ago | |
domtreeview.h | 12 years ago | |
htmlpageinfo.ui | 12 years ago | |
kjserrordlg.ui | 11 years ago | |
kjserrordlg.ui.h | 12 years ago | |
libtdehtml.map | 12 years ago | |
tdehtml-devel-gdb | 12 years ago | |
tdehtml.desktop | 10 years ago | |
tdehtml.rc | 12 years ago | |
tdehtml_browser.rc | 12 years ago | |
tdehtml_caret.cpp | 11 years ago | |
tdehtml_caret_p.h | 12 years ago | |
tdehtml_events.cpp | 12 years ago | |
tdehtml_events.h | 12 years ago | |
tdehtml_ext.cpp | 10 years ago | |
tdehtml_ext.h | 12 years ago | |
tdehtml_factory.cpp | 12 years ago | |
tdehtml_factory.h | 12 years ago | |
tdehtml_iface.cc | 12 years ago | |
tdehtml_iface.h | 12 years ago | |
tdehtml_pagecache.cpp | 12 years ago | |
tdehtml_pagecache.h | 11 years ago | |
tdehtml_part.cpp | 10 years ago | |
tdehtml_part.h | 11 years ago | |
tdehtml_popupmenu.rc | 12 years ago | |
tdehtml_printsettings.cpp | 11 years ago | |
tdehtml_printsettings.h | 12 years ago | |
tdehtml_run.cpp | 11 years ago | |
tdehtml_run.h | 12 years ago | |
tdehtml_settings.cc | 12 years ago | |
tdehtml_settings.h | 12 years ago | |
tdehtmldefaults.h | 12 years ago | |
tdehtmlimage.cpp | 12 years ago | |
tdehtmlimage.desktop | 10 years ago | |
tdehtmlimage.h | 12 years ago | |
tdehtmlpart_p.h | 11 years ago | |
tdehtmlview.cpp | 10 years ago | |
tdehtmlview.h | 12 years ago | |
test_regression.cpp | 12 years ago | |
test_regression.h | 12 years ago | |
test_regression_fontoverload.cpp | 12 years ago | |
testtdehtml.cpp | 10 years ago | |
testtdehtml.h | 12 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.