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/Mainpage.dox | |
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/Mainpage.dox')
-rw-r--r-- | tdehtml/Mainpage.dox | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/tdehtml/Mainpage.dox b/tdehtml/Mainpage.dox new file mode 100644 index 000000000..84ebfedb1 --- /dev/null +++ b/tdehtml/Mainpage.dox @@ -0,0 +1,46 @@ +/** @mainpage Trinity HTML Parser and Widget + +If you want a fully-fledged HTML browser widget in your application, +you can use KHTMLPart to do so. + +@code +KUrl url = "http://www.trinitydesktop.org"; +KHTMLPart *w = new KHTMLPart(); +w->openUrl(url); +w->view()->resize(500, 400); +w->show(); +@endcode + +For more information, see the documentation for KHTMLPart. + +Note that using KHTMLPart may introduce security vulnerabilities +and unnecessary bloat to your application. Qt's text widgets are +rich-text capable, and will interpret a limited subset of HTML. + +@authors +Torben Weis \<weis@stud.uni-frankfurt.de\><br> +Josip A. Gracin \<grac@fly.cc.fer.hr\><br> +Martin Jones \<mjones@kde.org\><br> +Waldo Bastian \<bastian@kde.org\><br> +Lars Knoll \<knoll@kde.org\><br> +Antti Koivisto \<koivisto@iki.fi\><br> +Dirk Mueller \<mueller@kde.org\><br> +Peter Kelly \<pmk@post.com\><br> +George Staikos \<staikos@kde.org\><br> +Allan Sandfeld Jensen \<kde@carewolf.com\><br> +Germain Garand \<germain@ebooksfrance.org\><br> +Maksim Orlovich \<maksim@kde.org\><br> +KHTML has also heavily benefited from the work of Apple Computer, Inc. +@maintainers +Allan Sandfeld Jensen <br> +Germain Garand<br> +Maksim Orlovich + +@licenses +@lgpl + +*/ +// DOXYGEN_REFERENCES = tdecore tdeui kio tdeparts kjs +// DOXYGEN_EXCLUDE = test*.* html rendering xml misc ecma css imload pics test +// DOXYGEN_SET_PROJECT_NAME = KHTML +// vim:ts=4:sw=4:expandtab:filetype=doxygen |