aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/OpenSim.GUI/Main.Designer.cs
diff options
context:
space:
mode:
authorTedd Hansen2007-09-12 13:03:21 +0000
committerTedd Hansen2007-09-12 13:03:21 +0000
commitdcaab9103ce1b7475872ee3224ccf58c1266f95e (patch)
tree729cc307787d2ab58d40f95998bb7a2ccc66ed2c /OpenSim/Tools/OpenSim.GUI/Main.Designer.cs
parentI think 1.0f makes a better offset than 1.2f for basic physics (less floating, (diff)
downloadopensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.zip
opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.gz
opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.bz2
opensim-SC_OLD-dcaab9103ce1b7475872ee3224ccf58c1266f95e.tar.xz
Early alpha version of a GUI tool to configure and start OpenSim. Currently can start an already configured Grid server.
Diffstat (limited to '')
-rw-r--r--OpenSim/Tools/OpenSim.GUI/Main.Designer.cs348
1 files changed, 348 insertions, 0 deletions
diff --git a/OpenSim/Tools/OpenSim.GUI/Main.Designer.cs b/OpenSim/Tools/OpenSim.GUI/Main.Designer.cs
new file mode 100644
index 0000000..b1ed5a4
--- /dev/null
+++ b/OpenSim/Tools/OpenSim.GUI/Main.Designer.cs
@@ -0,0 +1,348 @@
1namespace OpenSim.GUI
2{
3 partial class Main
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.tabLogs = new System.Windows.Forms.TabControl();
32 this.tabMainLog = new System.Windows.Forms.TabPage();
33 this.txtMainLog = new System.Windows.Forms.TextBox();
34 this.tabRegionServer = new System.Windows.Forms.TabPage();
35 this.label1 = new System.Windows.Forms.Label();
36 this.txtInputRegionServer = new OpenSim.GUI.InputTextBoxControl();
37 this.txtOpenSim = new System.Windows.Forms.TextBox();
38 this.tabUserServer = new System.Windows.Forms.TabPage();
39 this.label2 = new System.Windows.Forms.Label();
40 this.txtInputUserServer = new OpenSim.GUI.InputTextBoxControl();
41 this.txtUserServer = new System.Windows.Forms.TextBox();
42 this.tabAssetServer = new System.Windows.Forms.TabPage();
43 this.label3 = new System.Windows.Forms.Label();
44 this.txtInputAssetServer = new OpenSim.GUI.InputTextBoxControl();
45 this.txtAssetServer = new System.Windows.Forms.TextBox();
46 this.tabGridServer = new System.Windows.Forms.TabPage();
47 this.label4 = new System.Windows.Forms.Label();
48 this.txtInputGridServer = new OpenSim.GUI.InputTextBoxControl();
49 this.txtGridServer = new System.Windows.Forms.TextBox();
50 this.gbLog = new System.Windows.Forms.GroupBox();
51 this.btnStart = new System.Windows.Forms.Button();
52 this.btnStop = new System.Windows.Forms.Button();
53 this.tabLogs.SuspendLayout();
54 this.tabMainLog.SuspendLayout();
55 this.tabRegionServer.SuspendLayout();
56 this.tabUserServer.SuspendLayout();
57 this.tabAssetServer.SuspendLayout();
58 this.tabGridServer.SuspendLayout();
59 this.gbLog.SuspendLayout();
60 this.SuspendLayout();
61 //
62 // tabLogs
63 //
64 this.tabLogs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
65 | System.Windows.Forms.AnchorStyles.Left)
66 | System.Windows.Forms.AnchorStyles.Right)));
67 this.tabLogs.Controls.Add(this.tabMainLog);
68 this.tabLogs.Controls.Add(this.tabRegionServer);
69 this.tabLogs.Controls.Add(this.tabUserServer);
70 this.tabLogs.Controls.Add(this.tabAssetServer);
71 this.tabLogs.Controls.Add(this.tabGridServer);
72 this.tabLogs.Location = new System.Drawing.Point(6, 19);
73 this.tabLogs.Name = "tabLogs";
74 this.tabLogs.SelectedIndex = 0;
75 this.tabLogs.Size = new System.Drawing.Size(562, 230);
76 this.tabLogs.TabIndex = 0;
77 //
78 // tabMainLog
79 //
80 this.tabMainLog.Controls.Add(this.txtMainLog);
81 this.tabMainLog.Location = new System.Drawing.Point(4, 22);
82 this.tabMainLog.Name = "tabMainLog";
83 this.tabMainLog.Size = new System.Drawing.Size(554, 204);
84 this.tabMainLog.TabIndex = 4;
85 this.tabMainLog.Text = "Main log";
86 this.tabMainLog.UseVisualStyleBackColor = true;
87 //
88 // txtMainLog
89 //
90 this.txtMainLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91 | System.Windows.Forms.AnchorStyles.Left)
92 | System.Windows.Forms.AnchorStyles.Right)));
93 this.txtMainLog.Location = new System.Drawing.Point(6, 5);
94 this.txtMainLog.Multiline = true;
95 this.txtMainLog.Name = "txtMainLog";
96 this.txtMainLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
97 this.txtMainLog.Size = new System.Drawing.Size(542, 195);
98 this.txtMainLog.TabIndex = 1;
99 //
100 // tabRegionServer
101 //
102 this.tabRegionServer.Controls.Add(this.label1);
103 this.tabRegionServer.Controls.Add(this.txtInputRegionServer);
104 this.tabRegionServer.Controls.Add(this.txtOpenSim);
105 this.tabRegionServer.Location = new System.Drawing.Point(4, 22);
106 this.tabRegionServer.Name = "tabRegionServer";
107 this.tabRegionServer.Padding = new System.Windows.Forms.Padding(3);
108 this.tabRegionServer.Size = new System.Drawing.Size(554, 204);
109 this.tabRegionServer.TabIndex = 0;
110 this.tabRegionServer.Text = "Region server";
111 this.tabRegionServer.UseVisualStyleBackColor = true;
112 //
113 // label1
114 //
115 this.label1.AutoSize = true;
116 this.label1.Location = new System.Drawing.Point(6, 183);
117 this.label1.Name = "label1";
118 this.label1.Size = new System.Drawing.Size(57, 13);
119 this.label1.TabIndex = 4;
120 this.label1.Text = "Command:";
121 //
122 // txtInputRegionServer
123 //
124 this.txtInputRegionServer.Location = new System.Drawing.Point(69, 180);
125 this.txtInputRegionServer.Name = "txtInputRegionServer";
126 this.txtInputRegionServer.Size = new System.Drawing.Size(479, 20);
127 this.txtInputRegionServer.TabIndex = 0;
128 //
129 // txtOpenSim
130 //
131 this.txtOpenSim.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
132 | System.Windows.Forms.AnchorStyles.Left)
133 | System.Windows.Forms.AnchorStyles.Right)));
134 this.txtOpenSim.Location = new System.Drawing.Point(6, 6);
135 this.txtOpenSim.Multiline = true;
136 this.txtOpenSim.Name = "txtOpenSim";
137 this.txtOpenSim.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
138 this.txtOpenSim.Size = new System.Drawing.Size(542, 168);
139 this.txtOpenSim.TabIndex = 0;
140 //
141 // tabUserServer
142 //
143 this.tabUserServer.Controls.Add(this.label2);
144 this.tabUserServer.Controls.Add(this.txtInputUserServer);
145 this.tabUserServer.Controls.Add(this.txtUserServer);
146 this.tabUserServer.Location = new System.Drawing.Point(4, 22);
147 this.tabUserServer.Name = "tabUserServer";
148 this.tabUserServer.Padding = new System.Windows.Forms.Padding(3);
149 this.tabUserServer.Size = new System.Drawing.Size(554, 204);
150 this.tabUserServer.TabIndex = 1;
151 this.tabUserServer.Text = "User server";
152 this.tabUserServer.UseVisualStyleBackColor = true;
153 //
154 // label2
155 //
156 this.label2.AutoSize = true;
157 this.label2.Location = new System.Drawing.Point(6, 181);
158 this.label2.Name = "label2";
159 this.label2.Size = new System.Drawing.Size(57, 13);
160 this.label2.TabIndex = 6;
161 this.label2.Text = "Command:";
162 //
163 // txtInputUserServer
164 //
165 this.txtInputUserServer.Location = new System.Drawing.Point(69, 178);
166 this.txtInputUserServer.Name = "txtInputUserServer";
167 this.txtInputUserServer.Size = new System.Drawing.Size(479, 20);
168 this.txtInputUserServer.TabIndex = 5;
169 //
170 // txtUserServer
171 //
172 this.txtUserServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
173 | System.Windows.Forms.AnchorStyles.Left)
174 | System.Windows.Forms.AnchorStyles.Right)));
175 this.txtUserServer.Location = new System.Drawing.Point(6, 5);
176 this.txtUserServer.Multiline = true;
177 this.txtUserServer.Name = "txtUserServer";
178 this.txtUserServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
179 this.txtUserServer.Size = new System.Drawing.Size(542, 168);
180 this.txtUserServer.TabIndex = 1;
181 //
182 // tabAssetServer
183 //
184 this.tabAssetServer.Controls.Add(this.label3);
185 this.tabAssetServer.Controls.Add(this.txtInputAssetServer);
186 this.tabAssetServer.Controls.Add(this.txtAssetServer);
187 this.tabAssetServer.Location = new System.Drawing.Point(4, 22);
188 this.tabAssetServer.Name = "tabAssetServer";
189 this.tabAssetServer.Size = new System.Drawing.Size(554, 204);
190 this.tabAssetServer.TabIndex = 2;
191 this.tabAssetServer.Text = "Asset server";
192 this.tabAssetServer.UseVisualStyleBackColor = true;
193 //
194 // label3
195 //
196 this.label3.AutoSize = true;
197 this.label3.Location = new System.Drawing.Point(6, 182);
198 this.label3.Name = "label3";
199 this.label3.Size = new System.Drawing.Size(57, 13);
200 this.label3.TabIndex = 6;
201 this.label3.Text = "Command:";
202 //
203 // txtInputAssetServer
204 //
205 this.txtInputAssetServer.Location = new System.Drawing.Point(69, 179);
206 this.txtInputAssetServer.Name = "txtInputAssetServer";
207 this.txtInputAssetServer.Size = new System.Drawing.Size(479, 20);
208 this.txtInputAssetServer.TabIndex = 5;
209 //
210 // txtAssetServer
211 //
212 this.txtAssetServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
213 | System.Windows.Forms.AnchorStyles.Left)
214 | System.Windows.Forms.AnchorStyles.Right)));
215 this.txtAssetServer.Location = new System.Drawing.Point(6, 5);
216 this.txtAssetServer.Multiline = true;
217 this.txtAssetServer.Name = "txtAssetServer";
218 this.txtAssetServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
219 this.txtAssetServer.Size = new System.Drawing.Size(542, 168);
220 this.txtAssetServer.TabIndex = 1;
221 //
222 // tabGridServer
223 //
224 this.tabGridServer.Controls.Add(this.label4);
225 this.tabGridServer.Controls.Add(this.txtInputGridServer);
226 this.tabGridServer.Controls.Add(this.txtGridServer);
227 this.tabGridServer.Location = new System.Drawing.Point(4, 22);
228 this.tabGridServer.Name = "tabGridServer";
229 this.tabGridServer.Size = new System.Drawing.Size(554, 204);
230 this.tabGridServer.TabIndex = 3;
231 this.tabGridServer.Text = "Grid server";
232 this.tabGridServer.UseVisualStyleBackColor = true;
233 //
234 // label4
235 //
236 this.label4.AutoSize = true;
237 this.label4.Location = new System.Drawing.Point(6, 182);
238 this.label4.Name = "label4";
239 this.label4.Size = new System.Drawing.Size(57, 13);
240 this.label4.TabIndex = 6;
241 this.label4.Text = "Command:";
242 //
243 // txtInputGridServer
244 //
245 this.txtInputGridServer.Location = new System.Drawing.Point(69, 179);
246 this.txtInputGridServer.Name = "txtInputGridServer";
247 this.txtInputGridServer.Size = new System.Drawing.Size(479, 20);
248 this.txtInputGridServer.TabIndex = 5;
249 //
250 // txtGridServer
251 //
252 this.txtGridServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
253 | System.Windows.Forms.AnchorStyles.Left)
254 | System.Windows.Forms.AnchorStyles.Right)));
255 this.txtGridServer.Location = new System.Drawing.Point(6, 5);
256 this.txtGridServer.Multiline = true;
257 this.txtGridServer.Name = "txtGridServer";
258 this.txtGridServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
259 this.txtGridServer.Size = new System.Drawing.Size(542, 168);
260 this.txtGridServer.TabIndex = 1;
261 //
262 // gbLog
263 //
264 this.gbLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
265 | System.Windows.Forms.AnchorStyles.Left)
266 | System.Windows.Forms.AnchorStyles.Right)));
267 this.gbLog.Controls.Add(this.tabLogs);
268 this.gbLog.Location = new System.Drawing.Point(2, 41);
269 this.gbLog.Name = "gbLog";
270 this.gbLog.Size = new System.Drawing.Size(574, 255);
271 this.gbLog.TabIndex = 1;
272 this.gbLog.TabStop = false;
273 this.gbLog.Text = "Logs";
274 //
275 // btnStart
276 //
277 this.btnStart.Location = new System.Drawing.Point(8, 12);
278 this.btnStart.Name = "btnStart";
279 this.btnStart.Size = new System.Drawing.Size(75, 23);
280 this.btnStart.TabIndex = 2;
281 this.btnStart.Text = "Start";
282 this.btnStart.UseVisualStyleBackColor = true;
283 this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
284 //
285 // btnStop
286 //
287 this.btnStop.Location = new System.Drawing.Point(89, 12);
288 this.btnStop.Name = "btnStop";
289 this.btnStop.Size = new System.Drawing.Size(75, 23);
290 this.btnStop.TabIndex = 3;
291 this.btnStop.Text = "Stop";
292 this.btnStop.UseVisualStyleBackColor = true;
293 this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
294 //
295 // Main
296 //
297 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
298 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
299 this.ClientSize = new System.Drawing.Size(583, 299);
300 this.Controls.Add(this.btnStop);
301 this.Controls.Add(this.btnStart);
302 this.Controls.Add(this.gbLog);
303 this.Name = "Main";
304 this.Text = "OpenSim";
305 this.Load += new System.EventHandler(this.Main_Load);
306 this.tabLogs.ResumeLayout(false);
307 this.tabMainLog.ResumeLayout(false);
308 this.tabMainLog.PerformLayout();
309 this.tabRegionServer.ResumeLayout(false);
310 this.tabRegionServer.PerformLayout();
311 this.tabUserServer.ResumeLayout(false);
312 this.tabUserServer.PerformLayout();
313 this.tabAssetServer.ResumeLayout(false);
314 this.tabAssetServer.PerformLayout();
315 this.tabGridServer.ResumeLayout(false);
316 this.tabGridServer.PerformLayout();
317 this.gbLog.ResumeLayout(false);
318 this.ResumeLayout(false);
319
320 }
321
322 #endregion
323
324 private System.Windows.Forms.TabControl tabLogs;
325 private System.Windows.Forms.TabPage tabRegionServer;
326 private System.Windows.Forms.TabPage tabUserServer;
327 private System.Windows.Forms.GroupBox gbLog;
328 private System.Windows.Forms.TextBox txtOpenSim;
329 private System.Windows.Forms.TextBox txtUserServer;
330 private System.Windows.Forms.TabPage tabAssetServer;
331 private System.Windows.Forms.TextBox txtAssetServer;
332 private System.Windows.Forms.TabPage tabGridServer;
333 private System.Windows.Forms.TextBox txtGridServer;
334 private System.Windows.Forms.TabPage tabMainLog;
335 private System.Windows.Forms.Button btnStart;
336 private System.Windows.Forms.Button btnStop;
337 private System.Windows.Forms.TextBox txtMainLog;
338 private System.Windows.Forms.Label label1;
339 private System.Windows.Forms.Label label2;
340 private System.Windows.Forms.Label label3;
341 private System.Windows.Forms.Label label4;
342 private InputTextBoxControl txtInputRegionServer;
343 private InputTextBoxControl txtInputUserServer;
344 private InputTextBoxControl txtInputAssetServer;
345 private InputTextBoxControl txtInputGridServer;
346 }
347}
348