-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmap_loader_unit.lfm
More file actions
1433 lines (1433 loc) · 32.8 KB
/
Copy pathmap_loader_unit.lfm
File metadata and controls
1433 lines (1433 loc) · 32.8 KB
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 map_loader_form: Tmap_loader_form
Left = 222
Height = 752
Top = 174
Width = 956
HorzScrollBar.Tracking = True
VertScrollBar.Tracking = True
Caption = ' load a tiled map into multiple background picture shapes ...'
ClientHeight = 752
ClientWidth = 956
Color = 16775412
DesignTimePPI = 120
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'Arial'
Font.Style = [fsBold]
FormStyle = fsStayOnTop
OnActivate = FormActivate
OnCreate = FormCreate
OnMouseMove = FormMouseMove
Position = poScreenCenter
LCLVersion = '3.4.0.0'
Scaled = False
object datestamp_label: TLabel
Left = 0
Height = 4
Top = 748
Width = 956
AutoSize = False
Font.Color = clGray
Font.Height = -7
Font.Name = 'Arial'
ParentFont = False
end
object Label20: TLabel
Left = 24
Height = 24
Top = 38
Width = 92
Alignment = taRightJustify
AutoSize = False
Caption = 'map name :'
Layout = tlCenter
end
object Label21: TLabel
Left = 302
Height = 24
Top = 38
Width = 355
AutoSize = False
Caption = 'enter a short name to identify the map (max 15 characters)'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentFont = False
end
object list_label: TLabel
Left = 58
Height = 20
Top = 68
Width = 112
Alignment = taRightJustify
AutoSize = False
Caption = 'loaded maps :'
Layout = tlCenter
Visible = False
end
object Label26: TLabel
Left = 182
Height = 54
Top = 78
Width = 160
AutoSize = False
Caption = 'each map must have its own unique name'
Font.Color = 4210752
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
end
object info_label: TLabel
Cursor = crHandPoint
Left = 776
Height = 49
Top = 4
Width = 169
AutoSize = False
Caption = 'please click here for an explanation of this dialog'
Font.Color = clBlue
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
WordWrap = True
OnClick = info_labelClick
OnMouseMove = info_labelMouseMove
end
object current_map_label: TLabel
Left = 12
Height = 24
Top = 156
Width = 380
AutoSize = False
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold, fsItalic]
Layout = tlCenter
ParentFont = False
end
object t_55_label: TLabel
Left = 410
Height = 95
Top = 74
Width = 243
Alignment = taCenter
AutoSize = False
Caption = 'T-55 ? Before using this dialog please set your required model gauge and scale.'
Color = clYellow
Font.Color = clRed
Font.Height = -15
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
Layout = tlCenter
ParentColor = False
ParentFont = False
WordWrap = True
end
object Label1: TLabel
Left = 20
Height = 20
Top = 630
Width = 360
AutoSize = False
Caption = 'above maps © OpenStreetMap contributors + Thunderforest'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label5: TLabel
Cursor = crHandPoint
Left = 216
Height = 20
Hint = ' visit OpenStreetMap web site '
Top = 596
Width = 106
AutoSize = False
Caption = 'OpenStreetMap'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = Label5Click
OnMouseMove = Label5MouseMove
end
object Label6: TLabel
Cursor = crHandPoint
Left = 44
Height = 20
Top = 596
Width = 166
AutoSize = False
Caption = 'information about this map'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
OnClick = Label6Click
OnMouseMove = Label6MouseMove
end
object Label3: TLabel
Cursor = crHandPoint
Left = 208
Height = 20
Hint = ' visit Thunderforest web site '
Top = 520
Width = 89
AutoSize = False
Caption = 'Thunderforest'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = Label3Click
OnMouseMove = Label3MouseMove
end
object Label4: TLabel
Cursor = crHandPoint
Left = 44
Height = 20
Top = 520
Width = 162
AutoSize = False
Caption = 'information about this map'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
OnClick = Label4Click
OnMouseMove = Label4MouseMove
end
object Label23: TLabel
Left = 676
Height = 36
Top = 284
Width = 253
AutoSize = False
Caption = 'NLS maps © National Library of Scotland not for commercial use'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
WordWrap = True
end
object load_new_label1: TLabel
Left = 590
Height = 47
Top = 654
Width = 186
Alignment = taCenter
AutoSize = False
Caption = 'to get another map, first enter a new map name'
Font.Color = 192
Font.Height = -14
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
Layout = tlCenter
ParentFont = False
Visible = False
WordWrap = True
end
object Label17: TLabel
Left = 376
Height = 20
Top = 196
Width = 260
AutoSize = False
Caption = 'select for 25-inch County Series maps :'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object Label24: TLabel
Cursor = crHandPoint
Left = 676
Height = 20
Hint = ' visit National Library of Scotland web site '
Top = 262
Width = 185
AutoSize = False
Caption = 'National Library of Scotland'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsUnderline]
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = Label24Click
OnMouseMove = Label24MouseMove
end
object Shape4: TShape
Left = 254
Height = 1
Top = 504
Width = 50
Brush.Color = clBlack
end
object Label18: TLabel
Left = 24
Height = 25
Top = 4
Width = 365
AutoSize = False
Caption = 'get a tiled background map'
Font.Color = 16711808
Font.Height = -18
Font.Name = 'Arial'
Font.Style = [fsBold]
Layout = tlCenter
ParentFont = False
end
object Label10: TLabel
Left = 20
Height = 20
Top = 188
Width = 161
AutoSize = False
Caption = 'select map series :'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object Label15: TLabel
Left = 8
Height = 20
Top = 668
Width = 269
Alignment = taRightJustify
AutoSize = False
Caption = 'map tiles are loaded as picture shapes :'
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
Layout = tlCenter
ParentFont = False
end
object location_groupbox: TGroupBox
Left = 412
Height = 207
Top = 434
Width = 534
Caption = ' real location : '
ClientHeight = 184
ClientWidth = 530
Color = 14221304
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 18
OnMouseMove = location_groupboxMouseMove
object Label7: TLabel
Left = 336
Height = 16
Top = 120
Width = 49
AutoSize = False
Caption = 'letters:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label8: TLabel
Left = 388
Height = 16
Top = 120
Width = 60
AutoSize = False
Caption = 'easting:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label9: TLabel
Left = 460
Height = 16
Top = 120
Width = 60
AutoSize = False
Caption = 'northing:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label11: TLabel
Left = 164
Height = 16
Top = 120
Width = 77
AutoSize = False
Caption = 'latitude:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label12: TLabel
Left = 16
Height = 16
Top = 120
Width = 73
AutoSize = False
Caption = 'longitude:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label13: TLabel
Left = 248
Height = 16
Top = 141
Width = 69
AutoSize = False
Caption = 'degrees'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label16: TLabel
Left = 124
Height = 20
Top = 26
Width = 196
Alignment = taRightJustify
AutoSize = False
Caption = 'GB locations can be found from:'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentFont = False
end
object Label14: TLabel
Cursor = crHandPoint
Left = 324
Height = 20
Hint = 'visit NLS 25K 1950s mapping, add marker, copy URL from address bar, paste into box below'
Top = 26
Width = 80
AutoSize = False
Caption = 'NLS maps'
Font.Color = clBlue
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
Layout = tlCenter
ParentFont = False
ParentShowHint = False
ShowHint = True
OnClick = Label14Click
OnMouseMove = Label14MouseMove
end
object Label19: TLabel
Left = 176
Height = 22
Top = 92
Width = 108
AutoSize = False
Caption = '( entire world )'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Layout = tlCenter
ParentFont = False
end
object Label27: TLabel
Left = 8
Height = 32
Top = 168
Width = 153
AutoSize = False
Caption = 'enter longitude negative West of Greenwich UK'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
WordWrap = True
end
object Label28: TLabel
Left = 164
Height = 32
Top = 168
Width = 145
AutoSize = False
Caption = 'enter latitude negative South of the Equator'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
WordWrap = True
end
object Label25: TLabel
Left = 326
Height = 16
Top = 172
Width = 203
AutoSize = False
Caption = '3-figure or 5-figure references valid'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label2: TLabel
Left = 100
Height = 16
Top = 141
Width = 61
AutoSize = False
Caption = 'degrees'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
ParentFont = False
end
object Label22: TLabel
Left = 398
Height = 20
Top = 26
Width = 131
AutoSize = False
Caption = 'then enter URL below'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Layout = tlCenter
ParentFont = False
end
object os_grid_radio_button: TRadioButton
Left = 316
Height = 22
Top = 92
Width = 184
Caption = 'OS Grid Reference GB'
TabOrder = 5
OnClick = os_letters_editEnter
end
object lat_lon_radio_button: TRadioButton
Left = 12
Height = 22
Top = 92
Width = 153
Caption = 'longitude / latitude'
Checked = True
TabOrder = 2
TabStop = True
OnClick = lon_editEnter
end
object os_easting_edit: TEdit
Left = 388
Height = 24
Top = 138
Width = 64
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clGray
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 7
Text = '372'
OnClick = os_easting_editClick
OnEnter = os_letters_editEnter
end
object os_northing_edit: TEdit
Left = 460
Height = 24
Top = 138
Width = 64
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clGray
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 8
Text = '699'
OnClick = os_northing_editClick
OnEnter = os_letters_editEnter
end
object os_letters_edit: TEdit
Left = 336
Height = 24
Top = 138
Width = 36
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clGray
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
MaxLength = 2
ParentFont = False
TabOrder = 6
Text = 'TQ'
OnClick = os_letters_editClick
OnEnter = os_letters_editEnter
end
object lon_edit: TEdit
Left = 16
Height = 24
Top = 138
Width = 80
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
Text = '-2.30712'
OnClick = lon_editClick
OnEnter = lon_editEnter
end
object lat_edit: TEdit
Left = 164
Height = 24
Top = 138
Width = 80
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 4
Text = '52.37587'
OnClick = lat_editClick
OnEnter = lon_editEnter
end
object url_radio_button: TRadioButton
Left = 12
Height = 20
Top = 26
Width = 105
Caption = 'from a URL :'
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = url_editEnter
end
object url_edit: TEdit
Left = 16
Height = 22
Hint = ' set location by entering the URL for an OpenStreetMap or NLS slippy map or Google Maps or OS Maps '
Top = 54
Width = 508
AutoSize = False
AutoSelect = False
Font.Color = clGray
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
Text = ' a URL entered here is used to set the location only - copy/paste from browser address'
OnClick = url_editClick
OnEnter = url_editEnter
end
end
object load_tiles_button: TButton
Left = 784
Height = 33
Top = 654
Width = 160
Caption = 'load tiled map'
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 17
end
object extend_area_groupbox: TGroupBox
Left = 398
Height = 116
Top = 70
Width = 266
Caption = ' extend tiled map : '
ClientHeight = 93
ClientWidth = 262
Color = 14221311
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 5
Visible = False
object Shape2: TShape
Left = 100
Height = 24
Top = 54
Width = 66
Brush.Color = clSilver
Brush.Style = bsDiagCross
Pen.Color = 53248
Pen.Width = 2
end
object add_top_button: TButton
Left = 100
Height = 24
Hint = 'add a row of tiles at the top'
Top = 24
Width = 66
Caption = '+ 1 row'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = add_top_buttonClick
end
object add_left_button: TButton
Left = 8
Height = 24
Hint = 'add a column of tiles on the left'
Top = 54
Width = 86
Caption = '+ 1 column'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = add_left_buttonClick
end
object add_right_button: TButton
Left = 172
Height = 24
Hint = 'add a column of tiles on the right'
Top = 54
Width = 86
Caption = '+ 1 column'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = add_right_buttonClick
end
object add_bottom_button: TButton
Left = 100
Height = 24
Hint = 'add a row of tiles at the bottom'
Top = 84
Width = 66
Caption = '+ 1 row'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = add_bottom_buttonClick
end
end
object crop_area_groupbox: TGroupBox
Left = 678
Height = 116
Top = 70
Width = 266
Caption = ' crop tiled map : '
ClientHeight = 93
ClientWidth = 262
Color = 14221288
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 6
Visible = False
object Shape3: TShape
Left = 100
Height = 24
Top = 54
Width = 66
Brush.Color = clSilver
Brush.Style = bsDiagCross
Pen.Color = clRed
Pen.Width = 2
end
object crop_top_button: TButton
Left = 100
Height = 24
Hint = 'remove a row of tiles at the top'
Top = 24
Width = 66
Caption = '- 1 row'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = crop_top_buttonClick
end
object crop_left_button: TButton
Left = 8
Height = 24
Hint = 'remove a column of tiles on the left'
Top = 54
Width = 86
Caption = '- 1 column'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = crop_left_buttonClick
end
object crop_right_button: TButton
Left = 172
Height = 24
Hint = 'remove a column of tiles on the right'
Top = 54
Width = 86
Caption = '- 1 column'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = crop_right_buttonClick
end
object crop_bottom_button: TButton
Left = 100
Height = 24
Hint = 'remove a row of tiles at the bottom'
Top = 84
Width = 66
Caption = '- 1 row'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnClick = crop_bottom_buttonClick
end
end
object background_shapes_button: TButton
Left = 38
Height = 24
Hint = 'show background shapes dialog'
Top = 712
Width = 161
Caption = 'background shapes ...'
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 4
OnClick = background_shapes_buttonClick
end
object delete_button: TButton
Left = 480
Height = 24
Top = 712
Width = 92
Caption = 'delete map'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
OnClick = delete_buttonClick
end
object name_edit: TEdit
Left = 124
Height = 24
Top = 38
Width = 173
AutoSize = False
AutoSelect = False
Color = clWhite
Font.Color = clBlue
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
MaxLength = 15
ParentFont = False
TabOrder = 0
OnChange = name_editChange
OnClick = name_editClick
end
object name_listbox: TListBox
Left = 176
Height = 80
Hint = ' your current maps - select one to edit or delete '
Top = 74
Width = 201
Color = clWhite
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ItemHeight = 0
ParentShowHint = False
ParentFont = False
ShowHint = True
TabOrder = 2
Visible = False
OnClick = name_listboxClick
end
object stop_button: TButton
Left = 664
Height = 28
Hint = 'stop loading map tiles'
Top = 656
Width = 109
Caption = 'stop loading'
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 16
Visible = False
OnClick = stop_buttonClick
end
object close_panel: TPanel
Left = 888
Height = 25
Top = 720
Width = 64
Alignment = taLeftJustify
Caption = ' hide'
ClientHeight = 25
ClientWidth = 64
Color = clYellow
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentBackground = False
ParentColor = False
ParentFont = False
TabOrder = 20
OnClick = close_buttonClick
object close_button: TButton
Left = 45
Height = 15
Top = 5
Width = 15
Cancel = True
Caption = ' '
TabOrder = 0
OnClick = close_buttonClick
end
end
object pause_button: TButton
Left = 596
Height = 28
Top = 656
Width = 65
Caption = 'pause'
Font.Color = clWindowText
Font.Height = -15