diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:21 -0600 |
commit | dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch) | |
tree | c297348a55df66c571de4525646e0b9762427353 /tdehtml/README.HTMLWidget | |
parent | b7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff) | |
download | tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdehtml/README.HTMLWidget')
-rw-r--r-- | tdehtml/README.HTMLWidget | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/tdehtml/README.HTMLWidget b/tdehtml/README.HTMLWidget new file mode 100644 index 000000000..2a8900ee2 --- /dev/null +++ b/tdehtml/README.HTMLWidget @@ -0,0 +1,66 @@ +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> + + . + . + . + + KHTMLWidget *view = new KHTMLWidget( 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. + + |