corrade-vassal – Blame information for rev 8

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 zed 1 using System;
2 using System.ComponentModel;
3 using System.Drawing;
4 using System.Windows.Forms;
5  
6 namespace Vassal
7 {
8 partial class Vassal
9 {
10 /// <summary>
11 /// Required designer variable.
12 /// </summary>
13 private IContainer components = null;
14  
15 /// <summary>
16 /// Clean up any resources being used.
17 /// </summary>
18 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
19 protected override void Dispose(bool disposing)
20 {
21 if (disposing && (components != null))
22 {
23 components.Dispose();
24 }
25 base.Dispose(disposing);
26 }
27  
28 #region Windows Form Designer generated code
29  
30 /// <summary>
31 /// Required method for Designer support - do not modify
32 /// the contents of this method with the code editor.
33 /// </summary>
34 private void InitializeComponent()
35 {
4 vero 36 this.components = new System.ComponentModel.Container();
2 zed 37 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Vassal));
38 this.pictureBox1 = new System.Windows.Forms.PictureBox();
8 eva 39 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
40 this.StatusProgress = new System.Windows.Forms.ToolStripProgressBar();
41 this.StatusText = new System.Windows.Forms.ToolStripStatusLabel();
42 this.VassalSettingsButton = new System.Windows.Forms.Button();
43 this.button2 = new System.Windows.Forms.Button();
44 this.RegionTeleportGroup = new System.Windows.Forms.GroupBox();
45 this.pictureBox6 = new System.Windows.Forms.PictureBox();
46 this.LoadedRegionsBox = new System.Windows.Forms.ComboBox();
47 this.CurrentRegionName = new System.Windows.Forms.Label();
48 this.CurrentRegionAt = new System.Windows.Forms.Label();
49 this.ExportCSVDialog = new System.Windows.Forms.SaveFileDialog();
50 this.VassalStatusGroup = new System.Windows.Forms.GroupBox();
51 this.pictureBox2 = new System.Windows.Forms.PictureBox();
52 this.Version = new System.Windows.Forms.Label();
53 this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
54 this.pictureBox4 = new System.Windows.Forms.PictureBox();
55 this.pictureBox7 = new System.Windows.Forms.PictureBox();
56 this.pictureBox5 = new System.Windows.Forms.PictureBox();
57 this.pictureBox3 = new System.Windows.Forms.PictureBox();
58 this.LoadRawFileDialog = new System.Windows.Forms.OpenFileDialog();
59 this.SavePNGFileDialog = new System.Windows.Forms.SaveFileDialog();
60 this.SaveRawFileDialog = new System.Windows.Forms.SaveFileDialog();
61 this.EstateListsTab = new System.Windows.Forms.TabPage();
62 this.groupBox11 = new System.Windows.Forms.GroupBox();
63 this.groupBox13 = new System.Windows.Forms.GroupBox();
64 this.RipTerrainButton = new System.Windows.Forms.Button();
65 this.EstateTerrainDownloadUploadGroup = new System.Windows.Forms.GroupBox();
66 this.DownloadTerrainButton = new System.Windows.Forms.Button();
67 this.UploadTerrainButton = new System.Windows.Forms.Button();
68 this.EstateTopTab = new System.Windows.Forms.TabPage();
69 this.groupBox14 = new System.Windows.Forms.GroupBox();
70 this.label2 = new System.Windows.Forms.Label();
71 this.TopCollidersFilter = new System.Windows.Forms.TextBox();
72 this.ReturnTopCollidersButton = new System.Windows.Forms.Button();
73 this.button5 = new System.Windows.Forms.Button();
74 this.TopCollidersGridView = new System.Windows.Forms.DataGridView();
75 this.TopCollidersScore = new System.Windows.Forms.DataGridViewTextBoxColumn();
76 this.TopCollidersTaskName = new System.Windows.Forms.DataGridViewTextBoxColumn();
77 this.TopCollidersUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
78 this.TopCollidersOwner = new System.Windows.Forms.DataGridViewTextBoxColumn();
79 this.TopCollidersPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
80 this.groupBox12 = new System.Windows.Forms.GroupBox();
81 this.TopScriptsGridView = new System.Windows.Forms.DataGridView();
82 this.TopScriptsScore = new System.Windows.Forms.DataGridViewTextBoxColumn();
83 this.TopScriptsTaskName = new System.Windows.Forms.DataGridViewTextBoxColumn();
84 this.TopScriptsUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
85 this.TopScriptsOwner = new System.Windows.Forms.DataGridViewTextBoxColumn();
86 this.TopScriptsPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
87 this.ReturnTopScriptsButton = new System.Windows.Forms.Button();
88 this.label1 = new System.Windows.Forms.Label();
89 this.button3 = new System.Windows.Forms.Button();
90 this.TopScriptsFilter = new System.Windows.Forms.TextBox();
91 this.BatchRestartTab = new System.Windows.Forms.TabPage();
92 this.label3 = new System.Windows.Forms.Label();
93 this.RegionRestartDelayBox = new System.Windows.Forms.TextBox();
94 this.BatchRestartButton = new System.Windows.Forms.Button();
95 this.BatchRestartGridView = new System.Windows.Forms.DataGridView();
96 this.BatchRestartRegionName = new System.Windows.Forms.DataGridViewTextBoxColumn();
97 this.BatchRestartPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
98 this.ResidentListTab = new System.Windows.Forms.TabPage();
99 this.ResidentListBanGroup = new System.Windows.Forms.GroupBox();
100 this.ResidentBanAllEstatesBox = new System.Windows.Forms.CheckBox();
101 this.ResidentBanButton = new System.Windows.Forms.Button();
102 this.label4 = new System.Windows.Forms.Label();
103 this.ResidentListFilter = new System.Windows.Forms.TextBox();
104 this.ResidentListGridView = new System.Windows.Forms.DataGridView();
105 this.ResidentListName = new System.Windows.Forms.DataGridViewTextBoxColumn();
106 this.ResidentListUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
107 this.ResidentListPosition = new System.Windows.Forms.DataGridViewTextBoxColumn();
108 this.RegionsStateTab = new System.Windows.Forms.TabPage();
109 this.RegionsStateGridView = new System.Windows.Forms.DataGridView();
110 this.RegionsStateRegionName = new System.Windows.Forms.DataGridViewTextBoxColumn();
111 this.RegionsStateLastState = new System.Windows.Forms.DataGridViewTextBoxColumn();
112 this.RegionsStateLastCheck = new System.Windows.Forms.DataGridViewTextBoxColumn();
2 zed 113 this.OverviewTab = new System.Windows.Forms.TabPage();
114 this.groupBox10 = new System.Windows.Forms.GroupBox();
115 this.RegionAvatarsMap = new System.Windows.Forms.PictureBox();
116 this.groupBox9 = new System.Windows.Forms.GroupBox();
117 this.Objects = new System.Windows.Forms.Label();
118 this.groupBox8 = new System.Windows.Forms.GroupBox();
119 this.ScriptTime = new System.Windows.Forms.Label();
120 this.groupBox7 = new System.Windows.Forms.GroupBox();
121 this.ActiveScripts = new System.Windows.Forms.Label();
122 this.groupBox6 = new System.Windows.Forms.GroupBox();
123 this.PhysicsFPS = new System.Windows.Forms.Label();
124 this.groupBox5 = new System.Windows.Forms.GroupBox();
125 this.FPS = new System.Windows.Forms.Label();
126 this.groupBox4 = new System.Windows.Forms.GroupBox();
127 this.Dilation = new System.Windows.Forms.Label();
128 this.groupBox3 = new System.Windows.Forms.GroupBox();
129 this.LastLag = new System.Windows.Forms.Label();
130 this.groupBox2 = new System.Windows.Forms.GroupBox();
131 this.Agents = new System.Windows.Forms.Label();
8 eva 132 this.Tabs = new System.Windows.Forms.TabControl();
133 this.ConnectionStatusPictureBox = new System.Windows.Forms.PictureBox();
134 this.EstateListGridView = new System.Windows.Forms.DataGridView();
135 this.EstateListSelectBox = new System.Windows.Forms.ComboBox();
136 this.EstateListsAddResidentButton = new System.Windows.Forms.Button();
137 this.RemoveEstateListMemberButton = new System.Windows.Forms.Button();
138 this.EstateListsResidentFirstName = new System.Windows.Forms.TextBox();
139 this.pictureBox8 = new System.Windows.Forms.PictureBox();
7 zed 140 this.RegionToolsTab = new System.Windows.Forms.TabPage();
8 eva 141 this.groupBox15 = new System.Windows.Forms.GroupBox();
142 this.groupBox16 = new System.Windows.Forms.GroupBox();
143 this.EstateListsResidentLastName = new System.Windows.Forms.TextBox();
144 this.EstateListGroup = new System.Windows.Forms.GroupBox();
145 this.EstateListsResidentsGroup = new System.Windows.Forms.GroupBox();
146 this.EstateListsGroupsGroup = new System.Windows.Forms.GroupBox();
147 this.EstateListsAddGroupBox = new System.Windows.Forms.TextBox();
148 this.button7 = new System.Windows.Forms.Button();
149 this.label5 = new System.Windows.Forms.Label();
150 this.label6 = new System.Windows.Forms.Label();
151 this.EstateListFilter = new System.Windows.Forms.TextBox();
152 this.EstateListName = new System.Windows.Forms.DataGridViewTextBoxColumn();
153 this.EstateListUUID = new System.Windows.Forms.DataGridViewTextBoxColumn();
154 this.RegionToolsRegionDebugGroup = new System.Windows.Forms.GroupBox();
155 this.RegionDebugScriptsBox = new System.Windows.Forms.CheckBox();
156 this.RegionDebugCollisionsBox = new System.Windows.Forms.CheckBox();
157 this.RegionDebugPhysicsBox = new System.Windows.Forms.CheckBox();
158 this.ApplyRegionDebugButton = new System.Windows.Forms.Button();
159 this.RegionToolsRegionInfoGroup = new System.Windows.Forms.GroupBox();
160 this.ApplyRegionInfoButton = new System.Windows.Forms.Button();
161 this.RegionInfoFlyBox = new System.Windows.Forms.CheckBox();
162 this.RegionInfoDamageBox = new System.Windows.Forms.CheckBox();
163 this.RegioninfoResellBox = new System.Windows.Forms.CheckBox();
164 this.RegionInfoPushBox = new System.Windows.Forms.CheckBox();
165 this.RegionInfoTerraformBox = new System.Windows.Forms.CheckBox();
166 this.RegionInfoParcelBox = new System.Windows.Forms.CheckBox();
167 this.groupBox18 = new System.Windows.Forms.GroupBox();
168 this.RegionInfoObjectBonusBox = new System.Windows.Forms.TextBox();
169 this.groupBox19 = new System.Windows.Forms.GroupBox();
170 this.RegionInfoAgentLimitBox = new System.Windows.Forms.TextBox();
171 this.RegionInfoMatureBox = new System.Windows.Forms.CheckBox();
172 this.groupBox23 = new System.Windows.Forms.GroupBox();
173 this.RegionTexturesLowUUIDBox = new System.Windows.Forms.TextBox();
174 this.RegionTexturesLowPictureBox = new System.Windows.Forms.PictureBox();
175 this.EstateTexturesTab = new System.Windows.Forms.TabPage();
176 this.button10 = new System.Windows.Forms.Button();
177 this.RegionTexturesLowUUIDApplyButton = new System.Windows.Forms.Button();
178 this.groupBox20 = new System.Windows.Forms.GroupBox();
179 this.RegionTexturesMiddleLowUUIDApplyButton = new System.Windows.Forms.Button();
180 this.button8 = new System.Windows.Forms.Button();
181 this.RegionTexturesMiddleLowUUIDBox = new System.Windows.Forms.TextBox();
182 this.RegionTexturesMiddleLowPictureBox = new System.Windows.Forms.PictureBox();
183 this.groupBox21 = new System.Windows.Forms.GroupBox();
184 this.RegionTexturesMiddleHighUUIDApplyButton = new System.Windows.Forms.Button();
185 this.button11 = new System.Windows.Forms.Button();
186 this.RegionTexturesMiddleHighUUIDBox = new System.Windows.Forms.TextBox();
187 this.RegionTexturesMiddleHighPictureBox = new System.Windows.Forms.PictureBox();
188 this.groupBox22 = new System.Windows.Forms.GroupBox();
189 this.RegionTexturesHighUUIDApplyButton = new System.Windows.Forms.Button();
190 this.button13 = new System.Windows.Forms.Button();
191 this.RegionTexturesHighUUIDBox = new System.Windows.Forms.TextBox();
192 this.RegionTexturesHighPictureBox = new System.Windows.Forms.PictureBox();
193 this.GroundTexturesGroup = new System.Windows.Forms.GroupBox();
194 this.RegionTexturesMiddleHighUUIDApplyBox = new System.Windows.Forms.TextBox();
195 this.RegionTexturesLowUUIDApplyBox = new System.Windows.Forms.TextBox();
196 this.RegionTexturesMiddleLowUUIDApplyBox = new System.Windows.Forms.TextBox();
197 this.RegionTexturesHighUUIDApplyBox = new System.Windows.Forms.TextBox();
198 this.pictureBox9 = new System.Windows.Forms.PictureBox();
199 this.pictureBox10 = new System.Windows.Forms.PictureBox();
200 this.pictureBox11 = new System.Windows.Forms.PictureBox();
201 this.pictureBox12 = new System.Windows.Forms.PictureBox();
202 this.pictureBox13 = new System.Windows.Forms.PictureBox();
203 this.pictureBox14 = new System.Windows.Forms.PictureBox();
204 this.pictureBox15 = new System.Windows.Forms.PictureBox();
205 this.pictureBox16 = new System.Windows.Forms.PictureBox();
206 this.pictureBox17 = new System.Windows.Forms.PictureBox();
7 zed 207 this.button4 = new System.Windows.Forms.Button();
8 eva 208 this.button6 = new System.Windows.Forms.Button();
209 this.LoadCSVFile = new System.Windows.Forms.OpenFileDialog();
210 this.button9 = new System.Windows.Forms.Button();
2 zed 211 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
8 eva 212 this.statusStrip1.SuspendLayout();
213 this.RegionTeleportGroup.SuspendLayout();
214 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
215 this.VassalStatusGroup.SuspendLayout();
216 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
217 ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
218 ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
219 ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
220 ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
221 this.EstateListsTab.SuspendLayout();
222 this.groupBox11.SuspendLayout();
223 this.groupBox13.SuspendLayout();
224 this.EstateTerrainDownloadUploadGroup.SuspendLayout();
225 this.EstateTopTab.SuspendLayout();
226 this.groupBox14.SuspendLayout();
227 ((System.ComponentModel.ISupportInitialize)(this.TopCollidersGridView)).BeginInit();
228 this.groupBox12.SuspendLayout();
229 ((System.ComponentModel.ISupportInitialize)(this.TopScriptsGridView)).BeginInit();
230 this.BatchRestartTab.SuspendLayout();
231 ((System.ComponentModel.ISupportInitialize)(this.BatchRestartGridView)).BeginInit();
232 this.ResidentListTab.SuspendLayout();
233 this.ResidentListBanGroup.SuspendLayout();
234 ((System.ComponentModel.ISupportInitialize)(this.ResidentListGridView)).BeginInit();
235 this.RegionsStateTab.SuspendLayout();
236 ((System.ComponentModel.ISupportInitialize)(this.RegionsStateGridView)).BeginInit();
2 zed 237 this.OverviewTab.SuspendLayout();
238 this.groupBox10.SuspendLayout();
239 ((System.ComponentModel.ISupportInitialize)(this.RegionAvatarsMap)).BeginInit();
240 this.groupBox9.SuspendLayout();
241 this.groupBox8.SuspendLayout();
242 this.groupBox7.SuspendLayout();
243 this.groupBox6.SuspendLayout();
244 this.groupBox5.SuspendLayout();
245 this.groupBox4.SuspendLayout();
246 this.groupBox3.SuspendLayout();
247 this.groupBox2.SuspendLayout();
8 eva 248 this.Tabs.SuspendLayout();
249 ((System.ComponentModel.ISupportInitialize)(this.ConnectionStatusPictureBox)).BeginInit();
250 ((System.ComponentModel.ISupportInitialize)(this.EstateListGridView)).BeginInit();
251 ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit();
7 zed 252 this.RegionToolsTab.SuspendLayout();
8 eva 253 this.groupBox15.SuspendLayout();
254 this.groupBox16.SuspendLayout();
255 this.EstateListGroup.SuspendLayout();
256 this.EstateListsResidentsGroup.SuspendLayout();
257 this.EstateListsGroupsGroup.SuspendLayout();
258 this.RegionToolsRegionDebugGroup.SuspendLayout();
259 this.RegionToolsRegionInfoGroup.SuspendLayout();
260 this.groupBox18.SuspendLayout();
261 this.groupBox19.SuspendLayout();
262 this.groupBox23.SuspendLayout();
263 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesLowPictureBox)).BeginInit();
264 this.EstateTexturesTab.SuspendLayout();
265 this.groupBox20.SuspendLayout();
266 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesMiddleLowPictureBox)).BeginInit();
267 this.groupBox21.SuspendLayout();
268 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesMiddleHighPictureBox)).BeginInit();
269 this.groupBox22.SuspendLayout();
270 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesHighPictureBox)).BeginInit();
271 this.GroundTexturesGroup.SuspendLayout();
272 ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
273 ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
274 ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
275 ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
276 ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit();
277 ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
278 ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
279 ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit();
280 ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
2 zed 281 this.SuspendLayout();
282 //
283 // pictureBox1
284 //
285 this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage")));
286 this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
3 eva 287 this.pictureBox1.Location = new System.Drawing.Point(17, 12);
2 zed 288 this.pictureBox1.Name = "pictureBox1";
8 eva 289 this.pictureBox1.Size = new System.Drawing.Size(515, 156);
2 zed 290 this.pictureBox1.TabIndex = 0;
291 this.pictureBox1.TabStop = false;
292 //
8 eva 293 // statusStrip1
2 zed 294 //
8 eva 295 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
296 this.StatusProgress,
297 this.StatusText});
298 this.statusStrip1.Location = new System.Drawing.Point(0, 707);
299 this.statusStrip1.Name = "statusStrip1";
300 this.statusStrip1.Size = new System.Drawing.Size(752, 22);
301 this.statusStrip1.TabIndex = 2;
302 this.statusStrip1.Text = "statusStrip1";
2 zed 303 //
8 eva 304 // StatusProgress
305 //
306 this.StatusProgress.Name = "StatusProgress";
307 this.StatusProgress.Size = new System.Drawing.Size(100, 16);
308 //
309 // StatusText
310 //
311 this.StatusText.Name = "StatusText";
312 this.StatusText.Size = new System.Drawing.Size(10, 17);
313 this.StatusText.Text = " ";
314 //
315 // VassalSettingsButton
316 //
317 this.VassalSettingsButton.Location = new System.Drawing.Point(48, 26);
318 this.VassalSettingsButton.Name = "VassalSettingsButton";
319 this.VassalSettingsButton.Size = new System.Drawing.Size(121, 23);
320 this.VassalSettingsButton.TabIndex = 8;
321 this.VassalSettingsButton.Text = "Vassal Settings...";
322 this.VassalSettingsButton.UseVisualStyleBackColor = true;
323 this.VassalSettingsButton.Click += new System.EventHandler(this.SettingsRequested);
324 //
325 // button2
326 //
327 this.button2.Location = new System.Drawing.Point(113, 57);
328 this.button2.Name = "button2";
329 this.button2.Size = new System.Drawing.Size(56, 23);
330 this.button2.TabIndex = 7;
331 this.button2.Text = "Edit...";
332 this.button2.UseVisualStyleBackColor = true;
333 this.button2.Click += new System.EventHandler(this.RequestedEditRegions);
334 //
335 // RegionTeleportGroup
336 //
337 this.RegionTeleportGroup.Controls.Add(this.pictureBox6);
338 this.RegionTeleportGroup.Controls.Add(this.button2);
339 this.RegionTeleportGroup.Controls.Add(this.LoadedRegionsBox);
340 this.RegionTeleportGroup.Font = new System.Drawing.Font("Palatino Linotype", 8.25F);
341 this.RegionTeleportGroup.Location = new System.Drawing.Point(538, 79);
342 this.RegionTeleportGroup.Name = "RegionTeleportGroup";
343 this.RegionTeleportGroup.Size = new System.Drawing.Size(202, 89);
344 this.RegionTeleportGroup.TabIndex = 4;
345 this.RegionTeleportGroup.TabStop = false;
346 this.RegionTeleportGroup.Text = "Region Teleport";
347 //
348 // pictureBox6
349 //
350 this.pictureBox6.Cursor = System.Windows.Forms.Cursors.Help;
351 this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
352 this.pictureBox6.Location = new System.Drawing.Point(175, 58);
353 this.pictureBox6.Name = "pictureBox6";
354 this.pictureBox6.Size = new System.Drawing.Size(20, 20);
355 this.pictureBox6.TabIndex = 10;
356 this.pictureBox6.TabStop = false;
357 this.toolTip1.SetToolTip(this.pictureBox6, resources.GetString("pictureBox6.ToolTip"));
358 //
359 // LoadedRegionsBox
360 //
361 this.LoadedRegionsBox.DisplayMember = "Text";
362 this.LoadedRegionsBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
363 this.LoadedRegionsBox.Font = new System.Drawing.Font("Consolas", 8.25F);
364 this.LoadedRegionsBox.FormattingEnabled = true;
365 this.LoadedRegionsBox.Location = new System.Drawing.Point(6, 21);
366 this.LoadedRegionsBox.Name = "LoadedRegionsBox";
367 this.LoadedRegionsBox.Size = new System.Drawing.Size(190, 21);
368 this.LoadedRegionsBox.Sorted = true;
369 this.LoadedRegionsBox.TabIndex = 0;
370 this.LoadedRegionsBox.SelectedIndexChanged += new System.EventHandler(this.RegionSelected);
371 //
372 // CurrentRegionName
373 //
374 this.CurrentRegionName.AutoSize = true;
375 this.CurrentRegionName.Font = new System.Drawing.Font("Palatino Linotype", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
376 this.CurrentRegionName.Location = new System.Drawing.Point(216, 157);
377 this.CurrentRegionName.Name = "CurrentRegionName";
378 this.CurrentRegionName.Size = new System.Drawing.Size(140, 26);
379 this.CurrentRegionName.TabIndex = 7;
380 this.CurrentRegionName.Text = "Puguet Sound";
381 this.CurrentRegionName.Visible = false;
382 //
383 // CurrentRegionAt
384 //
385 this.CurrentRegionAt.AutoSize = true;
386 this.CurrentRegionAt.Location = new System.Drawing.Point(201, 161);
387 this.CurrentRegionAt.Name = "CurrentRegionAt";
388 this.CurrentRegionAt.Size = new System.Drawing.Size(16, 13);
389 this.CurrentRegionAt.TabIndex = 8;
390 this.CurrentRegionAt.Text = "at";
391 this.CurrentRegionAt.Visible = false;
392 //
393 // ExportCSVDialog
394 //
395 this.ExportCSVDialog.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
396 //
397 // VassalStatusGroup
398 //
399 this.VassalStatusGroup.Controls.Add(this.ConnectionStatusPictureBox);
400 this.VassalStatusGroup.Controls.Add(this.pictureBox2);
401 this.VassalStatusGroup.Controls.Add(this.VassalSettingsButton);
402 this.VassalStatusGroup.Font = new System.Drawing.Font("Palatino Linotype", 8.25F);
403 this.VassalStatusGroup.Location = new System.Drawing.Point(538, 12);
404 this.VassalStatusGroup.Name = "VassalStatusGroup";
405 this.VassalStatusGroup.Size = new System.Drawing.Size(202, 61);
406 this.VassalStatusGroup.TabIndex = 3;
407 this.VassalStatusGroup.TabStop = false;
408 this.VassalStatusGroup.Text = "Status";
409 //
410 // pictureBox2
411 //
412 this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Help;
413 this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
414 this.pictureBox2.Location = new System.Drawing.Point(175, 27);
415 this.pictureBox2.Name = "pictureBox2";
416 this.pictureBox2.Size = new System.Drawing.Size(20, 20);
417 this.pictureBox2.TabIndex = 11;
418 this.pictureBox2.TabStop = false;
419 this.toolTip1.SetToolTip(this.pictureBox2, "Before Vassal can work, Vassal must be\r\nconfigured by using the \"Settings...\"\r\nbu" +
420 "tton and configuring Vassal.");
421 //
422 // Version
423 //
424 this.Version.AutoSize = true;
425 this.Version.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
426 this.Version.Location = new System.Drawing.Point(280, 146);
427 this.Version.Name = "Version";
428 this.Version.Size = new System.Drawing.Size(97, 13);
429 this.Version.TabIndex = 9;
430 this.Version.Text = " ";
431 //
432 // toolTip1
433 //
434 this.toolTip1.AutoPopDelay = 32767;
435 this.toolTip1.InitialDelay = 500;
436 this.toolTip1.ReshowDelay = 100;
437 //
438 // pictureBox4
439 //
440 this.pictureBox4.Cursor = System.Windows.Forms.Cursors.Help;
441 this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
442 this.pictureBox4.Location = new System.Drawing.Point(174, 21);
443 this.pictureBox4.Name = "pictureBox4";
444 this.pictureBox4.Size = new System.Drawing.Size(20, 20);
445 this.pictureBox4.TabIndex = 12;
446 this.pictureBox4.TabStop = false;
447 this.toolTip1.SetToolTip(this.pictureBox4, "This option downloads the current region\r\nterrain given estate rights.");
448 //
449 // pictureBox7
450 //
451 this.pictureBox7.Cursor = System.Windows.Forms.Cursors.Help;
452 this.pictureBox7.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox7.Image")));
453 this.pictureBox7.Location = new System.Drawing.Point(174, 50);
454 this.pictureBox7.Name = "pictureBox7";
455 this.pictureBox7.Size = new System.Drawing.Size(20, 20);
456 this.pictureBox7.TabIndex = 12;
457 this.pictureBox7.TabStop = false;
458 this.toolTip1.SetToolTip(this.pictureBox7, "This option uploads a terrain height-map\r\nto the current region and applies it.");
459 //
460 // pictureBox5
461 //
462 this.pictureBox5.Cursor = System.Windows.Forms.Cursors.Help;
463 this.pictureBox5.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
464 this.pictureBox5.Location = new System.Drawing.Point(173, 22);
465 this.pictureBox5.Name = "pictureBox5";
466 this.pictureBox5.Size = new System.Drawing.Size(20, 20);
467 this.pictureBox5.TabIndex = 12;
468 this.pictureBox5.TabStop = false;
469 this.toolTip1.SetToolTip(this.pictureBox5, resources.GetString("pictureBox5.ToolTip"));
470 //
471 // pictureBox3
472 //
473 this.pictureBox3.Cursor = System.Windows.Forms.Cursors.Help;
474 this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
475 this.pictureBox3.Location = new System.Drawing.Point(461, 455);
476 this.pictureBox3.Name = "pictureBox3";
477 this.pictureBox3.Size = new System.Drawing.Size(20, 20);
478 this.pictureBox3.TabIndex = 11;
479 this.pictureBox3.TabStop = false;
480 this.toolTip1.SetToolTip(this.pictureBox3, resources.GetString("pictureBox3.ToolTip"));
481 //
482 // LoadRawFileDialog
483 //
484 this.LoadRawFileDialog.FileName = "openFileDialog1";
485 this.LoadRawFileDialog.Filter = "RAW (*.raw)|*.raw|All files (*.*)|*.*";
486 //
487 // SavePNGFileDialog
488 //
489 this.SavePNGFileDialog.Filter = "PNG (*.png)|*.png|All files (*.*)|*.*";
490 //
491 // SaveRawFileDialog
492 //
493 this.SaveRawFileDialog.Filter = "RAW (*.raw)|*.raw|All files (*.*)|*.*";
494 //
495 // EstateListsTab
496 //
497 this.EstateListsTab.Controls.Add(this.EstateListsGroupsGroup);
498 this.EstateListsTab.Controls.Add(this.EstateListsResidentsGroup);
499 this.EstateListsTab.Controls.Add(this.EstateListGroup);
500 this.EstateListsTab.Location = new System.Drawing.Point(4, 25);
501 this.EstateListsTab.Name = "EstateListsTab";
502 this.EstateListsTab.Size = new System.Drawing.Size(719, 489);
503 this.EstateListsTab.TabIndex = 6;
504 this.EstateListsTab.Text = "Estate Lists";
505 this.EstateListsTab.UseVisualStyleBackColor = true;
506 //
507 // groupBox11
508 //
509 this.groupBox11.Controls.Add(this.groupBox13);
510 this.groupBox11.Controls.Add(this.EstateTerrainDownloadUploadGroup);
511 this.groupBox11.Location = new System.Drawing.Point(246, 140);
512 this.groupBox11.Name = "groupBox11";
513 this.groupBox11.Size = new System.Drawing.Size(460, 116);
514 this.groupBox11.TabIndex = 0;
515 this.groupBox11.TabStop = false;
516 this.groupBox11.Text = "Terrain";
517 //
518 // groupBox13
519 //
520 this.groupBox13.Controls.Add(this.RipTerrainButton);
521 this.groupBox13.Controls.Add(this.pictureBox5);
522 this.groupBox13.Location = new System.Drawing.Point(219, 21);
523 this.groupBox13.Name = "groupBox13";
524 this.groupBox13.Size = new System.Drawing.Size(200, 56);
525 this.groupBox13.TabIndex = 14;
526 this.groupBox13.TabStop = false;
527 this.groupBox13.Text = "Override";
528 //
529 // RipTerrainButton
530 //
531 this.RipTerrainButton.Location = new System.Drawing.Point(73, 21);
532 this.RipTerrainButton.Name = "RipTerrainButton";
533 this.RipTerrainButton.Size = new System.Drawing.Size(94, 23);
534 this.RipTerrainButton.TabIndex = 1;
535 this.RipTerrainButton.Text = "Rip Terrain...";
536 this.RipTerrainButton.UseVisualStyleBackColor = true;
537 this.RipTerrainButton.Click += new System.EventHandler(this.RequestRipTerrain);
538 //
539 // EstateTerrainDownloadUploadGroup
540 //
541 this.EstateTerrainDownloadUploadGroup.Controls.Add(this.DownloadTerrainButton);
542 this.EstateTerrainDownloadUploadGroup.Controls.Add(this.pictureBox7);
543 this.EstateTerrainDownloadUploadGroup.Controls.Add(this.pictureBox4);
544 this.EstateTerrainDownloadUploadGroup.Controls.Add(this.UploadTerrainButton);
545 this.EstateTerrainDownloadUploadGroup.Enabled = false;
546 this.EstateTerrainDownloadUploadGroup.Location = new System.Drawing.Point(6, 21);
547 this.EstateTerrainDownloadUploadGroup.Name = "EstateTerrainDownloadUploadGroup";
548 this.EstateTerrainDownloadUploadGroup.Size = new System.Drawing.Size(200, 83);
549 this.EstateTerrainDownloadUploadGroup.TabIndex = 13;
550 this.EstateTerrainDownloadUploadGroup.TabStop = false;
551 this.EstateTerrainDownloadUploadGroup.Text = "Estate";
552 //
553 // DownloadTerrainButton
554 //
555 this.DownloadTerrainButton.Location = new System.Drawing.Point(47, 20);
556 this.DownloadTerrainButton.Name = "DownloadTerrainButton";
557 this.DownloadTerrainButton.Size = new System.Drawing.Size(121, 23);
558 this.DownloadTerrainButton.TabIndex = 0;
559 this.DownloadTerrainButton.Text = "Download Terrain...";
560 this.DownloadTerrainButton.UseVisualStyleBackColor = true;
561 this.DownloadTerrainButton.Click += new System.EventHandler(this.RequestDownloadTerrain);
562 //
563 // UploadTerrainButton
564 //
565 this.UploadTerrainButton.Location = new System.Drawing.Point(66, 49);
566 this.UploadTerrainButton.Name = "UploadTerrainButton";
567 this.UploadTerrainButton.Size = new System.Drawing.Size(102, 23);
568 this.UploadTerrainButton.TabIndex = 2;
569 this.UploadTerrainButton.Text = "Upload Terrain...";
570 this.UploadTerrainButton.UseVisualStyleBackColor = true;
571 this.UploadTerrainButton.Click += new System.EventHandler(this.RequestUploadTerrain);
572 //
573 // EstateTopTab
574 //
575 this.EstateTopTab.Controls.Add(this.groupBox14);
576 this.EstateTopTab.Controls.Add(this.groupBox12);
577 this.EstateTopTab.Location = new System.Drawing.Point(4, 25);
578 this.EstateTopTab.Name = "EstateTopTab";
579 this.EstateTopTab.Size = new System.Drawing.Size(719, 489);
580 this.EstateTopTab.TabIndex = 1;
581 this.EstateTopTab.Text = "Estate Top";
582 this.EstateTopTab.UseVisualStyleBackColor = true;
583 //
584 // groupBox14
585 //
586 this.groupBox14.Controls.Add(this.pictureBox16);
587 this.groupBox14.Controls.Add(this.label2);
588 this.groupBox14.Controls.Add(this.TopCollidersFilter);
589 this.groupBox14.Controls.Add(this.ReturnTopCollidersButton);
590 this.groupBox14.Controls.Add(this.button5);
591 this.groupBox14.Controls.Add(this.TopCollidersGridView);
592 this.groupBox14.Location = new System.Drawing.Point(7, 265);
593 this.groupBox14.Name = "groupBox14";
594 this.groupBox14.Size = new System.Drawing.Size(709, 221);
595 this.groupBox14.TabIndex = 9;
596 this.groupBox14.TabStop = false;
597 this.groupBox14.Text = "Top Colliders";
598 //
599 // label2
600 //
601 this.label2.AutoSize = true;
602 this.label2.Location = new System.Drawing.Point(8, 193);
603 this.label2.Name = "label2";
604 this.label2.Size = new System.Drawing.Size(36, 16);
605 this.label2.TabIndex = 13;
606 this.label2.Text = "Filter:";
607 //
608 // TopCollidersFilter
609 //
610 this.TopCollidersFilter.Location = new System.Drawing.Point(46, 190);
611 this.TopCollidersFilter.Name = "TopCollidersFilter";
612 this.TopCollidersFilter.Size = new System.Drawing.Size(196, 22);
613 this.TopCollidersFilter.TabIndex = 12;
614 this.TopCollidersFilter.TextChanged += new System.EventHandler(this.RequestFilterTopColliders);
615 //
616 // ReturnTopCollidersButton
617 //
618 this.ReturnTopCollidersButton.Location = new System.Drawing.Point(503, 190);
619 this.ReturnTopCollidersButton.Name = "ReturnTopCollidersButton";
620 this.ReturnTopCollidersButton.Size = new System.Drawing.Size(86, 23);
621 this.ReturnTopCollidersButton.TabIndex = 11;
622 this.ReturnTopCollidersButton.Text = "Return Objects";
623 this.ReturnTopCollidersButton.UseVisualStyleBackColor = true;
624 this.ReturnTopCollidersButton.Click += new System.EventHandler(this.RequestReturnTopCollidersObjects);
625 //
626 // button5
627 //
628 this.button5.Location = new System.Drawing.Point(595, 189);
629 this.button5.Name = "button5";
630 this.button5.Size = new System.Drawing.Size(75, 23);
631 this.button5.TabIndex = 10;
632 this.button5.Text = "Export...";
633 this.button5.UseVisualStyleBackColor = true;
634 this.button5.Click += new System.EventHandler(this.RequestExportTopColliders);
635 //
636 // TopCollidersGridView
637 //
638 this.TopCollidersGridView.AllowUserToAddRows = false;
639 this.TopCollidersGridView.AllowUserToDeleteRows = false;
640 this.TopCollidersGridView.AllowUserToOrderColumns = true;
641 this.TopCollidersGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
642 this.TopCollidersGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
643 this.TopCollidersScore,
644 this.TopCollidersTaskName,
645 this.TopCollidersUUID,
646 this.TopCollidersOwner,
647 this.TopCollidersPosition});
648 this.TopCollidersGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
649 this.TopCollidersGridView.Location = new System.Drawing.Point(6, 21);
650 this.TopCollidersGridView.Name = "TopCollidersGridView";
651 this.TopCollidersGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
652 this.TopCollidersGridView.Size = new System.Drawing.Size(698, 162);
653 this.TopCollidersGridView.TabIndex = 1;
654 //
655 // TopCollidersScore
656 //
657 this.TopCollidersScore.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
658 this.TopCollidersScore.HeaderText = "Score";
659 this.TopCollidersScore.Name = "TopCollidersScore";
660 //
661 // TopCollidersTaskName
662 //
663 this.TopCollidersTaskName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
664 this.TopCollidersTaskName.HeaderText = "Task Name";
665 this.TopCollidersTaskName.Name = "TopCollidersTaskName";
666 //
667 // TopCollidersUUID
668 //
669 this.TopCollidersUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
670 this.TopCollidersUUID.HeaderText = "UUID";
671 this.TopCollidersUUID.Name = "TopCollidersUUID";
672 //
673 // TopCollidersOwner
674 //
675 this.TopCollidersOwner.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
676 this.TopCollidersOwner.HeaderText = "Owner";
677 this.TopCollidersOwner.Name = "TopCollidersOwner";
678 //
679 // TopCollidersPosition
680 //
681 this.TopCollidersPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
682 this.TopCollidersPosition.HeaderText = "Position";
683 this.TopCollidersPosition.Name = "TopCollidersPosition";
684 //
685 // groupBox12
686 //
687 this.groupBox12.Controls.Add(this.pictureBox15);
688 this.groupBox12.Controls.Add(this.TopScriptsGridView);
689 this.groupBox12.Controls.Add(this.ReturnTopScriptsButton);
690 this.groupBox12.Controls.Add(this.label1);
691 this.groupBox12.Controls.Add(this.button3);
692 this.groupBox12.Controls.Add(this.TopScriptsFilter);
693 this.groupBox12.Location = new System.Drawing.Point(7, 4);
694 this.groupBox12.Name = "groupBox12";
695 this.groupBox12.Size = new System.Drawing.Size(702, 255);
696 this.groupBox12.TabIndex = 8;
697 this.groupBox12.TabStop = false;
698 this.groupBox12.Text = "Top Scripts";
699 //
700 // TopScriptsGridView
701 //
702 this.TopScriptsGridView.AllowUserToAddRows = false;
703 this.TopScriptsGridView.AllowUserToDeleteRows = false;
704 this.TopScriptsGridView.AllowUserToOrderColumns = true;
705 this.TopScriptsGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
706 this.TopScriptsGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
707 this.TopScriptsScore,
708 this.TopScriptsTaskName,
709 this.TopScriptsUUID,
710 this.TopScriptsOwner,
711 this.TopScriptsPosition});
712 this.TopScriptsGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
713 this.TopScriptsGridView.Location = new System.Drawing.Point(6, 21);
714 this.TopScriptsGridView.Name = "TopScriptsGridView";
715 this.TopScriptsGridView.ReadOnly = true;
716 this.TopScriptsGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
717 this.TopScriptsGridView.Size = new System.Drawing.Size(690, 199);
718 this.TopScriptsGridView.TabIndex = 0;
719 //
720 // TopScriptsScore
721 //
722 this.TopScriptsScore.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
723 this.TopScriptsScore.HeaderText = "Score";
724 this.TopScriptsScore.Name = "TopScriptsScore";
725 this.TopScriptsScore.ReadOnly = true;
726 //
727 // TopScriptsTaskName
728 //
729 this.TopScriptsTaskName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
730 this.TopScriptsTaskName.HeaderText = "Task Name";
731 this.TopScriptsTaskName.Name = "TopScriptsTaskName";
732 this.TopScriptsTaskName.ReadOnly = true;
733 //
734 // TopScriptsUUID
735 //
736 this.TopScriptsUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
737 this.TopScriptsUUID.HeaderText = "UUID";
738 this.TopScriptsUUID.Name = "TopScriptsUUID";
739 this.TopScriptsUUID.ReadOnly = true;
740 //
741 // TopScriptsOwner
742 //
743 this.TopScriptsOwner.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
744 this.TopScriptsOwner.HeaderText = "Owner";
745 this.TopScriptsOwner.Name = "TopScriptsOwner";
746 this.TopScriptsOwner.ReadOnly = true;
747 //
748 // TopScriptsPosition
749 //
750 this.TopScriptsPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
751 this.TopScriptsPosition.HeaderText = "Position";
752 this.TopScriptsPosition.Name = "TopScriptsPosition";
753 this.TopScriptsPosition.ReadOnly = true;
754 //
755 // ReturnTopScriptsButton
756 //
757 this.ReturnTopScriptsButton.Location = new System.Drawing.Point(503, 227);
758 this.ReturnTopScriptsButton.Name = "ReturnTopScriptsButton";
759 this.ReturnTopScriptsButton.Size = new System.Drawing.Size(86, 23);
760 this.ReturnTopScriptsButton.TabIndex = 2;
761 this.ReturnTopScriptsButton.Text = "Return Objects";
762 this.ReturnTopScriptsButton.UseVisualStyleBackColor = true;
763 this.ReturnTopScriptsButton.Click += new System.EventHandler(this.RequestReturnTopScriptsObjects);
764 //
765 // label1
766 //
767 this.label1.AutoSize = true;
768 this.label1.Location = new System.Drawing.Point(5, 230);
769 this.label1.Name = "label1";
770 this.label1.Size = new System.Drawing.Size(36, 16);
771 this.label1.TabIndex = 7;
772 this.label1.Text = "Filter:";
773 //
774 // button3
775 //
776 this.button3.Location = new System.Drawing.Point(595, 226);
777 this.button3.Name = "button3";
778 this.button3.Size = new System.Drawing.Size(75, 23);
779 this.button3.TabIndex = 1;
780 this.button3.Text = "Export...";
781 this.button3.UseVisualStyleBackColor = true;
782 this.button3.Click += new System.EventHandler(this.RequestExportTopScripts);
783 //
784 // TopScriptsFilter
785 //
786 this.TopScriptsFilter.Location = new System.Drawing.Point(43, 227);
787 this.TopScriptsFilter.Name = "TopScriptsFilter";
788 this.TopScriptsFilter.Size = new System.Drawing.Size(196, 22);
789 this.TopScriptsFilter.TabIndex = 6;
790 this.TopScriptsFilter.TextChanged += new System.EventHandler(this.RequestFilterTopScripts);
791 //
792 // BatchRestartTab
793 //
794 this.BatchRestartTab.Controls.Add(this.label3);
795 this.BatchRestartTab.Controls.Add(this.RegionRestartDelayBox);
796 this.BatchRestartTab.Controls.Add(this.pictureBox3);
797 this.BatchRestartTab.Controls.Add(this.BatchRestartButton);
798 this.BatchRestartTab.Controls.Add(this.BatchRestartGridView);
799 this.BatchRestartTab.Location = new System.Drawing.Point(4, 25);
800 this.BatchRestartTab.Name = "BatchRestartTab";
801 this.BatchRestartTab.Size = new System.Drawing.Size(719, 489);
802 this.BatchRestartTab.TabIndex = 3;
803 this.BatchRestartTab.Text = "Batch Restart";
804 this.BatchRestartTab.UseVisualStyleBackColor = true;
805 //
806 // label3
807 //
808 this.label3.AutoSize = true;
809 this.label3.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
810 this.label3.Location = new System.Drawing.Point(187, 458);
811 this.label3.Name = "label3";
812 this.label3.Size = new System.Drawing.Size(77, 16);
813 this.label3.TabIndex = 13;
814 this.label3.Text = "Restart Delay:";
815 //
816 // RegionRestartDelayBox
817 //
818 this.RegionRestartDelayBox.Location = new System.Drawing.Point(270, 455);
819 this.RegionRestartDelayBox.Name = "RegionRestartDelayBox";
820 this.RegionRestartDelayBox.Size = new System.Drawing.Size(72, 22);
821 this.RegionRestartDelayBox.TabIndex = 12;
822 //
823 // BatchRestartButton
824 //
825 this.BatchRestartButton.Location = new System.Drawing.Point(348, 454);
826 this.BatchRestartButton.Name = "BatchRestartButton";
827 this.BatchRestartButton.Size = new System.Drawing.Size(107, 23);
828 this.BatchRestartButton.TabIndex = 1;
829 this.BatchRestartButton.Text = "Batch Restart";
830 this.BatchRestartButton.UseVisualStyleBackColor = true;
831 this.BatchRestartButton.Click += new System.EventHandler(this.RequestBatchRestart);
832 //
833 // BatchRestartGridView
834 //
835 this.BatchRestartGridView.AllowUserToAddRows = false;
836 this.BatchRestartGridView.AllowUserToDeleteRows = false;
837 this.BatchRestartGridView.AllowUserToOrderColumns = true;
838 this.BatchRestartGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
839 this.BatchRestartGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
840 this.BatchRestartRegionName,
841 this.BatchRestartPosition});
842 this.BatchRestartGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
843 this.BatchRestartGridView.Location = new System.Drawing.Point(4, 4);
844 this.BatchRestartGridView.Name = "BatchRestartGridView";
845 this.BatchRestartGridView.ReadOnly = true;
846 this.BatchRestartGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
847 this.BatchRestartGridView.Size = new System.Drawing.Size(712, 441);
848 this.BatchRestartGridView.TabIndex = 0;
849 //
850 // BatchRestartRegionName
851 //
852 this.BatchRestartRegionName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
853 this.BatchRestartRegionName.HeaderText = "Region Name";
854 this.BatchRestartRegionName.Name = "BatchRestartRegionName";
855 this.BatchRestartRegionName.ReadOnly = true;
856 this.BatchRestartRegionName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
857 //
858 // BatchRestartPosition
859 //
860 this.BatchRestartPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
861 this.BatchRestartPosition.HeaderText = "Position";
862 this.BatchRestartPosition.Name = "BatchRestartPosition";
863 this.BatchRestartPosition.ReadOnly = true;
864 this.BatchRestartPosition.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
865 //
866 // ResidentListTab
867 //
868 this.ResidentListTab.Controls.Add(this.ResidentListBanGroup);
869 this.ResidentListTab.Controls.Add(this.label4);
870 this.ResidentListTab.Controls.Add(this.ResidentListFilter);
871 this.ResidentListTab.Controls.Add(this.ResidentListGridView);
872 this.ResidentListTab.Location = new System.Drawing.Point(4, 25);
873 this.ResidentListTab.Name = "ResidentListTab";
874 this.ResidentListTab.Size = new System.Drawing.Size(719, 489);
875 this.ResidentListTab.TabIndex = 4;
876 this.ResidentListTab.Text = "Resident List";
877 this.ResidentListTab.UseVisualStyleBackColor = true;
878 //
879 // ResidentListBanGroup
880 //
881 this.ResidentListBanGroup.Controls.Add(this.pictureBox17);
882 this.ResidentListBanGroup.Controls.Add(this.ResidentBanAllEstatesBox);
883 this.ResidentListBanGroup.Controls.Add(this.ResidentBanButton);
884 this.ResidentListBanGroup.Enabled = false;
885 this.ResidentListBanGroup.Location = new System.Drawing.Point(512, 426);
886 this.ResidentListBanGroup.Name = "ResidentListBanGroup";
887 this.ResidentListBanGroup.Size = new System.Drawing.Size(204, 60);
888 this.ResidentListBanGroup.TabIndex = 10;
889 this.ResidentListBanGroup.TabStop = false;
890 this.ResidentListBanGroup.Text = "Ban Residents";
891 //
892 // ResidentBanAllEstatesBox
893 //
894 this.ResidentBanAllEstatesBox.AutoSize = true;
895 this.ResidentBanAllEstatesBox.Location = new System.Drawing.Point(87, 23);
896 this.ResidentBanAllEstatesBox.Name = "ResidentBanAllEstatesBox";
897 this.ResidentBanAllEstatesBox.Size = new System.Drawing.Size(79, 20);
898 this.ResidentBanAllEstatesBox.TabIndex = 3;
899 this.ResidentBanAllEstatesBox.Text = "All Estates";
900 this.ResidentBanAllEstatesBox.UseVisualStyleBackColor = true;
901 //
902 // ResidentBanButton
903 //
904 this.ResidentBanButton.Location = new System.Drawing.Point(6, 21);
905 this.ResidentBanButton.Name = "ResidentBanButton";
906 this.ResidentBanButton.Size = new System.Drawing.Size(75, 23);
907 this.ResidentBanButton.TabIndex = 2;
908 this.ResidentBanButton.Text = "Ban";
909 this.ResidentBanButton.UseVisualStyleBackColor = true;
910 this.ResidentBanButton.Click += new System.EventHandler(this.RequestBanAgents);
911 //
912 // label4
913 //
914 this.label4.AutoSize = true;
915 this.label4.Location = new System.Drawing.Point(6, 429);
916 this.label4.Name = "label4";
917 this.label4.Size = new System.Drawing.Size(36, 16);
918 this.label4.TabIndex = 9;
919 this.label4.Text = "Filter:";
920 //
921 // ResidentListFilter
922 //
923 this.ResidentListFilter.Location = new System.Drawing.Point(44, 426);
924 this.ResidentListFilter.Name = "ResidentListFilter";
925 this.ResidentListFilter.Size = new System.Drawing.Size(196, 22);
926 this.ResidentListFilter.TabIndex = 8;
927 this.ResidentListFilter.TextChanged += new System.EventHandler(this.RequestFilterResidentList);
928 //
929 // ResidentListGridView
930 //
931 this.ResidentListGridView.AllowUserToAddRows = false;
932 this.ResidentListGridView.AllowUserToDeleteRows = false;
933 this.ResidentListGridView.AllowUserToOrderColumns = true;
934 this.ResidentListGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
935 this.ResidentListGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
936 this.ResidentListName,
937 this.ResidentListUUID,
938 this.ResidentListPosition});
939 this.ResidentListGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
940 this.ResidentListGridView.Location = new System.Drawing.Point(4, 4);
941 this.ResidentListGridView.Name = "ResidentListGridView";
942 this.ResidentListGridView.ReadOnly = true;
943 this.ResidentListGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
944 this.ResidentListGridView.Size = new System.Drawing.Size(712, 416);
945 this.ResidentListGridView.TabIndex = 0;
946 //
947 // ResidentListName
948 //
949 this.ResidentListName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
950 this.ResidentListName.HeaderText = "Name";
951 this.ResidentListName.Name = "ResidentListName";
952 this.ResidentListName.ReadOnly = true;
953 //
954 // ResidentListUUID
955 //
956 this.ResidentListUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
957 this.ResidentListUUID.HeaderText = "UUID";
958 this.ResidentListUUID.Name = "ResidentListUUID";
959 this.ResidentListUUID.ReadOnly = true;
960 //
961 // ResidentListPosition
962 //
963 this.ResidentListPosition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
964 this.ResidentListPosition.HeaderText = "Position";
965 this.ResidentListPosition.Name = "ResidentListPosition";
966 this.ResidentListPosition.ReadOnly = true;
967 //
968 // RegionsStateTab
969 //
970 this.RegionsStateTab.Controls.Add(this.RegionsStateGridView);
971 this.RegionsStateTab.Location = new System.Drawing.Point(4, 25);
972 this.RegionsStateTab.Name = "RegionsStateTab";
973 this.RegionsStateTab.Size = new System.Drawing.Size(719, 489);
974 this.RegionsStateTab.TabIndex = 5;
975 this.RegionsStateTab.Text = "Regions State";
976 this.RegionsStateTab.UseVisualStyleBackColor = true;
977 //
978 // RegionsStateGridView
979 //
980 this.RegionsStateGridView.AllowUserToAddRows = false;
981 this.RegionsStateGridView.AllowUserToDeleteRows = false;
982 this.RegionsStateGridView.AllowUserToOrderColumns = true;
983 this.RegionsStateGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
984 this.RegionsStateGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
985 this.RegionsStateRegionName,
986 this.RegionsStateLastState,
987 this.RegionsStateLastCheck});
988 this.RegionsStateGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
989 this.RegionsStateGridView.Location = new System.Drawing.Point(4, 4);
990 this.RegionsStateGridView.Name = "RegionsStateGridView";
991 this.RegionsStateGridView.ReadOnly = true;
992 this.RegionsStateGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
993 this.RegionsStateGridView.Size = new System.Drawing.Size(712, 482);
994 this.RegionsStateGridView.TabIndex = 1;
995 //
996 // RegionsStateRegionName
997 //
998 this.RegionsStateRegionName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
999 this.RegionsStateRegionName.HeaderText = "Region Name";
1000 this.RegionsStateRegionName.Name = "RegionsStateRegionName";
1001 this.RegionsStateRegionName.ReadOnly = true;
1002 this.RegionsStateRegionName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
1003 //
1004 // RegionsStateLastState
1005 //
1006 this.RegionsStateLastState.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
1007 this.RegionsStateLastState.HeaderText = "Last State";
1008 this.RegionsStateLastState.Name = "RegionsStateLastState";
1009 this.RegionsStateLastState.ReadOnly = true;
1010 this.RegionsStateLastState.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
1011 //
1012 // RegionsStateLastCheck
1013 //
1014 this.RegionsStateLastCheck.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
1015 this.RegionsStateLastCheck.HeaderText = "Last Check";
1016 this.RegionsStateLastCheck.Name = "RegionsStateLastCheck";
1017 this.RegionsStateLastCheck.ReadOnly = true;
1018 //
2 zed 1019 // OverviewTab
1020 //
1021 this.OverviewTab.Controls.Add(this.groupBox10);
1022 this.OverviewTab.Controls.Add(this.groupBox9);
1023 this.OverviewTab.Controls.Add(this.groupBox8);
1024 this.OverviewTab.Controls.Add(this.groupBox7);
1025 this.OverviewTab.Controls.Add(this.groupBox6);
1026 this.OverviewTab.Controls.Add(this.groupBox5);
1027 this.OverviewTab.Controls.Add(this.groupBox4);
1028 this.OverviewTab.Controls.Add(this.groupBox3);
1029 this.OverviewTab.Controls.Add(this.groupBox2);
5 eva 1030 this.OverviewTab.Location = new System.Drawing.Point(4, 25);
2 zed 1031 this.OverviewTab.Name = "OverviewTab";
1032 this.OverviewTab.Padding = new System.Windows.Forms.Padding(3);
8 eva 1033 this.OverviewTab.Size = new System.Drawing.Size(719, 489);
2 zed 1034 this.OverviewTab.TabIndex = 0;
1035 this.OverviewTab.Text = "Overview";
1036 this.OverviewTab.UseVisualStyleBackColor = true;
1037 //
1038 // groupBox10
1039 //
1040 this.groupBox10.Controls.Add(this.RegionAvatarsMap);
1041 this.groupBox10.Location = new System.Drawing.Point(6, 6);
1042 this.groupBox10.Name = "groupBox10";
8 eva 1043 this.groupBox10.Size = new System.Drawing.Size(462, 476);
2 zed 1044 this.groupBox10.TabIndex = 9;
1045 this.groupBox10.TabStop = false;
8 eva 1046 this.groupBox10.Text = "Map";
2 zed 1047 //
1048 // RegionAvatarsMap
1049 //
3 eva 1050 this.RegionAvatarsMap.BackColor = System.Drawing.Color.Black;
8 eva 1051 this.RegionAvatarsMap.Dock = System.Windows.Forms.DockStyle.Fill;
1052 this.RegionAvatarsMap.Location = new System.Drawing.Point(3, 18);
2 zed 1053 this.RegionAvatarsMap.Name = "RegionAvatarsMap";
8 eva 1054 this.RegionAvatarsMap.Size = new System.Drawing.Size(456, 455);
2 zed 1055 this.RegionAvatarsMap.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1056 this.RegionAvatarsMap.TabIndex = 0;
1057 this.RegionAvatarsMap.TabStop = false;
1058 //
1059 // groupBox9
1060 //
1061 this.groupBox9.Controls.Add(this.Objects);
1062 this.groupBox9.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1063 this.groupBox9.Location = new System.Drawing.Point(596, 6);
2 zed 1064 this.groupBox9.Name = "groupBox9";
1065 this.groupBox9.Size = new System.Drawing.Size(107, 49);
1066 this.groupBox9.TabIndex = 8;
1067 this.groupBox9.TabStop = false;
1068 this.groupBox9.Text = "Objects";
1069 //
1070 // Objects
1071 //
1072 this.Objects.AutoSize = true;
4 vero 1073 this.Objects.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1074 this.Objects.Location = new System.Drawing.Point(9, 21);
2 zed 1075 this.Objects.Name = "Objects";
4 vero 1076 this.Objects.Size = new System.Drawing.Size(32, 18);
2 zed 1077 this.Objects.TabIndex = 0;
1078 this.Objects.Text = " ";
1079 //
1080 // groupBox8
1081 //
1082 this.groupBox8.Controls.Add(this.ScriptTime);
1083 this.groupBox8.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1084 this.groupBox8.Location = new System.Drawing.Point(596, 116);
2 zed 1085 this.groupBox8.Name = "groupBox8";
1086 this.groupBox8.Size = new System.Drawing.Size(107, 49);
1087 this.groupBox8.TabIndex = 7;
1088 this.groupBox8.TabStop = false;
1089 this.groupBox8.Text = "Script Time";
1090 //
1091 // ScriptTime
1092 //
1093 this.ScriptTime.AutoSize = true;
4 vero 1094 this.ScriptTime.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1095 this.ScriptTime.Location = new System.Drawing.Point(12, 21);
2 zed 1096 this.ScriptTime.Name = "ScriptTime";
4 vero 1097 this.ScriptTime.Size = new System.Drawing.Size(32, 18);
2 zed 1098 this.ScriptTime.TabIndex = 0;
1099 this.ScriptTime.Text = " ";
1100 //
1101 // groupBox7
1102 //
1103 this.groupBox7.Controls.Add(this.ActiveScripts);
1104 this.groupBox7.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1105 this.groupBox7.Location = new System.Drawing.Point(483, 116);
2 zed 1106 this.groupBox7.Name = "groupBox7";
1107 this.groupBox7.Size = new System.Drawing.Size(107, 49);
1108 this.groupBox7.TabIndex = 6;
1109 this.groupBox7.TabStop = false;
1110 this.groupBox7.Text = "Active Scripts";
1111 //
1112 // ActiveScripts
1113 //
1114 this.ActiveScripts.AutoSize = true;
4 vero 1115 this.ActiveScripts.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1116 this.ActiveScripts.Location = new System.Drawing.Point(9, 21);
2 zed 1117 this.ActiveScripts.Name = "ActiveScripts";
4 vero 1118 this.ActiveScripts.Size = new System.Drawing.Size(32, 18);
2 zed 1119 this.ActiveScripts.TabIndex = 0;
1120 this.ActiveScripts.Text = " ";
1121 //
1122 // groupBox6
1123 //
1124 this.groupBox6.Controls.Add(this.PhysicsFPS);
1125 this.groupBox6.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1126 this.groupBox6.Location = new System.Drawing.Point(596, 61);
2 zed 1127 this.groupBox6.Name = "groupBox6";
1128 this.groupBox6.Size = new System.Drawing.Size(107, 49);
1129 this.groupBox6.TabIndex = 5;
1130 this.groupBox6.TabStop = false;
1131 this.groupBox6.Text = "Physics FPS";
1132 //
1133 // PhysicsFPS
1134 //
1135 this.PhysicsFPS.AutoSize = true;
4 vero 1136 this.PhysicsFPS.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1137 this.PhysicsFPS.Location = new System.Drawing.Point(9, 21);
2 zed 1138 this.PhysicsFPS.Name = "PhysicsFPS";
4 vero 1139 this.PhysicsFPS.Size = new System.Drawing.Size(32, 18);
2 zed 1140 this.PhysicsFPS.TabIndex = 0;
1141 this.PhysicsFPS.Text = " ";
1142 //
1143 // groupBox5
1144 //
1145 this.groupBox5.Controls.Add(this.FPS);
1146 this.groupBox5.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1147 this.groupBox5.Location = new System.Drawing.Point(483, 61);
2 zed 1148 this.groupBox5.Name = "groupBox5";
1149 this.groupBox5.Size = new System.Drawing.Size(107, 49);
1150 this.groupBox5.TabIndex = 4;
1151 this.groupBox5.TabStop = false;
1152 this.groupBox5.Text = "FPS";
1153 //
1154 // FPS
1155 //
1156 this.FPS.AutoSize = true;
4 vero 1157 this.FPS.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1158 this.FPS.Location = new System.Drawing.Point(12, 21);
2 zed 1159 this.FPS.Name = "FPS";
4 vero 1160 this.FPS.Size = new System.Drawing.Size(32, 18);
2 zed 1161 this.FPS.TabIndex = 0;
1162 this.FPS.Text = " ";
1163 //
1164 // groupBox4
1165 //
1166 this.groupBox4.Controls.Add(this.Dilation);
1167 this.groupBox4.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1168 this.groupBox4.Location = new System.Drawing.Point(596, 171);
2 zed 1169 this.groupBox4.Name = "groupBox4";
1170 this.groupBox4.Size = new System.Drawing.Size(107, 49);
1171 this.groupBox4.TabIndex = 3;
1172 this.groupBox4.TabStop = false;
1173 this.groupBox4.Text = "Time Dilation";
1174 //
1175 // Dilation
1176 //
1177 this.Dilation.AutoSize = true;
4 vero 1178 this.Dilation.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1179 this.Dilation.Location = new System.Drawing.Point(9, 21);
2 zed 1180 this.Dilation.Name = "Dilation";
4 vero 1181 this.Dilation.Size = new System.Drawing.Size(32, 18);
2 zed 1182 this.Dilation.TabIndex = 0;
1183 this.Dilation.Text = " ";
1184 //
1185 // groupBox3
1186 //
1187 this.groupBox3.Controls.Add(this.LastLag);
1188 this.groupBox3.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1189 this.groupBox3.Location = new System.Drawing.Point(483, 171);
2 zed 1190 this.groupBox3.Name = "groupBox3";
1191 this.groupBox3.Size = new System.Drawing.Size(107, 49);
1192 this.groupBox3.TabIndex = 2;
1193 this.groupBox3.TabStop = false;
1194 this.groupBox3.Text = "LastLag";
1195 //
1196 // LastLag
1197 //
1198 this.LastLag.AutoSize = true;
4 vero 1199 this.LastLag.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1200 this.LastLag.Location = new System.Drawing.Point(12, 21);
2 zed 1201 this.LastLag.Name = "LastLag";
4 vero 1202 this.LastLag.Size = new System.Drawing.Size(32, 18);
2 zed 1203 this.LastLag.TabIndex = 0;
1204 this.LastLag.Text = " ";
1205 //
1206 // groupBox2
1207 //
1208 this.groupBox2.Controls.Add(this.Agents);
1209 this.groupBox2.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
8 eva 1210 this.groupBox2.Location = new System.Drawing.Point(483, 6);
2 zed 1211 this.groupBox2.Name = "groupBox2";
1212 this.groupBox2.Size = new System.Drawing.Size(107, 49);
1213 this.groupBox2.TabIndex = 1;
1214 this.groupBox2.TabStop = false;
1215 this.groupBox2.Text = "Agents";
1216 //
1217 // Agents
1218 //
1219 this.Agents.AutoSize = true;
4 vero 1220 this.Agents.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1221 this.Agents.Location = new System.Drawing.Point(12, 21);
2 zed 1222 this.Agents.Name = "Agents";
4 vero 1223 this.Agents.Size = new System.Drawing.Size(32, 18);
2 zed 1224 this.Agents.TabIndex = 0;
1225 this.Agents.Text = " ";
1226 //
8 eva 1227 // Tabs
7 zed 1228 //
8 eva 1229 this.Tabs.Controls.Add(this.OverviewTab);
1230 this.Tabs.Controls.Add(this.ResidentListTab);
1231 this.Tabs.Controls.Add(this.RegionsStateTab);
1232 this.Tabs.Controls.Add(this.BatchRestartTab);
1233 this.Tabs.Controls.Add(this.EstateTopTab);
1234 this.Tabs.Controls.Add(this.EstateListsTab);
1235 this.Tabs.Controls.Add(this.EstateTexturesTab);
1236 this.Tabs.Controls.Add(this.RegionToolsTab);
1237 this.Tabs.Enabled = false;
1238 this.Tabs.Font = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1239 this.Tabs.Location = new System.Drawing.Point(13, 186);
1240 this.Tabs.Name = "Tabs";
1241 this.Tabs.SelectedIndex = 0;
1242 this.Tabs.Size = new System.Drawing.Size(727, 518);
1243 this.Tabs.TabIndex = 1;
1244 this.Tabs.SelectedIndexChanged += new System.EventHandler(this.RequestTabsChanged);
1245 this.Tabs.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.RequestSelecting);
7 zed 1246 //
8 eva 1247 // ConnectionStatusPictureBox
7 zed 1248 //
8 eva 1249 this.ConnectionStatusPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("ConnectionStatusPictureBox.Image")));
1250 this.ConnectionStatusPictureBox.Location = new System.Drawing.Point(6, 19);
1251 this.ConnectionStatusPictureBox.Name = "ConnectionStatusPictureBox";
1252 this.ConnectionStatusPictureBox.Size = new System.Drawing.Size(36, 36);
1253 this.ConnectionStatusPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1254 this.ConnectionStatusPictureBox.TabIndex = 12;
1255 this.ConnectionStatusPictureBox.TabStop = false;
7 zed 1256 //
8 eva 1257 // EstateListGridView
7 zed 1258 //
8 eva 1259 this.EstateListGridView.AllowUserToAddRows = false;
1260 this.EstateListGridView.AllowUserToDeleteRows = false;
1261 this.EstateListGridView.AllowUserToOrderColumns = true;
1262 this.EstateListGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
1263 this.EstateListGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
1264 this.EstateListName,
1265 this.EstateListUUID});
1266 this.EstateListGridView.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1267 this.EstateListGridView.Location = new System.Drawing.Point(6, 54);
1268 this.EstateListGridView.Name = "EstateListGridView";
1269 this.EstateListGridView.ReadOnly = true;
1270 this.EstateListGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
1271 this.EstateListGridView.Size = new System.Drawing.Size(701, 273);
1272 this.EstateListGridView.TabIndex = 1;
7 zed 1273 //
8 eva 1274 // EstateListSelectBox
7 zed 1275 //
8 eva 1276 this.EstateListSelectBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1277 this.EstateListSelectBox.FormattingEnabled = true;
1278 this.EstateListSelectBox.Items.AddRange(new object[] {
1279 "ban",
1280 "group",
1281 "manager",
1282 "user"});
1283 this.EstateListSelectBox.Location = new System.Drawing.Point(560, 20);
1284 this.EstateListSelectBox.Name = "EstateListSelectBox";
1285 this.EstateListSelectBox.Size = new System.Drawing.Size(121, 24);
1286 this.EstateListSelectBox.TabIndex = 2;
1287 this.EstateListSelectBox.SelectedIndexChanged += new System.EventHandler(this.EstateListSelected);
7 zed 1288 //
8 eva 1289 // EstateListsAddResidentButton
7 zed 1290 //
8 eva 1291 this.EstateListsAddResidentButton.Location = new System.Drawing.Point(214, 82);
1292 this.EstateListsAddResidentButton.Name = "EstateListsAddResidentButton";
1293 this.EstateListsAddResidentButton.Size = new System.Drawing.Size(100, 23);
1294 this.EstateListsAddResidentButton.TabIndex = 3;
1295 this.EstateListsAddResidentButton.Text = "Add Resident";
1296 this.EstateListsAddResidentButton.UseVisualStyleBackColor = true;
1297 this.EstateListsAddResidentButton.Click += new System.EventHandler(this.RequestEstateListsAddResident);
7 zed 1298 //
8 eva 1299 // RemoveEstateListMemberButton
7 zed 1300 //
8 eva 1301 this.RemoveEstateListMemberButton.Location = new System.Drawing.Point(494, 333);
1302 this.RemoveEstateListMemberButton.Name = "RemoveEstateListMemberButton";
1303 this.RemoveEstateListMemberButton.Size = new System.Drawing.Size(100, 23);
1304 this.RemoveEstateListMemberButton.TabIndex = 4;
1305 this.RemoveEstateListMemberButton.Text = "Remove";
1306 this.RemoveEstateListMemberButton.UseVisualStyleBackColor = true;
1307 this.RemoveEstateListMemberButton.Click += new System.EventHandler(this.RequestRemoveEstateListMember);
7 zed 1308 //
8 eva 1309 // EstateListsResidentFirstName
7 zed 1310 //
8 eva 1311 this.EstateListsResidentFirstName.Location = new System.Drawing.Point(6, 21);
1312 this.EstateListsResidentFirstName.Name = "EstateListsResidentFirstName";
1313 this.EstateListsResidentFirstName.Size = new System.Drawing.Size(152, 22);
1314 this.EstateListsResidentFirstName.TabIndex = 6;
7 zed 1315 //
8 eva 1316 // pictureBox8
7 zed 1317 //
8 eva 1318 this.pictureBox8.Cursor = System.Windows.Forms.Cursors.Help;
1319 this.pictureBox8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox8.Image")));
1320 this.pictureBox8.Location = new System.Drawing.Point(687, 21);
1321 this.pictureBox8.Name = "pictureBox8";
1322 this.pictureBox8.Size = new System.Drawing.Size(20, 20);
1323 this.pictureBox8.TabIndex = 11;
1324 this.pictureBox8.TabStop = false;
1325 this.toolTip1.SetToolTip(this.pictureBox8, "Select an estate list from the drop-down\r\nin order to populate the list.");
7 zed 1326 //
8 eva 1327 // RegionToolsTab
7 zed 1328 //
8 eva 1329 this.RegionToolsTab.Controls.Add(this.RegionToolsRegionInfoGroup);
1330 this.RegionToolsTab.Controls.Add(this.RegionToolsRegionDebugGroup);
1331 this.RegionToolsTab.Controls.Add(this.groupBox11);
1332 this.RegionToolsTab.Location = new System.Drawing.Point(4, 25);
1333 this.RegionToolsTab.Name = "RegionToolsTab";
1334 this.RegionToolsTab.Size = new System.Drawing.Size(719, 489);
1335 this.RegionToolsTab.TabIndex = 7;
1336 this.RegionToolsTab.Text = "Region Tools";
1337 this.RegionToolsTab.UseVisualStyleBackColor = true;
7 zed 1338 //
8 eva 1339 // groupBox15
7 zed 1340 //
8 eva 1341 this.groupBox15.Controls.Add(this.EstateListsResidentFirstName);
1342 this.groupBox15.Location = new System.Drawing.Point(6, 21);
1343 this.groupBox15.Name = "groupBox15";
1344 this.groupBox15.Size = new System.Drawing.Size(164, 54);
1345 this.groupBox15.TabIndex = 12;
1346 this.groupBox15.TabStop = false;
1347 this.groupBox15.Text = "First Name";
7 zed 1348 //
8 eva 1349 // groupBox16
7 zed 1350 //
8 eva 1351 this.groupBox16.Controls.Add(this.EstateListsResidentLastName);
1352 this.groupBox16.Location = new System.Drawing.Point(176, 21);
1353 this.groupBox16.Name = "groupBox16";
1354 this.groupBox16.Size = new System.Drawing.Size(164, 54);
1355 this.groupBox16.TabIndex = 13;
1356 this.groupBox16.TabStop = false;
1357 this.groupBox16.Text = "Last Name";
7 zed 1358 //
8 eva 1359 // EstateListsResidentLastName
7 zed 1360 //
8 eva 1361 this.EstateListsResidentLastName.Location = new System.Drawing.Point(6, 21);
1362 this.EstateListsResidentLastName.Name = "EstateListsResidentLastName";
1363 this.EstateListsResidentLastName.Size = new System.Drawing.Size(152, 22);
1364 this.EstateListsResidentLastName.TabIndex = 6;
7 zed 1365 //
8 eva 1366 // EstateListGroup
7 zed 1367 //
8 eva 1368 this.EstateListGroup.Controls.Add(this.button9);
1369 this.EstateListGroup.Controls.Add(this.pictureBox9);
1370 this.EstateListGroup.Controls.Add(this.label6);
1371 this.EstateListGroup.Controls.Add(this.EstateListFilter);
1372 this.EstateListGroup.Controls.Add(this.label5);
1373 this.EstateListGroup.Controls.Add(this.EstateListGridView);
1374 this.EstateListGroup.Controls.Add(this.RemoveEstateListMemberButton);
1375 this.EstateListGroup.Controls.Add(this.EstateListSelectBox);
1376 this.EstateListGroup.Controls.Add(this.pictureBox8);
1377 this.EstateListGroup.Location = new System.Drawing.Point(3, 3);
1378 this.EstateListGroup.Name = "EstateListGroup";
1379 this.EstateListGroup.Size = new System.Drawing.Size(713, 364);
1380 this.EstateListGroup.TabIndex = 14;
1381 this.EstateListGroup.TabStop = false;
1382 this.EstateListGroup.Text = "Estate List";
7 zed 1383 //
8 eva 1384 // EstateListsResidentsGroup
7 zed 1385 //
8 eva 1386 this.EstateListsResidentsGroup.Controls.Add(this.button4);
1387 this.EstateListsResidentsGroup.Controls.Add(this.pictureBox11);
1388 this.EstateListsResidentsGroup.Controls.Add(this.groupBox15);
1389 this.EstateListsResidentsGroup.Controls.Add(this.EstateListsAddResidentButton);
1390 this.EstateListsResidentsGroup.Controls.Add(this.groupBox16);
1391 this.EstateListsResidentsGroup.Enabled = false;
1392 this.EstateListsResidentsGroup.Location = new System.Drawing.Point(9, 373);
1393 this.EstateListsResidentsGroup.Name = "EstateListsResidentsGroup";
1394 this.EstateListsResidentsGroup.Size = new System.Drawing.Size(351, 113);
1395 this.EstateListsResidentsGroup.TabIndex = 15;
1396 this.EstateListsResidentsGroup.TabStop = false;
1397 this.EstateListsResidentsGroup.Text = "Residents";
7 zed 1398 //
8 eva 1399 // EstateListsGroupsGroup
7 zed 1400 //
8 eva 1401 this.EstateListsGroupsGroup.Controls.Add(this.button6);
1402 this.EstateListsGroupsGroup.Controls.Add(this.pictureBox10);
1403 this.EstateListsGroupsGroup.Controls.Add(this.button7);
1404 this.EstateListsGroupsGroup.Controls.Add(this.EstateListsAddGroupBox);
1405 this.EstateListsGroupsGroup.Enabled = false;
1406 this.EstateListsGroupsGroup.Location = new System.Drawing.Point(367, 374);
1407 this.EstateListsGroupsGroup.Name = "EstateListsGroupsGroup";
1408 this.EstateListsGroupsGroup.Size = new System.Drawing.Size(343, 112);
1409 this.EstateListsGroupsGroup.TabIndex = 16;
1410 this.EstateListsGroupsGroup.TabStop = false;
1411 this.EstateListsGroupsGroup.Text = "Groups";
7 zed 1412 //
8 eva 1413 // EstateListsAddGroupBox
7 zed 1414 //
8 eva 1415 this.EstateListsAddGroupBox.Location = new System.Drawing.Point(7, 22);
1416 this.EstateListsAddGroupBox.Name = "EstateListsAddGroupBox";
1417 this.EstateListsAddGroupBox.Size = new System.Drawing.Size(330, 22);
1418 this.EstateListsAddGroupBox.TabIndex = 0;
7 zed 1419 //
8 eva 1420 // button7
7 zed 1421 //
8 eva 1422 this.button7.Location = new System.Drawing.Point(236, 51);
1423 this.button7.Name = "button7";
1424 this.button7.Size = new System.Drawing.Size(75, 23);
1425 this.button7.TabIndex = 1;
1426 this.button7.Text = "Add Group";
1427 this.button7.UseVisualStyleBackColor = true;
1428 this.button7.Click += new System.EventHandler(this.RequestEstateListsAddGroup);
7 zed 1429 //
8 eva 1430 // label5
7 zed 1431 //
8 eva 1432 this.label5.AutoSize = true;
1433 this.label5.Location = new System.Drawing.Point(494, 24);
1434 this.label5.Name = "label5";
1435 this.label5.Size = new System.Drawing.Size(63, 16);
1436 this.label5.TabIndex = 12;
1437 this.label5.Text = "Select List:";
7 zed 1438 //
8 eva 1439 // label6
7 zed 1440 //
8 eva 1441 this.label6.AutoSize = true;
1442 this.label6.Location = new System.Drawing.Point(6, 338);
1443 this.label6.Name = "label6";
1444 this.label6.Size = new System.Drawing.Size(36, 16);
1445 this.label6.TabIndex = 14;
1446 this.label6.Text = "Filter:";
7 zed 1447 //
8 eva 1448 // EstateListFilter
7 zed 1449 //
8 eva 1450 this.EstateListFilter.Location = new System.Drawing.Point(44, 335);
1451 this.EstateListFilter.Name = "EstateListFilter";
1452 this.EstateListFilter.Size = new System.Drawing.Size(196, 22);
1453 this.EstateListFilter.TabIndex = 13;
1454 this.EstateListFilter.TextChanged += new System.EventHandler(this.RequestFilterEstateList);
7 zed 1455 //
8 eva 1456 // EstateListName
7 zed 1457 //
8 eva 1458 this.EstateListName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
1459 this.EstateListName.HeaderText = "Name";
1460 this.EstateListName.Name = "EstateListName";
1461 this.EstateListName.ReadOnly = true;
7 zed 1462 //
8 eva 1463 // EstateListUUID
7 zed 1464 //
8 eva 1465 this.EstateListUUID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
1466 this.EstateListUUID.HeaderText = "UUID";
1467 this.EstateListUUID.Name = "EstateListUUID";
1468 this.EstateListUUID.ReadOnly = true;
7 zed 1469 //
8 eva 1470 // RegionToolsRegionDebugGroup
7 zed 1471 //
8 eva 1472 this.RegionToolsRegionDebugGroup.Controls.Add(this.pictureBox14);
1473 this.RegionToolsRegionDebugGroup.Controls.Add(this.ApplyRegionDebugButton);
1474 this.RegionToolsRegionDebugGroup.Controls.Add(this.RegionDebugPhysicsBox);
1475 this.RegionToolsRegionDebugGroup.Controls.Add(this.RegionDebugCollisionsBox);
1476 this.RegionToolsRegionDebugGroup.Controls.Add(this.RegionDebugScriptsBox);
1477 this.RegionToolsRegionDebugGroup.Enabled = false;
1478 this.RegionToolsRegionDebugGroup.Location = new System.Drawing.Point(12, 12);
1479 this.RegionToolsRegionDebugGroup.Name = "RegionToolsRegionDebugGroup";
1480 this.RegionToolsRegionDebugGroup.Size = new System.Drawing.Size(228, 82);
1481 this.RegionToolsRegionDebugGroup.TabIndex = 1;
1482 this.RegionToolsRegionDebugGroup.TabStop = false;
1483 this.RegionToolsRegionDebugGroup.Text = "Region Debug";
7 zed 1484 //
8 eva 1485 // RegionDebugScriptsBox
2 zed 1486 //
8 eva 1487 this.RegionDebugScriptsBox.AutoSize = true;
1488 this.RegionDebugScriptsBox.Location = new System.Drawing.Point(6, 21);
1489 this.RegionDebugScriptsBox.Name = "RegionDebugScriptsBox";
1490 this.RegionDebugScriptsBox.Size = new System.Drawing.Size(61, 20);
1491 this.RegionDebugScriptsBox.TabIndex = 0;
1492 this.RegionDebugScriptsBox.Text = "Scripts";
1493 this.RegionDebugScriptsBox.UseVisualStyleBackColor = true;
2 zed 1494 //
8 eva 1495 // RegionDebugCollisionsBox
3 eva 1496 //
8 eva 1497 this.RegionDebugCollisionsBox.AutoSize = true;
1498 this.RegionDebugCollisionsBox.Location = new System.Drawing.Point(73, 21);
1499 this.RegionDebugCollisionsBox.Name = "RegionDebugCollisionsBox";
1500 this.RegionDebugCollisionsBox.Size = new System.Drawing.Size(77, 20);
1501 this.RegionDebugCollisionsBox.TabIndex = 1;
1502 this.RegionDebugCollisionsBox.Text = "Collisions";
1503 this.RegionDebugCollisionsBox.UseVisualStyleBackColor = true;
3 eva 1504 //
8 eva 1505 // RegionDebugPhysicsBox
3 eva 1506 //
8 eva 1507 this.RegionDebugPhysicsBox.AutoSize = true;
1508 this.RegionDebugPhysicsBox.Location = new System.Drawing.Point(156, 21);
1509 this.RegionDebugPhysicsBox.Name = "RegionDebugPhysicsBox";
1510 this.RegionDebugPhysicsBox.Size = new System.Drawing.Size(66, 20);
1511 this.RegionDebugPhysicsBox.TabIndex = 2;
1512 this.RegionDebugPhysicsBox.Text = "Physics";
1513 this.RegionDebugPhysicsBox.UseVisualStyleBackColor = true;
3 eva 1514 //
8 eva 1515 // ApplyRegionDebugButton
3 eva 1516 //
8 eva 1517 this.ApplyRegionDebugButton.Location = new System.Drawing.Point(121, 47);
1518 this.ApplyRegionDebugButton.Name = "ApplyRegionDebugButton";
1519 this.ApplyRegionDebugButton.Size = new System.Drawing.Size(75, 23);
1520 this.ApplyRegionDebugButton.TabIndex = 3;
1521 this.ApplyRegionDebugButton.Text = "Apply";
1522 this.ApplyRegionDebugButton.UseVisualStyleBackColor = true;
1523 this.ApplyRegionDebugButton.Click += new System.EventHandler(this.RequestRegionDebugApply);
3 eva 1524 //
8 eva 1525 // RegionToolsRegionInfoGroup
3 eva 1526 //
8 eva 1527 this.RegionToolsRegionInfoGroup.Controls.Add(this.pictureBox13);
1528 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoMatureBox);
1529 this.RegionToolsRegionInfoGroup.Controls.Add(this.groupBox19);
1530 this.RegionToolsRegionInfoGroup.Controls.Add(this.groupBox18);
1531 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoParcelBox);
1532 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoTerraformBox);
1533 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoPushBox);
1534 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegioninfoResellBox);
1535 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoDamageBox);
1536 this.RegionToolsRegionInfoGroup.Controls.Add(this.RegionInfoFlyBox);
1537 this.RegionToolsRegionInfoGroup.Controls.Add(this.ApplyRegionInfoButton);
1538 this.RegionToolsRegionInfoGroup.Enabled = false;
1539 this.RegionToolsRegionInfoGroup.Location = new System.Drawing.Point(246, 12);
1540 this.RegionToolsRegionInfoGroup.Name = "RegionToolsRegionInfoGroup";
1541 this.RegionToolsRegionInfoGroup.Size = new System.Drawing.Size(460, 122);
1542 this.RegionToolsRegionInfoGroup.TabIndex = 2;
1543 this.RegionToolsRegionInfoGroup.TabStop = false;
1544 this.RegionToolsRegionInfoGroup.Text = "Set Region Info";
3 eva 1545 //
8 eva 1546 // ApplyRegionInfoButton
2 zed 1547 //
8 eva 1548 this.ApplyRegionInfoButton.Location = new System.Drawing.Point(350, 75);
1549 this.ApplyRegionInfoButton.Name = "ApplyRegionInfoButton";
1550 this.ApplyRegionInfoButton.Size = new System.Drawing.Size(75, 23);
1551 this.ApplyRegionInfoButton.TabIndex = 0;
1552 this.ApplyRegionInfoButton.Text = "Apply";
1553 this.ApplyRegionInfoButton.UseVisualStyleBackColor = true;
1554 this.ApplyRegionInfoButton.Click += new System.EventHandler(this.RequestApplyRegionInfo);
2 zed 1555 //
8 eva 1556 // RegionInfoFlyBox
2 zed 1557 //
8 eva 1558 this.RegionInfoFlyBox.AutoSize = true;
1559 this.RegionInfoFlyBox.Location = new System.Drawing.Point(414, 30);
1560 this.RegionInfoFlyBox.Name = "RegionInfoFlyBox";
1561 this.RegionInfoFlyBox.Size = new System.Drawing.Size(43, 20);
1562 this.RegionInfoFlyBox.TabIndex = 1;
1563 this.RegionInfoFlyBox.Text = "Fly";
1564 this.RegionInfoFlyBox.UseVisualStyleBackColor = true;
2 zed 1565 //
8 eva 1566 // RegionInfoDamageBox
2 zed 1567 //
8 eva 1568 this.RegionInfoDamageBox.AutoSize = true;
1569 this.RegionInfoDamageBox.Location = new System.Drawing.Point(150, 29);
1570 this.RegionInfoDamageBox.Name = "RegionInfoDamageBox";
1571 this.RegionInfoDamageBox.Size = new System.Drawing.Size(68, 20);
1572 this.RegionInfoDamageBox.TabIndex = 2;
1573 this.RegionInfoDamageBox.Text = "Damage";
1574 this.RegionInfoDamageBox.UseVisualStyleBackColor = true;
2 zed 1575 //
8 eva 1576 // RegioninfoResellBox
2 zed 1577 //
8 eva 1578 this.RegioninfoResellBox.AutoSize = true;
1579 this.RegioninfoResellBox.Location = new System.Drawing.Point(87, 30);
1580 this.RegioninfoResellBox.Name = "RegioninfoResellBox";
1581 this.RegioninfoResellBox.Size = new System.Drawing.Size(57, 20);
1582 this.RegioninfoResellBox.TabIndex = 3;
1583 this.RegioninfoResellBox.Text = "Resell";
1584 this.RegioninfoResellBox.UseVisualStyleBackColor = true;
2 zed 1585 //
8 eva 1586 // RegionInfoPushBox
2 zed 1587 //
8 eva 1588 this.RegionInfoPushBox.AutoSize = true;
1589 this.RegionInfoPushBox.Location = new System.Drawing.Point(293, 30);
1590 this.RegionInfoPushBox.Name = "RegionInfoPushBox";
1591 this.RegionInfoPushBox.Size = new System.Drawing.Size(51, 20);
1592 this.RegionInfoPushBox.TabIndex = 4;
1593 this.RegionInfoPushBox.Text = "Push";
1594 this.RegionInfoPushBox.UseVisualStyleBackColor = true;
2 zed 1595 //
8 eva 1596 // RegionInfoTerraformBox
2 zed 1597 //
8 eva 1598 this.RegionInfoTerraformBox.AutoSize = true;
1599 this.RegionInfoTerraformBox.Location = new System.Drawing.Point(6, 30);
1600 this.RegionInfoTerraformBox.Name = "RegionInfoTerraformBox";
1601 this.RegionInfoTerraformBox.Size = new System.Drawing.Size(75, 20);
1602 this.RegionInfoTerraformBox.TabIndex = 5;
1603 this.RegionInfoTerraformBox.Text = "Terraform";
1604 this.RegionInfoTerraformBox.UseVisualStyleBackColor = true;
2 zed 1605 //
8 eva 1606 // RegionInfoParcelBox
2 zed 1607 //
8 eva 1608 this.RegionInfoParcelBox.AutoSize = true;
1609 this.RegionInfoParcelBox.Location = new System.Drawing.Point(350, 30);
1610 this.RegionInfoParcelBox.Name = "RegionInfoParcelBox";
1611 this.RegionInfoParcelBox.Size = new System.Drawing.Size(58, 20);
1612 this.RegionInfoParcelBox.TabIndex = 6;
1613 this.RegionInfoParcelBox.Text = "Parcel";
1614 this.RegionInfoParcelBox.UseVisualStyleBackColor = true;
2 zed 1615 //
8 eva 1616 // groupBox18
3 eva 1617 //
8 eva 1618 this.groupBox18.Controls.Add(this.RegionInfoObjectBonusBox);
1619 this.groupBox18.Location = new System.Drawing.Point(206, 56);
1620 this.groupBox18.Name = "groupBox18";
1621 this.groupBox18.Size = new System.Drawing.Size(138, 56);
1622 this.groupBox18.TabIndex = 7;
1623 this.groupBox18.TabStop = false;
1624 this.groupBox18.Text = "Object Bonus";
3 eva 1625 //
8 eva 1626 // RegionInfoObjectBonusBox
3 eva 1627 //
8 eva 1628 this.RegionInfoObjectBonusBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1629 this.RegionInfoObjectBonusBox.Location = new System.Drawing.Point(6, 23);
1630 this.RegionInfoObjectBonusBox.Name = "RegionInfoObjectBonusBox";
1631 this.RegionInfoObjectBonusBox.Size = new System.Drawing.Size(121, 20);
1632 this.RegionInfoObjectBonusBox.TabIndex = 0;
3 eva 1633 //
8 eva 1634 // groupBox19
3 eva 1635 //
8 eva 1636 this.groupBox19.Controls.Add(this.RegionInfoAgentLimitBox);
1637 this.groupBox19.Location = new System.Drawing.Point(63, 56);
1638 this.groupBox19.Name = "groupBox19";
1639 this.groupBox19.Size = new System.Drawing.Size(137, 56);
1640 this.groupBox19.TabIndex = 8;
1641 this.groupBox19.TabStop = false;
1642 this.groupBox19.Text = "Agent Limit";
3 eva 1643 //
8 eva 1644 // RegionInfoAgentLimitBox
3 eva 1645 //
8 eva 1646 this.RegionInfoAgentLimitBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1647 this.RegionInfoAgentLimitBox.Location = new System.Drawing.Point(6, 21);
1648 this.RegionInfoAgentLimitBox.Name = "RegionInfoAgentLimitBox";
1649 this.RegionInfoAgentLimitBox.Size = new System.Drawing.Size(121, 20);
1650 this.RegionInfoAgentLimitBox.TabIndex = 0;
3 eva 1651 //
8 eva 1652 // RegionInfoMatureBox
2 zed 1653 //
8 eva 1654 this.RegionInfoMatureBox.AutoSize = true;
1655 this.RegionInfoMatureBox.Location = new System.Drawing.Point(225, 30);
1656 this.RegionInfoMatureBox.Name = "RegionInfoMatureBox";
1657 this.RegionInfoMatureBox.Size = new System.Drawing.Size(62, 20);
1658 this.RegionInfoMatureBox.TabIndex = 9;
1659 this.RegionInfoMatureBox.Text = "Mature";
1660 this.RegionInfoMatureBox.UseVisualStyleBackColor = true;
2 zed 1661 //
8 eva 1662 // groupBox23
2 zed 1663 //
8 eva 1664 this.groupBox23.Controls.Add(this.RegionTexturesLowUUIDApplyBox);
1665 this.groupBox23.Controls.Add(this.RegionTexturesLowUUIDApplyButton);
1666 this.groupBox23.Controls.Add(this.button10);
1667 this.groupBox23.Controls.Add(this.RegionTexturesLowUUIDBox);
1668 this.groupBox23.Controls.Add(this.RegionTexturesLowPictureBox);
1669 this.groupBox23.Location = new System.Drawing.Point(14, 41);
1670 this.groupBox23.Name = "groupBox23";
1671 this.groupBox23.Size = new System.Drawing.Size(319, 215);
1672 this.groupBox23.TabIndex = 5;
1673 this.groupBox23.TabStop = false;
1674 this.groupBox23.Text = "Low";
2 zed 1675 //
8 eva 1676 // RegionTexturesLowUUIDBox
2 zed 1677 //
8 eva 1678 this.RegionTexturesLowUUIDBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1679 this.RegionTexturesLowUUIDBox.Location = new System.Drawing.Point(8, 155);
1680 this.RegionTexturesLowUUIDBox.Name = "RegionTexturesLowUUIDBox";
1681 this.RegionTexturesLowUUIDBox.Size = new System.Drawing.Size(224, 20);
1682 this.RegionTexturesLowUUIDBox.TabIndex = 3;
2 zed 1683 //
8 eva 1684 // RegionTexturesLowPictureBox
2 zed 1685 //
8 eva 1686 this.RegionTexturesLowPictureBox.BackColor = System.Drawing.Color.Black;
1687 this.RegionTexturesLowPictureBox.Location = new System.Drawing.Point(17, 21);
1688 this.RegionTexturesLowPictureBox.Name = "RegionTexturesLowPictureBox";
1689 this.RegionTexturesLowPictureBox.Size = new System.Drawing.Size(128, 128);
1690 this.RegionTexturesLowPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1691 this.RegionTexturesLowPictureBox.TabIndex = 2;
1692 this.RegionTexturesLowPictureBox.TabStop = false;
2 zed 1693 //
8 eva 1694 // EstateTexturesTab
2 zed 1695 //
8 eva 1696 this.EstateTexturesTab.Controls.Add(this.GroundTexturesGroup);
1697 this.EstateTexturesTab.Location = new System.Drawing.Point(4, 25);
1698 this.EstateTexturesTab.Name = "EstateTexturesTab";
1699 this.EstateTexturesTab.Size = new System.Drawing.Size(719, 489);
1700 this.EstateTexturesTab.TabIndex = 8;
1701 this.EstateTexturesTab.Text = "Ground Textures";
1702 this.EstateTexturesTab.UseVisualStyleBackColor = true;
2 zed 1703 //
8 eva 1704 // button10
2 zed 1705 //
8 eva 1706 this.button10.Location = new System.Drawing.Point(238, 152);
1707 this.button10.Name = "button10";
1708 this.button10.Size = new System.Drawing.Size(75, 23);
1709 this.button10.TabIndex = 6;
1710 this.button10.Tag = "Low";
1711 this.button10.Text = "Download...";
1712 this.button10.UseVisualStyleBackColor = true;
1713 this.button10.Click += new System.EventHandler(this.RequestDownloadRegionTexture);
2 zed 1714 //
8 eva 1715 // RegionTexturesLowUUIDApplyButton
2 zed 1716 //
8 eva 1717 this.RegionTexturesLowUUIDApplyButton.Location = new System.Drawing.Point(238, 181);
1718 this.RegionTexturesLowUUIDApplyButton.Name = "RegionTexturesLowUUIDApplyButton";
1719 this.RegionTexturesLowUUIDApplyButton.Size = new System.Drawing.Size(75, 23);
1720 this.RegionTexturesLowUUIDApplyButton.TabIndex = 6;
1721 this.RegionTexturesLowUUIDApplyButton.Text = "Apply";
1722 this.RegionTexturesLowUUIDApplyButton.UseVisualStyleBackColor = true;
1723 this.RegionTexturesLowUUIDApplyButton.Click += new System.EventHandler(this.RequestEstateTexturesApply);
2 zed 1724 //
8 eva 1725 // groupBox20
2 zed 1726 //
8 eva 1727 this.groupBox20.Controls.Add(this.RegionTexturesMiddleLowUUIDApplyBox);
1728 this.groupBox20.Controls.Add(this.RegionTexturesMiddleLowUUIDApplyButton);
1729 this.groupBox20.Controls.Add(this.button8);
1730 this.groupBox20.Controls.Add(this.RegionTexturesMiddleLowUUIDBox);
1731 this.groupBox20.Controls.Add(this.RegionTexturesMiddleLowPictureBox);
1732 this.groupBox20.Location = new System.Drawing.Point(368, 41);
1733 this.groupBox20.Name = "groupBox20";
1734 this.groupBox20.Size = new System.Drawing.Size(328, 215);
1735 this.groupBox20.TabIndex = 6;
1736 this.groupBox20.TabStop = false;
1737 this.groupBox20.Text = "Middle Low";
2 zed 1738 //
8 eva 1739 // RegionTexturesMiddleLowUUIDApplyButton
2 zed 1740 //
8 eva 1741 this.RegionTexturesMiddleLowUUIDApplyButton.Location = new System.Drawing.Point(241, 181);
1742 this.RegionTexturesMiddleLowUUIDApplyButton.Name = "RegionTexturesMiddleLowUUIDApplyButton";
1743 this.RegionTexturesMiddleLowUUIDApplyButton.Size = new System.Drawing.Size(75, 23);
1744 this.RegionTexturesMiddleLowUUIDApplyButton.TabIndex = 6;
1745 this.RegionTexturesMiddleLowUUIDApplyButton.Text = "Apply";
1746 this.RegionTexturesMiddleLowUUIDApplyButton.UseVisualStyleBackColor = true;
2 zed 1747 //
8 eva 1748 // button8
2 zed 1749 //
8 eva 1750 this.button8.Location = new System.Drawing.Point(241, 153);
1751 this.button8.Name = "button8";
1752 this.button8.Size = new System.Drawing.Size(75, 23);
1753 this.button8.TabIndex = 6;
1754 this.button8.Tag = "MiddleLow";
1755 this.button8.Text = "Download...";
1756 this.button8.UseVisualStyleBackColor = true;
1757 this.button8.Click += new System.EventHandler(this.RequestDownloadRegionTexture);
2 zed 1758 //
8 eva 1759 // RegionTexturesMiddleLowUUIDBox
2 zed 1760 //
8 eva 1761 this.RegionTexturesMiddleLowUUIDBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1762 this.RegionTexturesMiddleLowUUIDBox.Location = new System.Drawing.Point(6, 155);
1763 this.RegionTexturesMiddleLowUUIDBox.Name = "RegionTexturesMiddleLowUUIDBox";
1764 this.RegionTexturesMiddleLowUUIDBox.Size = new System.Drawing.Size(226, 20);
1765 this.RegionTexturesMiddleLowUUIDBox.TabIndex = 3;
2 zed 1766 //
8 eva 1767 // RegionTexturesMiddleLowPictureBox
2 zed 1768 //
8 eva 1769 this.RegionTexturesMiddleLowPictureBox.BackColor = System.Drawing.Color.Black;
1770 this.RegionTexturesMiddleLowPictureBox.Location = new System.Drawing.Point(13, 21);
1771 this.RegionTexturesMiddleLowPictureBox.Name = "RegionTexturesMiddleLowPictureBox";
1772 this.RegionTexturesMiddleLowPictureBox.Size = new System.Drawing.Size(128, 128);
1773 this.RegionTexturesMiddleLowPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1774 this.RegionTexturesMiddleLowPictureBox.TabIndex = 2;
1775 this.RegionTexturesMiddleLowPictureBox.TabStop = false;
2 zed 1776 //
8 eva 1777 // groupBox21
5 eva 1778 //
8 eva 1779 this.groupBox21.Controls.Add(this.RegionTexturesMiddleHighUUIDApplyBox);
1780 this.groupBox21.Controls.Add(this.RegionTexturesMiddleHighUUIDApplyButton);
1781 this.groupBox21.Controls.Add(this.button11);
1782 this.groupBox21.Controls.Add(this.RegionTexturesMiddleHighUUIDBox);
1783 this.groupBox21.Controls.Add(this.RegionTexturesMiddleHighPictureBox);
1784 this.groupBox21.Location = new System.Drawing.Point(14, 262);
1785 this.groupBox21.Name = "groupBox21";
1786 this.groupBox21.Size = new System.Drawing.Size(319, 215);
1787 this.groupBox21.TabIndex = 7;
1788 this.groupBox21.TabStop = false;
1789 this.groupBox21.Text = "Middle High";
5 eva 1790 //
8 eva 1791 // RegionTexturesMiddleHighUUIDApplyButton
2 zed 1792 //
8 eva 1793 this.RegionTexturesMiddleHighUUIDApplyButton.Location = new System.Drawing.Point(238, 183);
1794 this.RegionTexturesMiddleHighUUIDApplyButton.Name = "RegionTexturesMiddleHighUUIDApplyButton";
1795 this.RegionTexturesMiddleHighUUIDApplyButton.Size = new System.Drawing.Size(75, 23);
1796 this.RegionTexturesMiddleHighUUIDApplyButton.TabIndex = 6;
1797 this.RegionTexturesMiddleHighUUIDApplyButton.Text = "Apply";
1798 this.RegionTexturesMiddleHighUUIDApplyButton.UseVisualStyleBackColor = true;
2 zed 1799 //
8 eva 1800 // button11
2 zed 1801 //
8 eva 1802 this.button11.Location = new System.Drawing.Point(238, 153);
1803 this.button11.Name = "button11";
1804 this.button11.Size = new System.Drawing.Size(75, 23);
1805 this.button11.TabIndex = 6;
1806 this.button11.Tag = "MiddleHigh";
1807 this.button11.Text = "Download...";
1808 this.button11.UseVisualStyleBackColor = true;
1809 this.button11.Click += new System.EventHandler(this.RequestDownloadRegionTexture);
2 zed 1810 //
8 eva 1811 // RegionTexturesMiddleHighUUIDBox
2 zed 1812 //
8 eva 1813 this.RegionTexturesMiddleHighUUIDBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1814 this.RegionTexturesMiddleHighUUIDBox.Location = new System.Drawing.Point(6, 155);
1815 this.RegionTexturesMiddleHighUUIDBox.Name = "RegionTexturesMiddleHighUUIDBox";
1816 this.RegionTexturesMiddleHighUUIDBox.Size = new System.Drawing.Size(226, 20);
1817 this.RegionTexturesMiddleHighUUIDBox.TabIndex = 3;
2 zed 1818 //
8 eva 1819 // RegionTexturesMiddleHighPictureBox
3 eva 1820 //
8 eva 1821 this.RegionTexturesMiddleHighPictureBox.BackColor = System.Drawing.Color.Black;
1822 this.RegionTexturesMiddleHighPictureBox.Location = new System.Drawing.Point(17, 21);
1823 this.RegionTexturesMiddleHighPictureBox.Name = "RegionTexturesMiddleHighPictureBox";
1824 this.RegionTexturesMiddleHighPictureBox.Size = new System.Drawing.Size(128, 128);
1825 this.RegionTexturesMiddleHighPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1826 this.RegionTexturesMiddleHighPictureBox.TabIndex = 2;
1827 this.RegionTexturesMiddleHighPictureBox.TabStop = false;
3 eva 1828 //
8 eva 1829 // groupBox22
3 eva 1830 //
8 eva 1831 this.groupBox22.Controls.Add(this.RegionTexturesHighUUIDApplyBox);
1832 this.groupBox22.Controls.Add(this.RegionTexturesHighUUIDApplyButton);
1833 this.groupBox22.Controls.Add(this.button13);
1834 this.groupBox22.Controls.Add(this.RegionTexturesHighUUIDBox);
1835 this.groupBox22.Controls.Add(this.RegionTexturesHighPictureBox);
1836 this.groupBox22.Location = new System.Drawing.Point(368, 262);
1837 this.groupBox22.Name = "groupBox22";
1838 this.groupBox22.Size = new System.Drawing.Size(328, 215);
1839 this.groupBox22.TabIndex = 8;
1840 this.groupBox22.TabStop = false;
1841 this.groupBox22.Text = "High";
3 eva 1842 //
8 eva 1843 // RegionTexturesHighUUIDApplyButton
5 eva 1844 //
8 eva 1845 this.RegionTexturesHighUUIDApplyButton.Location = new System.Drawing.Point(244, 184);
1846 this.RegionTexturesHighUUIDApplyButton.Name = "RegionTexturesHighUUIDApplyButton";
1847 this.RegionTexturesHighUUIDApplyButton.Size = new System.Drawing.Size(75, 23);
1848 this.RegionTexturesHighUUIDApplyButton.TabIndex = 6;
1849 this.RegionTexturesHighUUIDApplyButton.Text = "Apply";
1850 this.RegionTexturesHighUUIDApplyButton.UseVisualStyleBackColor = true;
5 eva 1851 //
8 eva 1852 // button13
3 eva 1853 //
8 eva 1854 this.button13.Location = new System.Drawing.Point(244, 155);
1855 this.button13.Name = "button13";
1856 this.button13.Size = new System.Drawing.Size(75, 23);
1857 this.button13.TabIndex = 6;
1858 this.button13.Tag = "High";
1859 this.button13.Text = "Download...";
1860 this.button13.UseVisualStyleBackColor = true;
1861 this.button13.Click += new System.EventHandler(this.RequestDownloadRegionTexture);
3 eva 1862 //
8 eva 1863 // RegionTexturesHighUUIDBox
4 vero 1864 //
8 eva 1865 this.RegionTexturesHighUUIDBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1866 this.RegionTexturesHighUUIDBox.Location = new System.Drawing.Point(6, 155);
1867 this.RegionTexturesHighUUIDBox.Name = "RegionTexturesHighUUIDBox";
1868 this.RegionTexturesHighUUIDBox.Size = new System.Drawing.Size(232, 20);
1869 this.RegionTexturesHighUUIDBox.TabIndex = 3;
4 vero 1870 //
8 eva 1871 // RegionTexturesHighPictureBox
7 zed 1872 //
8 eva 1873 this.RegionTexturesHighPictureBox.BackColor = System.Drawing.Color.Black;
1874 this.RegionTexturesHighPictureBox.Location = new System.Drawing.Point(13, 21);
1875 this.RegionTexturesHighPictureBox.Name = "RegionTexturesHighPictureBox";
1876 this.RegionTexturesHighPictureBox.Size = new System.Drawing.Size(128, 128);
1877 this.RegionTexturesHighPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
1878 this.RegionTexturesHighPictureBox.TabIndex = 2;
1879 this.RegionTexturesHighPictureBox.TabStop = false;
7 zed 1880 //
8 eva 1881 // GroundTexturesGroup
7 zed 1882 //
8 eva 1883 this.GroundTexturesGroup.Controls.Add(this.pictureBox12);
1884 this.GroundTexturesGroup.Controls.Add(this.groupBox22);
1885 this.GroundTexturesGroup.Controls.Add(this.groupBox23);
1886 this.GroundTexturesGroup.Controls.Add(this.groupBox21);
1887 this.GroundTexturesGroup.Controls.Add(this.groupBox20);
1888 this.GroundTexturesGroup.Location = new System.Drawing.Point(6, 3);
1889 this.GroundTexturesGroup.Name = "GroundTexturesGroup";
1890 this.GroundTexturesGroup.Size = new System.Drawing.Size(710, 483);
1891 this.GroundTexturesGroup.TabIndex = 9;
1892 this.GroundTexturesGroup.TabStop = false;
1893 this.GroundTexturesGroup.Text = "Current Region Ground Textures";
7 zed 1894 //
8 eva 1895 // RegionTexturesMiddleHighUUIDApplyBox
7 zed 1896 //
8 eva 1897 this.RegionTexturesMiddleHighUUIDApplyBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1898 this.RegionTexturesMiddleHighUUIDApplyBox.Location = new System.Drawing.Point(6, 185);
1899 this.RegionTexturesMiddleHighUUIDApplyBox.Name = "RegionTexturesMiddleHighUUIDApplyBox";
1900 this.RegionTexturesMiddleHighUUIDApplyBox.Size = new System.Drawing.Size(226, 20);
1901 this.RegionTexturesMiddleHighUUIDApplyBox.TabIndex = 7;
7 zed 1902 //
8 eva 1903 // RegionTexturesLowUUIDApplyBox
7 zed 1904 //
8 eva 1905 this.RegionTexturesLowUUIDApplyBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1906 this.RegionTexturesLowUUIDApplyBox.Location = new System.Drawing.Point(6, 181);
1907 this.RegionTexturesLowUUIDApplyBox.Name = "RegionTexturesLowUUIDApplyBox";
1908 this.RegionTexturesLowUUIDApplyBox.Size = new System.Drawing.Size(226, 20);
1909 this.RegionTexturesLowUUIDApplyBox.TabIndex = 8;
7 zed 1910 //
8 eva 1911 // RegionTexturesMiddleLowUUIDApplyBox
7 zed 1912 //
8 eva 1913 this.RegionTexturesMiddleLowUUIDApplyBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1914 this.RegionTexturesMiddleLowUUIDApplyBox.Location = new System.Drawing.Point(6, 181);
1915 this.RegionTexturesMiddleLowUUIDApplyBox.Name = "RegionTexturesMiddleLowUUIDApplyBox";
1916 this.RegionTexturesMiddleLowUUIDApplyBox.Size = new System.Drawing.Size(226, 20);
1917 this.RegionTexturesMiddleLowUUIDApplyBox.TabIndex = 9;
7 zed 1918 //
8 eva 1919 // RegionTexturesHighUUIDApplyBox
7 zed 1920 //
8 eva 1921 this.RegionTexturesHighUUIDApplyBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1922 this.RegionTexturesHighUUIDApplyBox.Location = new System.Drawing.Point(6, 186);
1923 this.RegionTexturesHighUUIDApplyBox.Name = "RegionTexturesHighUUIDApplyBox";
1924 this.RegionTexturesHighUUIDApplyBox.Size = new System.Drawing.Size(232, 20);
1925 this.RegionTexturesHighUUIDApplyBox.TabIndex = 10;
7 zed 1926 //
8 eva 1927 // pictureBox9
7 zed 1928 //
8 eva 1929 this.pictureBox9.Cursor = System.Windows.Forms.Cursors.Help;
1930 this.pictureBox9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox9.Image")));
1931 this.pictureBox9.Location = new System.Drawing.Point(681, 336);
1932 this.pictureBox9.Name = "pictureBox9";
1933 this.pictureBox9.Size = new System.Drawing.Size(20, 20);
1934 this.pictureBox9.TabIndex = 15;
1935 this.pictureBox9.TabStop = false;
1936 this.toolTip1.SetToolTip(this.pictureBox9, resources.GetString("pictureBox9.ToolTip"));
7 zed 1937 //
8 eva 1938 // pictureBox10
7 zed 1939 //
8 eva 1940 this.pictureBox10.Cursor = System.Windows.Forms.Cursors.Help;
1941 this.pictureBox10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox10.Image")));
1942 this.pictureBox10.Location = new System.Drawing.Point(317, 52);
1943 this.pictureBox10.Name = "pictureBox10";
1944 this.pictureBox10.Size = new System.Drawing.Size(20, 20);
1945 this.pictureBox10.TabIndex = 16;
1946 this.pictureBox10.TabStop = false;
1947 this.toolTip1.SetToolTip(this.pictureBox10, "Groups can be added to an estate list by\r\nname or by UUID. Simply type the group\r" +
1948 "\nname or the group UUID in the \"Groups\"\r\nbox and then click \"Add Group\" button.");
7 zed 1949 //
8 eva 1950 // pictureBox11
7 zed 1951 //
8 eva 1952 this.pictureBox11.Cursor = System.Windows.Forms.Cursors.Help;
1953 this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
1954 this.pictureBox11.Location = new System.Drawing.Point(320, 84);
1955 this.pictureBox11.Name = "pictureBox11";
1956 this.pictureBox11.Size = new System.Drawing.Size(20, 20);
1957 this.pictureBox11.TabIndex = 17;
1958 this.pictureBox11.TabStop = false;
1959 this.toolTip1.SetToolTip(this.pictureBox11, "In order to add an agent to the state\r\nlist, first type the resident first-name\r\n" +
1960 "and their last-name in the corresponding\r\nboxes and then press the \"Add Resident" +
1961 "\".");
7 zed 1962 //
8 eva 1963 // pictureBox12
7 zed 1964 //
8 eva 1965 this.pictureBox12.Cursor = System.Windows.Forms.Cursors.Help;
1966 this.pictureBox12.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox12.Image")));
1967 this.pictureBox12.Location = new System.Drawing.Point(676, 15);
1968 this.pictureBox12.Name = "pictureBox12";
1969 this.pictureBox12.Size = new System.Drawing.Size(20, 20);
1970 this.pictureBox12.TabIndex = 11;
1971 this.pictureBox12.TabStop = false;
1972 this.toolTip1.SetToolTip(this.pictureBox12, resources.GetString("pictureBox12.ToolTip"));
7 zed 1973 //
8 eva 1974 // pictureBox13
7 zed 1975 //
8 eva 1976 this.pictureBox13.Cursor = System.Windows.Forms.Cursors.Help;
1977 this.pictureBox13.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox13.Image")));
1978 this.pictureBox13.Location = new System.Drawing.Point(431, 77);
1979 this.pictureBox13.Name = "pictureBox13";
1980 this.pictureBox13.Size = new System.Drawing.Size(20, 20);
1981 this.pictureBox13.TabIndex = 12;
1982 this.pictureBox13.TabStop = false;
1983 this.toolTip1.SetToolTip(this.pictureBox13, "To apply the region info, make all the\r\nsettings in this group and then press\r\nth" +
1984 "e \"Apply\" button.");
7 zed 1985 //
8 eva 1986 // pictureBox14
7 zed 1987 //
8 eva 1988 this.pictureBox14.Cursor = System.Windows.Forms.Cursors.Help;
1989 this.pictureBox14.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox14.Image")));
1990 this.pictureBox14.Location = new System.Drawing.Point(202, 50);
1991 this.pictureBox14.Name = "pictureBox14";
1992 this.pictureBox14.Size = new System.Drawing.Size(20, 20);
1993 this.pictureBox14.TabIndex = 13;
1994 this.pictureBox14.TabStop = false;
1995 this.toolTip1.SetToolTip(this.pictureBox14, "In order to apply the region debug to\r\nthe current region, complete all the \r\nbox" +
1996 "es and press the \"Apply\" button.");
7 zed 1997 //
8 eva 1998 // pictureBox15
1999 //
2000 this.pictureBox15.Cursor = System.Windows.Forms.Cursors.Help;
2001 this.pictureBox15.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox15.Image")));
2002 this.pictureBox15.Location = new System.Drawing.Point(676, 227);
2003 this.pictureBox15.Name = "pictureBox15";
2004 this.pictureBox15.Size = new System.Drawing.Size(20, 20);
2005 this.pictureBox15.TabIndex = 11;
2006 this.pictureBox15.TabStop = false;
2007 this.toolTip1.SetToolTip(this.pictureBox15, resources.GetString("pictureBox15.ToolTip"));
2008 //
2009 // pictureBox16
2010 //
2011 this.pictureBox16.Cursor = System.Windows.Forms.Cursors.Help;
2012 this.pictureBox16.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox16.Image")));
2013 this.pictureBox16.Location = new System.Drawing.Point(676, 191);
2014 this.pictureBox16.Name = "pictureBox16";
2015 this.pictureBox16.Size = new System.Drawing.Size(20, 20);
2016 this.pictureBox16.TabIndex = 12;
2017 this.pictureBox16.TabStop = false;
2018 this.toolTip1.SetToolTip(this.pictureBox16, resources.GetString("pictureBox16.ToolTip"));
2019 //
2020 // pictureBox17
2021 //
2022 this.pictureBox17.Cursor = System.Windows.Forms.Cursors.Help;
2023 this.pictureBox17.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox17.Image")));
2024 this.pictureBox17.Location = new System.Drawing.Point(169, 23);
2025 this.pictureBox17.Name = "pictureBox17";
2026 this.pictureBox17.Size = new System.Drawing.Size(20, 20);
2027 this.pictureBox17.TabIndex = 11;
2028 this.pictureBox17.TabStop = false;
2029 this.toolTip1.SetToolTip(this.pictureBox17, resources.GetString("pictureBox17.ToolTip"));
2030 //
2031 // button4
2032 //
2033 this.button4.Location = new System.Drawing.Point(90, 81);
2034 this.button4.Name = "button4";
2035 this.button4.Size = new System.Drawing.Size(118, 23);
2036 this.button4.TabIndex = 18;
2037 this.button4.Text = "Import From CSV...";
2038 this.button4.UseVisualStyleBackColor = true;
2039 this.button4.Click += new System.EventHandler(this.RequestEstateListsAddResidentsFromCSV);
2040 //
2041 // button6
2042 //
2043 this.button6.Location = new System.Drawing.Point(112, 52);
2044 this.button6.Name = "button6";
2045 this.button6.Size = new System.Drawing.Size(118, 23);
2046 this.button6.TabIndex = 19;
2047 this.button6.Text = "Import From CSV...";
2048 this.button6.UseVisualStyleBackColor = true;
2049 this.button6.Click += new System.EventHandler(this.RequestEstateListsAddGroupsFromCSV);
2050 //
2051 // LoadCSVFile
2052 //
2053 this.LoadCSVFile.Filter = "CSV (*.csv)|*.csv|All files (*.*)|*.*";
2054 //
2055 // button9
2056 //
2057 this.button9.Location = new System.Drawing.Point(600, 334);
2058 this.button9.Name = "button9";
2059 this.button9.Size = new System.Drawing.Size(75, 23);
2060 this.button9.TabIndex = 16;
2061 this.button9.Text = "Export...";
2062 this.button9.UseVisualStyleBackColor = true;
2063 this.button9.Click += new System.EventHandler(this.RequestExportEstateList);
2064 //
2 zed 2065 // Vassal
2066 //
2067 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
2068 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
8 eva 2069 this.ClientSize = new System.Drawing.Size(752, 729);
3 eva 2070 this.Controls.Add(this.Version);
2 zed 2071 this.Controls.Add(this.CurrentRegionAt);
2072 this.Controls.Add(this.CurrentRegionName);
2073 this.Controls.Add(this.RegionTeleportGroup);
8 eva 2074 this.Controls.Add(this.VassalStatusGroup);
2 zed 2075 this.Controls.Add(this.statusStrip1);
2076 this.Controls.Add(this.Tabs);
2077 this.Controls.Add(this.pictureBox1);
3 eva 2078 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
2 zed 2079 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
3 eva 2080 this.MaximizeBox = false;
8 eva 2081 this.MaximumSize = new System.Drawing.Size(768, 768);
2 zed 2082 this.Name = "Vassal";
2083 this.Text = "Vassal";
2084 this.Shown += new System.EventHandler(this.VassalShown);
2085 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
8 eva 2086 this.statusStrip1.ResumeLayout(false);
2087 this.statusStrip1.PerformLayout();
2088 this.RegionTeleportGroup.ResumeLayout(false);
2089 ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
2090 this.VassalStatusGroup.ResumeLayout(false);
2091 ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
2092 ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
2093 ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
2094 ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
2095 ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
2096 this.EstateListsTab.ResumeLayout(false);
2097 this.groupBox11.ResumeLayout(false);
2098 this.groupBox13.ResumeLayout(false);
2099 this.EstateTerrainDownloadUploadGroup.ResumeLayout(false);
2100 this.EstateTopTab.ResumeLayout(false);
2101 this.groupBox14.ResumeLayout(false);
2102 this.groupBox14.PerformLayout();
2103 ((System.ComponentModel.ISupportInitialize)(this.TopCollidersGridView)).EndInit();
2104 this.groupBox12.ResumeLayout(false);
2105 this.groupBox12.PerformLayout();
2106 ((System.ComponentModel.ISupportInitialize)(this.TopScriptsGridView)).EndInit();
2107 this.BatchRestartTab.ResumeLayout(false);
2108 this.BatchRestartTab.PerformLayout();
2109 ((System.ComponentModel.ISupportInitialize)(this.BatchRestartGridView)).EndInit();
2110 this.ResidentListTab.ResumeLayout(false);
2111 this.ResidentListTab.PerformLayout();
2112 this.ResidentListBanGroup.ResumeLayout(false);
2113 this.ResidentListBanGroup.PerformLayout();
2114 ((System.ComponentModel.ISupportInitialize)(this.ResidentListGridView)).EndInit();
2115 this.RegionsStateTab.ResumeLayout(false);
2116 ((System.ComponentModel.ISupportInitialize)(this.RegionsStateGridView)).EndInit();
2 zed 2117 this.OverviewTab.ResumeLayout(false);
2118 this.groupBox10.ResumeLayout(false);
2119 ((System.ComponentModel.ISupportInitialize)(this.RegionAvatarsMap)).EndInit();
2120 this.groupBox9.ResumeLayout(false);
2121 this.groupBox9.PerformLayout();
2122 this.groupBox8.ResumeLayout(false);
2123 this.groupBox8.PerformLayout();
2124 this.groupBox7.ResumeLayout(false);
2125 this.groupBox7.PerformLayout();
2126 this.groupBox6.ResumeLayout(false);
2127 this.groupBox6.PerformLayout();
2128 this.groupBox5.ResumeLayout(false);
2129 this.groupBox5.PerformLayout();
2130 this.groupBox4.ResumeLayout(false);
2131 this.groupBox4.PerformLayout();
2132 this.groupBox3.ResumeLayout(false);
2133 this.groupBox3.PerformLayout();
2134 this.groupBox2.ResumeLayout(false);
2135 this.groupBox2.PerformLayout();
8 eva 2136 this.Tabs.ResumeLayout(false);
2137 ((System.ComponentModel.ISupportInitialize)(this.ConnectionStatusPictureBox)).EndInit();
2138 ((System.ComponentModel.ISupportInitialize)(this.EstateListGridView)).EndInit();
2139 ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit();
7 zed 2140 this.RegionToolsTab.ResumeLayout(false);
8 eva 2141 this.groupBox15.ResumeLayout(false);
2142 this.groupBox15.PerformLayout();
2143 this.groupBox16.ResumeLayout(false);
2144 this.groupBox16.PerformLayout();
2145 this.EstateListGroup.ResumeLayout(false);
2146 this.EstateListGroup.PerformLayout();
2147 this.EstateListsResidentsGroup.ResumeLayout(false);
2148 this.EstateListsGroupsGroup.ResumeLayout(false);
2149 this.EstateListsGroupsGroup.PerformLayout();
2150 this.RegionToolsRegionDebugGroup.ResumeLayout(false);
2151 this.RegionToolsRegionDebugGroup.PerformLayout();
2152 this.RegionToolsRegionInfoGroup.ResumeLayout(false);
2153 this.RegionToolsRegionInfoGroup.PerformLayout();
2154 this.groupBox18.ResumeLayout(false);
2155 this.groupBox18.PerformLayout();
2156 this.groupBox19.ResumeLayout(false);
2157 this.groupBox19.PerformLayout();
2158 this.groupBox23.ResumeLayout(false);
2159 this.groupBox23.PerformLayout();
2160 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesLowPictureBox)).EndInit();
2161 this.EstateTexturesTab.ResumeLayout(false);
2162 this.groupBox20.ResumeLayout(false);
2163 this.groupBox20.PerformLayout();
2164 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesMiddleLowPictureBox)).EndInit();
2165 this.groupBox21.ResumeLayout(false);
2166 this.groupBox21.PerformLayout();
2167 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesMiddleHighPictureBox)).EndInit();
2168 this.groupBox22.ResumeLayout(false);
2169 this.groupBox22.PerformLayout();
2170 ((System.ComponentModel.ISupportInitialize)(this.RegionTexturesHighPictureBox)).EndInit();
2171 this.GroundTexturesGroup.ResumeLayout(false);
2172 ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
2173 ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
2174 ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
2175 ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
2176 ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit();
2177 ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
2178 ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
2179 ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit();
2180 ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
2 zed 2181 this.ResumeLayout(false);
2182 this.PerformLayout();
2183  
2184 }
2185  
2186 #endregion
2187  
2188 private PictureBox pictureBox1;
2189 private StatusStrip statusStrip1;
2190 private ToolStripProgressBar StatusProgress;
2191 private ToolStripStatusLabel StatusText;
2192 private Button button2;
2193 private GroupBox RegionTeleportGroup;
8 eva 2194 public ComboBox LoadedRegionsBox;
2 zed 2195 private Label CurrentRegionName;
2196 private Label CurrentRegionAt;
8 eva 2197 private Button VassalSettingsButton;
2198 private SaveFileDialog ExportCSVDialog;
2199 public GroupBox VassalStatusGroup;
2200 private Label Version;
2201 private ToolTip toolTip1;
2202 private PictureBox pictureBox6;
2203 private PictureBox pictureBox2;
2204 private OpenFileDialog LoadRawFileDialog;
2205 private SaveFileDialog SavePNGFileDialog;
2206 private SaveFileDialog SaveRawFileDialog;
2207 private TabPage EstateListsTab;
2208 private GroupBox groupBox11;
2209 private GroupBox groupBox13;
2210 private Button RipTerrainButton;
2211 private PictureBox pictureBox5;
2212 private GroupBox EstateTerrainDownloadUploadGroup;
2213 private Button DownloadTerrainButton;
2214 private PictureBox pictureBox7;
2215 private PictureBox pictureBox4;
2216 private Button UploadTerrainButton;
2217 private TabPage EstateTopTab;
2218 private GroupBox groupBox14;
2219 private DataGridView TopCollidersGridView;
2220 private DataGridViewTextBoxColumn TopCollidersScore;
2221 private DataGridViewTextBoxColumn TopCollidersTaskName;
2222 private DataGridViewTextBoxColumn TopCollidersUUID;
2223 private DataGridViewTextBoxColumn TopCollidersOwner;
2224 private DataGridViewTextBoxColumn TopCollidersPosition;
2225 private GroupBox groupBox12;
2 zed 2226 private DataGridView TopScriptsGridView;
2227 private DataGridViewTextBoxColumn TopScriptsScore;
2228 private DataGridViewTextBoxColumn TopScriptsTaskName;
2229 private DataGridViewTextBoxColumn TopScriptsUUID;
2230 private DataGridViewTextBoxColumn TopScriptsOwner;
2231 private DataGridViewTextBoxColumn TopScriptsPosition;
3 eva 2232 private Button ReturnTopScriptsButton;
8 eva 2233 private Label label1;
3 eva 2234 private Button button3;
8 eva 2235 private TextBox TopScriptsFilter;
3 eva 2236 private TabPage BatchRestartTab;
8 eva 2237 private Label label3;
2238 public TextBox RegionRestartDelayBox;
2239 private PictureBox pictureBox3;
3 eva 2240 private Button BatchRestartButton;
2241 public DataGridView BatchRestartGridView;
2242 private DataGridViewTextBoxColumn BatchRestartRegionName;
2243 private DataGridViewTextBoxColumn BatchRestartPosition;
7 zed 2244 private TabPage ResidentListTab;
8 eva 2245 private GroupBox ResidentListBanGroup;
2246 private CheckBox ResidentBanAllEstatesBox;
2247 private Button ResidentBanButton;
2248 private Label label4;
2249 private TextBox ResidentListFilter;
7 zed 2250 private DataGridView ResidentListGridView;
2251 private DataGridViewTextBoxColumn ResidentListName;
2252 private DataGridViewTextBoxColumn ResidentListUUID;
2253 private DataGridViewTextBoxColumn ResidentListPosition;
2254 private TabPage RegionsStateTab;
2255 public DataGridView RegionsStateGridView;
2256 private DataGridViewTextBoxColumn RegionsStateRegionName;
2257 private DataGridViewTextBoxColumn RegionsStateLastState;
2258 private DataGridViewTextBoxColumn RegionsStateLastCheck;
8 eva 2259 private TabPage OverviewTab;
2260 private GroupBox groupBox10;
2261 public PictureBox RegionAvatarsMap;
2262 private GroupBox groupBox9;
2263 private Label Objects;
2264 private GroupBox groupBox8;
2265 private Label ScriptTime;
2266 private GroupBox groupBox7;
2267 private Label ActiveScripts;
2268 private GroupBox groupBox6;
2269 private Label PhysicsFPS;
2270 private GroupBox groupBox5;
2271 private Label FPS;
2272 private GroupBox groupBox4;
2273 private Label Dilation;
2274 private GroupBox groupBox3;
2275 private Label LastLag;
2276 private GroupBox groupBox2;
2277 private Label Agents;
2278 public TabControl Tabs;
2279 private Label label2;
2280 private TextBox TopCollidersFilter;
2281 private Button ReturnTopCollidersButton;
2282 private Button button5;
2283 private PictureBox ConnectionStatusPictureBox;
2284 private PictureBox pictureBox8;
2285 private TextBox EstateListsResidentFirstName;
2286 private Button RemoveEstateListMemberButton;
2287 private Button EstateListsAddResidentButton;
2288 private ComboBox EstateListSelectBox;
2289 private DataGridView EstateListGridView;
2290 private GroupBox EstateListsGroupsGroup;
2291 private Button button7;
2292 private TextBox EstateListsAddGroupBox;
2293 private GroupBox EstateListsResidentsGroup;
2294 private GroupBox groupBox15;
2295 private GroupBox groupBox16;
2296 private TextBox EstateListsResidentLastName;
2297 private GroupBox EstateListGroup;
7 zed 2298 private TabPage RegionToolsTab;
8 eva 2299 private Label label5;
2300 private Label label6;
2301 private TextBox EstateListFilter;
2302 private DataGridViewTextBoxColumn EstateListName;
2303 private DataGridViewTextBoxColumn EstateListUUID;
2304 private GroupBox RegionToolsRegionDebugGroup;
2305 private Button ApplyRegionDebugButton;
2306 private CheckBox RegionDebugPhysicsBox;
2307 private CheckBox RegionDebugCollisionsBox;
2308 private CheckBox RegionDebugScriptsBox;
2309 private GroupBox RegionToolsRegionInfoGroup;
2310 private GroupBox groupBox19;
2311 private TextBox RegionInfoAgentLimitBox;
2312 private GroupBox groupBox18;
2313 private TextBox RegionInfoObjectBonusBox;
2314 private CheckBox RegionInfoParcelBox;
2315 private CheckBox RegionInfoTerraformBox;
2316 private CheckBox RegionInfoPushBox;
2317 private CheckBox RegioninfoResellBox;
2318 private CheckBox RegionInfoDamageBox;
2319 private CheckBox RegionInfoFlyBox;
2320 private Button ApplyRegionInfoButton;
2321 private CheckBox RegionInfoMatureBox;
2322 private GroupBox groupBox23;
2323 private TextBox RegionTexturesLowUUIDBox;
2324 private PictureBox RegionTexturesLowPictureBox;
2325 private TabPage EstateTexturesTab;
2326 private GroupBox groupBox22;
2327 private Button RegionTexturesHighUUIDApplyButton;
2328 private Button button13;
2329 private TextBox RegionTexturesHighUUIDBox;
2330 private PictureBox RegionTexturesHighPictureBox;
2331 private GroupBox groupBox21;
2332 private Button RegionTexturesMiddleHighUUIDApplyButton;
2333 private Button button11;
2334 private TextBox RegionTexturesMiddleHighUUIDBox;
2335 private PictureBox RegionTexturesMiddleHighPictureBox;
2336 private GroupBox groupBox20;
2337 private Button RegionTexturesMiddleLowUUIDApplyButton;
2338 private Button button8;
2339 private TextBox RegionTexturesMiddleLowUUIDBox;
2340 private PictureBox RegionTexturesMiddleLowPictureBox;
2341 private Button RegionTexturesLowUUIDApplyButton;
2342 private Button button10;
2343 private GroupBox GroundTexturesGroup;
2344 private TextBox RegionTexturesHighUUIDApplyBox;
2345 private TextBox RegionTexturesLowUUIDApplyBox;
2346 private TextBox RegionTexturesMiddleHighUUIDApplyBox;
2347 private TextBox RegionTexturesMiddleLowUUIDApplyBox;
2348 private PictureBox pictureBox10;
2349 private PictureBox pictureBox11;
2350 private PictureBox pictureBox9;
2351 private PictureBox pictureBox12;
2352 private PictureBox pictureBox13;
2353 private PictureBox pictureBox14;
2354 private PictureBox pictureBox16;
2355 private PictureBox pictureBox15;
2356 private PictureBox pictureBox17;
2357 private Button button6;
7 zed 2358 private Button button4;
8 eva 2359 private OpenFileDialog LoadCSVFile;
2360 private Button button9;
2 zed 2361 }
2362 }
2363