KDE HTML Widget =============== Developers ---------- The first version was written by Torben Weis It was extended by Josip A. Gracin , Martin Jones , Waldo Bastian Lars Knoll Antti Koivisto Dirk Mueller Peter Kelly 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 . . . TDEHTMLWidget *view = new TDEHTMLWidget( parent, "Name" ); view->show(); view->begin( "file:/tmp/test.html" ); view->parse(); view->write( "...." ); 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.