diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
commit | 7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch) | |
tree | c76702a7f6310fbe9d437e347535422e836e94e9 /khtml/README.HTMLWidget | |
parent | a2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff) | |
parent | 27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff) | |
download | tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'khtml/README.HTMLWidget')
-rw-r--r-- | khtml/README.HTMLWidget | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/khtml/README.HTMLWidget b/khtml/README.HTMLWidget deleted file mode 100644 index 571d4a947..000000000 --- a/khtml/README.HTMLWidget +++ /dev/null @@ -1,66 +0,0 @@ -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 libkhtml. -This library used to be called libkhtmlw. With the release of KDE 1.1 a -source incompatible version called libkhtml has been created. -libkhtmlw will not be maintained any more, all application writers are -urgently requested to make use of the new libkhtml library. - - -Starting Point --------------- - -You can add the widget to your program by doing something like: - -#include <khtml.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. - - |