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
|
Unit HelpTopic;
// NewView - a new OS/2 Help Viewer
// Copyright 2001 Aaron Lawrence (aaronl at consultant dot com)
// This software is released under the Gnu Public License - see readme.txt
Interface
// This is it - the monster which decodes IPF data.
// It's created with a reference to the contents data defining it.
// It gets relevant pointers out of that. When GetText is called
// it decodes the data and spits out formatted text to suit
// RichTextView.
uses
Classes, OS2Def, DataTypes, Graphics, HelpWindow, HelpFileHeader;
Type
THelpLink = class
TopicIndex: longint;
GroupIndex: longint; // -1 if not specified
Automatic: boolean;
Split: boolean;
ViewPort: boolean;
Dependent: boolean;
Rect: THelpWindowRect;
HelpFile: TObject;
constructor Create;
destructor Destroy; override;
end;
THelpTopicSlot = record
pData: pInt8;
Size: longint;
pLocalDictionary: Int16ArrayPointer;
LocalDictSize: int8;
end;
pHelpTopicSlot = ^ THelpTopicSlot;
SlotArray = array[ 0..0 ] of THelpTopicSlot;
pSlotArray = ^SlotArray;
TTopic = class
protected
_pTOCEntry: pTTOCEntryStart;
_Slots: pSlotArray;
_NumSlots: longint;
_NumSlotsUsed: longint;
_Title: pstring;
_GlobalDictionary: TList;
_ShowInContents: boolean;
_ContentsLevel: integer;
_ContentsGroupIndex: longint;
procedure SetTitle( const NewValue: string );
function GetTitle: string;
// Returns the tag texts for the given bitmap ref
function GetImageText( BitmapOffset: longint;
BitmapFlags: longint;
ImageOffsets: TList ): string;
Procedure ProcessLinkedImage( Var pData: pByte;
Var OutputString: string;
Var DebugString: string;
Var ImageOffsets: TList;
Var LinkIndex: longint );
procedure TranslateIPFEscapeCode( Var pData: pInt8;
Var OutputString: string;
Var DebugString: string;
Var Spacing: boolean;
Var InFixedFont: boolean;
Var WordsOnLine: longint;
Var ImageOffsets: TList;
Var LinkIndex: longint );
public
constructor Create( FileData: pointer;
const FileHeader: THelpFileHeader;
Dictionary: TList;
pTOCEntry: pTTOCEntryStart );
destructor destroy; override;
property Title: string read GetTitle write SetTitle;
procedure SetTitleFromMem( const p: pointer; const Len: byte );
// Main function for retrieving text for topic.
// HighlightWords: array indicating whether words
// should be highlighted
// ShowCodes: indicates debugging: hex output of escape
// codes will be included
// Text: The output is written to here.
// ImageOffsets: For each image that occurs in the text,
// the help file offset will be written to this list.
procedure GetText( HighLightWords: Int32ArrayPointer;
ShowCodes: boolean;
Var Text: PChar;
ImageOffsets: TList );
function SearchForWord( DictIndex: integer;
StopAtFirstOccurrence: boolean ): longint;
procedure GetContentsWindowRect( ContentsRect: THelpWindowRect );
public
Links: TList; // only valid after GetText
property ShowInContents: boolean read _ShowInContents;
property ContentsLevel: integer read _ContentsLevel;
property ContentsGroupIndex: longint read _ContentsGroupIndex;
function CountWord( DictIndex: integer ): longint;
function ContainsWord( DictIndex: integer ): boolean;
// Used externally
HelpFile: TObject;
Index: longint;
FoundInSearch: boolean;
ExcludedInSearch: boolean;
SearchRelevance: longint;
end;
// Compares two topics for purposes of sorting by
// search match relevance
function TopicRelevanceCompare( Item1, Item2: pointer ): longint;
Implementation
uses
SysUtils,
ACLUtility, ACLStringUtility, ACLPCharUtility,
ACLString, ACLProfile,
IPFEscapeCodes;
const
IPFStyleTags : array [ 0..6 ] of string =
(
'</i></b></u>', // hp1
'<i>',
'<b>',
'<b><i>',
'<u>',
'<u><i>',
'<u><b>'
);
constructor THelpLink.Create;
begin
TopicIndex:= -1;
GroupIndex:= -1;
Automatic:= false;
ViewPort:= false;
Dependent:= false;
Rect:= THelpWindowRect.Create;
end;
destructor THelpLink.Destroy;
begin
Rect.Destroy;
end;
constructor TTopic.Create( FileData: pointer;
const FileHeader: THelpFileHeader;
Dictionary: TList;
pTOCEntry: pTTOCEntryStart );
var
pExtendedInfo: pExtendedTOCEntry;
titleLen: integer;
i: longint;
SlotNumber: int16;
XY: THelpXYPair;
p: pbyte;
Flags: byte;
pSlotOffsets: Int32ArrayPointer;
pSlotData: pSlotHeader;
Slot: THelpTopicSlot;
begin
_Title:= nil;
_GlobalDictionary:= Dictionary;
_ContentsGroupIndex := 0;
_pTOCEntry := pTOCEntry;
_NumSlots:= pTOCEntry ^. numslots;
GetMem( _Slots, _NumSlots * sizeof( THelpTopicSlot ) );
_NumSlotsUsed := 0;
Flags:= _pTOCEntry ^. flags;
p:= pInt8( _pTOCEntry ) + sizeof( TTOCEntryStart );
if ( Flags and TOCEntryExtended ) > 0 then
begin
pExtendedInfo := pExtendedTOCEntry( p );
inc( p, sizeof( TExtendedTOCEntry ) );
if ( pExtendedInfo^.w1 and 1 ) > 0 then
// skip position
inc( p, sizeof( XY ) );
if ( pExtendedInfo^.w1 and 2 ) > 0 then
// skip size
inc( p, sizeof( XY ) );
if ( pExtendedInfo^.w1 and 8 ) > 0 then
// skip window controls
inc( p, 2 );
if ( pExtendedInfo^.w2 and 4 ) > 0 then
begin
_ContentsGroupIndex := pint16( p )^;
// read group
inc( p, sizeof( int16 ) );
end;
end;
// Read slot indices
for i:= 0 to _NumSlots - 1 do
begin
SlotNumber:= pint16( p )^;
if SlotNumber < FileHeader.nslots then
begin
pSlotOffsets := FileData + FileHeader.slotsstart;
pSlotData := pSlotHeader( FileData + pSlotOffsets^[ SlotNumber ] );
Slot.pData := pInt8( pSlotData + sizeof( TSlotHeader ) );
Slot.pLocalDictionary := FileData + pSlotData ^.localDictPos;
Slot.LocalDictSize := pSlotData ^. nLocalDict;
Slot.Size := pSlotData ^. ntext;
_Slots^[ _NumSlotsUsed ] := Slot;
inc( _NumSlotsUsed );
end;
inc( p, sizeof( int16 ) );
end;
titleLen:= _pTOCEntry ^.length
- ( longword( p ) - longword( _pTOCEntry ) );
// Read title
if TitleLen > 0 then
SetTitleFromMem( p, TitleLen )
else
Title:= '(No title)';
_ContentsLevel:= ( Flags and $f );
_ShowInContents:= Flags and TOCEntryHidden = 0;
if _ContentsLevel = 0 then
_ShowInContents := false; // hmmm....
end;
destructor TTopic.Destroy;
var
LinkIndex: longint;
Link: THelpLink;
begin
if Links <> nil then
begin
for LinkIndex:= 0 to Links.Count - 1 do
begin
Link:= Links[ LinkIndex ];
Link.Destroy;
end;
Links.Destroy;
end;
FreePString( _Title );
FreeMem( _Slots, _NumSlots * sizeof( THelpTopicSlot ) );
end;
procedure TTopic.SetTitle( const NewValue: string );
begin
FreePString( _Title );
_Title:= NewPString( NewValue );
end;
procedure TTopic.SetTitleFromMem( const p: pointer; const Len: byte );
begin
FreePString( _Title );
GetMem( _Title, Len + 1 );
_Title^[ 0 ] := char( Len );
MemCopy( p, _Title + 1, Len );
end;
function TTopic.GetTitle: string;
begin
Result:= _Title^;
end;
function SubstituteAngleBrackets( const s: string ): string;
var
i: integer;
C: Char;
begin
Result:= '';
for i:= 1 to Length( S ) do
begin
C:= S[ i ];
Result:= Result + C;
case C of
'<':
Result:= Result + '<';
'>':
Result:= Result + '>';
end;
end;
end;
function TTopic.GetImageText( BitmapOffset: longint;
BitmapFlags: longint;
ImageOffsets: TList ): string;
var
BitmapIndex: longint;
begin
BitmapIndex:= ImageOffsets.IndexOf( pointer( BitmapOffset ) );
if BitmapIndex = -1 then
BitmapIndex:= ImageOffsets.Add( pointer( BitmapOffset ) );
Result := '<image '
+ IntToStr( BitmapIndex )
+ '>';
if ( BitmapFlags and $10 ) > 0 then
begin
// runin...
end
else if ( BitmapFlags and $08 ) > 0 then
begin
// stretch to fit
end
else
begin
// aligned
case BitmapFlags and 7 of
1: // left
Result := #10 + '<left>' + Result + #10;
2: // right
Result := #10 + '<right>' + Result + #10;
4,5: // centre (4 is official, 5 seems to occur too)
Result := #10 + '<center>' + Result + #10;
end;
end;
end;
Procedure TTopic.ProcessLinkedImage( Var pData: pByte;
Var OutputString: string;
Var DebugString: string;
Var ImageOffsets: TList;
Var LinkIndex: longint );
var
EscapeLen: int8;
EscapeCode: int8;
SubEscapeCode: int8;
BitmapOffset: longword;
BitmapFlags: int8;
Link: THelpLink;
LinkTopicIndex: int16;
begin
LinkTopicIndex := -1;
while true do
begin
EscapeLen:= pData^;
SubEscapeCode := ( pData + 2 )^;
case SubEscapeCode of
HPART_DEFINE:
begin
BitmapFlags := ( pData + 3 )^;
BitmapOffset:= pint32( pData + 4 )^;
end;
HPART_HDREF: // define whole bitmap topic link?
begin
LinkTopicIndex := pInt16( pData + 3 )^;
end
else
begin
// ignore others for now
DebugString := DebugString + ' ?';
end;
end;
inc( pData, EscapeLen );
if pData^ <> IPF_ESC then
// not an escape code, done
break;
inc( pData ); // move pointer to escape code len.
EscapeCode:= (pData + 1) ^;
if EscapeCode <> $0f then
// not a hyperlink code, done
break;
end;
OutputString := GetImageText( BitmapOffset,
BitmapFlags,
ImageOffsets );
// Don't make it a link if we didn't find a
// overall link code, i.e. degrade gracefully.
if LinkTopicIndex > -1 then
begin
if LinkIndex>= Links.Count then
begin
Link:= THelpLink.Create;
Link.HelpFile := HelpFile;
Link.TopicIndex:= LinkTopicIndex;
Links.Add( Link );
end
else
Link := Links[ LinkIndex ];
OutputString := '<link '
+ IntToStr( LinkIndex )
+ '>'
+ OutputString
+ '</link>';
end;
end;
procedure TTopic.TranslateIPFEscapeCode( Var pData: pInt8;
Var OutputString: string;
Var DebugString: string;
Var Spacing: boolean;
Var InFixedFont: boolean;
Var WordsOnLine: longint;
Var ImageOffsets: TList;
Var LinkIndex: longint );
var
EscapeLen: int8;
EscapeCode: int8;
Link: THelpLink;
LinkFlags1: int8;
LinkFlags2: int8;
LinkDataIndex: longint;
pLinkXY: pHelpXYPair;
Margin: int8;
EscCodeDataIndex: longint;
pLinkData: pInt8;
BitmapOffset: longword;
BitmapFlags: int8;
begin
EscapeLen:= pData^;
EscapeCode:= (pData + 1) ^;
OutputString := '';
DebugString := IntToHex( EscapeCode, 2 ) + ' ';
for EscCodeDataIndex:= 2 to EscapeLen - 1 do
begin
DebugString := DebugString
+ ' '
+ IntToHex( ( pData + EscCodeDataIndex )^, 2 );
end;
case EscapeCode of
$02:
begin
// set left margin
Margin:= ( pData + 2 )^;
OutputString := '<margin ' + IntToStr( Margin ) + '>';
end;
$04:
begin
// style change
OutputString := IPFStyleTags[ ( pData + 2 ) ^ ];
end;
$05:
begin
// Link start
if LinkIndex>= Links.Count then
begin
Link:= THelpLink.Create;
Link.HelpFile := HelpFile;
Link.TopicIndex:= pInt16( pData + 2 )^;
if EscapeLen >= 6 then
begin
LinkFlags1:= ( pData + 4 ) ^;
LinkFlags2:= ( pData + 5 ) ^;
pLinkData := pData + 6;
if ( LinkFlags1 and 1 ) > 0 then
begin
// position specified
pLinkXY := pHelpXYPair( pLinkData );
ReadHelpPosition( pLinkXY^, Link.Rect );
inc( pLinkData, sizeof( THelpXYPair ) );
end;
if ( LinkFlags1 and 2 ) > 0 then
begin
// size specified
pLinkXY := pHelpXYPair( pLinkData );
ReadHelpSize( pLinkXY^, Link.Rect );
inc( pLinkData, sizeof( THelpXYPair ) );
end;
if ( LinkFlags1 and 8 ) > 0 then
// window controls specified - skip
inc( pLinkData, 2 );
if ( LinkFlags2 and 4 ) > 0 then
begin
// group specified
Link.GroupIndex:= pint16( pLinkData )^;
inc( LinkDataIndex, sizeof( int16 ) );
end;
if ( LinkFlags1 and 64 ) > 0 then
Link.Automatic:= true;
if ( LinkFlags1 and 4 ) > 0 then
Link.ViewPort:= true;
if ( LinkFlags2 and 2 ) > 0 then
Link.Dependent:= true;
if ( LinkFlags1 and 128 ) > 0 then
Link.Split:= true;
// cant be bothered with the others.
end;
Links.Add( Link );
end
else
Link := Links[ LinkIndex ];
// If it's not an automatic link
// then put code in to show it.
if not Link.Automatic then
begin
if InFixedFont then
begin
// only use blue color, in fixed font,
// since bold would change spacing
OutputString := '<blue>'
end
else
begin
OutputString := '<b><blue>';
end;
OutputString := OutputString
+ '<link '
+ IntToStr( LinkIndex )
+ '>';
end;
inc( LinkIndex );
end;
$07:
begin
// Footnote Link start
if LinkIndex>= Links.Count then
begin
Link:= THelpLink.Create;
Link.HelpFile := HelpFile;
Link.TopicIndex:= pInt16( pData + 2 )^;
Link.GroupIndex := -2;
SetFootnoteRect( Link.Rect );
Links.Add( Link );
end
else
Link := Links[ LinkIndex ];
if InFixedFont then
begin
// only use blue color, in fixed font,
// since bold would change spacing
OutputString := '<blue>'
end
else
begin
OutputString := '<b><blue>';
end;
OutputString := OutputString
+ '<link '
+ IntToStr( LinkIndex )
+ '>';
inc( LinkIndex );
end;
$08: // Link end
begin
OutputString := '</link><black></b>';
end;
$0b: // start fixed font
begin
InFixedFont:= true;
OutputString := #10 + '<tt><unaligned>';
Spacing:= false;
WordsOnLine:= 0;
end;
$0c: // end fixed font
begin
InFixedFont:= false;
OutputString := '</tt><left>';
Spacing:= true;
end;
$0e: // bitmap
begin
BitmapFlags := ( pData + 2 )^;
BitmapOffset:= pint32( pData + 3 )^;
OutputString := GetImageText( BitmapOffset,
BitmapFlags,
ImageOffsets );
end;
$0f: // hyperlinked bitmap
begin
ProcessLinkedImage( pData,
OutputString,
DebugString,
ImageOffsets,
LinkIndex );
// Note! Early exit, since the procedure
// will update pData.
exit;
end;
$1a:
begin
// aligned text (can't see how it is otherwise different)
case ( pData + 2 )^ of
1:
OutputString := #10 + '<left>';
2:
OutputString := #10 + '<right>';
4:
OutputString := #10 + '<center>';
end;
Spacing:= false;
WordsOnLine:= 0;
end;
$1b:
begin
OutputString := '<left>'; // I guess...
Spacing:= true;
end
else
begin
// Unknown/unhandled code
DebugString := DebugString + ' ?';
end;
end; // case escape code of...
inc( pData, EscapeLen );
end;
// Main translation function. Turns the IPF data into
// a text string. Translates formatting codes into tags
// as for Rich Text Viewer.
// Uses TAString for speed without length limits
// - string is too short
// - PChar is slow to concatenate (unless you keep track of the insert point)
// - AnsiString is slow
procedure TTopic.GetText( HighLightWords: Int32ArrayPointer;
ShowCodes: boolean;
Var Text: PChar;
ImageOffsets: TList );
var
SlotIndex: integer;
Slot: THelpTopicSlot;
pData: pInt8;
pSlotEnd: pInt8;
S: TAString;
Word: string;
GlobalDictIndex: int32;
Spacing: boolean;
InFixedFont: boolean;
WordsOnLine: longint;
StringToAdd: string;
LocalDictIndex: int8;
DebugString: string;
EscapeDebugString: string;
LinkIndex: longint;
begin
if Links = nil then
Links:= TList.Create;
S:= TAString.Create;
{ Text:= StrNew( S.AsPChar );
S.Destroy;
exit;}
ImageOffsets.Clear;
LinkIndex:= 0;
InFixedFont:= false; // ? Not sure... this could be reset at start of slot
WordsOnLine:= 0;
for SlotIndex := 0 to _NumSlots - 1 do
begin
Spacing:= true;
Slot := _Slots[ SlotIndex ];
pData := Slot.pData;
pSlotEnd := pData + Slot.Size;
while pData < pSlotEnd do
begin
LocalDictIndex := pData^;
StringToAdd := '';
if LocalDictIndex < Slot.LocalDictSize then
begin
// Normal word lookup
GlobalDictIndex:= Slot.pLocalDictionary^[ LocalDictIndex ];
// normal lookup
if GlobalDictIndex < _GlobalDictionary.Count then
Word := pstring( _GlobalDictionary[ GlobalDictIndex ] )^
else
Word := '';
Word:= SubstituteAngleBrackets( Word );
if HighlightWords[ GlobalDictIndex ] > 0 then
StringToAdd := '<red>' + Word + '<black>'
else
StringToAdd := Word;
if Spacing then
StringToAdd := StringToAdd + ' ';
inc( WordsOnLine );
inc( pData );
end
else
begin
// special code
DebugString := '[' + IntToHex( LocalDictIndex, 2 );
case LocalDictIndex of
IPF_END_PARA:
begin
if WordsOnLine > 0 then
StringToAdd := #10 + #10
else
StringToAdd := #10;
if not InFixedFont then
Spacing:= true;
WordsOnLine:= 0;
inc( pData );
end;
IPF_CENTER:
begin
StringToAdd := #10 + '<center>';
inc( pData );
end;
IPF_INVERT_SPACING:
begin
Spacing:= not Spacing;
inc( pData );
end;
IPF_LINEBREAK:
begin
StringToAdd := #10;
if not InFixedFont then
Spacing:= true;
WordsOnLine:= 0;
inc( pData );
end;
IPF_SPACE:
begin
StringToAdd := ' ';
inc( pData );
end;
IPF_ESC:
begin
// escape sequence
inc( pData );
TranslateIPFEscapeCode( pData,
StringToAdd,
EscapeDebugString,
Spacing,
InFixedFont,
WordsOnLine,
ImageOffsets,
LinkIndex );
DebugString := DebugString + ' ' + EscapeDebugString;
end // case code of ff:
else
begin
// Unrecongised code
DebugString := DebugString + '?';
inc( pData );
end;
end; // case code of...
DebugString := DebugString + ']';
if ShowCodes then
S.AddString( DebugString );
end;
S.AddString( StringToAdd );
end; // for slotindex = ...
end;
Text:= StrNew( S.AsPChar );
S.Destroy;
end;
function TTopic.SearchForWord( DictIndex: integer;
StopAtFirstOccurrence: boolean )
: longint;
var
SlotIndex: integer;
Slot: THelpTopicSlot;
pData: pInt8;
pSlotEnd: pInt8;
EscapeLen: longint;
GlobalDictIndex: int32;
LocalDictIndex: int8;
begin
Result := 0;
for SlotIndex := 0 to _NumSlots - 1 do
begin
Slot := _Slots[ SlotIndex ];
pData := Slot.pData;
pSlotEnd := pData + Slot.Size;
while pData < pSlotEnd do
begin
LocalDictIndex := pData^;
if LocalDictIndex < Slot.LocalDictSize then
begin
// Normal word lookup
GlobalDictIndex:= Slot.pLocalDictionary^[ LocalDictIndex ];
if GlobalDictIndex = DictIndex then
begin
inc( result );
if StopAtFirstOccurrence then
exit;
end;
end
else
begin
// special code
if GlobalDictIndex = $ff then
begin
// escape string, skip it
EscapeLen := ( pData + 1 ) ^;
inc( pData, EscapeLen );
end;
end;
inc( pData );
end; // for slotindex = ...
end;
end;
function TTopic.CountWord( DictIndex: integer ): longint;
begin
Result := SearchForWord( DictIndex, false );
end;
function TTopic.ContainsWord( DictIndex: integer ): boolean;
begin
Result := SearchForWord( DictIndex, true ) > 0;
end;
procedure TTopic.GetContentsWindowRect( ContentsRect: THelpWindowRect );
var
extendedinfo: TExtendedTOCEntry;
XY: THelpXYPair;
p: pbyte;
Flags: byte;
begin
Flags:= _pTOCEntry ^.flags;
p:= pByte( _pTOCEntry + sizeof( TTOCEntryStart ) );
ContentsRect.Left:= 0;
ContentsRect.Bottom:= 0;
ContentsRect.Width:= 100;
ContentsRect.Height:= 100;
if ( Flags and TOCEntryExtended ) > 0 then
begin
ExtendedInfo.w1:= p^;
ExtendedInfo.w2:= ( p+1) ^;
inc( p, sizeof( ExtendedInfo ) );
if ( ExtendedInfo.w1 and 1 ) > 0 then
begin
// read origin
XY:= pHelpXYPair( p )^;
inc( p, sizeof( XY ) );
ReadHelpPosition( XY, ContentsRect );
end;
if ( ExtendedInfo.w1 and 2 ) > 0 then
begin
// read size
XY:= pHelpXYPair( p )^;
inc( p, sizeof( XY ) );
ReadHelpSize( XY, ContentsRect );
end;
end;
end;
// Compares two topics for purposes of sorting by
// search match relevance
function TopicRelevanceCompare( Item1, Item2: pointer ): longint;
var
Topic1, Topic2: TTopic;
begin
Topic1 := Item1;
Topic2 := Item2;
if Topic1.SearchRelevance > Topic2.SearchRelevance then
Result := -1
else if Topic1.SearchRelevance < Topic2.SearchRelevance then
Result := 1
else
Result := 0;
end;
Initialization
End.
|