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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Copyright (C) <2005> <Andrew Haines> chmspecialparser.pas
}
unit ChmSpecialParser;
{$mode objfpc}{$H+}
interface
uses
Classes, Forms, SysUtils, Controls, ComCtrls, chmsitemap;
type
TContentTreeNode = class(TTreeNode)
private
fUrl: String;
public
property Url:String read fUrl write fUrl;
end;
TIndexItem = class(TListITem)
private
fUrl: String;
public
property Url:String read fUrl write fUrl;
end;
{ TContentsFiller }
TContentsFiller = class(TObject)
private
fTreeView: TTreeView;
fSitemap: TChmSiteMap;
fChm: TObject;
fBranchCount: DWord;
fStop: PBoolean;
fLastNode: TTreeNode;
procedure AddItem(AItem: TChmSiteMapItem; AParentNode: TTreeNode);
public
constructor Create(ATreeView: TTreeView; ASitemap: TChmSiteMap; StopBoolean: PBoolean; AChm: TObject);
procedure DoFill(ParentNode: TTreeNode);
end;
implementation
uses
LConvEncoding, LazUTF8, HTMLDefs;
function ToUTF8(const AText: AnsiString): String;
var
encoding: String;
begin
encoding := GuessEncoding(AText);
if (encoding <> EncodingUTF8) then
Result := ConvertEncoding(AText, encoding, EncodingUTF8)
else
Result := AText;
end;
function FixEscapedHTML(const AText: String): String;
var
AmpPos, i: Integer;
AmpStr: String;
ws: WideString;
Entity: WideChar;
begin
Result := '';
i := 1;
while i <= Length(AText) do
begin
if AText[i]='&' then
begin
AmpPos:= i;
repeat
inc(i); // First round passes beyond '&', then search for ';'.
until (i > Length(AText)) or (AText[i] = ';');
if i > Length(AText) then
// Not HTML Entity, only ampersand by itself. Copy the rest of AText at one go.
Result := Result + RightStr(AText, i-AmpPos)
else
begin // ';' was found, this may be an HTML entity like "&xxx;".
AmpStr := Copy(AText, AmpPos+1, i-AmpPos-1);
ws := UTF8Encode(AmpStr);
if ResolveHTMLEntityReference(ws, Entity) then
Result := Result + UnicodeToUTF8(cardinal(Entity))
else
Result := Result + '?';
end;
end
else
Result := Result + AText[i];
inc(i);
end;
end;
{ TForm1 }
// Replace %20 with space, \ with /
function FixURL(URL: String):String;
var
X: LongInt;
begin
X := Pos('%20', Url);
while X > 0 do
begin
Delete(Url, X, 3);
Insert(' ', Url, X);
X := Pos('%20', Url);
end;
Result := StringReplace(Url, '\', '/', [rfReplaceAll]);
end;
{ TContentsFiller }
procedure TContentsFiller.AddItem(AItem: TChmSiteMapItem; AParentNode: TTreeNode);
var
NewNode: TContentTreeNode;
X: Integer;
txt, URL: string;
begin
if fStop^ then Exit;
txt := AItem.KeyWord;
// Fallback:
if txt = '' then txt := AItem.Text;
txt := FixEscapedHTML(ToUTF8(Trim(txt)));
if not Assigned(fLastNode) or (fLastNode.Text <> txt) then
begin
// Add new child node
fLastNode := AParentNode;
NewNode := TContentTreeNode(fTreeView.Items.AddChild(AParentNode, txt));
{$IF FPC_FULLVERSION>=30200}
URL:='';
for x:=0 to AItem.SubItemcount-1 do
begin
URL:=AItem.SubItem[x].URL;
if URL<>'' then
break;
URL:=AItem.SubItem[x].Local;
if URL<>'' then
break;
end;
{$ELSE}
URL:=AItem.URL;
{$ENDIF}
NewNode.Url := FixURL('/'+URL);
NewNode.Data := fChm;
if fTreeView.Images <> nil then
begin
NewNode.ImageIndex := 3;
NewNode.SelectedIndex := 3;
if (AParentNode.ImageIndex < 0) or (AParentNode.ImageIndex > 2) then
begin
AParentNode.ImageIndex := 1;
AParentNode.SelectedIndex := 1;
end;
end;
end
else
NewNode := TContentTreeNode(fLastNode);
Inc(fBranchCount);
if fBranchCount mod 200 = 0 then
Application.ProcessMessages;
for X := 0 to AItem.Children.Count-1 do
AddItem(AItem.Children.Item[X], NewNode);
end;
constructor TContentsFiller.Create(ATreeView: TTreeView; ASitemap: TChmSiteMap; StopBoolean: PBoolean; AChm: TObject);
begin
inherited Create;
fTreeView := ATreeView;
fSitemap := ASitemap;
fStop := StopBoolean;
fChm := AChm;
end;
procedure TContentsFiller.DoFill(ParentNode: TTreeNode);
var
X: Integer;
begin
fTreeView.BeginUpdate;
for X := 0 to fSitemap.Items.Count-1 do
AddItem(fSitemap.Items.Item[X], ParentNode);
fTreeView.EndUpdate;
end;
end.
|