-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.lfm
2641 lines (2641 loc) · 135 KB
/
main.lfm
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 Fmain: TFmain
Left = 328
Height = 639
Top = 145
Width = 898
Caption = 'DIYen FPG list Editor -'
ClientHeight = 618
ClientWidth = 898
Menu = MenuPrincipal
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnResize = FormResize
LCLVersion = '1.8.4.0'
object BarraEstado: TStatusBar
Left = 0
Height = 19
Top = 599
Width = 898
Panels = <
item
Bevel = pbRaised
Width = 50
end>
SimplePanel = False
end
object GroupBox3: TGroupBox
Left = 0
Height = 599
Top = 0
Width = 278
Align = alClient
ClientHeight = 595
ClientWidth = 274
TabOrder = 1
object BCToolBar1: TBCToolBar
Left = 0
Height = 26
Top = 0
Width = 274
Images = Iconos
ParentShowHint = False
ShowHint = True
TabOrder = 0
LimitMemoryUsage = False
object ToolButton11: TToolButton
Left = 1
Height = 22
Top = 2
Caption = 'ToolButton11'
Style = tbsSeparator
end
object ToolButton15: TToolButton
Left = 63
Top = 2
Action = FpgRenombrar
end
object ToolButton16: TToolButton
Left = 9
Top = 2
Action = FpgRefrescar
end
object FPGColorFondo: TColorButton
Left = 94
Height = 22
Top = 2
Width = 33
BorderWidth = 2
ButtonColorSize = 16
ButtonColor = clOlive
OnColorChanged = FPGColorFondoColorChanged
end
object ToolButton8: TToolButton
Left = 55
Height = 22
Top = 2
Caption = 'ToolButton8'
Style = tbsSeparator
end
object ToolButton20: TToolButton
Left = 86
Height = 22
Top = 2
Caption = 'ToolButton20'
Style = tbsSeparator
end
object ToolButton21: TToolButton
Left = 32
Top = 2
Action = FpgAgregar
end
end
object VistaFPG: TListView
Left = 0
Height = 569
Top = 26
Width = 274
Align = alClient
AllocBy = 4
AutoSort = False
Columns = <>
GridLines = True
HideSelection = False
LargeImages = Miniaturas
PopupMenu = PopupMenu1
ReadOnly = True
ShowColumnHeaders = False
SortColumn = 0
SortType = stText
TabOrder = 1
ToolTips = False
ViewStyle = vsIcon
OnClick = VistaFPGClick
OnDblClick = FpgRenombrarExecute
OnKeyDown = VistaFPGKeyDown
OnKeyPress = VistaFPGKeyPress
OnKeyUp = VistaFPGKeyUp
OnSelectItem = VistaFPGSelectItem
end
end
object MainPanel: TBCPaperPanel
Left = 286
Height = 599
Top = 0
Width = 612
Align = alRight
Alignment = taLeftJustify
ClientHeight = 599
ClientWidth = 612
Color = clWhite
ParentColor = False
TabOrder = 2
OnResize = MainPanelResize
object GroupBox1: TGroupBox
Left = 0
Height = 212
Top = 387
Width = 612
Align = alBottom
Caption = 'Map info'
ClientHeight = 195
ClientWidth = 608
TabOrder = 0
object Panel1: TPanel
Left = 205
Height = 195
Top = 0
Width = 403
Align = alRight
ClientHeight = 195
ClientWidth = 403
TabOrder = 0
object TabsBounds: TTabControl
Left = 1
Height = 193
Top = 1
Width = 199
OnChange = TabsBoundsChange
OnChanging = TabsBoundsChanging
TabIndex = 0
Tabs.Strings = (
'Point'
'Collision'
'Hit'
)
Align = alClient
TabOrder = 0
object Panel2: TPanel
Left = 2
Height = 143
Top = 48
Width = 195
Align = alClient
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.EnlargeVertical = crsHomogenousSpaceResize
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 143
ClientWidth = 195
TabOrder = 1
object PanelPosition: TPanel
Left = 0
Height = 26
Top = 8
Width = 195
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 5
ClientHeight = 26
ClientWidth = 195
TabOrder = 0
object BCLabel1: TBCLabel
Left = 0
Height = 25
Top = 0
Width = 11
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = '('
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
object EdX: TSpinEdit
Left = 11
Height = 25
Top = 0
Width = 83
MaxValue = 9999
MinValue = -9999
OnKeyPress = EdDataKeyPress
TabOrder = 0
end
object BCLabel3: TBCLabel
Left = 94
Height = 25
Top = 0
Width = 8
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = ','
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
object EdY: TSpinEdit
Left = 102
Height = 25
Top = 0
Width = 83
MaxValue = 9999
MinValue = -9999
OnKeyPress = EdDataKeyPress
TabOrder = 1
end
object BCLabel2: TBCLabel
Left = 185
Height = 25
Top = 0
Width = 10
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = ')'
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
end
object PanelSize: TPanel
Left = 0
Height = 26
Top = 42
Width = 195
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 5
ClientHeight = 26
ClientWidth = 195
TabOrder = 1
Visible = False
object BCLabel4: TBCLabel
Left = 0
Height = 25
Top = 0
Width = 10
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = '('
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
object EdW: TSpinEdit
Left = 10
Height = 25
Top = 0
Width = 80
MaxValue = 9999
OnKeyPress = EdDataKeyPress
TabOrder = 0
end
object BCLabel5: TBCLabel
Left = 90
Height = 25
Top = 0
Width = 16
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = 'X'
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
object EdH: TSpinEdit
Left = 106
Height = 25
Top = 0
Width = 80
MaxValue = 9999
OnKeyPress = EdDataKeyPress
TabOrder = 1
end
object BCLabel6: TBCLabel
Left = 186
Height = 25
Top = 0
Width = 9
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = ')'
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
end
object PanelRadius: TPanel
Left = 0
Height = 26
Top = 76
Width = 195
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 5
ClientHeight = 26
ClientWidth = 195
TabOrder = 3
object BCLabel7: TBCLabel
Left = 0
Height = 25
Top = 0
Width = 19
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = '('
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
object EdR: TSpinEdit
Left = 19
Height = 25
Top = 0
Width = 157
MaxValue = 9999
OnExit = EdRExit
OnKeyPress = EdRKeyPress
TabOrder = 0
end
object BCLabel8: TBCLabel
Left = 176
Height = 25
Top = 0
Width = 19
Background.Color = clBlack
Background.ColorOpacity = 255
Background.Gradient1.StartColor = clWhite
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlack
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = True
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 35
Background.Style = bbsClear
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
Caption = ')'
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqFineAntialiasing
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = [fsBold]
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
end
end
object BTipo: TComboBox
Left = 0
Height = 29
Top = 110
Width = 195
ItemHeight = 0
Items.Strings = (
'AA_SQUARE'
'AA_RECT'
'CIRCLE'
'RECTANGLE'
'POINT'
)
OnChange = BTipoChange
OnCloseUp = BTipoCloseUp
Style = csDropDownList
TabOrder = 2
end
end
object BCToolBar4: TBCToolBar
Left = 2
Height = 21
Top = 27
Width = 195
Caption = 'BCToolBar4'
Flat = False
Images = Iconos
TabOrder = 2
LimitMemoryUsage = False
object ToolButton1: TToolButton
Left = 1
Top = 2
Action = BoundFileSalvar
end
object ToolButton9: TToolButton
Left = 24
Top = 2
Action = BoundFileBorrar
end
end
end
object GroupBounds: TGroupBox
Left = 200
Height = 193
Top = 1
Width = 202
Align = alRight
ClientHeight = 189
ClientWidth = 198
DragMode = dmAutomatic
TabOrder = 1
OnDragDrop = ListBoundsDragDrop
OnDragOver = ListBoundsDragOver
object BCToolBar2: TBCToolBar
Left = 0
Height = 26
Top = 0
Width = 198
Caption = 'BCToolBar2'
DropDownWidth = 12
Flat = False
Images = Iconos
ParentShowHint = False
ShowHint = True
TabOrder = 0
LimitMemoryUsage = False
object ToolButton2: TToolButton
Left = 1
Top = 2
Action = BoundAgregar
end
object ToolButton3: TToolButton
Left = 24
Top = 2
Action = BoundBorrar
end
object ToolButton4: TToolButton
Left = 47
Top = 2
Action = BoundArriba
end
object ToolButton5: TToolButton
Left = 70
Top = 2
Action = BoundAbajo
end
object ToolButton6: TToolButton
Left = 93
Height = 22
Top = 2
Caption = 'ToolButton6'
Style = tbsSeparator
end
object ToolButton7: TToolButton
Left = 124
Height = 22
Top = 2
Caption = 'ToolButton7'
Style = tbsDivider
end
object ToolButton10: TToolButton
Left = 152
Top = 2
Action = UtilCenter
end
object ToolButton12: TToolButton
Left = 129
Top = 2
Action = UtilAutoFCuad
end
object ToolButton13: TToolButton
Left = 175
Top = 2
Action = UtilAutoRect
end
object ToolButton18: TToolButton
Left = 101
Top = 2
Action = BoundAutoClean
Style = tbsCheck
end
end
object ListBounds: TListBox
Left = 0
Height = 163
Top = 26
Width = 198
Align = alClient
DragMode = dmAutomatic
ItemHeight = 0
OnDragDrop = ListBoundsDragDrop
OnDragOver = ListBoundsDragOver
OnSelectionChange = ListBoundsSelectionChange
ScrollWidth = 196
TabOrder = 1
TopIndex = -1
end
end
end
object ListInfo: TPanel
Left = 5
Height = 185
Top = 5
Width = 195
Align = alClient
BorderSpacing.Around = 5
BevelOuter = bvNone
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.ControlsPerLine = 1
ClientHeight = 185
ClientWidth = 195
Color = clWhite
ParentColor = False
TabOrder = 1
object MapInfo: TRichView
Left = 0
Height = 185
Top = 0
Width = 195
TabStop = True
TabOrder = 0
Align = alClient
Tracking = True
VScrollVisible = False
FirstJumpNo = 0
Style = RVStyle1
MaxTextWidth = 0
MinTextWidth = 0
LeftMargin = 5
RightMargin = 5
BackgroundStyle = bsNoBitmap
Delimiters = ' .;,:(){}"'
AllowSelection = True
SingleClick = False
end
end
end
object BCToolBar3: TBCToolBar
Left = 0
Height = 26
Top = 0
Width = 612
Caption = 'BCToolBar3'
Images = Iconos
ParentShowHint = False
ShowHint = True
TabOrder = 1
LimitMemoryUsage = False
object ZoomScale: TFloatSpinEdit
Left = 73
Height = 25
Top = 2
Width = 71
DecimalPlaces = 1
Increment = 0.1
MaxValue = 100
MinValue = 0.1
OnKeyPress = ZoomScaleKeyPress
TabOrder = 0
Value = 1
end
object Label1: TLabel
Left = 1
Height = 22
Top = 2
Width = 72
AutoSize = False
Caption = 'Zoom scale:'
Layout = tlCenter
ParentColor = False
ParentShowHint = False
ShowAccelChar = False
ShowHint = True
end
object ToolButton14: TToolButton
Left = 283
Height = 22
Top = 2
Caption = 'ToolButton14'
Style = tbsSeparator
end
object ToolButton17: TToolButton
Left = 291
Top = 2
Action = DrawBounds
Style = tbsCheck
end
object ToolButton19: TToolButton
Left = 314
Top = 2
Action = DrawSelectedBound
Style = tbsCheck
end
object AutoZoom: TCheckBox
Left = 152
Height = 24
Top = 2
Width = 131
Caption = 'Auto adjust zoom'
Checked = True
State = cbChecked
TabOrder = 1
end
object ToolButton22: TToolButton
Left = 144
Height = 22
Top = 2
Caption = 'ToolButton22'
Style = tbsSeparator
end
end
object ScrollScreen: TScrollBox
Left = 0
Height = 361
Top = 26
Width = 612
HorzScrollBar.Increment = 21
HorzScrollBar.Page = 211
HorzScrollBar.Smooth = True
HorzScrollBar.Tracking = True
VertScrollBar.Increment = 16
VertScrollBar.Page = 161
VertScrollBar.Smooth = True
VertScrollBar.Tracking = True
Align = alClient
ClientHeight = 359
ClientWidth = 610
TabOrder = 2
object Screen: TBGRAVirtualScreen
Left = 0
Height = 161
Top = 0
Width = 211
OnRedraw = ScreenRedraw
Alignment = taCenter
Color = clWhite
ParentColor = False
TabOrder = 0
OnMouseDown = ScreenMouseDown
OnMouseLeave = ScreenMouseLeave
OnMouseMove = ScreenMouseMove
OnMouseUp = ScreenMouseUp
end
end
end
object Splitter1: TSplitter
Left = 278
Height = 599
Top = 0
Width = 8
Align = alRight
ResizeAnchor = akRight
end
object MenuPrincipal: TMainMenu
Images = Iconos
Left = 192
Top = 48
object MenuItem1: TMenuItem
Caption = 'File'
object MenuItem2: TMenuItem
Action = FpgAbrirDir
end
object MenuItem10: TMenuItem
Action = FpgNuevoDir
end
object MenuItem8: TMenuItem
Caption = '-'
end
object MenuItem7: TMenuItem
Action = Salir
end
end