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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
|
unit chmcontentprovider;
{
Graphical CHM help content provider.
Responsible for loading TOC, providing search etc.
}
{$mode objfpc}{$H+}
{$Note Compiling lhelp with search support}
{$DEFINE CHM_SEARCH}
{$IF FPC_FULLVERSION>=20400}
{$Note Compiling lhelp *with* binary index and toc support}
// CHMs can have both binary and text Table of Contents and index
{$DEFINE CHM_BINARY_INDEX_TOC}
{$endif}
{off $DEFINE CHM_DEBUG_TIME}
interface
uses
Classes, SysUtils, ChmReader,
// LCL
LCLIntf, Forms, StdCtrls, ExtCtrls, ComCtrls, Controls, Menus,
// LazUtils
LazFileUtils, LazUTF8, Laz2_XMLCfg,
// ChmHelp
IpHtml, BaseContentProvider, FileContentProvider, ChmDataProvider, lhelpstrconsts;
type
{ TChmContentProvider }
TChmContentProvider = class(TFileContentProvider)
private
fUpdateURI: String;
fTabsControl: TPageControl;
fContentsTab: TTabSheet;
fContentsPanel: TPanel;
fContentsTree: TTreeView;
fIndexTab: TTabSheet;
fIndexEdit: TLabeledEdit;
fIndexView: TTreeView;//TListView;
fSearchTab: TTabSheet;
fKeywordLabel: TLabel;
fKeywordCombo: TComboBox;
fSearchBtn: TButton;
fResultsLabel: TLabel;
fSearchResults: TTreeView;
fSplitter: TSplitter;
fHtml: TIpHtmlPanel;
fPopUp: TPopUpMenu;
fStatusBar: TStatusBar;
fContext: THelpContext;
function GetShowStatusbar: Boolean;
procedure SetShowStatusbar(AValue: Boolean);
protected
fIsUsingHistory: Boolean;
fChms: TChmFileList;
fHistory: TStringList;
fHistoryIndex: Integer;
fStopTimer: Boolean;
fFillingToc: Boolean;
fFillingIndex: Boolean;
fActiveChmTitle: String;
FLoadingSearchURL: Boolean; // use this to try to highlight search terms
function MakeURI(AUrl: String; AChm: TChmReader): String;
procedure BeginUpdate; override;
procedure EndUpdate; override;
procedure AddHistory(URL: String);
procedure DoOpenChm(AFile: String; ACloseCurrent: Boolean = True);
procedure DoCloseChm;
procedure DoLoadContext(Context: THelpContext);
procedure DoLoadUri(Uri: String; AChm: TChmReader = nil);
procedure DoError({%H-}Error: Integer);
procedure NewChmOpened(ChmFileList: TChmFileList; Index: Integer);
procedure LoadingHTMLStream(var AStream: TStream);
// Queue TOC fill action for later processing
procedure QueueFillToc(AChm: TChmReader);
// Fills table of contents (and index for main file)
procedure FillTOC(Data: PtrInt);
procedure IpHtmlPanelDocumentOpen(Sender: TObject);
procedure IpHtmlPanelHotChange(Sender: TObject);
procedure IpHtmlPanelHotClick(Sender: TObject);
procedure PopupCopyClick(Sender: TObject);
procedure PopupCopySourceClick(Sender: TObject);
procedure ContentsTreeSelectionChanged(Sender: TObject);
procedure IndexViewDblClick(Sender: TObject);
procedure TreeViewStopCollapse(Sender: TObject; {%H-}Node: TTreeNode; var AllowCollapse: Boolean);
procedure ViewMenuContentsClick(Sender: TObject);
procedure UpdateTitle;
procedure SetTitle(const AValue: String); override;
procedure SearchEditChange(Sender: TObject);
procedure TOCExpand(Sender: TObject; Node: TTreeNode);
procedure TOCCollapse(Sender: TObject; Node: TTreeNode);
procedure SelectTreeItemFromURL(AUrl: String);
{$IFDEF CHM_SEARCH}
procedure SearchButtonClick(Sender: TObject);
procedure SearchResultsDblClick(Sender: TObject);
procedure SearchComboKeyDown(Sender: TObject; var Key: Word; {%H-}Shift: TShiftState);
procedure GetTreeNodeClass(Sender: TCustomTreeView; var NodeClass: TTreeNodeClass);
{$ENDIF}
public
procedure LoadPreferences(ACfg: TXMLConfig); override;
procedure SavePreferences(ACfg: TXMLConfig); override;
public
function CanGoBack: Boolean; override;
function CanGoForward: Boolean; override;
function GetHistory: TStrings; override;
function LoadURL(const AURL: String; const AContext: THelpContext=-1): Boolean; override;
procedure GoHome; override;
procedure GoBack; override;
procedure GoForward; override;
property TabsControl: TPageControl read fTabsControl;
property Splitter: TSplitter read fSplitter;
property ShowStatusbar: Boolean read GetShowStatusbar write SetShowStatusbar;
class function GetProperContentProvider(const {%H-}AURL: String): TBaseContentProviderClass; override;
constructor Create(AParent: TWinControl; AImageList: TImageList); override;
destructor Destroy; override;
end;
implementation
uses
clipbrd,
ChmSpecialParser{$IFDEF CHM_SEARCH}, chmFIftiMain{$ENDIF}, chmsitemap,
LCLType, SAX_HTML, Dom, DOM_HTML, HTMWrite, LConvEncoding;
type
{ THTMLWordHighlighter }
THTMLWordHighlighter = class
private
Doc: THTMLDocument;
Words: TStrings;
Color: String;
procedure ScanSubNodes(ADomNode: TDOMNode);
procedure CheckTextNode(var ATextNode: TDomNode);
public
constructor Create(AHTMLDoc: THTMLDocument);
procedure HighlightWords(AWords: TStrings; AColor: String);
end;
{ THTMLWordHighlighter }
procedure THTMLWordHighlighter.ScanSubNodes(ADomNode: TDOMNode);
var
CurNode: TDomNode;
begin
CurNode := ADomNode;
while CurNode <> nil do
begin
if CurNode.HasChildNodes then
ScanSubNodes(CurNode.FirstChild);
if CurNode.NodeType = TEXT_NODE then
CheckTextNode(CurNode);
CurNode := CurNode.NextSibling;
end;
end;
procedure THTMLWordHighlighter.CheckTextNode(var ATextNode: TDomNode);
var
i: Integer;
fPos: Integer;
WordStart,
After: TDOMText;
Span: TDomElement;
aWord: String;
Parent: TDomNode;
begin
Parent := AtextNode.ParentNode;
for i := 0 to Words.Count-1 do
begin
aWord := Words[i];
fPos := Pos(aWord, LowerCase(ATextNode.TextContent));
while fpos > 0 do
begin
WordStart:= TDOMText(ATextNode).SplitText(fPos-1);
After := WordStart.SplitText(Length(aword));
Span := doc.CreateElement('span');
Span.SetAttribute('style', 'color:'+Color+';background-color:lightgray');
Parent.InsertBefore(Span, After);
Span.AppendChild(WordStart);
// or we'll keep finding our new node again and again
ATextNode := After;
fPos := Pos(aWord, ATextNode.TextContent);
end;
end;
end;
constructor THTMLWordHighlighter.Create(AHTMLDoc: THTMLDocument);
begin
Doc := AHTMLDoc;
end;
procedure THTMLWordHighlighter.HighlightWords(AWords: TStrings; AColor: String);
var
Elem: TDOMNode;
begin
Words := AWords;
Color := AColor;
Elem := Doc.DocumentElement.FirstChild;
ScanSubNodes(Elem);
end;
function GetURIFileName(AURI: String): String;
var
FileStart,
FileEnd: Integer;
begin
FileStart := Pos(':', AURI)+1;
FileEnd := Pos('::', AURI);
Result := Copy(AURI, FileStart, FileEnd-FileStart);
end;
function GetURIURL(AURI: String): String;
var
URLStart: Integer;
begin
URLStart := Pos('::', AURI) + 2;
Result := Copy(AURI, URLStart, Length(AURI));
end;
function ChmURI(AUrl: String; AFileName: String): String;
var
FileNameNoPath: String;
begin
Result := AUrl;
if Pos('ms-its:', Result) > 0 then
Exit;
FileNameNoPath := ExtractFileName(AFileName);
Result := 'ms-its:'+FileNameNoPath+'::'+AUrl;
end;
{ TChmContentProvider }
function TChmContentProvider.GetShowStatusbar: Boolean;
begin
Result := fStatusbar.Visible;
end;
procedure TChmContentProvider.SetShowStatusbar(AValue: Boolean);
begin
fStatusbar.Visible := AValue;
end;
function TChmContentProvider.MakeURI ( AUrl: String; AChm: TChmReader ) : String;
var
ChmIndex: Integer;
begin
ChmIndex := fChms.IndexOfObject(AChm);
Result := ChmURI(AUrl, fChms.FileName[ChmIndex]);
end;
procedure TChmContentProvider.BeginUpdate;
begin
inherited BeginUpdate;
fContentsTree.BeginUpdate;
fIndexView.BeginUpdate;
end;
procedure TChmContentProvider.EndUpdate;
begin
inherited EndUpdate;
fContentsTree.EndUpdate;
fIndexView.EndUpdate;
if not IsUpdating then
begin
if fUpdateURI <> '' then
DoLoadUri(fUpdateURI);
fUpdateURI:='';
end;
end;
procedure TChmContentProvider.AddHistory(URL: String);
begin
if fHistoryIndex < fHistory.Count then
begin
while fHistory.Count-1 > fHistoryIndex do
fHistory.Delete(fHistory.Count-1);
end;
fHistory.Add(URL);
Inc(fHistoryIndex);
end;
type
TCHMHack = class(TChmFileList)
end;
procedure TChmContentProvider.DoOpenChm(AFile: String; ACloseCurrent: Boolean = True);
begin
if (fChms <> nil) and fChms.IsAnOpenFile(AFile) then Exit;
if ACloseCurrent then DoCloseChm;
if not FileExistsUTF8(AFile) or DirectoryExistsUTF8(AFile) then
begin
Exit;
end;
if fChms = nil then
begin
try
fChms := TChmFileList.Create(Utf8ToSys(AFile));
if Not(fChms.Chm[0].IsValidFile) then
begin
FreeAndNil(fChms);
//DoError(INVALID_FILE_TYPE);
Exit;
end;
TIpChmDataProvider(fHtml.DataProvider).Chm := fChms;
except
FreeAndNil(fChms);
//DoError(INVALID_FILE_TYPE);
Exit;
end;
end
else
begin
TCHMHack(fChms).OpenNewFile(AFile);
//WriteLn('Loading new chm: ', AFile);
end;
if fChms = nil then Exit;
fHistoryIndex := -1;
fHistory.Clear;
// Code here has been moved to the OpenFile handler
UpdateTitle;
end;
procedure TChmContentProvider.DoCloseChm;
var
i : integer;
begin
fStopTimer := True;
if assigned(fChms) then
begin
for i := 0 to fChms.Count -1 do
fChms.Chm[i].Free;
end;
FreeAndNil(fChms);
UpdateTitle;
end;
procedure TChmContentProvider.DoLoadContext(Context: THelpContext);
var
Str: String;
begin
if fChms = nil then exit;
Str := fChms.Chm[0].GetContextUrl(Context);
if Str <> '' then DoLoadUri(Str, fChms.Chm[0]);
end;
procedure TChmContentProvider.DoLoadUri(Uri: String; AChm: TChmReader = nil);
var
ChmIndex: Integer;
NewUrl: String;
FilteredURL: String;
fPos: Integer;
StartTime: TDateTime;
EndTime: TDateTime;
Time: String;
begin
if (fChms = nil) and (AChm = nil) then exit;
fStatusBar.SimpleText := Format(slhelp_Loading, [Uri]);
Application.ProcessMessages;
StartTime := Now;
fPos := Pos('#', Uri);
if fPos > 0 then
FilteredURL := Copy(Uri, 1, fPos -1)
else
FilteredURL := Uri;
if fChms.ObjectExists(FilteredURL, AChm) = 0 then
begin
fStatusBar.SimpleText := Format(slhelp_NotFound, [URI]);
Exit;
end;
if (Pos('ms-its', Uri) = 0) and (AChm <> nil) then
begin
ChmIndex := fChms.IndexOfObject(AChm);
NewUrl := ExtractFileName(fChms.FileName[ChmIndex]);
NewUrl := 'ms-its:'+NewUrl+'::/'+Uri;
Uri := NewUrl;
end;
if not IsUpdating then
begin
fIsUsingHistory := True;
fHtml.OpenURL(Uri);
TIpChmDataProvider(fHtml.DataProvider).CurrentPath := ExtractFileDir(URI)+'/';
AddHistory(Uri);
EndTime := Now;
Time := INtToStr(DateTimeToTimeStamp(EndTime).Time - DateTimeToTimeStamp(StartTime).Time);
fStatusBar.SimpleText := Format(slhelp_LoadedInMs, [Uri, Time]);
end
else
begin
// We are updating. Save this to load at end of update. or if there is already a request overwrite it so only the last is loaded
fUpdateURI:= Uri;
end;
end;
procedure TChmContentProvider.DoError(Error: Integer);
begin
//what to do with these errors?
//INVALID_FILE_TYPE;
end;
procedure TChmContentProvider.NewChmOpened(ChmFileList: TChmFileList;
Index: Integer);
begin
if Index = 0 then
begin
if fContext > -1 then
begin
DoLoadContext(fContext);
fContext := -1;
end
else if ChmFileList.Chm[Index].DefaultPage <> '' then
begin
DoLoadUri(MakeURI(ChmFileList.Chm[Index].DefaultPage, ChmFileList.Chm[Index]));
end;
end;
if ChmFileList.Chm[Index].Title = '' then
ChmFileList.Chm[Index].Title := ExtractFileName(ChmFileList.FileName[Index]);
// Fill the table of contents.
if Index <> 0 then
QueueFillToc(ChmFileList.Chm[Index]);
end;
procedure TChmContentProvider.LoadingHTMLStream(var AStream: TStream);
var
Doc: THTMLDocument;
NewStream: TMemoryStream;
Highlighter: THTMLWordHighlighter;
Words: TStringList;
UseOrigStream: Boolean;
begin
if not FLoadingSearchURL then
Exit;
// load html and add tags to highlight words then save back to stream
NewStream := TMemoryStream.Create;
Words := TStringList.Create;
Words.Delimiter:=' ';
Words.DelimitedText:=fKeywordCombo.Text;
Doc:=nil;
try
UseOrigStream := True;
ReadHTMLFile(Doc, AStream);
Highlighter := THTMLWordHighlighter.Create(Doc);
Highlighter.HighlightWords(Words, 'red');
WriteHTMLFile(Doc, NewStream);
UseOrigStream := False;
finally
try
Doc.Free;
Highlighter.Free;
except
UseOrigStream := True;
end;
end;
Words.Free;
if not UseOrigStream then
begin
AStream.Free;
AStream := NewStream;
NewStream.Position:=0;
end
else
NewStream.Free;
AStream.Position := 0;
end;
procedure TChmContentProvider.QueueFillToc(AChm: TChmReader);
begin
fContentsTree.Visible := False;
fContentsPanel.Caption := slhelp_TableOfContentsLoadingPleaseWait;
fStatusBar.SimpleText := slhelp_TableOfContentsLoading;
Application.ProcessMessages;
Application.QueueAsyncCall(@FillToc, PtrInt(AChm));
end;
procedure TChmContentProvider.FillTOC(Data: PtrInt);
var
CHMReader: TChmReader;
ParentNode: TTreeNode;
i: Integer;
SM: TChmSiteMap;
HasSearchIndex: Boolean = False;
{$IFNDEF CHM_BINARY_INDEX_TOC}
Stream: TMemoryStream;
{$ENDIF}
begin
if fFillingToc or fFillingIndex then
begin
Application.QueueAsyncCall(@FillToc, Data);
exit;
end;
fFillingToc := True;
fContentsTree.BeginUpdate;
CHMReader := TChmReader(Data);
{$IFDEF CHM_DEBUG_TIME}
writeln('Start: ',FormatDateTime('hh:nn:ss.zzz', Now));
{$ENDIF}
if CHMReader <> nil then
begin
ParentNode := fContentsTree.Items.AddChildObject(nil, CHMReader.Title, CHMReader);
ParentNode.ImageIndex := 0;
ParentNode.SelectedIndex := 0;
{$IFDEF CHM_BINARY_INDEX_TOC}
// GetTOCSitemap first tries binary TOC but falls back to text if needed
SM := CHMReader.GetTOCSitemap;
{$ELSE}
SM := nil;
fFillingIndex := True;
Stream := TMemoryStream(fchm.GetObject(fChm.TOCFile));
if Stream <> nil then
begin
SM := TChmSiteMap.Create(stTOC);
SM.LoadFromStream(Stream);
Stream.Free;
end;
{$ENDIF}
if SM <> nil then
begin
{$IFDEF CHM_DEBUG_TIME}
writeln('Stream read: ',FormatDateTime('hh:nn:ss.zzz', Now));
{$ENDIF}
with TContentsFiller.Create(fContentsTree, SM, @fStopTimer, CHMReader) do
begin
DoFill(ParentNode);
Free;
end;
SM.Free;
if (fContentsTree.Selected = nil) and (fHistory.Count > 0) then
SelectTreeItemFromURL(fHistory.Strings[fHistoryIndex]);
end;
if ParentNode.Index = 0 then ParentNode.Expanded := True;
fFillingToc := False;
fContentsTree.EndUpdate;
fContentsTree.Visible := True;
fContentsPanel.Caption := '';
fContentsTab.TabVisible := fContentsTree.Items.Count > 1;
Application.ProcessMessages;
fFillingIndex := True;
// we fill the index here too but only for the main file
if fChms.IndexOfObject(CHMReader) < 1 then
begin
{$IFDEF CHM_BINARY_INDEX_TOC}
SM := CHMReader.GetIndexSitemap;
{$ELSE}
SM := nil;
Stream := TMemoryStream(fchm.GetObject(fChm.IndexFile));
if Stream <> nil then
begin
SM := TChmSiteMap.Create(stTOC);
SM.LoadFromStream(Stream);
Stream.Free;
end;
{$ENDIF}
if SM <> nil then
begin
fStatusBar.SimpleText := slhelp_IndexLoading;
Application.ProcessMessages;
with TContentsFiller.Create(fIndexView, SM, @fStopTimer, CHMReader) do
begin
DoFill(nil);
Free;
end;
SM.Free;
fIndexView.FullExpand;
end;
end;
end;
fFillingIndex := False;
fIndexTab.TabVisible := fIndexView.Items.Count > 0;
fStatusBar.SimpleText:= '';
{$IFDEF CHM_DEBUG_TIME}
writeln('End: ',FormatDateTime('hh:nn:ss.zzz', Now));
{$ENDIF}
{$IFDEF CHM_SEARCH}
i := 0;
while (HasSearchIndex = False) and (i < fChms.Count) do
begin
// Look for binary full text search index in CHM file
HasSearchIndex := fChms.Chm[i].ObjectExists('/$FIftiMain') > 0;
inc(i);
end;
fSearchTab.TabVisible := HasSearchIndex;
{$ENDIF}
end;
procedure TChmContentProvider.IpHtmlPanelDocumentOpen(Sender: TObject);
begin
// StatusBar1.Panels.Items[1] := fHtml.DataProvider.;
if fIsUsingHistory = False then
AddHistory(TIpChmDataProvider(fHtml.DataProvider).CurrentPage)
else fIsUsingHistory := False;
SelectTreeItemFromURL(TIpChmDataProvider(fHtml.DataProvider).CurrentPage);
end;
procedure TChmContentProvider.IpHtmlPanelHotChange(Sender: TObject);
begin
fStatusBar.SimpleText := fHtml.HotURL;
end;
procedure TChmContentProvider.IpHtmlPanelHotClick(Sender: TObject);
var
HelpFile: String;
aPos: integer;
lcURL: String;
begin
// chm-links look like: mk:@MSITStore:D:\LazPortable\docs\chm\iPro.chm::/html/lh3zs3.htm
lcURL := Lowercase(fHtml.HotURL);
if (Pos('javascript:helppopup(''', lcURL) = 1) or
(Pos('javascript:popuplink(''', lcURL) = 1)
then begin
HelpFile := Copy(fHtml.HotURL, 23, Length(fHtml.HotURL) - (23-1));
HelpFile := Copy(HelpFile, 1, Pos('''', HelpFile)-1);
if (Pos('/',HelpFile)=0) and (Pos('.chm:',HelpFile)=0) then begin //looks like?: 'xyz.htm'
aPos := LastDelimiter('/', fHtml.CurURL);
if aPos>0 then HelpFile := Copy(fHtml.CurURL,1,aPos) + HelpFile;
end
else if (Pos('.chm:',HelpFile)=0) then begin //looks like?: 'folder/xyz.htm' or '/folder/xyz.htm'
if HelpFile[1]<>'/' then HelpFile:='/'+HelpFile;
aPos := LastDelimiter(':', fHtml.CurURL);
if aPos>0 then HelpFile := Copy(fHtml.CurURL,1,aPos) + HelpFile;
end;
DoLoadUri(HelpFile); //open it in current iphtmlpanel.
end
else
OpenURL(fHtml.HotURL);
end;
procedure TChmContentProvider.PopupCopyClick(Sender: TObject);
begin
fHtml.CopyToClipboard;
end;
procedure TChmContentProvider.PopupCopySourceClick(Sender: TObject);
var
rbs: rawbytestring;
s: String;
begin
rbs := TIpChmDataProvider(fHtml.DataProvider).GetHtmlText(fHtml.CurUrl);
s := ConvertEncoding(rbs, fHtml.MasterFrame.Html.DocCharset, encodingUTF8);
Clipboard.SetAsHtml(rbs, s);
end;
procedure TChmContentProvider.ContentsTreeSelectionChanged(Sender: TObject);
var
ATreeNode: TContentTreeNode;
ARootNode: TTreeNode;
fChm: TChmReader = nil;
Uri: String;
begin
if (fContentsTree.Selected = nil) then Exit;
if fContentsTree.Selected.Parent = nil then
begin
fChm := TChmReader(fContentsTree.Selected.Data);
fActiveChmTitle:= fChm.Title;
UpdateTitle;
if fChm.DefaultPage <> '' then
begin
Uri := MakeURI(fChm.DefaultPage, fChm);
if ((fHtml.MasterFrame <> nil) and (MakeURI(fHtml.CurURL, fChm) = Uri)) = False then
DoLoadUri(Uri);
end;
Exit;
end;
ATreeNode := TContentTreeNode(fContentsTree.Selected);
//find the chm associated with this branch
ARootNode := ATreeNode.Parent;
while ARootNode.Parent <> nil do
ARootNode := ARootNode.Parent;
fChm := TChmReader(ARootNode.Data);
try
fContentsTree.OnSelectionChanged := nil;
if ATreeNode.Url <> '' then
begin
Uri := MakeURI(ATreeNode.Url, fChm);
if ((fHtml.MasterFrame <> nil) and (MakeURI(fHtml.CurURL, fChm) = Uri)) = False then
DoLoadUri(MakeURI(ATreeNode.Url, fChm));
end;
finally
fContentsTree.OnSelectionChanged := @ContentsTreeSelectionChanged;
end;
end;
procedure TChmContentProvider.IndexViewDblClick(Sender: TObject);
var
ATreeNode: TContentTreeNode;
begin
if fIndexView.Selected = nil then Exit;
ATreeNode := TContentTreeNode(fIndexView.Selected);
// Find the chm associated with this branch
DoLoadUri(MakeURI(ATreeNode.Url, TChmReader(ATreeNode.Data)));
end;
procedure TChmContentProvider.TreeViewStopCollapse(Sender: TObject;
Node: TTreeNode; var AllowCollapse: Boolean);
begin
AllowCollapse:=False;
end;
procedure TChmContentProvider.ViewMenuContentsClick(Sender: TObject);
begin
//TMenuItem(Sender).Checked := not TMenuItem(Sender).Checked;
//fSplitter.Visible := TMenuItem(Sender).Checked;
//TabPanel.Visible := Splitter1.Visible;
end;
procedure TChmContentProvider.UpdateTitle;
var
Item: TTreeNode;
NewTitle: String;
begin
Item := fContentsTree.Items.GetFirstNode;
NewTitle := '';
while Item <> nil do
begin
if ITem.Text <> fActiveChmTitle then
begin
NewTitle:=NewTitle+Item.Text;
if (Item.GetNextSibling <> nil)
and ((Item.GetNextSibling.GetNextSibling <> nil) or (Item.GetNextSibling.Text <> fActiveChmTitle))
then
NewTitle:=NewTitle+', ';
end;
Item := Item.GetNextSibling;
end;
if NewTitle <> '' then
NewTitle := FActiveChmTitle + ' [' + NewTitle + ']'
else
NewTitle := FActiveChmTitle;
if NewTitle = '' then NewTitle := '[unknown]';
Title := NewTitle;
end;
procedure TChmContentProvider.SetTitle(const AValue: String);
begin
if fHtml.Parent = nil then exit;
TTabSheet(fHtml.Parent).Caption := AValue;
inherited SetTitle(AValue);
end;
procedure TChmContentProvider.SearchEditChange(Sender: TObject);
var
ItemName: String;
SearchText: String;
Node: TTreeNode;
begin
if fIndexEdit <> Sender then
Exit;
SearchText := LowerCase(fIndexEdit.Text);
Node := fIndexView.Items.GetFirstNode;
while Node<>nil do
begin
ItemName := LowerCase(Copy(Node.Text, 1, Length(SearchText)));
if ItemName = SearchText then
begin
fIndexView.Items.GetLastNode.MakeVisible;
Node.MakeVisible;
Node.Selected:=True;
Exit;
end;
Node := Node.GetNextSibling;
end;
fIndexView.Selected:=nil;
end;
procedure TChmContentProvider.TOCExpand(Sender: TObject; Node: TTreeNode);
begin
if Node.Parent <> nil then
begin
Node.ImageIndex := 2;
Node.SelectedIndex := 2;
end;
end;
procedure TChmContentProvider.TOCCollapse(Sender: TObject; Node: TTreeNode) ;
begin
if Node.Parent <> nil then
begin
Node.ImageIndex := 1;
Node.SelectedIndex := 1;
end;
end;
procedure TChmContentProvider.SelectTreeItemFromURL(AUrl: String);
var
FileName: String;
URL: String;
RootNode,
FoundNode,
Node: TTreeNode;
TmpHolder: TNotifyEvent;
i: integer;
begin
if fContentsTree.OnSelectionChanged = nil then
Exit; // the change was a response to a click and should be ignored
FileName := GetURIFileName(AUrl);
URL := GetURIURL(AUrl);
FoundNode := nil;
Node := nil;
for i := 0 to fChms.Count-1 do
begin
if FileName = ExtractFileName(fChms.FileName[i]) then
begin
fActiveChmTitle:= fChms.Chm[i].Title;
UpdateTitle;
RootNode := fContentsTree.Items.FindNodeWithData(fChms.Chm[i]);
if URL = fChms.Chm[i].DefaultPage then
begin
FoundNode := RootNode;
Break;
end;
if RootNode <> nil then
Node := RootNode.GetFirstChild;
Break;
end;
end;
if RootNode = nil then
Exit;
TmpHolder := fContentsTree.OnSelectionChanged;
fContentsTree.OnSelectionChanged := nil;
while (Node<>nil) and (TContentTreeNode(Node).Url<>Url) do
Node:=Node.GetNext;
if (Node <> nil) and (TContentTreeNode(Node).Url = Url) then
FoundNode := Node;
if FoundNode <> nil then
begin
fContentsTree.Selected := FoundNode;
if not FoundNode.IsVisible then
FoundNode.MakeVisible;
end
else
fContentsTree.Selected := nil;
fContentsTree.OnSelectionChanged := TmpHolder;
end;
{$IFDEF CHM_SEARCH}
procedure TChmContentProvider.SearchComboKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
case key of
VK_RETURN: SearchButtonClick(nil);
end;
end;
procedure TChmContentProvider.GetTreeNodeClass(Sender: TCustomTreeView;
var NodeClass: TTreeNodeClass);
begin
NodeClass := TContentTreeNode;
end;
procedure TChmContentProvider.LoadPreferences(ACfg: TXMLConfig);
begin
inherited LoadPreferences(ACfg);
fTabsControl.Width := ACfg.GetValue(ClassName+'/TabControlWidth/Value', fTabsControl.Width);
end;
procedure TChmContentProvider.SavePreferences(ACfg: TXMLConfig);
begin
inherited SavePreferences(ACfg);
ACfg.SetValue(ClassName+'/TabControlWidth/Value', fTabsControl.Width);
end;
procedure TChmContentProvider.SearchButtonClick ( Sender: TObject ) ;
type
TTopicEntry = record
Topic:Integer;
Hits: Integer;
TitleHits: Integer;
FoundForThisRound: Boolean;
end;
TFoundTopics = array of TTopicEntry;
var
FoundTopics: TFoundTopics;
procedure DeleteTopic(ATopicIndex: Integer);
var
MoveSize: DWord;
begin
//WriteLn('Deleting Topic');
if ATopicIndex < High(FoundTopics) then
begin
MoveSize := SizeOf(TTopicEntry) * (High(FoundTopics) - (ATopicIndex+1));
Move(FoundTopics[ATopicIndex+1], FoundTopics[ATopicIndex], MoveSize);
end;
SetLength(FoundTopics, Length(FoundTopics) -1);
end;
function GetTopicIndex(ATopicID: Integer): Integer;
var
i: Integer;
begin
Result := -1;
for i := 0 to High(FoundTopics) do
begin
if FoundTopics[i].Topic = ATopicID then
Exit(i);
end;
end;
procedure UpdateTopic(TopicID: Integer; NewHits: Integer; NewTitleHits: Integer; AddNewTopic: Boolean);
var
TopicIndex: Integer;
begin
//WriteLn('Updating topic');
TopicIndex := GetTopicIndex(TopicID);
if TopicIndex = -1 then
begin
if AddNewTopic = False then
Exit;
SetLength(FoundTopics, Length(FoundTopics)+1);
TopicIndex := High(FoundTopics);
FoundTopics[TopicIndex].Topic := TopicID;
end;
FoundTopics[TopicIndex].FoundForThisRound := True;
if NewHits > 0 then
Inc(FoundTopics[TopicIndex].Hits, NewHits);
if NewTitleHits > 0 then
Inc(FoundTopics[TopicIndex].TitleHits, NewTitleHits);
end;
var
TopicResults: TChmWLCTopicArray;
TitleResults: TChmWLCTopicArray;
FIftiMainStream: TMemoryStream;
SearchWords: TStringList;
SearchReader: TChmSearchReader;
DocTitle: String;
DocURL: String;
i: Integer;
j: Integer;
k: Integer;
Item: TContentTreeNode;
begin
// if fKeywordCombo.Text = '' then Exit;
SearchWords := TStringList.Create;
try
SearchWords.Delimiter := ' ';
Searchwords.DelimitedText := fKeywordCombo.Text;
if fKeywordCombo.Items.IndexOf(fKeywordCombo.Text) = -1 then
fKeywordCombo.Items.Add(fKeywordCombo.Text);
fSearchResults.BeginUpdate;
fSearchResults.Items.Clear;
//WriteLn('Search words: ', SearchWords.Text);
for i := 0 to fChms.Count-1 do
begin
for j := 0 to SearchWords.Count-1 do
begin
if fChms.Chm[i].SearchReader = nil then
begin
FIftiMainStream := fchms.Chm[i].GetObject('/$FIftiMain');
if FIftiMainStream = nil then
continue;
SearchReader := TChmSearchReader.Create(FIftiMainStream, True); //frees the stream when done
fChms.Chm[i].SearchReader := SearchReader;
end
else
SearchReader := fChms.Chm[i].SearchReader;
TopicResults := SearchReader.LookupWord(SearchWords[j], TitleResults);
// Body results
for k := 0 to High(TopicResults) do
UpdateTopic(TopicResults[k].TopicIndex, High(TopicResults[k].LocationCodes), 0, j = 0);
// Title results
for k := 0 to High(TitleResults) do
UpdateTopic(TitleResults[k].TopicIndex, 0, High(TitleResults[k].LocationCodes), j = 0);
// Remove documents that don't have results
k := 0;
while k <= High(FoundTopics) do
begin
if FoundTopics[k].FoundForThisRound = False then
DeleteTopic(k)
else
begin
FoundTopics[k].FoundForThisRound := False;
Inc(k);
end;
end;
end;
// Clear out results that don't contain all the words we are looking for
Item := nil;
// Now lookup titles and urls to add to final search results
for j := 0 to High(FoundTopics) do
begin
try
DocURL := fChms.Chm[i].LookupTopicByID(FoundTopics[j].Topic, DocTitle);
if (Length(DocURL) > 0) and (DocURL[1] <> '/') then
Insert('/', DocURL, 1);
if DocTitle = '' then
DocTitle := slhelp_Untitled;
Item := TContentTreeNode(fSearchResults.Items.Add(Item, DocTitle));
Item.Data:= fChms.Chm[i];
Item.Url:= DocURL;
except
//WriteLn('Exception');
// :)
end;
end;
SetLength(FoundTopics, 0);
end;
SetLength(FoundTopics, 0);
finally
SearchWords.Free;
end;
if fSearchResults.Items.Count = 0 then
begin
fSearchResults.Items.Add(nil, slhelp_NoResults);
end;
fSearchResults.EndUpdate;
end;
procedure TChmContentProvider.SearchResultsDblClick ( Sender: TObject ) ;
var
Item: TContentTreeNode;
begin
Item := TContentTreeNode(fSearchResults.Selected);
if (Item = nil) or (Item.Data = nil) then
Exit;
FLoadingSearchURL:= True;
DoLoadUri(MakeURI(Item.Url, TChmReader(Item.Data)));
FLoadingSearchURL:= False;
end;
{$ENDIF}
function TChmContentProvider.CanGoBack: Boolean;
begin
Result := fHistoryIndex > 0;
end;
function TChmContentProvider.CanGoForward: Boolean;
begin
Result := fHistoryIndex < fHistory.Count-1
end;
function TChmContentProvider.GetHistory: TStrings;
begin
Result:= fHistory;
end;
function TChmContentProvider.LoadURL(const AURL: String; const AContext: THelpContext=-1): Boolean;
var
fFile: String;
fURL: String = '';
fPos: Integer;
FileIndex: Integer;
LoadTOC: Boolean;
CurCHM: TChmReader;
ContextURL: String;
begin
Result := False;
fFile := Copy(AUrl,8, Length(AURL));
fPos := Pos('://', fFile);
if fPos > 0 then
begin
fURL := Copy(fFile, fPos+3, Length(fFIle));
fFile := Copy(fFIle, 1, fPos-1);
end;
LoadTOC := (fChms = nil) or (fChms.IndexOf(fFile) < 0);
DoOpenChm(fFile, False);
// in case of exception fChms can be still = nil
if fChms <> nil then
FileIndex := fChms.IndexOf(fFile)
else
Exit;
CurCHM := fChms.Chm[FileIndex];
if LoadTOC and (FileIndex = 0) then
begin
QueueFillToc(CurCHM);
end;
// AContext will override the URL if it is found
if AContext <> -1 then
begin
ContextURL := CurCHM.GetContextUrl(AContext);
if (Length(ContextURL) > 0) and not (ContextURL[1] in ['/', '\']) then
Insert('/', ContextURL , 1);
if Length(ContextURL) > 0 then
fURL := ContextURL;
end;
if fURL <> '' then
DoLoadUri(MakeURI(fURL, CurCHM))
else
DoLoadUri(MakeURI(CurCHM.DefaultPage, CurCHM));
Result := True;
fChms.OnOpenNewFile := @NewChmOpened;
end;
procedure TChmContentProvider.GoHome;
begin
if (fChms <> nil) and (fChms.Chm[0].DefaultPage <> '') then
begin
DoLoadUri(MakeURI(fChms.Chm[0].DefaultPage, fChms.Chm[0]));
end;
end;
procedure TChmContentProvider.GoBack;
begin
if CanGoBack then
begin
Dec(fHistoryIndex);
fIsUsingHistory:=True;
fHtml.OpenURL(fHistory.Strings[fHistoryIndex]);
end;
end;
procedure TChmContentProvider.GoForward;
var
HistoryChm: TChmReader;
begin
if CanGoForward then
begin
Inc(fHistoryIndex);
fIsUsingHistory:=True;
HistoryChm := TChmReader(fHistory.Objects[fHistoryIndex]);
fChms.ObjectExists(fHistory.Strings[fHistoryIndex], HistoryChm); // this ensures that the correct chm will be found
fHtml.OpenURL(fHistory.Strings[fHistoryIndex]);
end;
end;
class function TChmContentProvider.GetProperContentProvider(const AURL: String
): TBaseContentProviderClass;
begin
Result:=TChmContentProvider;
end;
constructor TChmContentProvider.Create(AParent: TWinControl; AImageList: TImageList);
const
TAB_WIDTH = 215;
begin
inherited Create(AParent, AImageList);
fHistory := TStringList.Create;
fTabsControl := TPageControl.Create(AParent);
with fTabsControl do
begin
Width := TAB_WIDTH + 12;
Align := alLeft;
Parent := AParent;
Visible := True;
end;
fContentsTab := TTabSheet.Create(fTabsControl);
with fContentsTab do
begin
Caption := slhelp_Contents;
Parent := fTabsControl;
//BorderSpacing.Around := 6;
end;
fContentsPanel := TPanel.Create(fContentsTab);
with fContentsPanel do
begin
Parent := fContentsTab;
Align := alClient;
BevelOuter := bvNone;
Caption := '';
Visible := True;
end;
fContentsTree := TTreeView.Create(fContentsPanel);
with fContentsTree do
begin
Parent := fContentsPanel;
Align := alClient;
BorderSpacing.Around := 6;
ReadOnly := True;
Visible := True;
OnSelectionChanged := @ContentsTreeSelectionChanged;
OnExpanded := @TOCExpand;
OnCollapsed := @TOCCollapse;
OnCreateNodeClass:=@GetTreeNodeClass;
Images := fImageList;
//StateImages := fImageList;
end;
fIndexTab := TTabSheet.Create(fTabsControl);
with fIndexTab do
begin
Caption := slhelp_Index;
Parent := fTabsControl;
//BorderSpacing.Around := 6;
end;
fIndexEdit := TLabeledEdit.Create(fIndexTab);
with fIndexEdit do
begin
Parent := fIndexTab;
Anchors := [akLeft, akRight, akTop];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fIndexTab;
AnchorSide[akRight].Control := fIndexTab;
AnchorSide[akRight].Side := asrBottom;
AnchorSide[akTop].Control := fIndexTab;
EditLabel.Caption := slhelp_Search;
EditLabel.AutoSize := True;
LabelPosition := lpAbove;
OnChange := @SearchEditChange;
Visible := True;
end;
fIndexView := TTreeView.Create(fIndexTab);
with fIndexView do
begin
Anchors := [akLeft, akTop, akRight, akBottom];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fIndexTab;
AnchorSide[akRight].Control := fIndexTab;
AnchorSide[akRight].Side := asrBottom;
AnchorSide[akTop].Control := fIndexEdit;
AnchorSide[akTop].Side := asrBottom;
AnchorSide[akBottom].Control := fIndexTab;
AnchorSide[akBottom].Side := asrBottom;
Parent := fIndexTab;
BorderSpacing.Around := 6;
ReadOnly := True;
Visible := True;
ShowButtons:=False;
ShowLines:=False;
ShowRoot:=False;
OnCollapsing:=@TreeViewStopCollapse;
OnDblClick := @IndexViewDblClick;
OnCreateNodeClass:=@GetTreeNodeClass;
end;
// {$IFDEF CHM_SEARCH}
fSearchTab := TTabSheet.Create(fTabsControl);
with fSearchTab do
begin
Caption := slhelp_Search;
Parent := fTabsControl;
end;
fKeywordLabel := TLabel.Create(fSearchTab);
with fKeywordLabel do
begin
Parent := fSearchTab;
Top := 6;
Caption := slhelp_Keyword;
Left := 6;
AutoSize := True;
end;
fKeywordCombo := TComboBox.Create(fSearchTab);
with fKeywordCombo do
begin
Parent := fSearchTab;
Anchors := [akLeft, akRight, akTop];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fSearchTab;
AnchorSide[akRight].Control := fSearchTab;
AnchorSide[akRight].Side := asrBottom;
AnchorSide[akTop].Control := fKeywordLabel;
AnchorSide[akTop].Side := asrBottom;
OnKeyDown := @SearchComboKeyDown;
end;
fSearchBtn := TButton.Create(fSearchTab);
with fSearchBtn do
begin
Parent := fSearchTab;
Anchors := [akLeft, akTop];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fSearchTab;
AnchorSide[akTop].Control := fKeywordCombo;
AnchorSide[akTop].Side := asrBottom;
Caption := slhelp_Find;
OnClick := @SearchButtonClick;
end;
fResultsLabel := TLabel.Create(fSearchTab);
with fResultsLabel do
begin
Parent := fSearchTab;
Anchors := [akLeft, akTop];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fSearchTab;
AnchorSide[akRight].Control := fSearchTab;
AnchorSide[akRight].Side := asrBottom;
AnchorSide[akTop].Control := fSearchBtn;
AnchorSide[akTop].Side := asrBottom;
Caption := slhelp_SearchResults;
AutoSize := True;
end;
fSearchResults := TTreeView.Create(fSearchTab);
with fSearchResults do
begin
Parent := fSearchTab;
Anchors := [akLeft, akTop, akRight, akBottom];
BorderSpacing.Around := 6;
AnchorSide[akLeft].Control := fSearchTab;
AnchorSide[akRight].Control := fSearchTab;
AnchorSide[akRight].Side := asrBottom;
AnchorSide[akTop].Control := fResultsLabel;
AnchorSide[akTop].Side := asrBottom;
AnchorSide[akBottom].Control := fSearchTab;
AnchorSide[akBottom].Side := asrBottom;
ReadOnly := True;
ShowButtons := False;
ShowLines := False;
ShowRoot:=False;
OnDblClick := @SearchResultsDblClick;
OnCollapsing:=@TreeViewStopCollapse;
OnCreateNodeClass:=@GetTreeNodeClass;
end;
// {$ENDIF}
fHtml := TIpHtmlPanel.Create(Parent);
with fHtml do
begin
DataProvider := TIpChmDataProvider.Create(fHtml, fChms);
TIpChmDataProvider(DataProvider).OnGetHtmlPage:=@LoadingHTMLStream;
OnDocumentOpen := @IpHtmlPanelDocumentOpen;
OnHotChange := @IpHtmlPanelHotChange;
OnHotClick := @IpHtmlPanelHotClick;
Parent := AParent;
Align := alClient;
end;
fSplitter := TSplitter.Create(Parent);
with fSplitter do
begin
//Align := alLeft;
Left := 1;
AnchorSide[akLeft].Control := fTabsControl;
AnchorSide[akLeft].Side:= asrRight;
AnchorSide[akRight].Control := fHtml;
AnchorSide[akRight].Side := asrLeft;
Parent := AParent;
end;
fPopUp := TPopupMenu.Create(fHtml);
fPopUp.Items.Add(TMenuItem.Create(fPopup));
with fPopUp.Items.Items[0] do
begin
Caption := slhelp_Copy;
OnClick := @PopupCopyClick;
end;
fPopup.Items.Add(TMenuItem.Create(fPopup));
with fPopup.Items.Items[1] do
begin
Caption := 'Copy source';
OnClick := @PopupCopySourceClick;
end;
fHtml.PopupMenu := fPopUp;
fStatusBar := TStatusBar.Create(AParent);
with fStatusBar do
begin
Parent := AParent;
Align := alBottom;
SimplePanel := True;
end;
end;
destructor TChmContentProvider.Destroy;
begin
DoCloseChm;
fHistory.Free;
inherited Destroy;
end;
initialization
RegisterFileType('.chm', TChmContentProvider);
end.
|