forked from BerndGabriel/HtmlViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadMe.txt
117 lines (88 loc) · 4.18 KB
/
ReadMe.txt
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
--------------------------------------------------------------------------------
HtmlViewer 12 (under development) BG, 2011-04-02
--------------------------------------------------------------------------------
What is HtmlViewer 12?
HtmlViewer 12 will be a re-implementation of the HtmlViewer 11.
Some new features:
- supports Delphi 6+ and Lazarus 0.9.31+
- supports most CSS 2.1 features incl. MEDIA and DISPLAY
- supports most HTML 4.01 features incl. IFRAME, NOSCRIPT
- HTML document tree separated from visual component
- only one visual component
- for framed and unframed documents.
- for local and downloaded documents.
- faster processing (due to less string operations)
You can watch it growing in Demos\HtmlViewer12\HtmlViewer12Test.exe
--------------------------------------------------------------------------------
HtmlViewer 10.2 and 11
--------------------------------------------------------------------------------
What are the HtmlViewer Components?
The HtmlViewer component set consists of the THtmlViewer, TFrameViewer,
and TFrameBrowser components. All three are HTML document display components:
THtmlViewer
- The basic component.
- THtmlViewer displays single (non-frame) documents.
- It also forms the basis for the other two components.
TFrameViewer (deprecated)
- Displays both frame and single HTML documents.
- TFrameViewer is oriented more for local file system use.
TFrameBrowser
- Also displays frame and single HTML documents.
- TFrameBrower is oriented for use with local file systems and toward Internet
style protocols and URL usage.
- Additional code and/or components are generally required to get data from
other sources than the local file system.
These components support most of the HTML 3.2 specifications with many
additional popular HTML 4 enhancements.
Many Cascading Style Sheet properties are also supported.
Some features:
- Cascading Stylesheets
- Large HTML files
- HTML Frames
- HTML Forms
- HTML Tables
- Bitmap, GIF, JPEG, and PNG Images
- Transparent images
- Image caching
- Left and right floating images
- Image sizing attributes
- Client side image maps
- Background colors and images
- Font sizes, styles, and colors with HTML tags or default settings
- Formatted printing of the HTML document
- Print preview
- Text search
- Copy to clipboard
- Subscripts and superscripts
While HTML documents are normally associated with the Internet, they are also
very useful for displaying all kinds of textual material such as documentation,
helpfiles, etc. Graphics are easily incorporated in these documents.
For a detailed list and demonstration of features start FrameDem.exe.
For a detailed list of changes and bugfixes per version start FrameDem.exe
and click "What's new" or see "./Demos/Compiled Framedemo/whatsnew.htm".
--------------------------------------------------------------------------------
Which HtmlViewer version should I use?
HtmlViewer 10.2
- is a mixed AnsiString/WideString version suitable for projects
with a single codepage/charset.
HtmlViewer 11
- is a full WideString version suitable for projects
with several codepages/charsets.
- with Delphi 6..2007 requires the TntUnicodeControls.
- works with Lazarus 0.9.31
--------------------------------------------------------------------------------
HtmlViewer 10.2 and 11 are available at: http://code.google.com/p/thtmlviewer/
HtmlViewer developement is hosted at: https://github.com/BerndGabriel/HtmlViewer
If you are using HtmlViewer 11 with Delphi 6..2007 you will need the
TntUnicodeControls 2.3.0 or 2.2.1, which are available at:
http://www.yunqa.de/delphi/doku.php/products/tntunicodecontrols/index
Please install them into your IDE.
--------------------------------------------------------------------------------
Copyright (c) 1995 - 2008 by L. David Baldwin
Copyright (c) 1995 - 2008 by Anders Melander (DitherUnit.pas)
Copyright (c) 1995 - 2008 by Ron Collins (HtmlGif1.pas)
Copyright (c) 2008 - 2009 by Sebastian Zierer (Delphi 2009 Port)
Copyright (c) 2008 - 2010 by Arvid Winkelsdorf (Fixes)
Copyright (c) 2009 - 2012 by Bernd Gabriel (Fixes, Enhancements)
See included License.txt
--------------------------------------------------------------------------------