-
Notifications
You must be signed in to change notification settings - Fork 1
/
MForm.Designer.cs
1014 lines (1007 loc) · 63.2 KB
/
MForm.Designer.cs
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
namespace OSM2SHP
{
partial class MForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
"Âõîäíîé ôàéë äàííûõ OSM",
"",
"Ôàéë äàííûõ OSM (*.pbf) èëè (*.osm)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
"Âûõîäíîé ôàéë äàííûõ",
"",
"Ôàéë DataBase (*.dbf) èëè Shape (*.shp)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
"Ñåëåêòîð",
"",
"Êàêîé ñåëåêòîð èñïîëüçîâàòü"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Òîëüêî ñ èìåíåì",
"",
"Òîëüêî ñ òåãîì `name`"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Òîëüêî ñ àäðåñàìè",
"",
"Òîëüêî ñ àäðåñíûìè òåãàìè"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Òîëüêî ñ òåãàìè",
"",
"Òîëüêî èìåþùèå âñå ïåðå÷èñëåííûå òåãè"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Òîëüêî ñ îäíèì èç òåãîâ",
"",
"Èìåþùèå îäèí èç òåãîâ"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Èçìåíåíèÿ ïîñëå",
"",
"Òîëüêî ñ èçìåíåíèÿìè ïîñëå"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Èçìåíåíèÿ äî",
"",
"Òîëüêî ñ èçìåíåíèÿìè äî"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Èçìåíåíî ïîëüç-ëÿì(è)",
"",
"Òîëüêî èçìåíåíû îäíèì èç ïîëüçîâàòåëåé"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Òîëüêî ñ âåðñèåé",
"",
"Òîëüêî îäíà èç ïåðå÷èñëåííûõ âåðñèé"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem(new string[] {
"GeoF: Òîëüêî â ãðàíèöàõ",
"",
"Òîëüêî âíóòðè ãðàíèö ïðÿìîóãîëüíèêà"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem(new string[] {
"GeoF: Òîëüêî âíóòðè ïîëèãîíà",
"",
"Òîëüêî âíóòðè ïîëèãîíà"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))), null);
System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Îñíîâíûå ïîëÿ",
"",
"Âêëþ÷àòü â DBF ôàéë îñíîâíûå ïîëÿ"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Äîïîëíèòåëüíûå ïîëÿ",
"",
"Ñïèñèîê äîïîëíèòåëüíûõ ïîëåé DBF"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Ìàêñ ÷èñëî çàïèñåé",
"",
"Ìàñêèìàëüíîå ÷èñëî çàïèñåé â dbf ôàéëå"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
"TAGS_X: Ôîðìàò çàïèñè",
"",
"Ôîðìàò çàïèñè òåãîâ â ïîëå-àãðåãàòîðå"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
"TAGS_X: Ïðåôèêñ â ïîëå",
"",
"Òåêñò â ïîëå àãðåãàòîðå ïåðåä òåãàìè"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem19 = new System.Windows.Forms.ListViewItem(new string[] {
"TAGS_X: ×èñëî ïîëåé",
"",
"×èñëî àãðåãèðóþùèõ ïîëåé TAGS_X"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem20 = new System.Windows.Forms.ListViewItem(new string[] {
"Script: Äîïîëíèòåëüíûé ôèëüòð",
"",
"Äîïîëíèòåëüíîå ôèëüòðîâàíèå íà îñíîâå ñêðèïòà"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem21 = new System.Windows.Forms.ListViewItem(new string[] {
"Ôîðìàò: Êîäèðîâêà òåêñòà",
"",
"Êîäîâàÿ ñòðàíèöà DBF (êîäèðîâêà)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))), null);
System.Windows.Forms.ListViewItem listViewItem22 = new System.Windows.Forms.ListViewItem(new string[] {
"Ôîðìàò: Àãðåãèðîâàòü òåãè",
"",
"Êàêèå òåãè àãðåãèðîâàòü â ïîëÿõ TAGS_X (regex)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))), null);
System.Windows.Forms.ListViewItem listViewItem23 = new System.Windows.Forms.ListViewItem(new string[] {
"Filter: Ïðèñóòñâóåò òåêñò",
"",
" íàèìåíîâàíèå òåãà èëè â çíà÷åíèè ïðèñóòñòâóåò òåêñò"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), null);
System.Windows.Forms.ListViewItem listViewItem24 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Îáðàáîòêà êîíòóðîâ",
"",
"Îáðàáîòêà êîíòóðîâ (Ways)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem25 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Îáðàáîòêà ëèíèé",
"",
"Îáðàáàòûâàòü ëèíèè èç êîíòóðîâ (Ways)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem26 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Îáðàáîòêà ïîëèãîíîâ",
"",
"Îáðàáàòûâàòü ïîëèãîíû èç êîíòóðîâ (Ways)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem27 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Îáðàáîòêà öåíòðîèäîâ",
"",
"Îáðàáàòûâàòü öåíòðîèäû êîíòóðîâ (Ways) êàê óçëû (Nodes)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem28 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Ôèëüòðîâàòü ëèíèè",
"",
"Ïðèìåíÿòü ôèëüòð ê ëèíèÿì"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem29 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Ôèëüòðîâàòü ïîëèãîíû",
"",
"Ïðèìåíÿòü ôèëüòð ê ïîëèãîíàì"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem30 = new System.Windows.Forms.ListViewItem(new string[] {
"Îáðàáîòêà: Èíäåêñ òî÷åê",
"",
"Èñïîëüçîâàòü âíåøíèé èíäåêñíûé ôàéë äëÿ òî÷åê (ìåäëåííî) (ïðè OutOfMemory)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128))))), null);
System.Windows.Forms.ListViewItem listViewItem31 = new System.Windows.Forms.ListViewItem(new string[] {
"Relations: Ñîõðàíÿòü â òàáëèöó",
"",
"Îáðàáàòûâàòü ñâÿçè (Relations) è ñîõðàíÿòü â òàáëèöó"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSpringGreen, null);
System.Windows.Forms.ListViewItem listViewItem32 = new System.Windows.Forms.ListViewItem(new string[] {
"Relations: Ïðèìåíÿòü ôèëüòðû",
"",
"Ïðèìåíÿòü ôèëüòð ê ñâÿçÿì (Relations)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSpringGreen, null);
System.Windows.Forms.ListViewItem listViewItem33 = new System.Windows.Forms.ListViewItem(new string[] {
"Relations: Òèïû êàê ëèíèÿ",
"",
"Òèïû ñâÿçåé ÷åðåç çàïÿòóþ, îáðàáàòûâàåìûõ è ñîõðàíÿåìûõ êàê ëèíèÿ"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSpringGreen, null);
System.Windows.Forms.ListViewItem listViewItem34 = new System.Windows.Forms.ListViewItem(new string[] {
"Relations: Òèïû êàê ïîëèãîí",
"",
"Òèïû ñâÿçåé ÷åðåç çàïÿòóþ, îáðàáàòûâàåìûõ è ñîõðàíÿåìûõ êàê ïîëèãîí"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSpringGreen, null);
System.Windows.Forms.ListViewItem listViewItem35 = new System.Windows.Forms.ListViewItem(new string[] {
"Çàïðåòû: Ñîõðàíÿòü çàïðåòû",
"",
"Ñîõðàíÿòü çàïðåòû ïîâîðîòîâ äëÿ äîðîã (äà èëè íåò) íà îñíîâå Relations"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSeaGreen, null);
System.Windows.Forms.ListViewItem listViewItem36 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: First + Last â ëèíèÿõ",
"",
"Äîáàâëÿòü Node_ID ïåðâîé è ïîñëåäíåé òî÷êè â òàáëèöó ê ëèíèÿì"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSeaGreen, null);
System.Windows.Forms.ListViewItem listViewItem37 = new System.Windows.Forms.ListViewItem(new string[] {
"Îáðàáîòêà: First + Last â ïàìÿòè",
"",
"Õðàíèòü äëÿ îáðàáîòêè çàïðåòîâ â ïàìÿòè ID ïåðâîé è ïîñëåäíåé òî÷åê äëÿ êàæäîé ëè" +
"íèè"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.SeaGreen, null);
System.Windows.Forms.ListViewItem listViewItem38 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Ñîõðàíÿòü óçëû ëèíèé",
"",
"Ñîõðàíÿòü ñðåäèííûå óçëû ëèíèé â Shape-ôàéë è ðàçáèâêó ëèíèé â dbf-ôàéë"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.MediumSeaGreen, null);
System.Windows.Forms.ListViewItem listViewItem39 = new System.Windows.Forms.ListViewItem(new string[] {
"Îïöèè: Ñîðòèðîâàòü àãðåã. òåãè",
"",
"Ñîðòèðîâàòü èëè íåò (áûñòðåå) àãðåãèðîâàííûå òåãè è â êàêîì ïîðÿäêå ïðèîðèòåòà (ì" +
"åäëåíåå)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))), null);
System.Windows.Forms.ListViewItem listViewItem40 = new System.Windows.Forms.ListViewItem(new string[] {
"DBF: Ðåæèì ñîâìåñòèìîñòè",
"Äà",
"Ðåæèì ïîâûøåííîé ñîâìåñòèìîñòè DBF ôàéëîâ (êîðîòêèå èìåíà ïîëåé)"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.LavenderBlush, null);
System.Windows.Forms.ListViewItem listViewItem41 = new System.Windows.Forms.ListViewItem(new string[] {
"ToDo: AfterScript",
"",
"Âûïîëíåíèå êîìàíäíîãî ôàéëà (ñêðèïòà) ïîñëå çàâåðøåíèÿ êîíâåðòàöèè"}, -1, System.Drawing.Color.Empty, System.Drawing.Color.YellowGreen, null);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MForm));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.chvToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.defToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.STAT2 = new System.Windows.Forms.ToolStripProgressBar();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.ôàéëToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nEWToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StdConfigItem = new System.Windows.Forms.ToolStripMenuItem();
this.newFromTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripSeparator();
this.recentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripSeparator();
this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
this.sTTSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.êîíâåðòàöèÿToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dOToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
this.httpServerLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripSeparator();
this.dSToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.ïàíåëèToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cOL1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cOL2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ñåëåêòîðûToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cHECKCURRToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
this.xmlcToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ïðîãðàììûToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.akelPadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
this.cDBFWToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dBFCommanderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dBFEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dBFExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dBFNavigatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dBFShowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sDBFToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.winDBFviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mapPolygonCreatorResetConfigToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shapesMergerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shapesPolygonsExtractorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shapeViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
this.osmconvertexeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripSeparator();
this.dsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cMDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.osmchelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sHapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripSeparator();
this.tTGToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.props = new System.Windows.Forms.ListView();
this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
this.status = new System.Windows.Forms.TextBox();
this.contextMenuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.chvToolStripMenuItem,
this.toolStripMenuItem2,
this.defToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(293, 54);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// chvToolStripMenuItem
//
this.chvToolStripMenuItem.Name = "chvToolStripMenuItem";
this.chvToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F2;
this.chvToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
this.chvToolStripMenuItem.Text = "Èçìåíèòü çíà÷åíèå ïàðàìåòðà ...";
this.chvToolStripMenuItem.Click += new System.EventHandler(this.chvToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(289, 6);
//
// defToolStripMenuItem
//
this.defToolStripMenuItem.Name = "defToolStripMenuItem";
this.defToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.defToolStripMenuItem.Size = new System.Drawing.Size(292, 22);
this.defToolStripMenuItem.Text = "Óñòàíîâèòü çíà÷åíèå ïî óìîë÷àíèþ";
this.defToolStripMenuItem.Click += new System.EventHandler(this.defToolStripMenuItem_Click);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.STAT2});
this.statusStrip1.Location = new System.Drawing.Point(0, 673);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1011, 22);
this.statusStrip1.TabIndex = 8;
this.statusStrip1.Text = "statusStrip1";
//
// STAT2
//
this.STAT2.AutoSize = false;
this.STAT2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.STAT2.Name = "STAT2";
this.STAT2.Size = new System.Drawing.Size(960, 16);
this.STAT2.Step = 1;
this.STAT2.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ôàéëToolStripMenuItem,
this.êîíâåðòàöèÿToolStripMenuItem,
this.ïàíåëèToolStripMenuItem,
this.ñåëåêòîðûToolStripMenuItem,
this.ïðîãðàììûToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1011, 24);
this.menuStrip1.TabIndex = 9;
this.menuStrip1.Text = "menuStrip1";
//
// ôàéëToolStripMenuItem
//
this.ôàéëToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.nEWToolStripMenuItem,
this.StdConfigItem,
this.newFromTemplateToolStripMenuItem,
this.toolStripMenuItem14,
this.recentToolStripMenuItem,
this.toolStripMenuItem15,
this.loadToolStripMenuItem,
this.saveToolStripMenuItem,
this.toolStripMenuItem4,
this.sTTSToolStripMenuItem,
this.toolStripMenuItem8,
this.exitToolStripMenuItem});
this.ôàéëToolStripMenuItem.Name = "ôàéëToolStripMenuItem";
this.ôàéëToolStripMenuItem.Size = new System.Drawing.Size(45, 20);
this.ôàéëToolStripMenuItem.Text = "&Ôàéë";
this.ôàéëToolStripMenuItem.DropDownOpening += new System.EventHandler(this.MenuToolStripMenuItem_DropDownOpening);
//
// nEWToolStripMenuItem
//
this.nEWToolStripMenuItem.Name = "nEWToolStripMenuItem";
this.nEWToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.nEWToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.nEWToolStripMenuItem.Text = "Íîâàÿ ïóñòàÿ êîôèãóðàöèÿ";
this.nEWToolStripMenuItem.Click += new System.EventHandler(this.nEWToolStripMenuItem_Click);
//
// StdConfigItem
//
this.StdConfigItem.Name = "StdConfigItem";
this.StdConfigItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.N)));
this.StdConfigItem.Size = new System.Drawing.Size(372, 22);
this.StdConfigItem.Text = "Íîâàÿ àäðåñíî-ìàðøðóòíàÿ êîíôèãóðàöèÿ";
this.StdConfigItem.Click += new System.EventHandler(this.StdConfigItem_Click);
//
// newFromTemplateToolStripMenuItem
//
this.newFromTemplateToolStripMenuItem.Name = "newFromTemplateToolStripMenuItem";
this.newFromTemplateToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.newFromTemplateToolStripMenuItem.Text = "Íîâàÿ êîíôèãóðàöèÿ èç øàáëîíà ...";
//
// toolStripMenuItem14
//
this.toolStripMenuItem14.Name = "toolStripMenuItem14";
this.toolStripMenuItem14.Size = new System.Drawing.Size(369, 6);
//
// recentToolStripMenuItem
//
this.recentToolStripMenuItem.Name = "recentToolStripMenuItem";
this.recentToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.recentToolStripMenuItem.Text = "Ðàíåå ñîõðàíåííûå ôàéëû êîíôèãóðàöèé ...";
//
// toolStripMenuItem15
//
this.toolStripMenuItem15.Name = "toolStripMenuItem15";
this.toolStripMenuItem15.Size = new System.Drawing.Size(369, 6);
//
// loadToolStripMenuItem
//
this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
this.loadToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.loadToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.loadToolStripMenuItem.Text = "Çàãðóçèòü êîíôèãóðàöèþ èç ôàéëà ...";
this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.saveToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.saveToolStripMenuItem.Text = "Ñîõðàíèòü êîíôèãóðàöèþ â ôàéë ...";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// toolStripMenuItem4
//
this.toolStripMenuItem4.Name = "toolStripMenuItem4";
this.toolStripMenuItem4.Size = new System.Drawing.Size(369, 6);
//
// sTTSToolStripMenuItem
//
this.sTTSToolStripMenuItem.Name = "sTTSToolStripMenuItem";
this.sTTSToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.sTTSToolStripMenuItem.Text = "Ñîõðàíèòü ñîäåðæèìîå ëîãà â ôàéë ...";
this.sTTSToolStripMenuItem.Click += new System.EventHandler(this.sTTSToolStripMenuItem_Click);
//
// toolStripMenuItem8
//
this.toolStripMenuItem8.Name = "toolStripMenuItem8";
this.toolStripMenuItem8.Size = new System.Drawing.Size(369, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(372, 22);
this.exitToolStripMenuItem.Text = "Â&ûõîä";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// êîíâåðòàöèÿToolStripMenuItem
//
this.êîíâåðòàöèÿToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.dOToolStripMenuItem,
this.stopToolStripMenuItem,
this.toolStripMenuItem7,
this.httpServerLogToolStripMenuItem,
this.toolStripMenuItem13,
this.dSToolStripMenuItem1});
this.êîíâåðòàöèÿToolStripMenuItem.Name = "êîíâåðòàöèÿToolStripMenuItem";
this.êîíâåðòàöèÿToolStripMenuItem.Size = new System.Drawing.Size(86, 20);
this.êîíâåðòàöèÿToolStripMenuItem.Text = "Êîíâåðòàöèÿ";
this.êîíâåðòàöèÿToolStripMenuItem.DropDownOpening += new System.EventHandler(this.MenuToolStripMenuItem_DropDownOpening);
//
// dOToolStripMenuItem
//
this.dOToolStripMenuItem.Enabled = false;
this.dOToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.dOToolStripMenuItem.Name = "dOToolStripMenuItem";
this.dOToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
this.dOToolStripMenuItem.Size = new System.Drawing.Size(362, 22);
this.dOToolStripMenuItem.Text = "Íà÷àòü êîíâåðòàöèþ";
this.dOToolStripMenuItem.Click += new System.EventHandler(this.dOToolStripMenuItem_Click);
//
// stopToolStripMenuItem
//
this.stopToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.stopToolStripMenuItem.ForeColor = System.Drawing.Color.Brown;
this.stopToolStripMenuItem.Name = "stopToolStripMenuItem";
this.stopToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F6;
this.stopToolStripMenuItem.Size = new System.Drawing.Size(362, 22);
this.stopToolStripMenuItem.Text = "Ïðåðâàòü êîíâåðòàöèþ";
this.stopToolStripMenuItem.Visible = false;
this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click);
//
// toolStripMenuItem7
//
this.toolStripMenuItem7.Name = "toolStripMenuItem7";
this.toolStripMenuItem7.Size = new System.Drawing.Size(359, 6);
//
// httpServerLogToolStripMenuItem
//
this.httpServerLogToolStripMenuItem.Name = "httpServerLogToolStripMenuItem";
this.httpServerLogToolStripMenuItem.Size = new System.Drawing.Size(362, 22);
this.httpServerLogToolStripMenuItem.Text = "Âûâîäèòü ïðîòîêîë ëîãà ÷åðåç HTTP-ñåðâåð (8080)";
this.httpServerLogToolStripMenuItem.Click += new System.EventHandler(this.httpServerLogToolStripMenuItem_Click);
//
// toolStripMenuItem13
//
this.toolStripMenuItem13.Name = "toolStripMenuItem13";
this.toolStripMenuItem13.Size = new System.Drawing.Size(359, 6);
//
// dSToolStripMenuItem1
//
this.dSToolStripMenuItem1.Name = "dSToolStripMenuItem1";
this.dSToolStripMenuItem1.Size = new System.Drawing.Size(362, 22);
this.dSToolStripMenuItem1.Text = "Ñîçäàòü êîìàíäíûé ôàéë äëÿ îòëîæåííîãî ñòàðòà ...";
this.dSToolStripMenuItem1.Click += new System.EventHandler(this.dSToolStripMenuItem1_Click);
//
// ïàíåëèToolStripMenuItem
//
this.ïàíåëèToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cOL1ToolStripMenuItem,
this.cOL2ToolStripMenuItem});
this.ïàíåëèToolStripMenuItem.Name = "ïàíåëèToolStripMenuItem";
this.ïàíåëèToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
this.ïàíåëèToolStripMenuItem.Text = "Ïàíåëè";
//
// cOL1ToolStripMenuItem
//
this.cOL1ToolStripMenuItem.Name = "cOL1ToolStripMenuItem";
this.cOL1ToolStripMenuItem.Size = new System.Drawing.Size(277, 22);
this.cOL1ToolStripMenuItem.Text = "Ñêðûòü âåðõíþþ ïàíåëü ïàðàìåòðîâ";
this.cOL1ToolStripMenuItem.Click += new System.EventHandler(this.cOL1ToolStripMenuItem_Click);
//
// cOL2ToolStripMenuItem
//
this.cOL2ToolStripMenuItem.Checked = true;
this.cOL2ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.cOL2ToolStripMenuItem.Name = "cOL2ToolStripMenuItem";
this.cOL2ToolStripMenuItem.Size = new System.Drawing.Size(277, 22);
this.cOL2ToolStripMenuItem.Text = "Ñêðûòü íèæíþþ ïàíåëü ëîãà";
this.cOL2ToolStripMenuItem.Click += new System.EventHandler(this.cOL2ToolStripMenuItem_Click);
//
// ñåëåêòîðûToolStripMenuItem
//
this.ñåëåêòîðûToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cHECKCURRToolStripMenuItem,
this.toolStripMenuItem11,
this.xmlcToolStripMenuItem});
this.ñåëåêòîðûToolStripMenuItem.Name = "ñåëåêòîðûToolStripMenuItem";
this.ñåëåêòîðûToolStripMenuItem.Size = new System.Drawing.Size(76, 20);
this.ñåëåêòîðûToolStripMenuItem.Text = "Ñåëåêòîðû";
//
// cHECKCURRToolStripMenuItem
//
this.cHECKCURRToolStripMenuItem.Name = "cHECKCURRToolStripMenuItem";
this.cHECKCURRToolStripMenuItem.Size = new System.Drawing.Size(293, 22);
this.cHECKCURRToolStripMenuItem.Text = "Ïðîâåðêà ñêðèïòà äëÿ ñåëåêòîðà XML ...";
this.cHECKCURRToolStripMenuItem.Click += new System.EventHandler(this.cHECKCURRToolStripMenuItem_Click);
//
// toolStripMenuItem11
//
this.toolStripMenuItem11.Name = "toolStripMenuItem11";
this.toolStripMenuItem11.Size = new System.Drawing.Size(290, 6);
//
// xmlcToolStripMenuItem
//
this.xmlcToolStripMenuItem.Name = "xmlcToolStripMenuItem";
this.xmlcToolStripMenuItem.Size = new System.Drawing.Size(293, 22);
this.xmlcToolStripMenuItem.Text = "Ïðîâåðêà ôàéëîâ XML_SELECTOR ...";
this.xmlcToolStripMenuItem.Click += new System.EventHandler(this.xmlcToolStripMenuItem_Click);
//
// ïðîãðàììûToolStripMenuItem
//
this.ïðîãðàììûToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.akelPadToolStripMenuItem,
this.toolStripMenuItem12,
this.cDBFWToolStripMenuItem,
this.dBFCommanderToolStripMenuItem,
this.dBFEditorToolStripMenuItem,
this.dBFExplorerToolStripMenuItem,
this.dBFNavigatorToolStripMenuItem,
this.dBFShowToolStripMenuItem,
this.sDBFToolStripMenuItem,
this.winDBFviewToolStripMenuItem,
this.toolStripMenuItem5,
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem,
this.mapPolygonCreatorResetConfigToolStripMenuItem,
this.shapesMergerToolStripMenuItem,
this.shapesPolygonsExtractorToolStripMenuItem,
this.shapeViewerToolStripMenuItem,
this.toolStripMenuItem6,
this.osmconvertexeToolStripMenuItem,
this.toolStripMenuItem3,
this.toolStripMenuItem9,
this.dsToolStripMenuItem});
this.ïðîãðàììûToolStripMenuItem.Name = "ïðîãðàììûToolStripMenuItem";
this.ïðîãðàììûToolStripMenuItem.Size = new System.Drawing.Size(75, 20);
this.ïðîãðàììûToolStripMenuItem.Text = "Ïðîãðàììû";
this.ïðîãðàììûToolStripMenuItem.DropDownOpening += new System.EventHandler(this.MenuToolStripMenuItem_DropDownOpening);
//
// akelPadToolStripMenuItem
//
this.akelPadToolStripMenuItem.Name = "akelPadToolStripMenuItem";
this.akelPadToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.akelPadToolStripMenuItem.Text = "Akel Pad ...";
this.akelPadToolStripMenuItem.Click += new System.EventHandler(this.akelPadToolStripMenuItem_Click);
//
// toolStripMenuItem12
//
this.toolStripMenuItem12.Name = "toolStripMenuItem12";
this.toolStripMenuItem12.Size = new System.Drawing.Size(312, 6);
//
// cDBFWToolStripMenuItem
//
this.cDBFWToolStripMenuItem.Name = "cDBFWToolStripMenuItem";
this.cDBFWToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.cDBFWToolStripMenuItem.Text = "CDBFW ...";
this.cDBFWToolStripMenuItem.Click += new System.EventHandler(this.cDBFWToolStripMenuItem_Click);
//
// dBFCommanderToolStripMenuItem
//
this.dBFCommanderToolStripMenuItem.Name = "dBFCommanderToolStripMenuItem";
this.dBFCommanderToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dBFCommanderToolStripMenuItem.Text = "DBF Commander (Íóæíû ïðàâà àäìèíà)...";
this.dBFCommanderToolStripMenuItem.Click += new System.EventHandler(this.dBFCommanderToolStripMenuItem_Click);
//
// dBFEditorToolStripMenuItem
//
this.dBFEditorToolStripMenuItem.Name = "dBFEditorToolStripMenuItem";
this.dBFEditorToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dBFEditorToolStripMenuItem.Text = "DBF Editor ...";
this.dBFEditorToolStripMenuItem.Click += new System.EventHandler(this.dBFEditorToolStripMenuItem_Click);
//
// dBFExplorerToolStripMenuItem
//
this.dBFExplorerToolStripMenuItem.Name = "dBFExplorerToolStripMenuItem";
this.dBFExplorerToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dBFExplorerToolStripMenuItem.Text = "DBF Explorer ...";
this.dBFExplorerToolStripMenuItem.Click += new System.EventHandler(this.dBFExplorerToolStripMenuItem_Click);
//
// dBFNavigatorToolStripMenuItem
//
this.dBFNavigatorToolStripMenuItem.Name = "dBFNavigatorToolStripMenuItem";
this.dBFNavigatorToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dBFNavigatorToolStripMenuItem.Text = "DBF Navigator ...";
this.dBFNavigatorToolStripMenuItem.Click += new System.EventHandler(this.dBFNavigatorToolStripMenuItem_Click);
//
// dBFShowToolStripMenuItem
//
this.dBFShowToolStripMenuItem.Name = "dBFShowToolStripMenuItem";
this.dBFShowToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dBFShowToolStripMenuItem.Text = "DBF Show ...";
this.dBFShowToolStripMenuItem.Click += new System.EventHandler(this.dBFShowToolStripMenuItem_Click);
//
// sDBFToolStripMenuItem
//
this.sDBFToolStripMenuItem.Name = "sDBFToolStripMenuItem";
this.sDBFToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.sDBFToolStripMenuItem.Text = "SDBF ...";
this.sDBFToolStripMenuItem.Click += new System.EventHandler(this.sDBFToolStripMenuItem_Click);
//
// winDBFviewToolStripMenuItem
//
this.winDBFviewToolStripMenuItem.Name = "winDBFviewToolStripMenuItem";
this.winDBFviewToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.winDBFviewToolStripMenuItem.Text = "winDBFview ...";
this.winDBFviewToolStripMenuItem.Click += new System.EventHandler(this.winDBFviewToolStripMenuItem_Click);
//
// toolStripMenuItem5
//
this.toolStripMenuItem5.Name = "toolStripMenuItem5";
this.toolStripMenuItem5.Size = new System.Drawing.Size(312, 6);
//
// boundsShapeBuilderMapPolygonCreatorToolStripMenuItem
//
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem.Name = "boundsShapeBuilderMapPolygonCreatorToolStripMenuItem";
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem.Text = "Map Polygon Creator (Bounds Shape Builder) ...";
this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem.Click += new System.EventHandler(this.boundsShapeBuilderMapPolygonCreatorToolStripMenuItem_Click);
//
// mapPolygonCreatorResetConfigToolStripMenuItem
//
this.mapPolygonCreatorResetConfigToolStripMenuItem.Name = "mapPolygonCreatorResetConfigToolStripMenuItem";
this.mapPolygonCreatorResetConfigToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.mapPolygonCreatorResetConfigToolStripMenuItem.Text = "Map Polygon Creator (Reset Config) ...";
this.mapPolygonCreatorResetConfigToolStripMenuItem.Click += new System.EventHandler(this.mapPolygonCreatorResetConfigToolStripMenuItem_Click);
//
// shapesMergerToolStripMenuItem
//
this.shapesMergerToolStripMenuItem.Name = "shapesMergerToolStripMenuItem";
this.shapesMergerToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.shapesMergerToolStripMenuItem.Text = "Shapes Merger ...";
this.shapesMergerToolStripMenuItem.Click += new System.EventHandler(this.shapesMergerToolStripMenuItem_Click);
//
// shapesPolygonsExtractorToolStripMenuItem
//
this.shapesPolygonsExtractorToolStripMenuItem.Name = "shapesPolygonsExtractorToolStripMenuItem";
this.shapesPolygonsExtractorToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.shapesPolygonsExtractorToolStripMenuItem.Text = "Shapes Polygons Extractor ...";
this.shapesPolygonsExtractorToolStripMenuItem.Click += new System.EventHandler(this.shapesPolygonsExtractorToolStripMenuItem_Click);
//
// shapeViewerToolStripMenuItem
//
this.shapeViewerToolStripMenuItem.Name = "shapeViewerToolStripMenuItem";
this.shapeViewerToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.shapeViewerToolStripMenuItem.Text = "Shape Viewer ...";
this.shapeViewerToolStripMenuItem.Click += new System.EventHandler(this.shapeViewerToolStripMenuItem_Click);
//
// toolStripMenuItem6
//
this.toolStripMenuItem6.Name = "toolStripMenuItem6";
this.toolStripMenuItem6.Size = new System.Drawing.Size(312, 6);
//
// osmconvertexeToolStripMenuItem
//
this.osmconvertexeToolStripMenuItem.Name = "osmconvertexeToolStripMenuItem";
this.osmconvertexeToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.osmconvertexeToolStripMenuItem.Text = "osmconvert.exe ...";
this.osmconvertexeToolStripMenuItem.Click += new System.EventHandler(this.osmconvertexeToolStripMenuItem_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(312, 6);
//
// toolStripMenuItem9
//
this.toolStripMenuItem9.Name = "toolStripMenuItem9";
this.toolStripMenuItem9.Size = new System.Drawing.Size(312, 6);
//
// dsToolStripMenuItem
//
this.dsToolStripMenuItem.Name = "dsToolStripMenuItem";
this.dsToolStripMenuItem.Size = new System.Drawing.Size(315, 22);
this.dsToolStripMenuItem.Text = "Delayed Start ...";
this.dsToolStripMenuItem.Click += new System.EventHandler(this.dsToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fDToolStripMenuItem,
this.cMDToolStripMenuItem,
this.osmchelpToolStripMenuItem,
this.sHapToolStripMenuItem,
this.toolStripMenuItem10,
this.tTGToolStripMenuItem,
this.toolStripMenuItem1,
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(62, 20);
this.helpToolStripMenuItem.Text = "Ñïðàâêà";
this.helpToolStripMenuItem.DropDownOpening += new System.EventHandler(this.MenuToolStripMenuItem_DropDownOpening);
//
// fDToolStripMenuItem
//
this.fDToolStripMenuItem.Name = "fDToolStripMenuItem";
this.fDToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.fDToolStripMenuItem.Text = "Îïèñàíèå ïîëåé DBF ôàéëà ...";
this.fDToolStripMenuItem.Click += new System.EventHandler(this.fDToolStripMenuItem_Click);
//
// cMDToolStripMenuItem
//
this.cMDToolStripMenuItem.Name = "cMDToolStripMenuItem";
this.cMDToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.cMDToolStripMenuItem.Text = "Ïàðàìåòðû êîìàíäíîé ñòðîêè ...";
this.cMDToolStripMenuItem.Click += new System.EventHandler(this.cMDToolStripMenuItem_Click);
//
// osmchelpToolStripMenuItem
//
this.osmchelpToolStripMenuItem.Name = "osmchelpToolStripMenuItem";
this.osmchelpToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.osmchelpToolStripMenuItem.Text = "Ñïðàâêà ïî osmconvert.exe ...";
this.osmchelpToolStripMenuItem.Click += new System.EventHandler(this.osmchelpToolStripMenuItem_Click);
//
// sHapToolStripMenuItem
//
this.sHapToolStripMenuItem.Name = "sHapToolStripMenuItem";
this.sHapToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.sHapToolStripMenuItem.Text = "Îïèñàïíèå ôîðìàòà .shp ...";
this.sHapToolStripMenuItem.Click += new System.EventHandler(this.sHapToolStripMenuItem_Click);
//
// toolStripMenuItem10
//
this.toolStripMenuItem10.Name = "toolStripMenuItem10";
this.toolStripMenuItem10.Size = new System.Drawing.Size(310, 6);
//
// tTGToolStripMenuItem
//
this.tTGToolStripMenuItem.Name = "tTGToolStripMenuItem";
this.tTGToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.tTGToolStripMenuItem.Text = "Èíôîðìàöèÿ äëÿ ñîáñòâåííîãî ñåëåêòîðà ...";
this.tTGToolStripMenuItem.Click += new System.EventHandler(this.tTGToolStripMenuItem_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(310, 6);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(313, 22);
this.aboutToolStripMenuItem.Text = "Î Ïðîãðàììå ...";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.splitContainer1.Location = new System.Drawing.Point(0, 24);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.props);
this.splitContainer1.Panel1MinSize = 50;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.status);
this.splitContainer1.Panel2Collapsed = true;
this.splitContainer1.Panel2MinSize = 50;
this.splitContainer1.Size = new System.Drawing.Size(1011, 649);
this.splitContainer1.SplitterDistance = 202;
this.splitContainer1.TabIndex = 10;
//
// props
//
this.props.BackColor = System.Drawing.SystemColors.Control;
this.props.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.props.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader11,
this.columnHeader12,
this.columnHeader13});
this.props.ContextMenuStrip = this.contextMenuStrip1;
this.props.Dock = System.Windows.Forms.DockStyle.Fill;
this.props.FullRowSelect = true;
this.props.GridLines = true;
this.props.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.props.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3,
listViewItem4,
listViewItem5,
listViewItem6,
listViewItem7,
listViewItem8,
listViewItem9,
listViewItem10,
listViewItem11,
listViewItem12,
listViewItem13,
listViewItem14,
listViewItem15,
listViewItem16,
listViewItem17,
listViewItem18,
listViewItem19,
listViewItem20,
listViewItem21,
listViewItem22,
listViewItem23,
listViewItem24,
listViewItem25,
listViewItem26,
listViewItem27,
listViewItem28,
listViewItem29,
listViewItem30,
listViewItem31,
listViewItem32,
listViewItem33,
listViewItem34,
listViewItem35,
listViewItem36,
listViewItem37,
listViewItem38,
listViewItem39,
listViewItem40,
listViewItem41});
this.props.Location = new System.Drawing.Point(0, 0);
this.props.MultiSelect = false;
this.props.Name = "props";
this.props.Size = new System.Drawing.Size(1011, 649);
this.props.TabIndex = 6;
this.props.UseCompatibleStateImageBehavior = false;
this.props.View = System.Windows.Forms.View.Details;
this.props.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.props_MouseDoubleClick);
this.props.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.props_KeyPress);
this.props.KeyDown += new System.Windows.Forms.KeyEventHandler(this.props_KeyDown);
//
// columnHeader11
//
this.columnHeader11.Text = "Ïàðàìåòð";
this.columnHeader11.Width = 175;
//
// columnHeader12
//
this.columnHeader12.Text = "Çíà÷åíèå (Íàæìèòå Enter ÷òîáû åãî èçìåíèòü)";
this.columnHeader12.Width = 296;
//
// columnHeader13
//
this.columnHeader13.Text = "Îïèñàíèå (Esc - óñòàíîâèòü çíà÷åíèå ïî óìîë÷àíèþ)";
this.columnHeader13.Width = 502;
//
// status
//
this.status.BackColor = System.Drawing.Color.Black;
this.status.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.status.Dock = System.Windows.Forms.DockStyle.Fill;
this.status.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.status.ForeColor = System.Drawing.Color.White;
this.status.Location = new System.Drawing.Point(0, 0);
this.status.Multiline = true;
this.status.Name = "status";
this.status.ReadOnly = true;
this.status.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.status.Size = new System.Drawing.Size(150, 46);
this.status.TabIndex = 8;
this.status.Text = "Áåçäåéñòâèå";
//
// MForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1011, 695);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "MForm";
this.Text = "OSM2SHP Fastex Converter";
this.Load += new System.EventHandler(this.MForm_Load);
this.Shown += new System.EventHandler(this.MForm_Shown);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MForm_FormClosed);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MForm_FormClosing);
this.Resize += new System.EventHandler(this.MForm_Resize);
this.contextMenuStrip1.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem defToolStripMenuItem;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripProgressBar STAT2;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem ôàéëToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem nEWToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem8;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem êîíâåðòàöèÿToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem dOToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem stopToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ïðîãðàììûToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem sTTSToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem dBFEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem dBFCommanderToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem dBFNavigatorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem dBFExplorerToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem5;
private System.Windows.Forms.ToolStripMenuItem shapeViewerToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem6;
private System.Windows.Forms.ToolStripMenuItem osmconvertexeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem fDToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem osmchelpToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem chvToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
private System.Windows.Forms.ToolStripMenuItem sHapToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
private System.Windows.Forms.ToolStripMenuItem dsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cMDToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem4;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem7;
private System.Windows.Forms.ToolStripMenuItem dSToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem9;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem10;
private System.Windows.Forms.ToolStripMenuItem tTGToolStripMenuItem;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ListView props;
private System.Windows.Forms.ColumnHeader columnHeader11;
private System.Windows.Forms.ColumnHeader columnHeader12;
private System.Windows.Forms.ColumnHeader columnHeader13;
private System.Windows.Forms.TextBox status;
private System.Windows.Forms.ToolStripMenuItem ñåëåêòîðûToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem xmlcToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cHECKCURRToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem11;
private System.Windows.Forms.ToolStripMenuItem ïàíåëèToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cOL1ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem cOL2ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem akelPadToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem12;
private System.Windows.Forms.ToolStripMenuItem httpServerLogToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem13;
private System.Windows.Forms.ToolStripMenuItem StdConfigItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem14;