blob: 84ebfedb12a4f2bf92c87431363b9bf12acae9b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 \<[email protected]\><br>
Josip A. Gracin \<[email protected]\><br>
Martin Jones \<[email protected]\><br>
Waldo Bastian \<[email protected]\><br>
Lars Knoll \<[email protected]\><br>
Antti Koivisto \<[email protected]\><br>
Dirk Mueller \<[email protected]\><br>
Peter Kelly \<[email protected]\><br>
George Staikos \<[email protected]\><br>
Allan Sandfeld Jensen \<[email protected]\><br>
Germain Garand \<[email protected]\><br>
Maksim Orlovich \<[email protected]\><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
|