-
Notifications
You must be signed in to change notification settings - Fork 3
/
FormatText.pas
2486 lines (2217 loc) · 73.3 KB
/
FormatText.pas
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
unit FormatText;
interface
uses Graphics, Classes, Windows, SysUtils, Dialogs;
type
TFontChange = (fcBold, fcItalic, fcUnderline, fcPosition,
fcSize, fcName, fcTag, fcColor);
TFontChanges = Set of TFontChange;
TSelection = record Start, Ende : TPoint; end;
TFontPosition = (fpNormal, fpSup, fpSub);
TRowInfo = class(TObject)
public
first,last : integer;
height,width, bottom : integer;
constructor Create;
end;
TFormatFontStack = class;
TFormatFont = class(TObject)
public
Position : TFontPosition;
Style : TFontStyles;
Size : Integer;
Name : TFontName;
Color : TColor;
Tag, // zur Speicherung eines Integer-Wertes
Translation : Integer; // nur für die Anzeige
private
procedure SetFont (Canvas : TCanvas; DisplayFactor : extended; Inverse : boolean = false);
procedure SetStellung(Canvas : TCanvas);
function ExtractAttrValue(attName, orgStr : String) : String;
public
constructor Create; overload;
constructor Create ( f : TFormatFont); overload;
constructor Create ( f : TFont); overload;
procedure Assign ( f : TFormatFont); overload;
procedure Assign ( f : TFont); overload;
function AdjustFontData (ss : String;
fs : TFormatFontStack;
SizingAllowed : Boolean = False) : Boolean;
end;
TFormatFontStack = class(TObject)
private
List : TList;
public
constructor Create;
procedure Free;
function IsEmpty : Boolean;
procedure push (f : TFormatFont);
procedure pop (f : TFormatFont);
end;
TCharacter = class(TObject)
private
FCanvas : TCanvas;
FUnicode : string;
FDisplayFactor : extended;
FFont : TFormatFont;
FSize : TSize;
FBottom : Integer;
FABCSize : TABC;
function GetWidth: integer;
function GetHeight: integer;
function GetChar: char;
procedure Paint(Pos : TPoint; r: TRect; Inverse : Boolean = false);
procedure PaintTransparent(Pos : TPoint; r :TRect; col : TColor);
procedure PaintOverhang(Pos : TPoint; r: TRect; Inverse : Boolean = false);
procedure PaintOverhangTransparent(Pos : TPoint; r :TRect; col : TColor);
procedure ChangeFont(NewFont : TFormatFont; Change : TFontChanges);
procedure SetDisplayFactor(f : extended);
procedure SetCanvas (c : TCanvas);
procedure AdjustSize;
property DisplayFactor : extended read FDisplayFactor write SetDisplayFactor;
property Canvas : TCanvas read FCanvas write SetCanvas;
public
constructor Create(c : char; f: TFormatFont; Canvas: TCanvas); overload;
constructor Create(c : char; f: TFormatFont); overload;
destructor Destroy; override;
property Size : TSize read FSize;
property Width : integer read GetWidth;
property Height : integer read GetHeight;
property Bottom : integer read FBottom;
property Font : TFormatFont read FFont;
property Character : char read GetChar;
property ABC : TABC read FABCSize;
end;
TLine = class(TObject)
private
FMaxWidth : Integer;
FCanvas : TCanvas;
FCharacters : TList;
FRowInfos : TList;
function GetSize : TSize;
function GetWidth : Integer;
function GetHeight: Integer;
function GetText : String;
function ExtraBefore(nr : Integer; First : Integer): integer;
function ExtraAfter (nr : Integer; Last : Integer): integer;
procedure SetCanvas (c : TCanvas);
procedure SetMaxWidth(w : integer);
procedure SetHTMLText(s: string; FontList: TList; linkList: TStringList);
procedure GetHTMLText(HTMLText : TStrings; FontList: TList; TagList, LinkList: TStrings);
procedure Insert (i: integer; b: TCharacter);
procedure ChangeFont(Selection: TSelection; NewFont: TFormatFont; Change: TFontChanges);
procedure SetDisplayFactor(f : extended);
procedure Paint(Pos : TPoint; ClipRect : TRect); overload;
procedure Paint(Pos : TPoint; ClipRect : TRect; Selection : TSelection); overload;
procedure PaintTransparent(Pos : TPoint; ClipRect : TRect; col : TColor);
public
constructor Create(s: string; FontList: TList; linkList: TStringList); overload;
constructor Create(s: string; FontList: TList; linkList: TStringList;
MaxWidth: integer; Canvas: TCanvas ); overload;
destructor Destroy; override;
procedure AdjustRowInfos;
function Characters : Integer;
function GetCharacter (nr : integer) : TCharacter;
function GetCharBottom (nr : integer) : Integer;
function GetCharPosition(nr : integer) : TRect;
function GetCharFont (nr : integer) : TFormatFont;
function GetCharInPos (Pos : TPoint) : Integer;
property Size : TSize read GetSize;
property Width : integer read GetWidth;
property Height: integer read GetHeight;
property Text : string read GetText;
end;
TFormatText = class (TObject)
private
FClientRect : TRect;
FCanvas : TCanvas;
FLinkList,
FPlainText,
FHTMLText : TStringList;
Zeilen : TList;
procedure SetCanvas(c : TCanvas);
public
constructor Create(Lines: TStrings; f : TFont); overload;
constructor Create(Lines: TStrings; cl_rect: TRect; Canvas: TCanvas ); overload;
destructor Destroy; override;
procedure SetClientRect(cl_rect: TRect);
procedure SetClientTop(i : integer);
procedure SetClientRight(i : integer);
procedure SetClientLeft(i : integer);
function GetSize : TSize;
function GetWidth: integer;
function GetHeight: integer;
function GetCharacter(Pos : TPoint) : TCharacter;
function GetCharPosition(Pos : TPoint) : TRect;
function GetCharInPos(Pos : TPoint) : TPoint;
function GetCharFont(Pos : TPoint) : TFormatFont;
function GetLine(i : integer) : TLine;
function GetText : TStrings;
function GetHTMLText(DefaultFont : TFont) : TStrings;
function GetLinkAddress(linkTag : integer) : String;
function NewDisplayFactor: Double;
function Lines : integer;
function CharactersInLine(i : integer) : integer;
function IsEmpty: Boolean;
procedure SetHTMLText (Lines : TStrings); overLoad;
procedure SetHTMLText (Lines : TStrings; DefaultFont : TFont); overload;
procedure SetDisplayFactor (f : extended);
procedure ChangeFont(Selection: TSelection; NewFont : TFormatFont; Change : TFontChanges);
procedure Insert(Pos : TPoint; b : TCharacter); overload;
procedure Insert(Pos : TPoint; c : char; f : TFormatFont); overload;
function InsertPlainText(IPos : TPoint; ustr : String) : TPoint;
function InsertHTMLText(IPos : TPoint; fstr : String) : TPoint;
procedure Delete(Pos : TPoint);
procedure Merge(i: integer);
procedure Separate(Pos : TPoint);
procedure Paint(FitToClientRect : Boolean = FALSE); overload;
procedure Paint(ClipRect : TRect; FitToClientRect : Boolean = FALSE); overload;
procedure Paint(Selection : TSelection; ClipRect: TRect; FitToClientRect : Boolean = FALSE); overload;
procedure PaintTransparent(ClipRect : TRect; col : TColor; FitToClientRect : Boolean = FALSE);
property LinkList: TStringList read FLinkList;
property Canvas: TCanvas read FCanvas write SetCanvas;
end;
function ResizeHTMLText ( org : String;
NewHeight: Integer): String;
procedure DeleteChars ( delchars : string;
var s : String);
implementation
// Minimale Höhe einer Zeile, d.h. für Leerzeilen
const MIN_HEIGHT : Integer = 12;
// Ein Rechteck mit einem ClippingRect beschneiden
function Clip(r: TRect; ClipRect: TRect): TRect;
var show : boolean;
begin
show := True;
if r.left < Cliprect.left then r.left := ClipRect.left;
if r.left >= Cliprect.right then show := False;
if r.right <= Cliprect.left then show := False;
if r.right >= Cliprect.right then r.right := ClipRect.right;
if r.top < Cliprect.top then r.top := ClipRect.top;
if r.top >= Cliprect.bottom then show := False;
if r.bottom <= Cliprect.top then show := False;
if r.bottom > Cliprect.bottom then r.bottom := ClipRect.bottom;
if show then result := r else result := Rect(0,0,0,0);
end;
// Unerwünschte Zeichen aus einem String löschen
procedure DeleteChars(delchars : string; var s : String);
var i, n : Integer;
begin
For i := 1 to Length(delchars) do begin
n := POS(delchars[i], s);
While n > 0 do begin
Delete(s, n, 1);
n := POS(delchars[i], s);
end;
end;
end;
// Quelltext einer HTML-Zeile auf neue Zeilenhöhe ändern
function ResizeHTMLText(org: String; NewHeight: Integer): String;
var FT: TFormatText;
Lines: TStringList;
DefFont: TFont;
NewFont: TFormatFont;
Sel : TSelection;
begin
DefFont := TFont.Create;
try
DefFont.Name := 'Arial';
DefFont.Size := 12;
Lines := TStringList.Create;
try
Lines.Add(org);
FT := TFormatText.Create(Lines, DefFont);
try
Sel.Start := Point(0, 0);
Sel.Ende := Point(FT.CharactersInLine(Pred(FT.Lines)), Pred(FT.Lines));
NewFont := TFormatFont.Create(DefFont);
try
NewFont.Size := NewHeight;
FT.ChangeFont(Sel, NewFont, [fcSize]);
Lines.Assign(FT.GetHTMLText(DefFont));
Result := Lines.Strings[0];
finally
NewFont.Free;
end;
finally
FT.Free;
end;
finally
Lines.Free;
end;
finally
DefFont.Free;
end; { of try }
end;
function HTMLSpecialChar(code: String): Char;
begin
If code = 'auml' then Result := 'ä' else
If code = 'ouml' then Result := 'ö' else
If code = 'uuml' then Result := 'ü' else
If code = 'Auml' then Result := 'Ä' else
If code = 'Ouml' then Result := 'Ö' else
If code = 'Uuml' then Result := 'Ü' else
If code = 'szlig' then Result := 'ß' else
If code = 'amp' then Result := '&' else
Result := ' '; // Default-Buchstabe !
end;
// --------------------------------------------------- //
// TFormatFont //
// --------------------------------------------------- //
// Erweiterung von TFont //
// Ermöglicht es, Hoch- und Tiefstellung sowie //
// einen Integer-Index zu speichern //
// --------------------------------------------------- //
constructor TFormatFont.Create();
begin
Position := fpNormal;
Style := [];
Size := 12;
Name := 'Arial';
Color := clBlack;
end;
constructor TFormatFont.Create(f : TFormatFont);
begin
If Assigned(f) then begin
Position := f.Position;
Style := f.Style;
Size := f.Size;
Name := f.Name;
Color := ColorToRGB(f.Color);
Tag := f.Tag;
end
else
Create;
end;
constructor TFormatFont.Create(f : TFont);
begin
If Assigned(f) then begin
Name := f.Name;
Size := f.Size;
Style := f.Style;
Position := fpNormal;
Color := ColorToRGB(f.Color);
Tag := 0;
end
else
Create;
end;
procedure TFormatFont.Assign(f: TFormatFont);
begin
If Assigned(f) then begin
Name := f.Name;
Size := f.Size;
Style := f.Style;
Position := f.Position;
Color := f.Color;
Tag := f.Tag;
end
else begin
Name := 'Arial';
Size := 12;
Style := [];
Position := fpNormal;
Color := clBlack;
Tag := 0;
end;
end;
procedure TFormatFont.Assign(f: TFont);
begin
If Assigned(f) then begin
Name := f.Name;
Size := f.Size;
Style := f.Style;
Color := f.Color;
end
else begin
Name := 'Arial';
Size := 12;
Style := [];
Color := clBlack;
end;
Position := fpNormal;
Tag := 0;
end;
// Font in Canvas einstellen (ohne Hoch/Tiefstellung)
procedure TFormatFont.SetFont(Canvas : TCanvas; DisplayFactor: extended; inverse : boolean);
begin
If not Assigned(Canvas.Font) then
Canvas.Font := TFont.Create;
Canvas.Font.Name := Name;
// Unterstreichen wird vom Programm selbst übernommen
// damit eine einheitliche Linie zustande kommt.
Canvas.Font.Style := Style - [fsUnderline];
// Selektierte Buchstaben invers darstellen
if Inverse then
Canvas.Font.Color := ColorToRGB(Color xor clWhite)
else
Canvas.Font.Color := Color;
// Bei Fontgröße den Vergrößerungsfaktor beachten
Canvas.Font.Size := round(Size*DisplayFactor);
// Minimale Fontgröße festlegen, damit überhaupt eine
// Anzeige stattfindet
if Canvas.Font.Size < 2 then Canvas.Font.Size := 2;
end;
// Berechnet Verschiebung aufgrund Hoch/Tiefstellung und
// verändert Font.Size entsprechend
procedure TFormatFont.SetStellung(Canvas : TCanvas);
{ 06.04.04: Größe von tief- und hochgestelltem Text
von 1/2 auf 2/3 der Normalgröße geändert }
begin
case Position of
fpNormal : Translation := 0; // normal
fpSub : begin // tiefgestellt
Translation := -Canvas.Font.Height;
Canvas.Font.Size := 2 * Canvas.Font.Size Div 3;
Inc(Translation, Canvas.Font.Height);
end;
fpSup : begin // hochgestellt
Translation := 0;
Canvas.Font.Size := 2 * Canvas.Font.Size Div 3;
end;
end;
end;
{ // Tom Schaller's Original :
begin
case Position of
// normal
fpNormal : Translation := 0;
// tiefgestellt
fpSub : begin
Translation := -Canvas.Font.Height;
Canvas.Font.Size := round(Canvas.Font.Size/2);
Inc(Translation,Canvas.Font.Height);
end;
// hochgestellt
fpSup : begin
Translation := 0;
Canvas.Font.Size := round(Canvas.Font.Size/2);
end;
end;
end;
}
function TFormatFont.ExtractAttrValue( attName, orgStr: String) : String;
var valStr : String;
n : Integer;
begin
n := Pos(UpperCase(attName), UpperCase(orgStr));
If n > 0 then begin
n := n + Length(attName);
While CharInSet(orgStr[n], [' ', '=']) do Inc(n);
valStr := '';
If orgStr[n] = '"' then begin
Inc(n);
Repeat
valStr := valStr + orgStr[n];
Inc(n);
until (n > Length(orgStr)) or (orgStr[n] = '"');
end
else
Repeat
valStr := valStr + orgStr[n];
Inc(n);
until (n > Length(orgStr)) or CharInSet(orgStr[n], [' ', '>']);
Result := valStr;
end
else
Result := '';
end;
function TFormatFont.AdjustFontData(ss : String; fs : TFormatFontStack;
SizingAllowed : Boolean = False): Boolean;
var newName,
newSize : String;
n, i : Integer;
begin
Result := True;
While CharInSet(ss[1], [' ', '<']) do
Delete(ss, 1, 1);
If ss[1] = '/' then { Ende-Tag }
fs.pop(Self)
else begin { Anfangs-Tag }
n := Pos('FONT', UpperCase(ss));
If n > 0 then begin { Font-Tag; es sollte n = 1 sein! }
Assert(n = 1, 'Falsches FONT-Tag!');
newName := ExtractAttrValue('Face', ss);
newSize := ExtractAttrValue('Size', ss);
If (Length(newSize) > 0) and SizingAllowed then begin
Val(newSize, n, i);
If i <> 0 then n := 0;
end
else
n := 0;
fs.push(Self);
If Length(newName) > 0 then Name := newName;
If n > 0 then Size := n;
end
else begin { Attribut-Tags }
n := Pos(' ', ss);
While n > 0 do begin
Delete(ss, n, 1);
n := Pos(' ', ss);
end;
ss := UpperCase(ss);
If ss = 'B' then begin
fs.push(Self);
Style := Style + [fsBold];
end
else If ss = 'U' then begin
fs.push(Self);
Style := Style + [fsUnderLine];
end
else If ss = 'I' then begin
fs.push(Self);
Style := Style + [fsItalic];
end
else If ss = 'SUP' then begin
fs.push(Self);
Position := fpSup;
end
else If ss = 'SUB' then begin
fs.push(Self);
Position := fpSub;
end
else
Result := False;
end;
end;
end;
// ---------------------------------------------------------
// TFormatFontStack
// ---------------------------------------------------------
constructor TFormatFontStack.Create;
begin
Inherited Create;
List := TList.Create;
end;
procedure TFormatFontStack.Free;
begin
While Not IsEmpty do
pop(Nil);
List.Free;
Inherited Free;
end;
function TFormatFontStack.IsEmpty : Boolean;
begin
Result := List.Count = 0;
end;
procedure TFormatFontStack.Push(f : TFormatFont);
var nf : TFormatFont;
begin
nf := TFormatFont.Create(f); // Neuen Eintrag mit den übergebenen Daten
List.Insert(0, nf); // erstellen und in Liste einsortieren
end;
procedure TFormatFontStack.Pop(f : TFormatFont);
begin
If List.Count > 0 then begin // Falls der Stack nicht leer ist:
If Assigned(f) then // Daten des obersten Elements
f.Assign(TFormatFont(List.Items[0])); // ausgeben, dann
TFormatFont(List[0]).Free; // oberstes Element
List.Delete(0); // entfernen
end;
end;
// ---------------------------------------------------------
// TRowInfo
// ---------------------------------------------------------
constructor TRowInfo.Create;
begin
first := 0;
last := 0;
height := 0;
width := 0;
bottom := 0;
end;
// ---------------------------------------------------------
//
// TCharacter
//
// ---------------------------------------------------------
constructor TCharacter.Create(c : char; f: TFormatFont);
begin
inherited Create;
FUnicode := c;
FFont := TFormatFont.Create(f);
FCanvas := nil;
FDisplayFactor := 1.0;
AdjustSize;
end;
constructor TCharacter.Create(c : char; f: TFormatFont; Canvas: TCanvas);
begin
Create(c,f);
FCanvas := Canvas;
AdjustSize;
end;
destructor TCharacter.Destroy;
begin
FreeAndNil(FFont);
inherited Destroy;
end;
// Größenfunktionen
// ----------------
procedure TCharacter.SetDisplayFactor(f : extended);
begin
FDisplayFactor := f;
AdjustSize;
end;
procedure TCharacter.SetCanvas(c : TCanvas);
begin
FCanvas := c;
AdjustSize;
end;
procedure TCharacter.AdjustSize;
var Metrics : TTextMetric;
begin
if assigned(FCanvas) and (Length(FUnicode) > 0) then begin
FFont.SetFont(FCanvas, FDisplayFactor);
if FUnicode[1] = ' ' then begin
FSize.cy :=0;
FBottom :=0;
end
else begin
// Height = Höhe des Buchstaben
FSize.cy :=FCanvas.TextHeight(FUnicode);
// Bottom = Höhe bis zur Grundlinie des Buchstaben
// ohne Berücksichtigung der Hoch/Tiefstellung
GetTextMetrics(FCanvas.Handle, Metrics);
FBottom := Metrics.tmAscent;
end;
FFont.SetStellung(FCanvas);
// Width = Breite des Buchstaben
FSize.cx := FCanvas.TextWidth(FUnicode);
GetCharABCWidths(FCanvas.Handle,ord(FUnicode[1]),ord(FUnicode[1]),FABCSize);
end
else begin
FSize.cx := 0;
FSize.cy := 0;
FBottom := 0;
FABCSize.abcA := 0;
FABCSize.abcB := 0;
FABCSize.abcC := 0;
end;
end;
function TCharacter.GetWidth: integer;
begin
result := FSize.cx;
end;
function TCharacter.GetHeight: integer;
begin
result := FSize.cy;
end;
// Liefert das dargestellte Zeichen
function TCharacter.GetChar: char;
begin
result := FUnicode[1];
end;
// Zeichnen des Buchstaben
// r = Clipping Rect
// inverse = Müssen die Farben umgedreht werden
procedure TCharacter.Paint(Pos : TPoint; r :TRect; inverse : boolean);
var i : Integer;
begin
// Ist das ClipRect überhaupt sichtbar?
if assigned(FCanvas) and (r.right-r.left>0) then
with FCanvas do begin
FFont.SetFont(FCanvas, FDisplayFactor, inverse);
FFont.SetStellung(FCanvas);
// Eigentliche Zeichenausgabe
TextRect(r, Pos.x,Pos.y-FBottom+FFont.Translation,FUnicode);
// Untersteichen des Buchstabens (außer er ist tiefgestellt)
// wird nicht über das normale Style erledigt, damit eine einheitliche
// Linie bei verschiedenen Schriftarten entsteht
if (fsUnderline in FFont.Style) and
not (FFont.Position = fpSub) then begin
Pen.Color := Font.Color;
i := 0;
repeat
MoveTo(r.left, Pos.y+2+i);
LineTo(r.right, Pos.y+2+i);
inc(i);
until i > FDisplayFactor-0.5;
end;
end;
end;
procedure TCharacter.PaintOverhang(Pos : TPoint; r :TRect; inverse : boolean);
var c : TColor;
begin
// Ist das ClipRect überhaupt sichtbar?
if assigned(FCanvas) and (r.right-r.left>0) then
with FCanvas do begin
FFont.SetFont(FCanvas, FDisplayFactor, inverse);
FFont.SetStellung(FCanvas);
c := Brush.Color;
Brush.Style := bsClear;
TextRect(r, Pos.x, Pos.y - FBottom + FFont.Translation, FUnicode);
Brush.Style := bsSolid;
Brush.Color := c;
end;
end;
procedure TCharacter.PaintTransparent(Pos: TPoint; r: TRect; col: TColor);
var i : Integer;
begin
// Ist das ClipRect überhaupt sichtbar?
if assigned(FCanvas) and (r.right-r.left>0) then
with FCanvas do begin
FFont.SetFont(FCanvas, FDisplayFactor);
FFont.SetStellung(FCanvas);
// Umschalten auf transparente Ausgabe !
Brush.Style := bsClear;
If FFont.Tag = 0 then // Normalfall
Font.Color := col
else // Speziell für HTML-Tags
Font.Color := FFont.Color;
// Eigentliche Zeichenausgabe
TextRect(r, Pos.x, Pos.y - FBottom + FFont.Translation, FUnicode);
// Untersteichen des Buchstabens (außer er ist tiefgestellt)
// wird nicht über das normale Style erledigt, damit eine einheitliche
// Linie bei verschiedenen Schriftarten entsteht
if (fsUnderline in FFont.Style) and
not (FFont.Position = fpSub) then begin
Pen.Color := Font.Color;
i := 0;
repeat
MoveTo(r.left, Pos.y+2+i);
LineTo(r.right, Pos.y+2+i);
inc(i);
until i > FDisplayFactor-0.5;
end;
end;
end;
procedure TCharacter.PaintOverhangTransparent(Pos : TPoint; r :TRect; col : TColor);
begin
// Ist das ClipRect überhaupt sichtbar?
if assigned(FCanvas) and (r.right-r.left>0) then
with FCanvas do begin
FFont.SetFont(FCanvas, FDisplayFactor);
FFont.SetStellung(FCanvas);
Brush.Style := bsClear;
If FFont.Tag = 0 then // Normalfall
Font.Color := col
else // Speziell für HTML-Tags
Font.Color := FFont.Color;
TextRect(r, Pos.x, Pos.y-FBottom+FFont.Translation, FUnicode);
end;
end;
// Font des Buchstabens ändern
// Es sollen nur die in Change angegeben Werte des neuen Font
// übernommen werden.
procedure TCharacter.ChangeFont( NewFont : TFormatFont; Change: TFontChanges);
begin
if (fcBold in Change) then
begin
if fsBold in NewFont.Style then FFont.Style := FFont.Style + [fsBold]
else FFont.Style := FFont.Style - [fsBold];
end;
if (fcItalic in Change) then
begin
if fsItalic in NewFont.Style then FFont.Style := FFont.Style + [fsItalic]
else FFont.Style := FFont.Style - [fsItalic];
end;
if (fcUnderline in Change) then
begin
if fsUnderline in NewFont.Style then FFont.Style := FFont.Style + [fsUnderline]
else FFont.Style := FFont.Style - [fsUnderline];
end;
if (fcPosition in Change) then FFont.Position := NewFont.Position;
if (fcSize in Change) then FFont.Size := NewFont.Size;
if (fcName in Change) then FFont.Name := NewFont.Name;
if (fcTag in Change) then FFont.Tag := NewFont.Tag;
if (fcColor in Change) then FFont.Color := NewFont.Color;
AdjustSize;
end;
// -------------------------------------------
//
// TLine
//
// -------------------------------------------
constructor TLine.Create(s : string; fontlist: TList; linkList: TStringList);
begin
inherited Create;
FCharacters := TList.Create;
FRowInfos := TList.Create;
FCanvas := nil;
FMaxWidth := 32000; // Dummywert
SetHTMLText(s, FontList, linkList);
end;
constructor TLine.Create(s : string; fontlist: TList; linkList: TStringList;
MaxWidth: integer; Canvas: TCanvas);
begin
Create(s, fontlist, linkList);
FMaxWidth := MaxWidth;
SetCanvas(Canvas);
AdjustRowInfos;
end;
destructor TLine.Destroy;
var i : integer;
begin
for i:= FCharacters.Count-1 downto 0 do
TCharacter(FCharacters.items[i]).Free;
FCharacters.Free;
for i:= FRowInfos.Count-1 downto 0 do
TRowInfo(FRowInfos.items[i]).Free;
FRowInfos.Free;
inherited;
end;
procedure TLine.SetHTMLText(s : string; fontList : TList; linkList: TStringList);
var f : TFormatFont;
Tag : String;
code, i : Integer;
procedure AnalyseContentOf(OTag: String);
var UpTag,
subtag, wert : String;
j : Integer;
begin
// Zulässige Tags
if Upcase(OTag[1]) = 'A' then begin // Link-Anfangs-Tag
wert := f.ExtractAttrValue('href', OTag);
If Length(wert) > 0 then begin
{ToDo: Die folgende Zeile überschreibt einen schon vorhandenen Font!}
f := TFormatFont.Create(f);
f.Tag := linkList.Count + 1; // Referenz-Nummer im Font vermerken
f.Style := f.Style + [fsUnderline]; // Darstellung unterstrichen...
f.Color := clBlue; // ...und blau
FontList.Add(f); // Font an die Fontliste anfügen
linkList.Add(wert); // Link an die Linkliste anfügen
end
else
MessageDlg('Der HTML-Text ist nicht korrekt!',mtError,[mbOk],0);
end
else if ( OTag[1] = '/') and // Link-Ende-Tag
(Upcase(OTag[2]) = 'A') then begin
if FontList.Count >= 2 then begin // Noch genug Fonts in der Liste?
f := TFormatFont(FontList.items[FontList.Count-2]);
TFormatFont(FontList.items[FontList.count-1]).free;
FontList.delete(FontList.Count-1);
end
else
MessageDlg('Der HTML-Text ist nicht korrekt!',mtError,[mbOk],0);
end
else if compareStr(UpperCase(OTag), 'HR') = 0 then // Absatz-Umbruch
FCharacters.add(TCharacter.Create('¯', f))
else begin // Zeichen-Formatierung
UpTag:=upperCase(OTag);
if compareStr(UpTag,'B')=0 then f.Style := f.Style + [fsBold]
else if compareStr(UpTag,'/B')=0 then f.Style := f.Style - [fsBold]
else if compareStr(UpTag,'I')=0 then f.Style := f.Style + [fsItalic]
else if compareStr(UpTag,'/I')=0 then f.Style := f.Style - [fsItalic]
else if compareStr(UpTag,'U')=0 then f.Style := f.Style + [fsUnderline]
else if compareStr(UpTag,'/U')=0 then f.Style := f.Style - [fsUnderline]
else if compareStr(UpTag,'SUB')=0 then f.Position := fpSub
else if compareStr(UpTag,'/SUB')=0 then f.Position := fpNormal
else if compareStr(UpTag,'SUP')=0 then f.Position := fpSup
else if compareStr(UpTag,'/SUP')=0 then f.Position := fpNormal
// Beim Fonttag muss der Font gespeichert, bzw.
// der alte Font wieder aus der Liste gelesen werden
else if compareStr(copy(UpTag,1,5),'/FONT')=0 then begin
// Enthält Fontliste noch genug Fonts?
if FontList.Count >= 2 then begin
f := TFormatFont(FontList.items[FontList.Count-2]);
TFormatFont(FontList.items[FontList.count-1]).free;
FontList.delete(FontList.Count-1);
end
else
MessageDlg('Der HTML-Text ist nicht korrekt!',mtError,[mbOk],0);
end
else if compareStr(copy(UpTag,1,4),'FONT')=0 then begin
// Neuen Font erzeugen und in Liste hinzufügen
// zunächst auf Basis des aktuellen Fonts
f := TFormatFont.Create(f);
FontList.add(f);
// SubTags untersuchen:
subtag := Trim(copy(UpTag,6,length(OTag)));
wert := f.ExtractAttrValue('SIZE', subtag);
If Length(wert) > 0 then begin
val(Wert,j,code);
If code = 0 then f.Size := j;
end;
wert := f.ExtractAttrValue('FACE', subtag);
If Length(wert) > 0 then f.Name := wert;
end;
end;
end;
begin { of SetHTMLText }
// alte Einträge für Buchstaben und RowInfos löschen
for i:= FCharacters.Count-1 downto 0 do begin
TCharacter(FCharacters.items[i]).Free;
FCharacters.delete(i);
end;
for i:= FRowInfos.Count-1 downto 0 do begin
TRowInfo(FRowInfos.items[i]).Free;
FRowInfos.Delete(i);
end;
// Zuletzt benutzten Font wählen
if FontList <> nil then
f := TFormatFont(FontList.items[FontList.Count-1])
else
f := TFormatFont.Create;
// Alle Buchstaben auswerten
i := 1;
while i <= length(s) do begin
// kommt als nächstes ein codiertes Zeichen? (&..;)
if s[i]='&' then begin
Tag := copy(s,i+1,length(s));
code := pos(';',Tag);
Tag := copy(Tag,1,code-1);
// es gibt nur 2 bis 4 Zeichen Länge
if (code >= 3) and (code<=5) then begin
i:=i+length(Tag)+2;
Tag := lowerCase(Tag);
if comparestr(tag,'lt')=0 then FCharacters.add(TCharacter.Create('<',f));
if comparestr(tag,'gt')=0 then FCharacters.add(TCharacter.Create('>',f));
if comparestr(tag,'amp')=0 then FCharacters.add(TCharacter.Create('&',f));
if comparestr(tag,'apos')=0 then FCharacters.add(TCharacter.Create('''',f));
if comparestr(tag,'quot')=0 then FCharacters.add(TCharacter.Create('"',f));
end
else begin
inc(i);
MessageDlg('Der HTML-Text ist nicht korrekt!',mtError,[mbOk],0);
end;
end
else begin
// Kommt als nächstes ein Tag ? (<..>)
if s[i]='<' then begin
Tag := copy(s,i+1,length(s));
code := pos('>',Tag);
if code = 0 then begin
inc(i);
MessageDlg('Der HTML-Text ist nicht korrekt!',mtError,[mbOk],0);
end
else begin
Tag := copy(Tag,1,code-1);
i:=i+length(Tag)+2; // i zeigt jetzt direkt hinter das Ende des Tags!
AnalyseContentOf(Tag);
end
end
else begin
// Offenbar kommt als nächstes ein ganz normales druckbares Zeichen!
FCharacters.add(TCharacter.Create(s[i],f));
i:= i +1;
end;
end;
end;
AdjustRowInfos;
end; { of SetHTMLText }