corrade-vassal – Blame information for rev 16

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 zed 1 namespace Vassal
2 {
3 partial class RegionEditForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22  
23 #region Windows Form Designer generated code
24  
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
4 vero 31 this.components = new System.ComponentModel.Container();
2 zed 32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegionEditForm));
33 this.Regions = new System.Windows.Forms.ListBox();
34 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
35 this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
36 this.StatusText = new System.Windows.Forms.ToolStripStatusLabel();
37 this.button1 = new System.Windows.Forms.Button();
38 this.button2 = new System.Windows.Forms.Button();
39 this.LoadRegionsDialog = new System.Windows.Forms.OpenFileDialog();
40 this.SaveRegionsDialog = new System.Windows.Forms.SaveFileDialog();
41 this.button3 = new System.Windows.Forms.Button();
42 this.button4 = new System.Windows.Forms.Button();
43 this.RegionName = new System.Windows.Forms.TextBox();
44 this.RegionPosition = new System.Windows.Forms.TextBox();
45 this.groupBox1 = new System.Windows.Forms.GroupBox();
8 eva 46 this.pictureBox6 = new System.Windows.Forms.PictureBox();
2 zed 47 this.groupBox2 = new System.Windows.Forms.GroupBox();
8 eva 48 this.pictureBox1 = new System.Windows.Forms.PictureBox();
2 zed 49 this.groupBox3 = new System.Windows.Forms.GroupBox();
50 this.groupBox4 = new System.Windows.Forms.GroupBox();
8 eva 51 this.pictureBox3 = new System.Windows.Forms.PictureBox();
52 this.pictureBox2 = new System.Windows.Forms.PictureBox();
2 zed 53 this.groupBox5 = new System.Windows.Forms.GroupBox();
4 vero 54 this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
2 zed 55 this.statusStrip1.SuspendLayout();
56 this.groupBox1.SuspendLayout();
8 eva 57 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
2 zed 58 this.groupBox2.SuspendLayout();
8 eva 59 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
2 zed 60 this.groupBox3.SuspendLayout();
61 this.groupBox4.SuspendLayout();
8 eva 62 ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
63 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
2 zed 64 this.groupBox5.SuspendLayout();
65 this.SuspendLayout();
66 //
67 // Regions
68 //
69 this.Regions.DisplayMember = "Text";
70 this.Regions.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
71 this.Regions.FormattingEnabled = true;
72 this.Regions.Location = new System.Drawing.Point(6, 19);
73 this.Regions.Name = "Regions";
74 this.Regions.Size = new System.Drawing.Size(336, 342);
75 this.Regions.Sorted = true;
76 this.Regions.TabIndex = 0;
77 this.Regions.SelectedIndexChanged += new System.EventHandler(this.RegionSelected);
78 //
79 // statusStrip1
80 //
81 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
82 this.StatusProgress,
83 this.StatusText});
84 this.statusStrip1.Location = new System.Drawing.Point(0, 377);
85 this.statusStrip1.Name = "statusStrip1";
86 this.statusStrip1.Size = new System.Drawing.Size(704, 22);
87 this.statusStrip1.TabIndex = 2;
88 this.statusStrip1.Text = "statusStrip1";
89 //
90 // StatusProgress
91 //
92 this.StatusProgress.Name = "StatusProgress";
93 this.StatusProgress.Size = new System.Drawing.Size(100, 16);
94 //
95 // StatusText
96 //
97 this.StatusText.Name = "StatusText";
98 this.StatusText.Size = new System.Drawing.Size(10, 17);
99 this.StatusText.Text = " ";
100 //
101 // button1
102 //
103 this.button1.Location = new System.Drawing.Point(191, 21);
104 this.button1.Name = "button1";
105 this.button1.Size = new System.Drawing.Size(75, 23);
106 this.button1.TabIndex = 3;
107 this.button1.Text = "Save...";
108 this.button1.UseVisualStyleBackColor = true;
109 this.button1.Click += new System.EventHandler(this.SaveRegionsRequested);
110 //
111 // button2
112 //
4 vero 113 this.button2.Location = new System.Drawing.Point(47, 21);
2 zed 114 this.button2.Name = "button2";
115 this.button2.Size = new System.Drawing.Size(75, 23);
116 this.button2.TabIndex = 4;
117 this.button2.Text = "Load...";
118 this.button2.UseVisualStyleBackColor = true;
119 this.button2.Click += new System.EventHandler(this.LoadRegionsRequested);
120 //
8 eva 121 // LoadRegionsDialog
122 //
123 this.LoadRegionsDialog.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
124 //
2 zed 125 // SaveRegionsDialog
126 //
3 eva 127 this.SaveRegionsDialog.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
2 zed 128 //
129 // button3
130 //
131 this.button3.Location = new System.Drawing.Point(245, 38);
132 this.button3.Name = "button3";
133 this.button3.Size = new System.Drawing.Size(75, 23);
134 this.button3.TabIndex = 5;
135 this.button3.Text = "Add";
136 this.button3.UseVisualStyleBackColor = true;
137 this.button3.Click += new System.EventHandler(this.RequestAddRegion);
138 //
139 // button4
140 //
141 this.button4.Location = new System.Drawing.Point(245, 90);
142 this.button4.Name = "button4";
143 this.button4.Size = new System.Drawing.Size(75, 23);
144 this.button4.TabIndex = 6;
145 this.button4.Text = "Remove";
146 this.button4.UseVisualStyleBackColor = true;
147 this.button4.Click += new System.EventHandler(this.RequestRemoveRegion);
148 //
149 // RegionName
150 //
151 this.RegionName.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
152 this.RegionName.Location = new System.Drawing.Point(6, 19);
153 this.RegionName.Name = "RegionName";
4 vero 154 this.RegionName.Size = new System.Drawing.Size(194, 20);
2 zed 155 this.RegionName.TabIndex = 7;
156 this.RegionName.TextChanged += new System.EventHandler(this.RegionSettingChanged);
157 //
158 // RegionPosition
159 //
160 this.RegionPosition.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
161 this.RegionPosition.Location = new System.Drawing.Point(5, 19);
162 this.RegionPosition.Name = "RegionPosition";
4 vero 163 this.RegionPosition.Size = new System.Drawing.Size(194, 20);
2 zed 164 this.RegionPosition.TabIndex = 8;
165 this.RegionPosition.TextChanged += new System.EventHandler(this.RegionSettingChanged);
166 //
167 // groupBox1
168 //
4 vero 169 this.groupBox1.Controls.Add(this.pictureBox6);
2 zed 170 this.groupBox1.Controls.Add(this.RegionName);
171 this.groupBox1.Location = new System.Drawing.Point(6, 19);
172 this.groupBox1.Name = "groupBox1";
173 this.groupBox1.Size = new System.Drawing.Size(233, 48);
174 this.groupBox1.TabIndex = 9;
175 this.groupBox1.TabStop = false;
176 this.groupBox1.Text = "Region Name";
177 //
8 eva 178 // pictureBox6
179 //
180 this.pictureBox6.Cursor = System.Windows.Forms.Cursors.Help;
181 this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
182 this.pictureBox6.Location = new System.Drawing.Point(206, 19);
183 this.pictureBox6.Name = "pictureBox6";
184 this.pictureBox6.Size = new System.Drawing.Size(20, 20);
185 this.pictureBox6.TabIndex = 14;
186 this.pictureBox6.TabStop = false;
187 this.toolTip1.SetToolTip(this.pictureBox6, "This must be set to the exact name of a\r\nregion or simulator.");
16 eva 188 this.pictureBox6.Click += new System.EventHandler(this.ShowToolTip);
8 eva 189 //
2 zed 190 // groupBox2
191 //
4 vero 192 this.groupBox2.Controls.Add(this.pictureBox1);
2 zed 193 this.groupBox2.Controls.Add(this.RegionPosition);
194 this.groupBox2.Location = new System.Drawing.Point(7, 74);
195 this.groupBox2.Name = "groupBox2";
196 this.groupBox2.Size = new System.Drawing.Size(232, 49);
197 this.groupBox2.TabIndex = 10;
198 this.groupBox2.TabStop = false;
199 this.groupBox2.Text = "Region Position";
200 //
8 eva 201 // pictureBox1
202 //
203 this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Help;
204 this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
205 this.pictureBox1.Location = new System.Drawing.Point(206, 19);
206 this.pictureBox1.Name = "pictureBox1";
207 this.pictureBox1.Size = new System.Drawing.Size(20, 20);
208 this.pictureBox1.TabIndex = 15;
209 this.pictureBox1.TabStop = false;
210 this.toolTip1.SetToolTip(this.pictureBox1, resources.GetString("pictureBox1.ToolTip"));
16 eva 211 this.pictureBox1.Click += new System.EventHandler(this.ShowToolTip);
8 eva 212 //
2 zed 213 // groupBox3
214 //
215 this.groupBox3.Controls.Add(this.groupBox1);
216 this.groupBox3.Controls.Add(this.button4);
217 this.groupBox3.Controls.Add(this.groupBox2);
218 this.groupBox3.Controls.Add(this.button3);
219 this.groupBox3.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
220 this.groupBox3.Location = new System.Drawing.Point(366, 12);
221 this.groupBox3.Name = "groupBox3";
222 this.groupBox3.Size = new System.Drawing.Size(326, 138);
223 this.groupBox3.TabIndex = 11;
224 this.groupBox3.TabStop = false;
225 this.groupBox3.Text = "Region Edit";
226 //
227 // groupBox4
228 //
4 vero 229 this.groupBox4.Controls.Add(this.pictureBox3);
230 this.groupBox4.Controls.Add(this.pictureBox2);
2 zed 231 this.groupBox4.Controls.Add(this.button2);
232 this.groupBox4.Controls.Add(this.button1);
233 this.groupBox4.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
234 this.groupBox4.Location = new System.Drawing.Point(366, 156);
235 this.groupBox4.Name = "groupBox4";
236 this.groupBox4.Size = new System.Drawing.Size(326, 55);
237 this.groupBox4.TabIndex = 12;
238 this.groupBox4.TabStop = false;
239 this.groupBox4.Text = "Region File";
240 //
8 eva 241 // pictureBox3
242 //
243 this.pictureBox3.Cursor = System.Windows.Forms.Cursors.Help;
244 this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
245 this.pictureBox3.Location = new System.Drawing.Point(128, 23);
246 this.pictureBox3.Name = "pictureBox3";
247 this.pictureBox3.Size = new System.Drawing.Size(20, 20);
248 this.pictureBox3.TabIndex = 17;
249 this.pictureBox3.TabStop = false;
250 this.toolTip1.SetToolTip(this.pictureBox3, "You can load any previously exported\r\nregions from a file containing a CSV\r\nlist " +
251 "of region names by local region\r\npositions line-by-line for each region.");
16 eva 252 this.pictureBox3.Click += new System.EventHandler(this.ShowToolTip);
8 eva 253 //
254 // pictureBox2
255 //
256 this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Help;
257 this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
258 this.pictureBox2.Location = new System.Drawing.Point(272, 23);
259 this.pictureBox2.Name = "pictureBox2";
260 this.pictureBox2.Size = new System.Drawing.Size(20, 20);
261 this.pictureBox2.TabIndex = 16;
262 this.pictureBox2.TabStop = false;
263 this.toolTip1.SetToolTip(this.pictureBox2, "Vassal exports regions to a CSV file\r\nwhere each column contains the region\r\nname" +
264 " and the local region position.");
16 eva 265 this.pictureBox2.Click += new System.EventHandler(this.ShowToolTip);
8 eva 266 //
2 zed 267 // groupBox5
268 //
269 this.groupBox5.Controls.Add(this.Regions);
270 this.groupBox5.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
271 this.groupBox5.Location = new System.Drawing.Point(12, 3);
272 this.groupBox5.Name = "groupBox5";
273 this.groupBox5.Size = new System.Drawing.Size(348, 371);
274 this.groupBox5.TabIndex = 13;
275 this.groupBox5.TabStop = false;
276 this.groupBox5.Text = "Configured Regions";
277 //
5 eva 278 // toolTip1
279 //
280 this.toolTip1.AutoPopDelay = 32767;
281 this.toolTip1.InitialDelay = 500;
282 this.toolTip1.ReshowDelay = 100;
283 //
2 zed 284 // RegionEditForm
285 //
286 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
287 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
288 this.ClientSize = new System.Drawing.Size(704, 399);
289 this.Controls.Add(this.groupBox5);
290 this.Controls.Add(this.groupBox4);
291 this.Controls.Add(this.groupBox3);
292 this.Controls.Add(this.statusStrip1);
3 eva 293 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
2 zed 294 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
3 eva 295 this.MaximumSize = new System.Drawing.Size(720, 438);
2 zed 296 this.MinimizeBox = false;
297 this.Name = "RegionEditForm";
298 this.Text = "Region Editor";
299 this.Shown += new System.EventHandler(this.RegionEditShown);
300 this.statusStrip1.ResumeLayout(false);
301 this.statusStrip1.PerformLayout();
302 this.groupBox1.ResumeLayout(false);
303 this.groupBox1.PerformLayout();
8 eva 304 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
2 zed 305 this.groupBox2.ResumeLayout(false);
306 this.groupBox2.PerformLayout();
8 eva 307 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
2 zed 308 this.groupBox3.ResumeLayout(false);
309 this.groupBox4.ResumeLayout(false);
8 eva 310 ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
311 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
2 zed 312 this.groupBox5.ResumeLayout(false);
313 this.ResumeLayout(false);
314 this.PerformLayout();
315  
316 }
317  
318 #endregion
319  
320 private System.Windows.Forms.ListBox Regions;
321 private System.Windows.Forms.StatusStrip statusStrip1;
322 private System.Windows.Forms.ToolStripProgressBar StatusProgress;
323 private System.Windows.Forms.ToolStripStatusLabel StatusText;
324 private System.Windows.Forms.Button button1;
325 private System.Windows.Forms.Button button2;
326 private System.Windows.Forms.OpenFileDialog LoadRegionsDialog;
327 private System.Windows.Forms.SaveFileDialog SaveRegionsDialog;
328 private System.Windows.Forms.Button button3;
329 private System.Windows.Forms.Button button4;
330 private System.Windows.Forms.TextBox RegionName;
331 private System.Windows.Forms.TextBox RegionPosition;
332 private System.Windows.Forms.GroupBox groupBox1;
333 private System.Windows.Forms.GroupBox groupBox2;
334 private System.Windows.Forms.GroupBox groupBox3;
335 private System.Windows.Forms.GroupBox groupBox4;
336 private System.Windows.Forms.GroupBox groupBox5;
4 vero 337 private System.Windows.Forms.ToolTip toolTip1;
338 private System.Windows.Forms.PictureBox pictureBox6;
339 private System.Windows.Forms.PictureBox pictureBox1;
340 private System.Windows.Forms.PictureBox pictureBox3;
341 private System.Windows.Forms.PictureBox pictureBox2;
2 zed 342 }
343 }