-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form_SpaceTrader.cs
4176 lines (4004 loc) · 158 KB
/
Form_SpaceTrader.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
/*******************************************************************************
*
* Space Trader for Windows 1.00
*
* Copyright (C) 2016 Keith Banner, All Rights Reserved
*
* Port to Windows by David Pierron & Jay French
* Original coding by Pieter Spronck, Sam Anderson, Samuel Goldstein, Matt Lee
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* If you'd like a copy of the GNU General Public License, go to
* http://www.gnu.org/copyleft/gpl.html.
*
* You can contact the author at [email protected]
*
******************************************************************************/
using System;
using System.Collections;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
using Microsoft.Win32;
namespace SpaceTrader
{
public class SpaceTrader : System.Windows.Forms.Form
{
#region Control Declarations
private System.Windows.Forms.Button btnDesign;
private System.Windows.Forms.Button btnNews;
private System.Windows.Forms.Button btnSpecial;
private System.Windows.Forms.Button btnMerc;
private System.Windows.Forms.Button btnFuel;
private System.Windows.Forms.Button btnRepair;
private System.Windows.Forms.Button btnBuyShip;
private System.Windows.Forms.Button btnEquip;
private System.Windows.Forms.Button btnPod;
private System.Windows.Forms.Button btnBuyMax0;
private System.Windows.Forms.Button btnBuyQty0;
private System.Windows.Forms.Button btnSellQty0;
private System.Windows.Forms.Button btnSellAll0;
private System.Windows.Forms.Button btnBuyMax1;
private System.Windows.Forms.Button btnBuyQty1;
private System.Windows.Forms.Button btnSellQty1;
private System.Windows.Forms.Button btnSellAll1;
private System.Windows.Forms.Button btnSellQty2;
private System.Windows.Forms.Button btnSellAll2;
private System.Windows.Forms.Button btnBuyQty2;
private System.Windows.Forms.Button btnBuyMax2;
private System.Windows.Forms.Button btnSellQty3;
private System.Windows.Forms.Button btnSellAll3;
private System.Windows.Forms.Button btnBuyQty3;
private System.Windows.Forms.Button btnBuyMax3;
private System.Windows.Forms.Button btnSellQty4;
private System.Windows.Forms.Button btnSellAll4;
private System.Windows.Forms.Button btnBuyQty4;
private System.Windows.Forms.Button btnBuyMax4;
private System.Windows.Forms.Button btnSellQty5;
private System.Windows.Forms.Button btnSellAll5;
private System.Windows.Forms.Button btnBuyQty5;
private System.Windows.Forms.Button btnBuyMax5;
private System.Windows.Forms.Button btnSellQty6;
private System.Windows.Forms.Button btnSellAll6;
private System.Windows.Forms.Button btnBuyQty6;
private System.Windows.Forms.Button btnBuyMax6;
private System.Windows.Forms.Button btnSellQty7;
private System.Windows.Forms.Button btnSellAll7;
private System.Windows.Forms.Button btnBuyQty7;
private System.Windows.Forms.Button btnBuyMax7;
private System.Windows.Forms.Button btnSellQty8;
private System.Windows.Forms.Button btnSellAll8;
private System.Windows.Forms.Button btnBuyQty8;
private System.Windows.Forms.Button btnBuyMax8;
private System.Windows.Forms.Button btnSellQty9;
private System.Windows.Forms.Button btnSellAll9;
private System.Windows.Forms.Button btnBuyQty9;
private System.Windows.Forms.Button btnBuyMax9;
private System.Windows.Forms.Button btnJump;
private System.Windows.Forms.Button btnFind;
private System.Windows.Forms.Button btnPrevSystem;
private System.Windows.Forms.Button btnNextSystem;
private System.Windows.Forms.Button btnTrack;
private System.Windows.Forms.Button btnWarp;
private System.Windows.Forms.ImageList ilChartImages;
private System.Windows.Forms.ImageList ilDirectionImages;
private System.Windows.Forms.ImageList ilEquipmentImages;
private System.Windows.Forms.ImageList ilShipImages;
private System.Windows.Forms.Label lblBuy;
private System.Windows.Forms.Label lblBuyPrice0;
private System.Windows.Forms.Label lblBuyPrice1;
private System.Windows.Forms.Label lblBuyPrice2;
private System.Windows.Forms.Label lblBuyPrice3;
private System.Windows.Forms.Label lblBuyPrice4;
private System.Windows.Forms.Label lblBuyPrice5;
private System.Windows.Forms.Label lblBuyPrice6;
private System.Windows.Forms.Label lblBuyPrice7;
private System.Windows.Forms.Label lblBuyPrice8;
private System.Windows.Forms.Label lblBuyPrice9;
private System.Windows.Forms.Label lblEquipForSale;
private System.Windows.Forms.Label lblEscapePod;
private System.Windows.Forms.Label lblFuelCost;
private System.Windows.Forms.Label lblFuelStatus;
private System.Windows.Forms.Label lblHullStatus;
private System.Windows.Forms.Label lblRepairCost;
private System.Windows.Forms.Label lblSell;
private System.Windows.Forms.Label lblSellPrice0;
private System.Windows.Forms.Label lblSellPrice1;
private System.Windows.Forms.Label lblSellPrice2;
private System.Windows.Forms.Label lblSellPrice3;
private System.Windows.Forms.Label lblSellPrice4;
private System.Windows.Forms.Label lblSellPrice5;
private System.Windows.Forms.Label lblSellPrice6;
private System.Windows.Forms.Label lblSellPrice7;
private System.Windows.Forms.Label lblSellPrice8;
private System.Windows.Forms.Label lblSellPrice9;
private System.Windows.Forms.Label lblShipsForSale;
private System.Windows.Forms.Label lblSystemGovtLabel;
private System.Windows.Forms.Label lblSystemName;
private System.Windows.Forms.Label lblSystemNameLabel;
private System.Windows.Forms.Label lblSystemPirates;
private System.Windows.Forms.Label lblSystemPiratesLabel;
private System.Windows.Forms.Label lblSystemPolice;
private System.Windows.Forms.Label lblSystemPoliceLabel;
private System.Windows.Forms.Label lblSystemPolSys;
private System.Windows.Forms.Label lblSystemPressure;
private System.Windows.Forms.Label lblSystemPressurePre;
private System.Windows.Forms.Label lblSystemResource;
private System.Windows.Forms.Label lblSystemResourseLabel;
private System.Windows.Forms.Label lblSystemSize;
private System.Windows.Forms.Label lblSystemSizeLabel;
private System.Windows.Forms.Label lblSystemTech;
private System.Windows.Forms.Label lblSystemTechLabel;
private System.Windows.Forms.Label lblTargetDiff0;
private System.Windows.Forms.Label lblTargetDiff1;
private System.Windows.Forms.Label lblTargetDiff2;
private System.Windows.Forms.Label lblTargetDiff3;
private System.Windows.Forms.Label lblTargetDiff4;
private System.Windows.Forms.Label lblTargetDiff5;
private System.Windows.Forms.Label lblTargetDiff6;
private System.Windows.Forms.Label lblTargetDiff7;
private System.Windows.Forms.Label lblTargetDiff8;
private System.Windows.Forms.Label lblTargetDiff9;
private System.Windows.Forms.Label lblTargetDiffLabel;
private System.Windows.Forms.Label lblTargetDistance;
private System.Windows.Forms.Label lblTargetDistanceLabel;
private System.Windows.Forms.Label lblTargetGovtLabel;
private System.Windows.Forms.Label lblTargetName;
private System.Windows.Forms.Label lblTargetNameLabel;
private System.Windows.Forms.Label lblTargetOutOfRange;
private System.Windows.Forms.Label lblTargetPct0;
private System.Windows.Forms.Label lblTargetPct1;
private System.Windows.Forms.Label lblTargetPct2;
private System.Windows.Forms.Label lblTargetPct3;
private System.Windows.Forms.Label lblTargetPct4;
private System.Windows.Forms.Label lblTargetPct5;
private System.Windows.Forms.Label lblTargetPct6;
private System.Windows.Forms.Label lblTargetPct7;
private System.Windows.Forms.Label lblTargetPct8;
private System.Windows.Forms.Label lblTargetPct9;
private System.Windows.Forms.Label lblTargetPctLabel;
private System.Windows.Forms.Label lblTargetPirates;
private System.Windows.Forms.Label lblTargetPiratesLabel;
private System.Windows.Forms.Label lblTargetPolice;
private System.Windows.Forms.Label lblTargetPoliceLabel;
private System.Windows.Forms.Label lblTargetPolSys;
private System.Windows.Forms.Label lblTargetPrice0;
private System.Windows.Forms.Label lblTargetPrice1;
private System.Windows.Forms.Label lblTargetPrice2;
private System.Windows.Forms.Label lblTargetPrice3;
private System.Windows.Forms.Label lblTargetPrice4;
private System.Windows.Forms.Label lblTargetPrice5;
private System.Windows.Forms.Label lblTargetPrice6;
private System.Windows.Forms.Label lblTargetPrice7;
private System.Windows.Forms.Label lblTargetPrice8;
private System.Windows.Forms.Label lblTargetPrice9;
private System.Windows.Forms.Label lblTargetPriceLabel;
private System.Windows.Forms.Label lblTargetResource;
private System.Windows.Forms.Label lblTargetResourceLabel;
private System.Windows.Forms.Label lblTargetSize;
private System.Windows.Forms.Label lblTargetTech;
private System.Windows.Forms.Label lblTargetTechLabel;
private System.Windows.Forms.Label lblTargetSizeLabel;
private System.Windows.Forms.Label lblTradeCmdty0;
private System.Windows.Forms.Label lblTradeCmdty1;
private System.Windows.Forms.Label lblTradeCmdty2;
private System.Windows.Forms.Label lblTradeCmdty3;
private System.Windows.Forms.Label lblTradeCmdty4;
private System.Windows.Forms.Label lblTradeCmdty5;
private System.Windows.Forms.Label lblTradeCmdty6;
private System.Windows.Forms.Label lblTradeCmdty7;
private System.Windows.Forms.Label lblTradeCmdty8;
private System.Windows.Forms.Label lblTradeCmdty9;
private System.Windows.Forms.Label lblTradeTarget;
private System.Windows.Forms.Label lblWormhole;
private System.Windows.Forms.Label lblWormholeLabel;
private System.Windows.Forms.GroupBox boxCargo;
private System.Windows.Forms.GroupBox boxDock;
private System.Windows.Forms.GroupBox boxGalacticChart;
private System.Windows.Forms.GroupBox boxShipYard;
private System.Windows.Forms.GroupBox boxShortRangeChart;
private System.Windows.Forms.GroupBox boxSystem;
private System.Windows.Forms.GroupBox boxTargetSystem;
private System.Windows.Forms.MainMenu mnuMain;
private System.Windows.Forms.MenuItem mnuGame;
private System.Windows.Forms.MenuItem mnuGameExit;
private System.Windows.Forms.MenuItem mnuGameLine1;
private System.Windows.Forms.MenuItem mnuGameLine2;
private System.Windows.Forms.MenuItem mnuGameLoad;
private System.Windows.Forms.MenuItem mnuGameNew;
private System.Windows.Forms.MenuItem mnuGameSave;
private System.Windows.Forms.MenuItem mnuGameSaveAs;
private System.Windows.Forms.MenuItem mnuHelp;
private System.Windows.Forms.MenuItem mnuHelpAbout;
private System.Windows.Forms.MenuItem mnuHighScores;
private System.Windows.Forms.MenuItem mnuOptions;
private System.Windows.Forms.MenuItem mnuRetire;
private System.Windows.Forms.MenuItem mnuView;
private System.Windows.Forms.MenuItem mnuViewBank;
private System.Windows.Forms.MenuItem mnuViewCommander;
private System.Windows.Forms.MenuItem mnuViewLine1;
private System.Windows.Forms.MenuItem mnuViewLine2;
private System.Windows.Forms.MenuItem mnuViewPersonnel;
private System.Windows.Forms.MenuItem mnuViewQuests;
private System.Windows.Forms.MenuItem mnuViewShip;
private System.Windows.Forms.OpenFileDialog dlgOpen;
private System.Windows.Forms.PictureBox picCargoLine0;
private System.Windows.Forms.PictureBox picCargoLine1;
private System.Windows.Forms.PictureBox picCargoLine2;
private System.Windows.Forms.PictureBox picCargoLine3;
private System.Windows.Forms.PictureBox picGalacticChart;
private System.Windows.Forms.PictureBox picLine;
private System.Windows.Forms.PictureBox picShortRangeChart;
private System.Windows.Forms.SaveFileDialog dlgSave;
private System.Windows.Forms.StatusBar statusBar;
private System.Windows.Forms.StatusBarPanel statusBarPanelBays;
private System.Windows.Forms.StatusBarPanel statusBarPanelCash;
private System.Windows.Forms.StatusBarPanel statusBarPanelCosts;
private System.Windows.Forms.StatusBarPanel statusBarPanelExtra;
private System.Windows.Forms.ToolTip tipSpecial;
private System.Windows.Forms.ToolTip tipMerc;
private System.ComponentModel.IContainer components;
private Label[] lblSellPrice;
private Label[] lblBuyPrice;
private Label[] lblTargetPrice;
private Label[] lblTargetDiff;
private Label[] lblTargetPct;
private Button[] btnSellQty;
private Button[] btnSellAll;
private Button[] btnBuyQty;
private Button[] btnBuyMax;
#endregion
#region Member Declarations
private const string SAVE_ARRIVAL = "autosave_arrival.sav";
private const string SAVE_DEPARTURE = "autosave_departure.sav";
private const int OFF_X = 3;
private const int OFF_Y = 3;
private const int OFF_X_WORM = OFF_X + 1;
private const int IMG_G_N = 0;
private const int IMG_G_V = 1;
private const int IMG_G_W = 2;
private const int IMG_S_N = 3;
private const int IMG_S_NS = 4;
private const int IMG_S_V = 5;
private const int IMG_S_VS = 6;
private const int IMG_S_W = 7;
private Game game;
private Pen DEFAULT_PEN = new Pen(Color.Black);
private Brush DEFAULT_BRUSH = new SolidBrush(Color.White);
private string SaveGameFile = null;
private int SaveGameDays = -1;
#endregion
#region Methods
public SpaceTrader(string loadFileName)
{
InitializeComponent();
InitFileStructure();
#region Arrays of Cargo controls
lblSellPrice = new Label[]
{
lblSellPrice0,
lblSellPrice1,
lblSellPrice2,
lblSellPrice3,
lblSellPrice4,
lblSellPrice5,
lblSellPrice6,
lblSellPrice7,
lblSellPrice8,
lblSellPrice9
};
lblBuyPrice = new Label[]
{
lblBuyPrice0,
lblBuyPrice1,
lblBuyPrice2,
lblBuyPrice3,
lblBuyPrice4,
lblBuyPrice5,
lblBuyPrice6,
lblBuyPrice7,
lblBuyPrice8,
lblBuyPrice9
};
lblTargetPrice = new Label[]
{
lblTargetPrice0,
lblTargetPrice1,
lblTargetPrice2,
lblTargetPrice3,
lblTargetPrice4,
lblTargetPrice5,
lblTargetPrice6,
lblTargetPrice7,
lblTargetPrice8,
lblTargetPrice9
};
lblTargetDiff = new Label[]
{
lblTargetDiff0,
lblTargetDiff1,
lblTargetDiff2,
lblTargetDiff3,
lblTargetDiff4,
lblTargetDiff5,
lblTargetDiff6,
lblTargetDiff7,
lblTargetDiff8,
lblTargetDiff9
};
lblTargetPct = new Label[]
{
lblTargetPct0,
lblTargetPct1,
lblTargetPct2,
lblTargetPct3,
lblTargetPct4,
lblTargetPct5,
lblTargetPct6,
lblTargetPct7,
lblTargetPct8,
lblTargetPct9
};
btnSellQty = new Button[]
{
btnSellQty0,
btnSellQty1,
btnSellQty2,
btnSellQty3,
btnSellQty4,
btnSellQty5,
btnSellQty6,
btnSellQty7,
btnSellQty8,
btnSellQty9
};
btnSellAll = new Button[]
{
btnSellAll0,
btnSellAll1,
btnSellAll2,
btnSellAll3,
btnSellAll4,
btnSellAll5,
btnSellAll6,
btnSellAll7,
btnSellAll8,
btnSellAll9
};
btnBuyQty = new Button[]
{
btnBuyQty0,
btnBuyQty1,
btnBuyQty2,
btnBuyQty3,
btnBuyQty4,
btnBuyQty5,
btnBuyQty6,
btnBuyQty7,
btnBuyQty8,
btnBuyQty9
};
btnBuyMax = new Button[]
{
btnBuyMax0,
btnBuyMax1,
btnBuyMax2,
btnBuyMax3,
btnBuyMax4,
btnBuyMax5,
btnBuyMax6,
btnBuyMax7,
btnBuyMax8,
btnBuyMax9
};
#endregion
if (loadFileName != null)
LoadGame(loadFileName);
UpdateAll();
}
[STAThread]
static void Main(string[] args)
{
Application.Run(new SpaceTrader(args.Length > 0 ? args[0] : null));
}
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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SpaceTrader));
this.mnuMain = new System.Windows.Forms.MainMenu(this.components);
this.mnuGame = new System.Windows.Forms.MenuItem();
this.mnuGameNew = new System.Windows.Forms.MenuItem();
this.mnuGameLoad = new System.Windows.Forms.MenuItem();
this.mnuGameSave = new System.Windows.Forms.MenuItem();
this.mnuGameSaveAs = new System.Windows.Forms.MenuItem();
this.mnuGameLine1 = new System.Windows.Forms.MenuItem();
this.mnuRetire = new System.Windows.Forms.MenuItem();
this.mnuGameLine2 = new System.Windows.Forms.MenuItem();
this.mnuGameExit = new System.Windows.Forms.MenuItem();
this.mnuView = new System.Windows.Forms.MenuItem();
this.mnuViewCommander = new System.Windows.Forms.MenuItem();
this.mnuViewShip = new System.Windows.Forms.MenuItem();
this.mnuViewPersonnel = new System.Windows.Forms.MenuItem();
this.mnuViewQuests = new System.Windows.Forms.MenuItem();
this.mnuViewBank = new System.Windows.Forms.MenuItem();
this.mnuViewLine1 = new System.Windows.Forms.MenuItem();
this.mnuHighScores = new System.Windows.Forms.MenuItem();
this.mnuViewLine2 = new System.Windows.Forms.MenuItem();
this.mnuOptions = new System.Windows.Forms.MenuItem();
this.mnuHelp = new System.Windows.Forms.MenuItem();
this.mnuHelpAbout = new System.Windows.Forms.MenuItem();
this.picGalacticChart = new System.Windows.Forms.PictureBox();
this.picShortRangeChart = new System.Windows.Forms.PictureBox();
this.statusBar = new System.Windows.Forms.StatusBar();
this.statusBarPanelCash = new System.Windows.Forms.StatusBarPanel();
this.statusBarPanelBays = new System.Windows.Forms.StatusBarPanel();
this.statusBarPanelCosts = new System.Windows.Forms.StatusBarPanel();
this.statusBarPanelExtra = new System.Windows.Forms.StatusBarPanel();
this.boxShortRangeChart = new System.Windows.Forms.GroupBox();
this.boxGalacticChart = new System.Windows.Forms.GroupBox();
this.lblWormhole = new System.Windows.Forms.Label();
this.lblWormholeLabel = new System.Windows.Forms.Label();
this.btnJump = new System.Windows.Forms.Button();
this.btnFind = new System.Windows.Forms.Button();
this.boxTargetSystem = new System.Windows.Forms.GroupBox();
this.btnTrack = new System.Windows.Forms.Button();
this.btnNextSystem = new System.Windows.Forms.Button();
this.btnPrevSystem = new System.Windows.Forms.Button();
this.lblTargetOutOfRange = new System.Windows.Forms.Label();
this.btnWarp = new System.Windows.Forms.Button();
this.lblTargetPolSys = new System.Windows.Forms.Label();
this.lblTargetSize = new System.Windows.Forms.Label();
this.lblTargetTech = new System.Windows.Forms.Label();
this.lblTargetDistance = new System.Windows.Forms.Label();
this.lblTargetPirates = new System.Windows.Forms.Label();
this.lblTargetPolice = new System.Windows.Forms.Label();
this.lblTargetResource = new System.Windows.Forms.Label();
this.lblTargetDistanceLabel = new System.Windows.Forms.Label();
this.lblTargetPiratesLabel = new System.Windows.Forms.Label();
this.lblTargetPoliceLabel = new System.Windows.Forms.Label();
this.lblTargetResourceLabel = new System.Windows.Forms.Label();
this.lblTargetGovtLabel = new System.Windows.Forms.Label();
this.lblTargetTechLabel = new System.Windows.Forms.Label();
this.lblTargetSizeLabel = new System.Windows.Forms.Label();
this.lblTargetName = new System.Windows.Forms.Label();
this.lblTargetNameLabel = new System.Windows.Forms.Label();
this.boxCargo = new System.Windows.Forms.GroupBox();
this.picCargoLine3 = new System.Windows.Forms.PictureBox();
this.picCargoLine2 = new System.Windows.Forms.PictureBox();
this.picCargoLine0 = new System.Windows.Forms.PictureBox();
this.picCargoLine1 = new System.Windows.Forms.PictureBox();
this.lblTargetPct9 = new System.Windows.Forms.Label();
this.lblTargetDiff9 = new System.Windows.Forms.Label();
this.lblTargetPrice9 = new System.Windows.Forms.Label();
this.btnBuyMax9 = new System.Windows.Forms.Button();
this.btnBuyQty9 = new System.Windows.Forms.Button();
this.lblBuyPrice9 = new System.Windows.Forms.Label();
this.btnSellAll9 = new System.Windows.Forms.Button();
this.btnSellQty9 = new System.Windows.Forms.Button();
this.lblSellPrice9 = new System.Windows.Forms.Label();
this.lblTargetPct8 = new System.Windows.Forms.Label();
this.lblTargetDiff8 = new System.Windows.Forms.Label();
this.lblTargetPrice8 = new System.Windows.Forms.Label();
this.btnBuyMax8 = new System.Windows.Forms.Button();
this.btnBuyQty8 = new System.Windows.Forms.Button();
this.lblBuyPrice8 = new System.Windows.Forms.Label();
this.btnSellAll8 = new System.Windows.Forms.Button();
this.btnSellQty8 = new System.Windows.Forms.Button();
this.lblSellPrice8 = new System.Windows.Forms.Label();
this.lblTargetPct7 = new System.Windows.Forms.Label();
this.lblTargetDiff7 = new System.Windows.Forms.Label();
this.lblTargetPrice7 = new System.Windows.Forms.Label();
this.btnBuyMax7 = new System.Windows.Forms.Button();
this.btnBuyQty7 = new System.Windows.Forms.Button();
this.lblBuyPrice7 = new System.Windows.Forms.Label();
this.btnSellAll7 = new System.Windows.Forms.Button();
this.btnSellQty7 = new System.Windows.Forms.Button();
this.lblSellPrice7 = new System.Windows.Forms.Label();
this.lblTargetPct6 = new System.Windows.Forms.Label();
this.lblTargetDiff6 = new System.Windows.Forms.Label();
this.lblTargetPrice6 = new System.Windows.Forms.Label();
this.btnBuyMax6 = new System.Windows.Forms.Button();
this.btnBuyQty6 = new System.Windows.Forms.Button();
this.lblBuyPrice6 = new System.Windows.Forms.Label();
this.btnSellAll6 = new System.Windows.Forms.Button();
this.btnSellQty6 = new System.Windows.Forms.Button();
this.lblSellPrice6 = new System.Windows.Forms.Label();
this.lblTargetPct5 = new System.Windows.Forms.Label();
this.lblTargetDiff5 = new System.Windows.Forms.Label();
this.lblTargetPrice5 = new System.Windows.Forms.Label();
this.btnBuyMax5 = new System.Windows.Forms.Button();
this.btnBuyQty5 = new System.Windows.Forms.Button();
this.lblBuyPrice5 = new System.Windows.Forms.Label();
this.btnSellAll5 = new System.Windows.Forms.Button();
this.btnSellQty5 = new System.Windows.Forms.Button();
this.lblSellPrice5 = new System.Windows.Forms.Label();
this.lblTargetPct4 = new System.Windows.Forms.Label();
this.lblTargetDiff4 = new System.Windows.Forms.Label();
this.lblTargetPrice4 = new System.Windows.Forms.Label();
this.btnBuyMax4 = new System.Windows.Forms.Button();
this.btnBuyQty4 = new System.Windows.Forms.Button();
this.lblBuyPrice4 = new System.Windows.Forms.Label();
this.btnSellAll4 = new System.Windows.Forms.Button();
this.btnSellQty4 = new System.Windows.Forms.Button();
this.lblSellPrice4 = new System.Windows.Forms.Label();
this.lblTargetPct3 = new System.Windows.Forms.Label();
this.lblTargetDiff3 = new System.Windows.Forms.Label();
this.lblTargetPrice3 = new System.Windows.Forms.Label();
this.btnBuyMax3 = new System.Windows.Forms.Button();
this.btnBuyQty3 = new System.Windows.Forms.Button();
this.lblBuyPrice3 = new System.Windows.Forms.Label();
this.btnSellAll3 = new System.Windows.Forms.Button();
this.btnSellQty3 = new System.Windows.Forms.Button();
this.lblSellPrice3 = new System.Windows.Forms.Label();
this.lblTargetPct2 = new System.Windows.Forms.Label();
this.lblTargetDiff2 = new System.Windows.Forms.Label();
this.lblTargetPrice2 = new System.Windows.Forms.Label();
this.btnBuyMax2 = new System.Windows.Forms.Button();
this.btnBuyQty2 = new System.Windows.Forms.Button();
this.lblBuyPrice2 = new System.Windows.Forms.Label();
this.btnSellAll2 = new System.Windows.Forms.Button();
this.btnSellQty2 = new System.Windows.Forms.Button();
this.lblSellPrice2 = new System.Windows.Forms.Label();
this.lblTargetPct1 = new System.Windows.Forms.Label();
this.lblTargetDiff1 = new System.Windows.Forms.Label();
this.lblTargetPrice1 = new System.Windows.Forms.Label();
this.btnBuyMax1 = new System.Windows.Forms.Button();
this.btnBuyQty1 = new System.Windows.Forms.Button();
this.lblBuyPrice1 = new System.Windows.Forms.Label();
this.lblTargetPctLabel = new System.Windows.Forms.Label();
this.lblTargetDiffLabel = new System.Windows.Forms.Label();
this.lblTargetPriceLabel = new System.Windows.Forms.Label();
this.lblTargetPct0 = new System.Windows.Forms.Label();
this.lblTargetDiff0 = new System.Windows.Forms.Label();
this.lblTargetPrice0 = new System.Windows.Forms.Label();
this.btnBuyMax0 = new System.Windows.Forms.Button();
this.btnBuyQty0 = new System.Windows.Forms.Button();
this.lblBuyPrice0 = new System.Windows.Forms.Label();
this.btnSellAll1 = new System.Windows.Forms.Button();
this.btnSellQty1 = new System.Windows.Forms.Button();
this.lblSellPrice1 = new System.Windows.Forms.Label();
this.btnSellAll0 = new System.Windows.Forms.Button();
this.btnSellQty0 = new System.Windows.Forms.Button();
this.lblSellPrice0 = new System.Windows.Forms.Label();
this.lblTradeTarget = new System.Windows.Forms.Label();
this.lblBuy = new System.Windows.Forms.Label();
this.lblSell = new System.Windows.Forms.Label();
this.lblTradeCmdty9 = new System.Windows.Forms.Label();
this.lblTradeCmdty8 = new System.Windows.Forms.Label();
this.lblTradeCmdty2 = new System.Windows.Forms.Label();
this.lblTradeCmdty0 = new System.Windows.Forms.Label();
this.lblTradeCmdty1 = new System.Windows.Forms.Label();
this.lblTradeCmdty6 = new System.Windows.Forms.Label();
this.lblTradeCmdty5 = new System.Windows.Forms.Label();
this.lblTradeCmdty4 = new System.Windows.Forms.Label();
this.lblTradeCmdty3 = new System.Windows.Forms.Label();
this.lblTradeCmdty7 = new System.Windows.Forms.Label();
this.boxSystem = new System.Windows.Forms.GroupBox();
this.btnMerc = new System.Windows.Forms.Button();
this.btnSpecial = new System.Windows.Forms.Button();
this.btnNews = new System.Windows.Forms.Button();
this.lblSystemPressure = new System.Windows.Forms.Label();
this.lblSystemPressurePre = new System.Windows.Forms.Label();
this.lblSystemPolSys = new System.Windows.Forms.Label();
this.lblSystemSize = new System.Windows.Forms.Label();
this.lblSystemTech = new System.Windows.Forms.Label();
this.lblSystemPirates = new System.Windows.Forms.Label();
this.lblSystemPolice = new System.Windows.Forms.Label();
this.lblSystemResource = new System.Windows.Forms.Label();
this.lblSystemPiratesLabel = new System.Windows.Forms.Label();
this.lblSystemPoliceLabel = new System.Windows.Forms.Label();
this.lblSystemResourseLabel = new System.Windows.Forms.Label();
this.lblSystemGovtLabel = new System.Windows.Forms.Label();
this.lblSystemTechLabel = new System.Windows.Forms.Label();
this.lblSystemSizeLabel = new System.Windows.Forms.Label();
this.lblSystemName = new System.Windows.Forms.Label();
this.lblSystemNameLabel = new System.Windows.Forms.Label();
this.boxShipYard = new System.Windows.Forms.GroupBox();
this.btnDesign = new System.Windows.Forms.Button();
this.btnPod = new System.Windows.Forms.Button();
this.lblEscapePod = new System.Windows.Forms.Label();
this.btnEquip = new System.Windows.Forms.Button();
this.btnBuyShip = new System.Windows.Forms.Button();
this.lblEquipForSale = new System.Windows.Forms.Label();
this.lblShipsForSale = new System.Windows.Forms.Label();
this.boxDock = new System.Windows.Forms.GroupBox();
this.btnRepair = new System.Windows.Forms.Button();
this.btnFuel = new System.Windows.Forms.Button();
this.lblFuelStatus = new System.Windows.Forms.Label();
this.lblFuelCost = new System.Windows.Forms.Label();
this.lblHullStatus = new System.Windows.Forms.Label();
this.lblRepairCost = new System.Windows.Forms.Label();
this.picLine = new System.Windows.Forms.PictureBox();
this.dlgOpen = new System.Windows.Forms.OpenFileDialog();
this.dlgSave = new System.Windows.Forms.SaveFileDialog();
this.ilChartImages = new System.Windows.Forms.ImageList(this.components);
this.ilShipImages = new System.Windows.Forms.ImageList(this.components);
this.ilDirectionImages = new System.Windows.Forms.ImageList(this.components);
this.tipSpecial = new System.Windows.Forms.ToolTip(this.components);
this.tipMerc = new System.Windows.Forms.ToolTip(this.components);
this.ilEquipmentImages = new System.Windows.Forms.ImageList(this.components);
((System.ComponentModel.ISupportInitialize)(this.picGalacticChart)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picShortRangeChart)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCash)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarPanelBays)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarPanelCosts)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarPanelExtra)).BeginInit();
this.boxShortRangeChart.SuspendLayout();
this.boxGalacticChart.SuspendLayout();
this.boxTargetSystem.SuspendLayout();
this.boxCargo.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picCargoLine3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picCargoLine2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picCargoLine0)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picCargoLine1)).BeginInit();
this.boxSystem.SuspendLayout();
this.boxShipYard.SuspendLayout();
this.boxDock.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picLine)).BeginInit();
this.SuspendLayout();
//
// mnuMain
//
this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuGame,
this.mnuView,
this.mnuHelp});
//
// mnuGame
//
this.mnuGame.Index = 0;
this.mnuGame.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuGameNew,
this.mnuGameLoad,
this.mnuGameSave,
this.mnuGameSaveAs,
this.mnuGameLine1,
this.mnuRetire,
this.mnuGameLine2,
this.mnuGameExit});
this.mnuGame.Text = "&Game";
//
// mnuGameNew
//
this.mnuGameNew.Index = 0;
this.mnuGameNew.Text = "&New...";
this.mnuGameNew.Click += new System.EventHandler(this.mnuGameNew_Click);
//
// mnuGameLoad
//
this.mnuGameLoad.Index = 1;
this.mnuGameLoad.Shortcut = System.Windows.Forms.Shortcut.CtrlL;
this.mnuGameLoad.Text = "&Load...";
this.mnuGameLoad.Click += new System.EventHandler(this.mnuGameLoad_Click);
//
// mnuGameSave
//
this.mnuGameSave.Enabled = false;
this.mnuGameSave.Index = 2;
this.mnuGameSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
this.mnuGameSave.Text = "&Save";
this.mnuGameSave.Click += new System.EventHandler(this.mnuGameSave_Click);
//
// mnuGameSaveAs
//
this.mnuGameSaveAs.Enabled = false;
this.mnuGameSaveAs.Index = 3;
this.mnuGameSaveAs.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
this.mnuGameSaveAs.Text = "Save &As...";
this.mnuGameSaveAs.Click += new System.EventHandler(this.mnuGameSaveAs_Click);
//
// mnuGameLine1
//
this.mnuGameLine1.Index = 4;
this.mnuGameLine1.Text = "-";
//
// mnuRetire
//
this.mnuRetire.Enabled = false;
this.mnuRetire.Index = 5;
this.mnuRetire.Text = "&Retire";
this.mnuRetire.Click += new System.EventHandler(this.mnuRetire_Click);
//
// mnuGameLine2
//
this.mnuGameLine2.Index = 6;
this.mnuGameLine2.Text = "-";
//
// mnuGameExit
//
this.mnuGameExit.Index = 7;
this.mnuGameExit.Text = "E&xit";
this.mnuGameExit.Click += new System.EventHandler(this.mnuGameExit_Click);
//
// mnuView
//
this.mnuView.Index = 1;
this.mnuView.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuViewCommander,
this.mnuViewShip,
this.mnuViewPersonnel,
this.mnuViewQuests,
this.mnuViewBank,
this.mnuViewLine1,
this.mnuHighScores,
this.mnuViewLine2,
this.mnuOptions});
this.mnuView.Text = "&View";
//
// mnuViewCommander
//
this.mnuViewCommander.Enabled = false;
this.mnuViewCommander.Index = 0;
this.mnuViewCommander.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
this.mnuViewCommander.Text = "&Commander Status";
this.mnuViewCommander.Click += new System.EventHandler(this.mnuViewCommander_Click);
//
// mnuViewShip
//
this.mnuViewShip.Enabled = false;
this.mnuViewShip.Index = 1;
this.mnuViewShip.Shortcut = System.Windows.Forms.Shortcut.CtrlH;
this.mnuViewShip.Text = "&Ship";
this.mnuViewShip.Click += new System.EventHandler(this.mnuViewShip_Click);
//
// mnuViewPersonnel
//
this.mnuViewPersonnel.Enabled = false;
this.mnuViewPersonnel.Index = 2;
this.mnuViewPersonnel.Shortcut = System.Windows.Forms.Shortcut.CtrlP;
this.mnuViewPersonnel.Text = "&Personnel";
this.mnuViewPersonnel.Click += new System.EventHandler(this.mnuViewPersonnel_Click);
//
// mnuViewQuests
//
this.mnuViewQuests.Enabled = false;
this.mnuViewQuests.Index = 3;
this.mnuViewQuests.Shortcut = System.Windows.Forms.Shortcut.CtrlQ;
this.mnuViewQuests.Text = "&Quests";
this.mnuViewQuests.Click += new System.EventHandler(this.mnuViewQuests_Click);
//
// mnuViewBank
//
this.mnuViewBank.Enabled = false;
this.mnuViewBank.Index = 4;
this.mnuViewBank.Shortcut = System.Windows.Forms.Shortcut.CtrlB;
this.mnuViewBank.Text = "&Bank";
this.mnuViewBank.Click += new System.EventHandler(this.mnuViewBank_Click);
//
// mnuViewLine1
//
this.mnuViewLine1.Index = 5;
this.mnuViewLine1.Text = "-";
//
// mnuHighScores
//
this.mnuHighScores.Index = 6;
this.mnuHighScores.Text = "&High Scores";
this.mnuHighScores.Click += new System.EventHandler(this.mnuHighScores_Click);
//
// mnuViewLine2
//
this.mnuViewLine2.Index = 7;
this.mnuViewLine2.Text = "-";
//
// mnuOptions
//
this.mnuOptions.Index = 8;
this.mnuOptions.Text = "Options";
this.mnuOptions.Click += new System.EventHandler(this.mnuOptions_Click);
//
// mnuHelp
//
this.mnuHelp.Index = 2;
this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuHelpAbout});
this.mnuHelp.Text = "&Help";
//
// mnuHelpAbout
//
this.mnuHelpAbout.Index = 0;
this.mnuHelpAbout.Text = "&About Space Trader";
this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
//
// picGalacticChart
//
this.picGalacticChart.BackColor = System.Drawing.Color.White;
this.picGalacticChart.Location = new System.Drawing.Point(8, 16);
this.picGalacticChart.Name = "picGalacticChart";
this.picGalacticChart.Size = new System.Drawing.Size(160, 116);
this.picGalacticChart.TabIndex = 0;
this.picGalacticChart.TabStop = false;
this.picGalacticChart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picGalacticChart_MouseDown);
this.picGalacticChart.Paint += new System.Windows.Forms.PaintEventHandler(this.picGalacticChart_Paint);
//
// picShortRangeChart
//
this.picShortRangeChart.BackColor = System.Drawing.Color.White;
this.picShortRangeChart.Location = new System.Drawing.Point(8, 16);
this.picShortRangeChart.Name = "picShortRangeChart";
this.picShortRangeChart.Size = new System.Drawing.Size(160, 145);
this.picShortRangeChart.TabIndex = 1;
this.picShortRangeChart.TabStop = false;
this.picShortRangeChart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picShortRangeChart_MouseDown);
this.picShortRangeChart.Paint += new System.Windows.Forms.PaintEventHandler(this.picShortRangeChart_Paint);
//
// statusBar
//
this.statusBar.Location = new System.Drawing.Point(0, 481);
this.statusBar.Name = "statusBar";
this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
this.statusBarPanelCash,
this.statusBarPanelBays,
this.statusBarPanelCosts,
this.statusBarPanelExtra});
this.statusBar.ShowPanels = true;
this.statusBar.Size = new System.Drawing.Size(768, 24);
this.statusBar.SizingGrip = false;
this.statusBar.TabIndex = 2;
this.statusBar.PanelClick += new System.Windows.Forms.StatusBarPanelClickEventHandler(this.statusBar_PanelClick);
//
// statusBarPanelCash
//
this.statusBarPanelCash.MinWidth = 112;
this.statusBarPanelCash.Name = "statusBarPanelCash";
this.statusBarPanelCash.Text = " Cash: 88,888,888 cr.";
this.statusBarPanelCash.Width = 112;
//
// statusBarPanelBays
//
this.statusBarPanelBays.MinWidth = 80;
this.statusBarPanelBays.Name = "statusBarPanelBays";
this.statusBarPanelBays.Text = " Bays: 88/88";
this.statusBarPanelBays.Width = 80;
//
// statusBarPanelCosts
//
this.statusBarPanelCosts.MinWidth = 120;
this.statusBarPanelCosts.Name = "statusBarPanelCosts";
this.statusBarPanelCosts.Text = " Current Costs: 888 cr.";
this.statusBarPanelCosts.Width = 120;
//
// statusBarPanelExtra
//
this.statusBarPanelExtra.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
this.statusBarPanelExtra.Name = "statusBarPanelExtra";
this.statusBarPanelExtra.Width = 456;
//
// boxShortRangeChart
//
this.boxShortRangeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.boxShortRangeChart.Controls.Add(this.picShortRangeChart);
this.boxShortRangeChart.Location = new System.Drawing.Point(364, 306);
this.boxShortRangeChart.Name = "boxShortRangeChart";
this.boxShortRangeChart.Size = new System.Drawing.Size(176, 168);
this.boxShortRangeChart.TabIndex = 6;
this.boxShortRangeChart.TabStop = false;
this.boxShortRangeChart.Text = "Short-Range Chart";
//
// boxGalacticChart
//
this.boxGalacticChart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.boxGalacticChart.BackColor = System.Drawing.SystemColors.Control;
this.boxGalacticChart.Controls.Add(this.lblWormhole);
this.boxGalacticChart.Controls.Add(this.lblWormholeLabel);
this.boxGalacticChart.Controls.Add(this.btnJump);
this.boxGalacticChart.Controls.Add(this.btnFind);
this.boxGalacticChart.Controls.Add(this.picGalacticChart);
this.boxGalacticChart.Location = new System.Drawing.Point(180, 306);
this.boxGalacticChart.Name = "boxGalacticChart";
this.boxGalacticChart.Size = new System.Drawing.Size(176, 168);
this.boxGalacticChart.TabIndex = 5;
this.boxGalacticChart.TabStop = false;
this.boxGalacticChart.Text = "Galactic Chart";
//
// lblWormhole
//
this.lblWormhole.Location = new System.Drawing.Point(8, 148);
this.lblWormhole.Name = "lblWormhole";
this.lblWormhole.Size = new System.Drawing.Size(72, 13);
this.lblWormhole.TabIndex = 29;
this.lblWormhole.Text = "Tarchannen";
//
// lblWormholeLabel
//
this.lblWormholeLabel.Location = new System.Drawing.Point(8, 135);
this.lblWormholeLabel.Name = "lblWormholeLabel";
this.lblWormholeLabel.Size = new System.Drawing.Size(72, 13);
this.lblWormholeLabel.TabIndex = 28;
this.lblWormholeLabel.Text = "Wormhole to";
//
// btnJump
//
this.btnJump.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnJump.Location = new System.Drawing.Point(81, 138);
this.btnJump.Name = "btnJump";
this.btnJump.Size = new System.Drawing.Size(42, 22);
this.btnJump.TabIndex = 55;
this.btnJump.Text = "Jump";
this.btnJump.Click += new System.EventHandler(this.btnJump_Click);
//
// btnFind
//
this.btnFind.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnFind.Location = new System.Drawing.Point(132, 138);
this.btnFind.Name = "btnFind";
this.btnFind.Size = new System.Drawing.Size(36, 22);
this.btnFind.TabIndex = 56;
this.btnFind.Text = "Find";
this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
//
// boxTargetSystem
//
this.boxTargetSystem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.boxTargetSystem.Controls.Add(this.btnTrack);
this.boxTargetSystem.Controls.Add(this.btnNextSystem);
this.boxTargetSystem.Controls.Add(this.btnPrevSystem);
this.boxTargetSystem.Controls.Add(this.lblTargetOutOfRange);
this.boxTargetSystem.Controls.Add(this.btnWarp);
this.boxTargetSystem.Controls.Add(this.lblTargetPolSys);
this.boxTargetSystem.Controls.Add(this.lblTargetSize);
this.boxTargetSystem.Controls.Add(this.lblTargetTech);
this.boxTargetSystem.Controls.Add(this.lblTargetDistance);
this.boxTargetSystem.Controls.Add(this.lblTargetPirates);
this.boxTargetSystem.Controls.Add(this.lblTargetPolice);
this.boxTargetSystem.Controls.Add(this.lblTargetResource);
this.boxTargetSystem.Controls.Add(this.lblTargetDistanceLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetPiratesLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetPoliceLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetResourceLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetGovtLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetTechLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetSizeLabel);
this.boxTargetSystem.Controls.Add(this.lblTargetName);