-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.dfm
3663 lines (3663 loc) · 213 KB
/
MainForm.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 Form1: TForm1
Left = 297
Top = 124
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'GeoFunctions: GeoCalc v.0.8 by Shevchuk S. '
ClientHeight = 538
ClientWidth = 847
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
OnActivate = FormActivate
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label12: TLabel
Left = 72
Top = 190
Width = 33
Height = 13
Caption = #1043#1077#1086#1080#1076':'
end
object SpeedButton8: TSpeedButton
Left = 385
Top = 187
Width = 32
Height = 21
Caption = '...'
OnClick = SpeedButton8Click
end
object Label13: TLabel
Left = 484
Top = 190
Width = 33
Height = 13
Caption = #1043#1077#1086#1080#1076':'
end
object SpeedButton9: TSpeedButton
Left = 801
Top = 187
Width = 32
Height = 21
Caption = '...'
OnClick = SpeedButton9Click
end
object SpeedButton4: TSpeedButton
Left = 425
Top = 482
Width = 121
Height = 25
Caption = #1047#1072#1075#1088#1091#1079#1080#1090#1100
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
04000000000080000000C40E0000C40E00001000000000000000000000000000
8000008000000080800080000000800080008080000080808000C0C0C0000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00DDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDD0000000000000DD77777777777700DD7FB8B8B8B8
B700D7FB8B8B8B8B8070D7F8B8B8B8B870707F8B8B8B8B8B07707FFFFFFFFFF7
08707777777777777B70D7F8B8B8B8B8B870D7FB8B8B8FFFFF70D7F8B8B8F777
777DDD7FFFFF7DDDDDDDDDD77777DDDDDDDDDDDDDDDDDDDDDDDD}
OnClick = SpeedButton4Click
end
object SpeedButton1: TSpeedButton
Left = 8
Top = 482
Width = 121
Height = 25
Caption = #1047#1072#1075#1088#1091#1079#1080#1090#1100
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
04000000000080000000C40E0000C40E00001000000000000000000000000000
8000008000000080800080000000800080008080000080808000C0C0C0000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00DDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDD0000000000000DD77777777777700DD7FB8B8B8B8
B700D7FB8B8B8B8B8070D7F8B8B8B8B870707F8B8B8B8B8B07707FFFFFFFFFF7
08707777777777777B70D7F8B8B8B8B8B870D7FB8B8B8FFFFF70D7F8B8B8F777
777DDD7FFFFF7DDDDDDDDDD77777DDDDDDDDDDDDDDDDDDDDDDDD}
OnClick = SpeedButton1Click
end
object SpeedButton2: TSpeedButton
Left = 128
Top = 482
Width = 121
Height = 25
Caption = #1057#1086#1093#1088#1072#1085#1080#1090#1100
Glyph.Data = {
EE000000424DEE0000000000000076000000280000000F0000000F0000000100
0400000000007800000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00D70000000000
0000D033000000770300D033000000770300D033000000770300D03300000000
0300D033333333333300D033000000003300D030777777770300D03077777777
0300D030777777770300D030777777770300D030777777770000D03077777777
0700D000000000000000DDDDDDDDDDDDDDD0}
OnClick = SpeedButton2Click
end
object SpeedButton3: TSpeedButton
Left = 545
Top = 482
Width = 121
Height = 25
Caption = #1057#1086#1093#1088#1072#1085#1080#1090#1100
Glyph.Data = {
EE000000424DEE0000000000000076000000280000000F0000000F0000000100
0400000000007800000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00D70000000000
0000D033000000770300D033000000770300D033000000770300D03300000000
0300D033333333333300D033000000003300D030777777770300D03077777777
0300D030777777770300D030777777770300D030777777770000D03077777777
0700D000000000000000DDDDDDDDDDDDDDD0}
OnClick = SpeedButton3Click
end
object SpeedButton5: TSpeedButton
Left = 248
Top = 482
Width = 25
Height = 25
Glyph.Data = {
76040000424D7604000000000000360400002800000008000000080000000100
08000000000040000000C40E0000C40E0000000100000001000000007F000004
FF00FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000020202020202
0202020200020202000202020100020001020202020100010202020202000100
0202020200010201000202020102020201020202020202020202}
Layout = blGlyphRight
OnClick = SpeedButton5Click
end
object SpeedButton6: TSpeedButton
Left = 665
Top = 482
Width = 25
Height = 25
Glyph.Data = {
76040000424D7604000000000000360400002800000008000000080000000100
08000000000040000000C40E0000C40E0000000100000001000000007F000004
FF00FFFFFF000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000020202020202
0202020200020202000202020100020001020202020100010202020202000100
0202020200010201000202020102020201020202020202020202}
Layout = blGlyphRight
OnClick = SpeedButton6Click
end
object Bevel1: TBevel
Left = 0
Top = 0
Width = 847
Height = 9
Align = alTop
Shape = bsSpacer
end
object StatusBar1: TStatusBar
Left = 0
Top = 512
Width = 847
Height = 26
Panels = <
item
Width = 50
end>
SimplePanel = True
SimpleText = #1054#1078#1080#1076#1072#1085#1080#1077
end
object Panel3: TPanel
Left = 216
Top = 515
Width = 632
Height = 25
BevelOuter = bvNone
TabOrder = 13
Visible = False
object ComboBox5: TComboBox
Left = 481
Top = 1
Width = 71
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 6
Text = 'Default'
Visible = False
OnChange = ComboBox4Change
Items.Strings = (
'Default'
'%'
'%.1'
'%.2'
'%.3'
'%.4'
'%.5'
'%.6'
'%.7'
'%.8'
'%.9'
'%.10'
'%.11'
'%.12'
'%.13'
'%.14'
'%.15'
'%.16')
end
object ComboBox4: TComboBox
Left = 407
Top = 1
Width = 71
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 5
Text = 'Default'
Visible = False
OnChange = ComboBox4Change
Items.Strings = (
'Default'
'%'
'%.1'
'%.2'
'%.3'
'%.4'
'%.5'
'%.6'
'%.7'
'%.8'
'%.9'
'%.10'
'%.11'
'%.12'
'%.13'
'%.14'
'%.15'
'%.16')
end
object ComboBox3: TComboBox
Left = 304
Top = 1
Width = 100
Height = 22
Style = csOwnerDrawFixed
Color = clInfoBk
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ItemHeight = 16
ItemIndex = 0
ParentFont = False
TabOrder = 0
Text = 'D,ddd'
Visible = False
OnChange = ComboBox3Change
Items.Strings = (
'D,ddd'
'D,ddd'#176' '
'D M,mmm'
'D'#176' M,mmm'#39
'D M S,sss'
'D'#176' M'#39' S,sss"')
end
object ShowLitera: TCheckBox
Left = 224
Top = 3
Width = 80
Height = 17
Caption = 'N/S/E/W'
TabOrder = 1
Visible = False
end
object RS1: TRadioButton
Left = 168
Top = 3
Width = 33
Height = 17
Caption = ','
TabOrder = 2
Visible = False
OnClick = RS1Click
end
object RS2: TRadioButton
Left = 193
Top = 3
Width = 25
Height = 17
Caption = '.'
TabOrder = 3
Visible = False
OnClick = RS2Click
end
object CheckBox4: TCheckBox
Left = 8
Top = 3
Width = 145
Height = 17
Caption = #1053#1077' '#1087#1077#1088#1077#1074#1086#1076#1080#1090#1100' '#1074#1099#1089#1086#1090#1099
TabOrder = 4
Visible = False
end
object ComboBox6: TComboBox
Left = 554
Top = 1
Width = 71
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 7
Text = 'Default'
Visible = False
OnChange = ComboBox4Change
Items.Strings = (
'Default'
'%'
'%.1'
'%.2'
'%.3'
'%.4'
'%.5'
'%.6'
'%.7'
'%.8'
'%.9'
'%.10'
'%.11'
'%.12'
'%.13'
'%.14'
'%.15'
'%.16')
end
end
object Geoid1: TComboBox
Left = 113
Top = 187
Width = 268
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 9
Text = '('#1085#1077#1090')'
Items.Strings = (
'('#1085#1077#1090')')
end
object Geoid2: TComboBox
Left = 528
Top = 187
Width = 268
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 10
Text = '('#1085#1077#1090')'
Items.Strings = (
'('#1085#1077#1090')')
end
object Button6: TButton
Left = 689
Top = 482
Width = 145
Height = 25
Caption = '<- '#1042#1099#1095#1080#1089#1083#1080#1090#1100
TabOrder = 0
OnClick = Button6Click
end
object Button3: TButton
Left = 272
Top = 482
Width = 145
Height = 25
Caption = #1042#1099#1095#1080#1089#1083#1080#1090#1100' ->'
PopupMenu = PopupMenu5
TabOrder = 1
OnClick = Button3Click
end
object StringGrid1: TStringGrid
Left = 8
Top = 215
Width = 412
Height = 260
ColCount = 4
DefaultColWidth = 100
DefaultRowHeight = 16
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goColSizing, goRowMoving, goEditing, goAlwaysShowEditor, goThumbTracking]
TabOrder = 2
OnDrawCell = StringGrid1DrawCell
OnKeyDown = StringGrid1KeyDown
end
object StringGrid2: TStringGrid
Left = 426
Top = 215
Width = 412
Height = 260
ColCount = 4
DefaultColWidth = 100
DefaultRowHeight = 16
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goColSizing, goRowMoving, goEditing, goAlwaysShowEditor]
TabOrder = 4
OnDrawCell = StringGrid2DrawCell
OnKeyDown = StringGrid2KeyDown
end
object PageControl1: TPageControl
Left = 0
Top = 9
Width = 847
Height = 177
ActivePage = TabSheet2
Align = alTop
Style = tsFlatButtons
TabOrder = 5
OnChange = PageControl1Change
object TabSheet1: TTabSheet
Caption = #1054#1090' '#1076#1072#1090#1091#1084#1072' '#1082' '#1076#1072#1090#1091#1084#1091
object Label5: TLabel
Left = 288
Top = 88
Width = 129
Height = 41
AutoSize = False
Caption = '*'#1047#1086#1085#1072' '#1073#1091#1076#1077#1090' '#1079#1072#1082#1088#1077#1087#1083#1077#1085#1072' '#1087#1088#1080' '#1082#1086#1085#1074#1077#1088#1090#1072#1094#1080#1102' '#1074' '#1101#1090#1091' '#1089#1080#1089#1090#1077#1084#1091' '#1082#1086#1086#1088#1076#1080#1085#1072#1090
Visible = False
WordWrap = True
end
object Label7: TLabel
Left = 704
Top = 88
Width = 129
Height = 41
AutoSize = False
Caption = '*'#1047#1086#1085#1072' '#1073#1091#1076#1077#1090' '#1079#1072#1082#1088#1077#1087#1083#1077#1085#1072' '#1087#1088#1080' '#1082#1086#1085#1074#1077#1088#1090#1072#1094#1080#1102' '#1074' '#1101#1090#1091' '#1089#1080#1089#1090#1077#1084#1091' '#1082#1086#1086#1076#1088#1080#1085#1072#1090
Visible = False
WordWrap = True
end
object RadioGroup1: TRadioGroup
Left = 8
Top = 32
Width = 265
Height = 113
Caption = #1058#1080#1087' '#1082#1086#1086#1088#1076#1080#1085#1072#1090
ItemIndex = 0
Items.Strings = (
#1064#1080#1088#1086#1090#1072'/'#1044#1086#1083#1075#1086#1090#1072
#1055#1088#1086#1089#1090#1088#1072#1085#1089#1090#1074#1077#1085#1085#1099#1077' '#1082#1086#1086#1088#1076#1080#1085#1072#1090#1099
#1055#1088#1086#1077#1082#1094#1080#1103' '#1043#1072#1091#1089#1089#1072'-'#1050#1088#1102#1075#1077#1088#1072
#1055#1088#1086#1077#1082#1094#1080#1103' UTM (WGS84/NAD83) - '#1057#1077#1074#1077#1088
#1055#1088#1086#1077#1082#1094#1080#1103' UTM (WGS84/NAD83) - '#1070#1075)
TabOrder = 0
OnClick = RadioGroup1Click
end
object ListBox1: TComboBox
Left = 8
Top = 0
Width = 409
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
PopupMenu = PopupMenu3
TabOrder = 1
OnChange = ListBox1Click
end
object ListBox2: TComboBox
Left = 424
Top = 0
Width = 409
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
PopupMenu = PopupMenu4
TabOrder = 2
OnChange = ListBox2Click
end
object RadioGroup2: TRadioGroup
Left = 424
Top = 32
Width = 273
Height = 113
Caption = #1058#1080#1087' '#1082#1086#1086#1088#1076#1080#1085#1072#1090
ItemIndex = 2
Items.Strings = (
#1064#1080#1088#1086#1090#1072'/'#1044#1086#1083#1075#1086#1090#1072
#1055#1088#1086#1089#1090#1088#1072#1085#1089#1090#1074#1077#1085#1085#1099#1077' '#1082#1086#1086#1088#1076#1080#1085#1072#1090#1099
#1055#1088#1086#1077#1082#1094#1080#1103' '#1043#1072#1091#1089#1089#1072'-'#1050#1088#1102#1075#1077#1088#1072
#1055#1088#1086#1077#1082#1094#1080#1103' UTM (WGS84/NAD83) - '#1057#1077#1074#1077#1088
#1055#1088#1086#1077#1082#1094#1080#1103' UTM (WGS84/NAD83) - '#1070#1075)
TabOrder = 3
OnClick = RadioGroup2Click
end
object SpinEdit1: TSpinEdit
Left = 288
Top = 62
Width = 121
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 4
Value = 0
Visible = False
end
object CheckBox1: TCheckBox
Left = 288
Top = 40
Width = 97
Height = 17
Caption = #1047#1072#1076#1072#1090#1100' '#1079#1086#1085#1091
TabOrder = 5
Visible = False
OnClick = CheckBox1Click
end
object CheckBox2: TCheckBox
Left = 704
Top = 40
Width = 97
Height = 17
Caption = #1047#1072#1076#1072#1090#1100' '#1079#1086#1085#1091
TabOrder = 6
Visible = False
OnClick = CheckBox2Click
end
object SpinEdit2: TSpinEdit
Left = 704
Top = 62
Width = 121
Height = 22
MaxValue = 0
MinValue = 0
TabOrder = 7
Value = 0
Visible = False
end
end
object TabSheet2: TTabSheet
Caption = #1054#1090' '#1057#1050' '#1082' '#1057#1050
ImageIndex = 1
object ListBox4: TListBox
Left = 8
Top = 24
Width = 406
Height = 121
ItemHeight = 13
ParentShowHint = False
PopupMenu = PopupMenu1
ShowHint = True
TabOrder = 0
OnClick = ListBox4Click
OnMouseMove = ListBox4MouseMove
end
object ComboBox1: TComboBox
Left = 8
Top = 0
Width = 409
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
TabOrder = 1
OnChange = ComboBox1Change
end
object ListBox5: TListBox
Left = 424
Top = 24
Width = 406
Height = 122
ItemHeight = 13
ParentShowHint = False
PopupMenu = PopupMenu2
ShowHint = True
TabOrder = 2
OnClick = ListBox5Click
OnMouseMove = ListBox5MouseMove
end
object ComboBox2: TComboBox
Left = 424
Top = 0
Width = 409
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
TabOrder = 3
OnChange = ComboBox2Change
end
end
end
object ProgressBar1: TProgressBar
Left = 464
Top = 339
Width = 341
Height = 17
TabOrder = 6
Visible = False
end
object ProgressBar2: TProgressBar
Left = 48
Top = 339
Width = 341
Height = 17
TabOrder = 7
Visible = False
end
object Panel1: TPanel
Left = 835
Top = 186
Width = 12
Height = 326
Align = alRight
TabOrder = 3
Visible = False
object Shape1: TShape
Left = 1
Top = 1
Width = 10
Height = 324
Align = alClient
Brush.Color = clBtnFace
Pen.Style = psClear
ExplicitHeight = 323
end
object Label1: TLabel
Left = 624
Top = 104
Width = 3
Height = 13
Visible = False
end
object Label2: TLabel
Left = 280
Top = 136
Width = 3
Height = 13
end
object Label3: TLabel
Left = 27
Top = 296
Width = 3
Height = 13
end
object Label4: TLabel
Left = 280
Top = 56
Width = 3
Height = 13
end
object Label6: TLabel
Left = 624
Top = 120
Width = 3
Height = 13
Visible = False
end
object SpeedButton7: TSpeedButton
Left = 0
Top = 0
Width = 12
Height = 331
Caption = '<'
Flat = True
OnClick = SpeedButton7Click
end
object Label8: TLabel
Left = 520
Top = 152
Width = 217
Height = 41
AutoSize = False
WordWrap = True
end
object Label9: TLabel
Left = 264
Top = 296
Width = 3
Height = 13
end
object Label10: TLabel
Left = 520
Top = 280
Width = 3
Height = 13
end
object Label11: TLabel
Left = 24
Top = 8
Width = 212
Height = 13
Caption = #1056#1045#1046#1048#1052' '#1056#1040#1057#1064#1048#1056#1045#1053#1053#1054#1049' '#1054#1058#1051#1040#1044#1050#1048
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Edit1: TEdit
Left = 280
Top = 8
Width = 113
Height = 21
TabOrder = 0
Text = '54,5'
end
object Edit2: TEdit
Left = 280
Top = 32
Width = 113
Height = 21
TabOrder = 1
Text = '83,5'
end
object Edit3: TEdit
Left = 280
Top = 88
Width = 113
Height = 21
TabOrder = 2
Text = '0'
end
object Edit4: TEdit
Left = 280
Top = 112
Width = 113
Height = 21
TabOrder = 3
Text = '0'
end
object Edit5: TEdit
Left = 400
Top = 8
Width = 65
Height = 21
TabOrder = 4
Text = '0'
end
object Edit6: TEdit
Left = 400
Top = 88
Width = 65
Height = 21
TabOrder = 5
Text = '0'
end
object Edit7: TEdit
Left = 280
Top = 160
Width = 153
Height = 21
TabOrder = 6
Text = '0'
end
object Edit8: TEdit
Left = 280
Top = 184
Width = 153
Height = 21
TabOrder = 7
Text = '0'
end
object Button4: TButton
Left = 528
Top = 16
Width = 129
Height = 25
Caption = 'testFile'
TabOrder = 8
Visible = False
OnClick = Button4Click
end
object Button1: TButton
Left = 400
Top = 32
Width = 97
Height = 25
Caption = 'WGS to SK42'
TabOrder = 9
OnClick = Button1Click
end
object Button2: TButton
Left = 400
Top = 112
Width = 97
Height = 25
Caption = 'SK42 to WGS'
TabOrder = 10
OnClick = Button2Click
end
object Edit9: TEdit
Left = 280
Top = 224
Width = 153
Height = 21
TabOrder = 11
Text = '0'
end
object Edit10: TEdit
Left = 280
Top = 248
Width = 153
Height = 21
TabOrder = 12
Text = '0'
end
object Button10: TButton
Left = 440
Top = 224
Width = 57
Height = 49
Caption = 'UTM to WGS'
TabOrder = 13
WordWrap = True
OnClick = Button10Click
end
object ListBox3: TListBox
Left = 520
Top = 8
Width = 217
Height = 137
ItemHeight = 13
TabOrder = 14
OnClick = ListBox3Click
end
object Button5: TButton
Left = 520
Top = 152
Width = 81
Height = 25
Caption = 'Refresh'
TabOrder = 15
Visible = False
OnClick = Button5Click
end
object Button7: TButton
Left = 520
Top = 200
Width = 81
Height = 25
Caption = 'WGS TO GSK'
TabOrder = 16
OnClick = Button7Click
end
object CheckBox3: TCheckBox
Left = 280
Top = 272
Width = 129
Height = 17
Caption = #1070#1078#1085#1086#1077' '#1087#1086#1083#1091#1096#1072#1088#1080#1077
TabOrder = 17
end
object Button8: TButton
Left = 520
Top = 232
Width = 81
Height = 25
Caption = 'To MSK54-4'
TabOrder = 18
OnClick = Button8Click
end
object Button9: TButton
Left = 24
Top = 232
Width = 209
Height = 57
Caption = #1055#1077#1088#1077#1089#1095#1080#1090#1072#1090#1100' '#1087#1086' '#1074#1099#1073#1088#1072#1085#1085#1099#1084' '#1057#1050' '#1089' '#1089#1086#1093#1088#1072#1085#1077#1085#1080#1077#1084' '#1086#1089#1090#1072#1083#1100#1085#1099#1093' '#1089#1090#1086#1083#1073#1094#1086#1074
TabOrder = 19
WordWrap = True
OnClick = Button9Click
end
object RS: TRadioGroup
Left = 24
Top = 168
Width = 201
Height = 49
Caption = #1056#1072#1079#1076#1077#1083#1080#1090#1077#1083#1100' '#1076#1077#1089#1103#1090#1080#1095#1085#1086#1075#1086' '#1095#1080#1089#1083#1072
Columns = 2
ItemIndex = 1
Items.Strings = (
','
'.')
TabOrder = 20
OnClick = RSClick
end
end
object LangBox: TComboBox
Left = 201
Top = 9
Width = 105
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 8
Text = 'Russian'
OnChange = LangBoxChange
Items.Strings = (
'Russian'
'English')
end
object Panel2: TPanel
Left = 90
Top = 95
Width = 674
Height = 340
TabOrder = 11
object Image1: TImage
Left = 1
Top = 1
Width = 672
Height = 338
Align = alClient
Center = True
Picture.Data = {
0A544A504547496D6167653B390100FFD8FFE000104A46494600010101006000
600000FFE100784578696600004D4D002A000000080006013100020000001100
0000560301000500000001000000680303000100000001020000005110000100
0000010100000051110004000000010000171251120004000000010000171200
0000004D6963726F736F6674204F66666963650000000186A00000B18FFFDB00
4300020101020101020202020202020203050303030303060404030507060707
0706070708090B0908080A0807070A0D0A0A0B0C0C0C0C07090E0F0D0C0E0B0C
0C0CFFDB004301020202030303060303060C0807080C0C0C0C0C0C0C0C0C0C0C
0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C
0C0C0C0C0C0C0CFFC0001108014F029F03012200021101031101FFC4001F0000
010501010101010100000000000000000102030405060708090A0BFFC400B510
0002010303020403050504040000017D01020300041105122131410613516107
227114328191A1082342B1C11552D1F02433627282090A161718191A25262728
292A3435363738393A434445464748494A535455565758595A63646566676869
6A737475767778797A838485868788898A92939495969798999AA2A3A4A5A6A7
A8A9AAB2B3B4B5B6B7B8B9BAC2C3C4C5C6C7C8C9CAD2D3D4D5D6D7D8D9DAE1E2
E3E4E5E6E7E8E9EAF1F2F3F4F5F6F7F8F9FAFFC4001F01000301010101010101
01010000000000000102030405060708090A0BFFC400B5110002010204040304
0705040400010277000102031104052131061241510761711322328108144291
A1B1C109233352F0156272D10A162434E125F11718191A262728292A35363738
393A434445464748494A535455565758595A636465666768696A737475767778