-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathu_Main.dfm
6466 lines (6466 loc) · 404 KB
/
u_Main.dfm
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
object MainForm: TMainForm
Left = 0
Top = 0
Caption = 'SVG Font Fit'
ClientHeight = 493
ClientWidth = 1184
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object splGlyph: TSplitter
Left = 225
Top = 0
Height = 457
Beveled = True
ExplicitLeft = 185
ExplicitHeight = 493
end
object pcGlyph: TPageControl
Left = 228
Top = 0
Width = 956
Height = 457
ActivePage = tsGlyph
Align = alClient
TabOrder = 0
TabPosition = tpBottom
object tsGlyph: TTabSheet
Caption = 'Glyph'
object Splitter1: TSplitter
Left = 708
Top = 52
Height = 379
Align = alRight
ExplicitLeft = 8
end
object sbrPaint: TScrollBox
Left = 0
Top = 52
Width = 708
Height = 379
Align = alClient
BevelInner = bvNone
DragMode = dmAutomatic
Color = clWhite
ParentColor = False
TabOrder = 0
TabStop = True
object pnImg: TPanel
Left = 0
Top = 0
Width = 704
Height = 375
Align = alClient
BevelEdges = []
BevelOuter = bvNone
Color = clWhite
ParentBackground = False
TabOrder = 0
object Draw: TPaintBox
AlignWithMargins = True
Left = 8
Top = 8
Width = 688
Height = 359
Margins.Left = 8
Margins.Top = 8
Margins.Right = 8
Margins.Bottom = 8
Align = alClient
OnDragOver = DrawDragOver
OnMouseDown = DrawMouseDown
OnPaint = DrawPaint
OnStartDrag = DrawStartDrag
ExplicitLeft = 7
ExplicitTop = 9
ExplicitWidth = 660
end
end
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 948
Height = 52
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object Panel2: TPanel
Left = 0
Top = 0
Width = 97
Height = 52
Align = alLeft
TabOrder = 0
object Label1: TLabel
Left = 6
Top = 3
Width = 26
Height = 13
Caption = 'Zoom'
end
object Label2: TLabel
Left = 4
Top = 31
Width = 22
Height = 13
Caption = 'Step'
end
object seZoom: TSpinEdit
Left = 38
Top = 0
Width = 49
Height = 22
MaxLength = 2
MaxValue = 8
MinValue = -8
TabOrder = 0
Value = -3
OnChange = seZoomChange
end
object seGrid: TSpinEdit
Left = 39
Top = 28
Width = 49
Height = 22
MaxLength = 3
MaxValue = 256
MinValue = 1
TabOrder = 1
Value = 20
OnChange = seGridChange
end
end
object pscrGlyph: TPageScroller
Left = 97
Top = 0
Width = 851
Height = 52
Align = alClient
Control = tbrGlyph
TabOrder = 1
object tbrGlyph: TToolBar
Left = 0
Top = 0
Width = 851
Height = 52
Align = alClient
AutoSize = True
ButtonHeight = 52
ButtonWidth = 41
Caption = 'ToolBar1'
Images = ilMain
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 0
ExplicitWidth = 839
object tbGoToZero: TToolButton
Left = 0
Top = 0
Action = aGoToZero
end
object tbApply: TToolButton
Left = 41
Top = 0
Action = aApply
end
object tbSep1: TToolButton
Left = 82
Top = 0
Width = 8
Caption = 'tbSep1'
ImageIndex = 7
Style = tbsSeparator
end
object tbReset: TToolButton
Left = 90
Top = 0
Action = aReset
end
object tbSep2: TToolButton
Left = 131
Top = 0
Width = 8
Caption = 'tbSep2'
ImageIndex = 7
Style = tbsSeparator
end
object tbSetBase: TToolButton
Left = 139
Top = 0
Action = aSetBase
Style = tbsCheck
end
object tbAlignUp: TToolButton
Left = 180
Top = 0
Action = aAlignTop
end
object tbAlignDown: TToolButton
Left = 221
Top = 0
Action = aAlignDown
end
object tbSep3: TToolButton
Left = 262
Top = 0
Width = 8
ImageIndex = 7
Style = tbsSeparator
end
object tbAlignMidle: TToolButton
Left = 270
Top = 0
Action = aAlignMidle
end
object ToolButton3: TToolButton
Left = 311
Top = 0
Width = 8
Caption = 'ToolButton3'
ImageIndex = 7
Style = tbsSeparator
end
object tbAlignHeight: TToolButton
Left = 319
Top = 0
Action = aAlignHeight
end
object tbPlusSize: TToolButton
Left = 360
Top = 0
Action = aPlusSize
end
object tbMinusSize: TToolButton
Left = 401
Top = 0
Action = aMinusSize
end
object tbCenter: TToolButton
Left = 442
Top = 0
Action = aCenter
end
object tbToSize: TToolButton
Left = 483
Top = 0
Action = aToSize
end
object tbSep4: TToolButton
Left = 524
Top = 0
Width = 8
Caption = 'tbSep4'
ImageIndex = 7
Style = tbsSeparator
end
object tbLeftEdge: TToolButton
Left = 532
Top = 0
Action = aLeftEdge
end
object tbMoveLeft: TToolButton
Left = 573
Top = 0
Action = aMoveLeft
end
object tbMoveRight: TToolButton
Left = 614
Top = 0
Action = aMoveRight
end
object ToolButton1: TToolButton
Left = 655
Top = 0
Action = aMoveUp
end
object ToolButton2: TToolButton
Left = 696
Top = 0
Action = aMoveDown
end
object tbSep5: TToolButton
Left = 737
Top = 0
Width = 8
Caption = 'tbSep5'
ImageIndex = 12
Style = tbsSeparator
end
object ToolButton22: TToolButton
Left = 745
Top = 0
Action = aRightEdge
end
object ToolButton20: TToolButton
Left = 786
Top = 0
Action = aEdgeLeft
end
object ToolButton21: TToolButton
Left = 827
Top = 0
Action = aEdgeRight
end
end
end
end
object pnOptions: TPanel
Left = 711
Top = 52
Width = 237
Height = 379
Align = alRight
BorderWidth = 5
TabOrder = 2
object GroupBox1: TGroupBox
Left = 6
Top = 81
Width = 225
Height = 72
Align = alTop
Caption = 'Edit'
TabOrder = 0
object chbEditGlyph: TCheckBox
AlignWithMargins = True
Left = 5
Top = 18
Width = 215
Height = 17
Align = alTop
Caption = 'Glyph'
Checked = True
State = cbChecked
TabOrder = 0
end
object chbEditSVG: TCheckBox
AlignWithMargins = True
Left = 5
Top = 41
Width = 215
Height = 17
Align = alTop
Caption = 'SVG'
Checked = True
State = cbChecked
TabOrder = 1
end
end
object GroupBox2: TGroupBox
Left = 6
Top = 6
Width = 225
Height = 75
Align = alTop
Caption = 'Display'
TabOrder = 1
object chbShowGlyph: TCheckBox
AlignWithMargins = True
Left = 5
Top = 18
Width = 215
Height = 17
Align = alTop
Caption = 'Glyph'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = chbShowGlyphClick
end
object chbShowSVG: TCheckBox
AlignWithMargins = True
Left = 5
Top = 41
Width = 215
Height = 17
Align = alTop
Caption = 'SVG'
Checked = True
State = cbChecked
TabOrder = 1
OnClick = chbShowSVGClick
end
end
object GroupBox3: TGroupBox
Left = 6
Top = 153
Width = 225
Height = 48
Align = alTop
Caption = 'Options'
TabOrder = 2
object chFixViewBox: TCheckBox
AlignWithMargins = True
Left = 5
Top = 18
Width = 215
Height = 17
Align = alTop
Caption = 'Compatibility OT-SVG'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = chFixViewBoxClick
end
end
object GroupBox4: TGroupBox
Left = 6
Top = 201
Width = 225
Height = 172
Align = alClient
Caption = 'Info'
TabOrder = 3
object lblInfo: TLabel
AlignWithMargins = True
Left = 5
Top = 18
Width = 215
Height = 149
Align = alClient
Caption = 'Glyph Info:'
ExplicitWidth = 54
ExplicitHeight = 13
end
end
end
end
object tsHeap: TTabSheet
Caption = 'Heap'
ImageIndex = 2
object lbUnicodeRegions: TListBox
Left = 400
Top = 25
Width = 257
Height = 160
ItemHeight = 13
Items.Strings = (
'0000:001F=Control characters'
'0020:007F=Basic Latin'
'00A0:00FF=Latin-1 Supplement'
'0100:017F=Latin Extended-A'
'0180:024F=Latin Extended-B'
'0250:02AF=IPA Extensions'
'02B0:02FF=Spacing Modifier Letters'
'0300:036F=Combining Diacritical Marks'
'0370:03FF=Greek and Coptic'
'0400:04FF=Cyrillic'
'0500:052F=Cyrillic Supplementary'
'0530:058F=Armenian'
'0590:05FF=Hebrew'
'0600:06FF=Arabic'
'0700:074F=Syriac'
'0780:07BF=Thaana'
'0900:097F=Devanagari'
'0980:09FF=Bengali'
'0A00:0A7F=Gurmukhi'
'0A80:0AFF=Gujarati'
'0B00:0B7F=Oriya'
'0B80:0BFF=Tamil'
'0C00:0C7F=Telugu'
'0C80:0CFF=Kannada'
'0D00:0D7F=Malayalam'
'0D80:0DFF=Sinhala'
'0E00:0E7F=Thai'
'0E80:0EFF=Lao'
'0F00:0FFF=Tibetan'
'1000:109F=Myanmar'
'10A0:10FF=Georgian'
'1100:11FF=Hangul Jamo'
'1200:137F=Ethiopic'
'13A0:13FF=Cherokee'
'1400:167F=Unified Canadian Aboriginal Syllabics'
'1680:169F=Ogham'
'16A0:16FF=Runic'
'1700:171F=Tagalog'
'1720:173F=Hanunoo'
'1740:175F=Buhid'
'1760:177F=Tagbanwa'
'1780:17FF=Khmer'
'1800:18AF=Mongolian'
'1900:194F=Limbu'
'1950:197F=Tai Le'
'19E0:19FF=Khmer Symbols'
'1D00:1D7F=Phonetic Extensions'
'1E00:1EFF=Latin Extended Additional'
'1F00:1FFF=Greek Extended'
'2000:206F=General Punctuation'
'2070:209F=Superscripts and Subscripts'
'20A0:20CF=Currency Symbols'
'20D0:20FF=Combining Diacritical Marks for Symbols'
'2100:214F=Letterlike Symbols'
'2150:218F=Number Forms'
'2190:21FF=Arrows'
'2200:22FF=Mathematical Operators'
'2300:23FF=Miscellaneous Technical'
'2400:243F=Control Pictures'
'2440:245F=Optical Character Recognition'
'2460:24FF=Enclosed Alphanumerics'
'2500:257F=Box Drawing'
'2580:259F=Block Elements'
'25A0:25FF=Geometric Shapes'
'2600:26FF=Miscellaneous Symbols'
'2700:27BF=Dingbats'
'27C0:27EF=Miscellaneous Mathematical Symbols-A'
'27F0:27FF=Supplemental Arrows-A'
'2800:28FF=Braille Patterns'
'2900:297F=Supplemental Arrows-B'
'2980:29FF=Miscellaneous Mathematical Symbols-B'
'2A00:2AFF=Supplemental Mathematical Operators'
'2B00:2BFF=Miscellaneous Symbols and Arrows'
'2E80:2EFF=CJK Radicals Supplement'
'2F00:2FDF=Kangxi Radicals'
'2FF0:2FFF=Ideographic Description Characters'
'3000:303F=CJK Symbols and Punctuation'
'3040:309F=Hiragana'
'30A0:30FF=Katakana'
'3100:312F=Bopomofo'
'3130:318F=Hangul Compatibility Jamo'
'3190:319F=Kanbun'
'31A0:31BF=Bopomofo Extended'
'31F0:31FF=Katakana Phonetic Extensions'
'3200:32FF=Enclosed CJK Letters and Months'
'3300:33FF=CJK Compatibility'
'3400:4DBF=CJK Unified Ideographs Extension A'
'4DC0:4DFF=Yijing Hexagram Symbols'
'4E00:9FFF=CJK Unified Ideographs'
'A000:A48F=Yi Syllables'
'A490:A4CF=Yi Radicals'
'AC00:D7AF=Hangul Syllables'
'D800:DB7F=High Surrogates'
'DB80:DBFF=High Private Use Surrogates'
'DC00:DFFF=Low Surrogates'
'E000:F8FF=Private Use Area'
'F900:FAFF=CJK Compatibility Ideographs'
'FB00:FB4F=Alphabetic Presentation Forms'
'FB50:FDFF=Arabic Presentation Forms-A'
'FE00:FE0F=Variation Selectors'
'FE20:FE2F=Combining Half Marks'
'FE30:FE4F=CJK Compatibility Forms'
'FE50:FE6F=Small Form Variants'
'FE70:FEFF=Arabic Presentation Forms-B'
'FF00:FFEF=Halfwidth and Fullwidth Forms'
'FFF0:FFFF=Specials'
'10000:1007F=Linear B Syllabary'
'10080:100FF=Linear B Ideograms'
'10100:1013F=Aegean Numbers'
'10300:1032F=Old Italic'
'10330:1034F=Gothic'
'10380:1039F=Ugaritic'
'10400:1044F=Deseret'
'10450:1047F=Shavian'
'10480:104AF=Osmanya'
'10800:1083F=Cypriot Syllabary'
'1D000:1D0FF=Byzantine Musical Symbols'
'1D100:1D1FF=Musical Symbols'
'1D300:1D35F=Tai Xuan Jing Symbols'
'1D400:1D7FF=Mathematical Alphanumeric Symbols'
'20000:2A6DF=CJK Unified Ideographs Extension B'
'2F800:2FA1F=CJK Compatibility Ideographs Supplement'
'E0000:E007F=Tags')
TabOrder = 0
end
object sgGlyph: TStringGrid
Left = 0
Top = 319
Width = 948
Height = 112
Align = alBottom
ColCount = 14
DefaultColWidth = 48
DefaultRowHeight = 18
DrawingStyle = gdsClassic
FixedCols = 2
RowCount = 2
Options = [goVertLine, goHorzLine, goColSizing, goEditing, goRowSelect]
TabOrder = 1
end
object sgBase: TStringGrid
Left = 0
Top = 207
Width = 948
Height = 112
Align = alBottom
ColCount = 9
DefaultColWidth = 48
DefaultRowHeight = 18
DrawingStyle = gdsClassic
FixedCols = 2
RowCount = 2
Options = [goVertLine, goHorzLine, goColSizing, goEditing, goRowSelect]
TabOrder = 2
end
end
object tsXML: TTabSheet
Caption = 'XML'
ImageIndex = 1
object seGlyph: TSynEdit
Left = 0
Top = 52
Width = 948
Height = 379
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
Font.Quality = fqClearTypeNatural
TabOrder = 0
UseCodeFolding = False
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Consolas'
Gutter.Font.Style = []
Highlighter = SynXMLSyn1
WordWrap = True
end
object tbrXML: TToolBar
Left = 0
Top = 0
Width = 948
Height = 52
AutoSize = True
ButtonHeight = 52
ButtonWidth = 39
Caption = 'ToolBar1'
Images = ilMain
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 1
object tbApplyXML: TToolButton
Left = 0
Top = 0
Action = aApply
end
object tbResetXML: TToolButton
Left = 39
Top = 0
Action = aReset
end
end
end
object tsKern: TTabSheet
Caption = 'Kerning'
ImageIndex = 3
object sg: TStringGrid
Left = 0
Top = 52
Width = 948
Height = 184
Align = alClient
ColCount = 3
Ctl3D = False
DefaultColWidth = 32
DefaultRowHeight = 18
FixedCols = 2
RowCount = 3
FixedRows = 2
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSizing, goColSizing, goEditing, goAlwaysShowEditor, goFixedRowDefAlign]
ParentCtl3D = False
TabOrder = 0
OnDrawCell = sgDrawCell
OnSelectCell = sgSelectCell
OnSetEditText = sgSetEditText
end
object tbgKerning: TToolBar
Left = 0
Top = 0
Width = 948
Height = 52
AutoSize = True
ButtonHeight = 52
ButtonWidth = 41
Images = ilMain
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 1
object ToolButton25: TToolButton
Left = 0
Top = 0
Action = aKerningRows
end
object ToolButton27: TToolButton
Left = 41
Top = 0
Action = aKerningCols
end
object tbClearKern: TToolButton
Left = 82
Top = 0
Action = aKerningClear
end
object tbSep6: TToolButton
Left = 123
Top = 0
Width = 8
ImageIndex = 6
Style = tbsSeparator
end
object ToolButton24: TToolButton
Left = 131
Top = 0
Action = aKerningCalc
end
object tbStopCalc: TToolButton
Left = 172
Top = 0
Action = aStopCalc
end
object tbSep7: TToolButton
Left = 213
Top = 0
Width = 8
ImageIndex = 3
Style = tbsSeparator
end
object ToolButton26: TToolButton
Left = 221
Top = 0
Action = aKerningApply
end
end
object Panel3: TPanel
Left = 0
Top = 236
Width = 948
Height = 195
Align = alBottom
Caption = 'Panel3'
TabOrder = 2
object KernPaint: TPaintBox
Left = 313
Top = 1
Width = 634
Height = 193
Align = alClient
OnPaint = KernPaintPaint
ExplicitWidth = 357
ExplicitHeight = 222
end
object seKern: TSynEdit
Left = 1
Top = 1
Width = 312
Height = 193
Align = alLeft
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Consolas'
Font.Style = []
Font.Quality = fqClearTypeNatural
TabOrder = 0
UseCodeFolding = False
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Consolas'
Gutter.Font.Style = []
Highlighter = SynIniSyn1
Lines.Strings = (
'; When 2 glyph distance less then'
'min.tst=30'
'; set distance by kerning to'
'min.set=90'
'; When 2 glyph distance more then'
'max.tst=180'
'; set distance by kerning to'
'max.set=120'
'; Limit X-overlap'
'overlap=-100'
'; Round kerning to (1-5-10-100)'
'precision=10'
'')
WordWrap = True
end
end
end
end
object pnFont: TPanel
Left = 0
Top = 0
Width = 225
Height = 457
Align = alLeft
BevelOuter = bvNone
TabOrder = 1
object tbrFile: TToolBar
Left = 0
Top = 0
Width = 225
Height = 52
AutoSize = True
ButtonHeight = 52
ButtonWidth = 39
Caption = 'tbrFile'
Images = ilMain
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 0
object tbFontOpen: TToolButton
Left = 0
Top = 0
Hint = 'Opent SVG font'
Action = aFontOpen
end
object tbFolderSVG: TToolButton
Left = 39
Top = 0
Hint = 'Set folder SVG glyphs'
Caption = 'SVG'
ImageIndex = 35
OnClick = tbFolderSVGClick
end
object tbFontSave: TToolButton
Left = 78
Top = 0
Hint = 'Save SVG font and color glyphs'
Action = aFontSave
end
object tbSep8: TToolButton
Left = 117
Top = 0
Width = 8
Caption = 'tbSep8'
ImageIndex = 3
Style = tbsSeparator
end
object tbFontConfig: TToolButton
Left = 125
Top = 0
Hint = 'Tree view font options'
Action = aFontConfig
end
end
object treeFNT: TTreeView
Left = 0
Top = 52
Width = 225
Height = 405
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
HideSelection = False
Indent = 16
MultiSelect = True
MultiSelectStyle = [msControlSelect, msShiftSelect]
ParentFont = False
ReadOnly = True
RowSelect = True
ShowLines = False
SortType = stText
TabOrder = 1
OnAdvancedCustomDrawItem = treeFNTAdvancedCustomDrawItem
OnChange = treeFNTChange
OnChanging = treeFNTChanging
OnCompare = treeFNTCompare
end
end
object StatusBar1: TStatusBar
Left = 0
Top = 474
Width = 1184
Height = 19
Panels = <
item
Width = 400
end
item
Width = 200
end>
end
object pbrProcessing: TProgressBar
Left = 0
Top = 457
Width = 1184
Height = 17
Align = alBottom
TabOrder = 3
Visible = False
end
object dlgFont: TFontDialog
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -32
Font.Name = 'Tahoma'
Font.Style = []
Left = 128
Top = 184
end
object SynXMLSyn1: TSynXMLSyn
Options.AutoDetectEnabled = False
Options.AutoDetectLineLimit = 0
Options.Visible = False
WantBracesParsed = False
Left = 712
Top = 156
end
object ilMain: TImageList
Height = 32
Width = 32
Left = 368
Top = 168
Bitmap = {
494C010125002800040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
0000000000003600000028000000800000004001000001002000000000000080
0200000000000000000000000000000000000000000070BC6A000F9600006EBB
6B00000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000070BC6A000F9600006EBB6B00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000070BC6A000F9600006EBB
6B00000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000070BC6A000F9600006EBB6B00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000070BB6B000F9606006EBB
6B00000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000070BB6B000F9606006EBB6B00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000070BB6B000F9606006EBB
6B0000000000A4A4A40068686800686868006868680068686800686868006868
6800686868006868680068686800686868006868680068686800686868006868
6800686868006868680068686800686868006868680068686800A5A5A5000000
000070BB6B000F9606006EBB6B00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000070BC6A000F9600006EBB
6B00000000006666660000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000001010100666666000000
000070BC6A000F9600006EBB6B00000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000