Subversion Repositories AndroidProjects

Rev

Rev 1389 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1389 chris 1
namespace SpriteEditor
2
{
3
    partial class MainForm
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.components = new System.ComponentModel.Container();
32
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
33
            this.mStatusStrip = new System.Windows.Forms.StatusStrip();
34
            this.mMainMenuStrip = new System.Windows.Forms.MenuStrip();
35
            this.mFileMenu = new System.Windows.Forms.ToolStripMenuItem();
36
            this.mFileNewMenu = new System.Windows.Forms.ToolStripMenuItem();
37
            this.mFileOpenMenu = new System.Windows.Forms.ToolStripMenuItem();
38
            this.mFileSaveMenu = new System.Windows.Forms.ToolStripMenuItem();
39
            this.mFileSaveAsMenu = new System.Windows.Forms.ToolStripMenuItem();
40
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
41
            this.mFileExitMenu = new System.Windows.Forms.ToolStripMenuItem();
42
            this.mMainToolStrip = new System.Windows.Forms.ToolStrip();
43
            this.mFileNewTB = new System.Windows.Forms.ToolStripButton();
44
            this.mFileOpenTB = new System.Windows.Forms.ToolStripButton();
45
            this.mFileSaveTB = new System.Windows.Forms.ToolStripButton();
46
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
47
            this.mGlView = new Tao.Platform.Windows.SimpleOpenGlControl();
48
            this.panel1 = new System.Windows.Forms.Panel();
49
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
50
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
51
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
1391 chris 52
            this.listBox1 = new System.Windows.Forms.ListBox();
53
            this.label1 = new System.Windows.Forms.Label();
54
            this.groupBox1 = new System.Windows.Forms.GroupBox();
55
            this.label2 = new System.Windows.Forms.Label();
56
            this.textBox1 = new System.Windows.Forms.TextBox();
57
            this.textBox2 = new System.Windows.Forms.TextBox();
58
            this.label3 = new System.Windows.Forms.Label();
59
            this.textBox3 = new System.Windows.Forms.TextBox();
60
            this.label4 = new System.Windows.Forms.Label();
61
            this.textBox4 = new System.Windows.Forms.TextBox();
62
            this.label5 = new System.Windows.Forms.Label();
63
            this.btnAdd = new System.Windows.Forms.Button();
64
            this.btnDelete = new System.Windows.Forms.Button();
65
            this.textBox5 = new System.Windows.Forms.TextBox();
66
            this.label6 = new System.Windows.Forms.Label();
1389 chris 67
            this.mMainMenuStrip.SuspendLayout();
68
            this.mMainToolStrip.SuspendLayout();
1391 chris 69
            this.panel1.SuspendLayout();
70
            this.groupBox1.SuspendLayout();
1389 chris 71
            this.SuspendLayout();
72
            // 
73
            // mStatusStrip
74
            // 
75
            this.mStatusStrip.Location = new System.Drawing.Point(0, 708);
76
            this.mStatusStrip.Name = "mStatusStrip";
77
            this.mStatusStrip.Size = new System.Drawing.Size(1097, 22);
78
            this.mStatusStrip.TabIndex = 5;
79
            // 
80
            // mMainMenuStrip
81
            // 
82
            this.mMainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
83
            this.mFileMenu});
84
            this.mMainMenuStrip.Location = new System.Drawing.Point(0, 0);
85
            this.mMainMenuStrip.Name = "mMainMenuStrip";
86
            this.mMainMenuStrip.Size = new System.Drawing.Size(1097, 24);
87
            this.mMainMenuStrip.TabIndex = 6;
88
            this.mMainMenuStrip.Text = "menuStrip1";
89
            // 
90
            // mFileMenu
91
            // 
92
            this.mFileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
93
            this.mFileNewMenu,
94
            this.mFileOpenMenu,
95
            this.mFileSaveMenu,
96
            this.mFileSaveAsMenu,
97
            this.toolStripMenuItem1,
98
            this.mFileExitMenu});
99
            this.mFileMenu.Name = "mFileMenu";
100
            this.mFileMenu.Size = new System.Drawing.Size(37, 20);
101
            this.mFileMenu.Text = "&File";
102
            // 
103
            // mFileNewMenu
104
            // 
105
            this.mFileNewMenu.Name = "mFileNewMenu";
106
            this.mFileNewMenu.Size = new System.Drawing.Size(123, 22);
107
            this.mFileNewMenu.Text = "&New";
108
            this.mFileNewMenu.Click += new System.EventHandler(this.FileNew_Click);
109
            // 
110
            // mFileOpenMenu
111
            // 
112
            this.mFileOpenMenu.Name = "mFileOpenMenu";
113
            this.mFileOpenMenu.Size = new System.Drawing.Size(123, 22);
114
            this.mFileOpenMenu.Text = "&Open...";
115
            this.mFileOpenMenu.Click += new System.EventHandler(this.FileOpen_Click);
116
            // 
117
            // mFileSaveMenu
118
            // 
119
            this.mFileSaveMenu.Name = "mFileSaveMenu";
120
            this.mFileSaveMenu.Size = new System.Drawing.Size(123, 22);
121
            this.mFileSaveMenu.Text = "&Save";
122
            this.mFileSaveMenu.Click += new System.EventHandler(this.FileSave_Click);
123
            // 
124
            // mFileSaveAsMenu
125
            // 
126
            this.mFileSaveAsMenu.Name = "mFileSaveAsMenu";
127
            this.mFileSaveAsMenu.Size = new System.Drawing.Size(123, 22);
128
            this.mFileSaveAsMenu.Text = "Save &As...";
129
            this.mFileSaveAsMenu.Click += new System.EventHandler(this.FileSaveAs_Click);
130
            // 
131
            // toolStripMenuItem1
132
            // 
133
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
134
            this.toolStripMenuItem1.Size = new System.Drawing.Size(120, 6);
135
            // 
136
            // mFileExitMenu
137
            // 
138
            this.mFileExitMenu.Name = "mFileExitMenu";
139
            this.mFileExitMenu.Size = new System.Drawing.Size(123, 22);
140
            this.mFileExitMenu.Text = "&Exit";
141
            this.mFileExitMenu.Click += new System.EventHandler(this.FileExit_Click);
142
            // 
143
            // mMainToolStrip
144
            // 
145
            this.mMainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
146
            this.mFileNewTB,
147
            this.mFileOpenTB,
148
            this.mFileSaveTB,
149
            this.toolStripSeparator1});
150
            this.mMainToolStrip.Location = new System.Drawing.Point(0, 24);
151
            this.mMainToolStrip.Name = "mMainToolStrip";
152
            this.mMainToolStrip.Size = new System.Drawing.Size(1097, 25);
153
            this.mMainToolStrip.TabIndex = 7;
154
            this.mMainToolStrip.Text = "toolStrip1";
155
            // 
156
            // mFileNewTB
157
            // 
158
            this.mFileNewTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
159
            this.mFileNewTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileNewTB.Image")));
160
            this.mFileNewTB.ImageTransparentColor = System.Drawing.Color.Magenta;
161
            this.mFileNewTB.Name = "mFileNewTB";
162
            this.mFileNewTB.Size = new System.Drawing.Size(23, 22);
163
            this.mFileNewTB.Text = "toolStripButton1";
164
            this.mFileNewTB.ToolTipText = "New";
165
            this.mFileNewTB.Click += new System.EventHandler(this.FileNew_Click);
166
            // 
167
            // mFileOpenTB
168
            // 
169
            this.mFileOpenTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
170
            this.mFileOpenTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileOpenTB.Image")));
171
            this.mFileOpenTB.ImageTransparentColor = System.Drawing.Color.Magenta;
172
            this.mFileOpenTB.Name = "mFileOpenTB";
173
            this.mFileOpenTB.Size = new System.Drawing.Size(23, 22);
174
            this.mFileOpenTB.Text = "toolStripButton2";
175
            this.mFileOpenTB.ToolTipText = "Open";
176
            this.mFileOpenTB.Click += new System.EventHandler(this.FileOpen_Click);
177
            // 
178
            // mFileSaveTB
179
            // 
180
            this.mFileSaveTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
181
            this.mFileSaveTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileSaveTB.Image")));
182
            this.mFileSaveTB.ImageTransparentColor = System.Drawing.Color.Magenta;
183
            this.mFileSaveTB.Name = "mFileSaveTB";
184
            this.mFileSaveTB.Size = new System.Drawing.Size(23, 22);
185
            this.mFileSaveTB.Text = "toolStripButton3";
186
            this.mFileSaveTB.ToolTipText = "Save";
187
            this.mFileSaveTB.Click += new System.EventHandler(this.FileSave_Click);
188
            // 
189
            // toolStripSeparator1
190
            // 
191
            this.toolStripSeparator1.Name = "toolStripSeparator1";
192
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
193
            // 
194
            // mGlView
195
            // 
196
            this.mGlView.AccumBits = ((byte)(0));
197
            this.mGlView.AutoCheckErrors = true;
198
            this.mGlView.AutoFinish = false;
199
            this.mGlView.AutoMakeCurrent = true;
200
            this.mGlView.AutoSwapBuffers = true;
201
            this.mGlView.BackColor = System.Drawing.Color.Black;
202
            this.mGlView.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mGlView.BackgroundImage")));
203
            this.mGlView.ColorBits = ((byte)(32));
204
            this.mGlView.DepthBits = ((byte)(16));
205
            this.mGlView.Dock = System.Windows.Forms.DockStyle.Fill;
206
            this.mGlView.Location = new System.Drawing.Point(0, 49);
207
            this.mGlView.Name = "mGlView";
208
            this.mGlView.Size = new System.Drawing.Size(1097, 659);
209
            this.mGlView.StencilBits = ((byte)(0));
210
            this.mGlView.TabIndex = 8;
211
            this.mGlView.VSync = false;
212
            this.mGlView.Paint += new System.Windows.Forms.PaintEventHandler(this.GlView_Paint);
213
            this.mGlView.Resize += new System.EventHandler(this.GlView_Resize);
214
            // 
215
            // panel1
216
            // 
1391 chris 217
            this.panel1.Controls.Add(this.btnDelete);
218
            this.panel1.Controls.Add(this.btnAdd);
219
            this.panel1.Controls.Add(this.groupBox1);
220
            this.panel1.Controls.Add(this.label1);
221
            this.panel1.Controls.Add(this.listBox1);
1389 chris 222
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
223
            this.panel1.Location = new System.Drawing.Point(877, 49);
1391 chris 224
            this.panel1.Margin = new System.Windows.Forms.Padding(8);
1389 chris 225
            this.panel1.Name = "panel1";
226
            this.panel1.Size = new System.Drawing.Size(220, 659);
227
            this.panel1.TabIndex = 9;
228
            // 
229
            // contextMenuStrip1
230
            // 
231
            this.contextMenuStrip1.Name = "contextMenuStrip1";
232
            this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
233
            // 
234
            // openFileDialog
235
            // 
236
            this.openFileDialog.DefaultExt = "level";
237
            this.openFileDialog.Filter = "Shape files|*.shape|All files|*.*";
238
            // 
239
            // saveFileDialog
240
            // 
241
            this.saveFileDialog.DefaultExt = "level";
242
            this.saveFileDialog.Filter = "Shape files|*.shape|All files|*.*";
243
            // 
1391 chris 244
            // listBox1
245
            // 
246
            this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
247
            | System.Windows.Forms.AnchorStyles.Left)
248
            | System.Windows.Forms.AnchorStyles.Right)));
249
            this.listBox1.FormattingEnabled = true;
250
            this.listBox1.Location = new System.Drawing.Point(14, 250);
251
            this.listBox1.Name = "listBox1";
252
            this.listBox1.Size = new System.Drawing.Size(194, 368);
253
            this.listBox1.TabIndex = 0;
254
            // 
255
            // label1
256
            // 
257
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
258
            | System.Windows.Forms.AnchorStyles.Right)));
259
            this.label1.AutoSize = true;
260
            this.label1.Location = new System.Drawing.Point(11, 231);
261
            this.label1.Name = "label1";
262
            this.label1.Size = new System.Drawing.Size(79, 13);
263
            this.label1.TabIndex = 1;
264
            this.label1.Text = "Sprite Regions:";
265
            // 
266
            // groupBox1
267
            // 
268
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
269
            | System.Windows.Forms.AnchorStyles.Right)));
270
            this.groupBox1.Controls.Add(this.textBox5);
271
            this.groupBox1.Controls.Add(this.label6);
272
            this.groupBox1.Controls.Add(this.textBox4);
273
            this.groupBox1.Controls.Add(this.label5);
274
            this.groupBox1.Controls.Add(this.textBox3);
275
            this.groupBox1.Controls.Add(this.label4);
276
            this.groupBox1.Controls.Add(this.textBox2);
277
            this.groupBox1.Controls.Add(this.label3);
278
            this.groupBox1.Controls.Add(this.textBox1);
279
            this.groupBox1.Controls.Add(this.label2);
280
            this.groupBox1.Location = new System.Drawing.Point(15, 13);
281
            this.groupBox1.Name = "groupBox1";
282
            this.groupBox1.Size = new System.Drawing.Size(193, 201);
283
            this.groupBox1.TabIndex = 2;
284
            this.groupBox1.TabStop = false;
285
            this.groupBox1.Text = "Region &Parameters";
286
            // 
287
            // label2
288
            // 
289
            this.label2.AutoSize = true;
290
            this.label2.Location = new System.Drawing.Point(36, 71);
291
            this.label2.Name = "label2";
292
            this.label2.Size = new System.Drawing.Size(28, 13);
293
            this.label2.TabIndex = 0;
294
            this.label2.Text = "Left:";
295
            // 
296
            // textBox1
297
            // 
298
            this.textBox1.Location = new System.Drawing.Point(70, 68);
299
            this.textBox1.Name = "textBox1";
300
            this.textBox1.Size = new System.Drawing.Size(80, 20);
301
            this.textBox1.TabIndex = 1;
302
            // 
303
            // textBox2
304
            // 
305
            this.textBox2.Location = new System.Drawing.Point(70, 101);
306
            this.textBox2.Name = "textBox2";
307
            this.textBox2.Size = new System.Drawing.Size(80, 20);
308
            this.textBox2.TabIndex = 3;
309
            // 
310
            // label3
311
            // 
312
            this.label3.AutoSize = true;
313
            this.label3.Location = new System.Drawing.Point(35, 104);
314
            this.label3.Name = "label3";
315
            this.label3.Size = new System.Drawing.Size(29, 13);
316
            this.label3.TabIndex = 2;
317
            this.label3.Text = "Top:";
318
            // 
319
            // textBox3
320
            // 
321
            this.textBox3.Location = new System.Drawing.Point(70, 134);
322
            this.textBox3.Name = "textBox3";
323
            this.textBox3.Size = new System.Drawing.Size(80, 20);
324
            this.textBox3.TabIndex = 5;
325
            // 
326
            // label4
327
            // 
328
            this.label4.AutoSize = true;
329
            this.label4.Location = new System.Drawing.Point(26, 137);
330
            this.label4.Name = "label4";
331
            this.label4.Size = new System.Drawing.Size(38, 13);
332
            this.label4.TabIndex = 4;
333
            this.label4.Text = "Width:";
334
            // 
335
            // textBox4
336
            // 
337
            this.textBox4.Location = new System.Drawing.Point(70, 167);
338
            this.textBox4.Name = "textBox4";
339
            this.textBox4.Size = new System.Drawing.Size(80, 20);
340
            this.textBox4.TabIndex = 7;
341
            // 
342
            // label5
343
            // 
344
            this.label5.AutoSize = true;
345
            this.label5.Location = new System.Drawing.Point(23, 170);
346
            this.label5.Name = "label5";
347
            this.label5.Size = new System.Drawing.Size(41, 13);
348
            this.label5.TabIndex = 6;
349
            this.label5.Text = "Height:";
350
            // 
351
            // btnAdd
352
            // 
353
            this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
354
            | System.Windows.Forms.AnchorStyles.Right)));
355
            this.btnAdd.Location = new System.Drawing.Point(14, 624);
356
            this.btnAdd.Name = "btnAdd";
357
            this.btnAdd.Size = new System.Drawing.Size(92, 28);
358
            this.btnAdd.TabIndex = 3;
359
            this.btnAdd.Text = "&Add";
360
            this.btnAdd.UseVisualStyleBackColor = true;
361
            // 
362
            // btnDelete
363
            // 
364
            this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
365
            | System.Windows.Forms.AnchorStyles.Right)));
366
            this.btnDelete.Location = new System.Drawing.Point(116, 624);
367
            this.btnDelete.Name = "btnDelete";
368
            this.btnDelete.Size = new System.Drawing.Size(92, 28);
369
            this.btnDelete.TabIndex = 4;
370
            this.btnDelete.Text = "&Delete";
371
            this.btnDelete.UseVisualStyleBackColor = true;
372
            // 
373
            // textBox5
374
            // 
375
            this.textBox5.Location = new System.Drawing.Point(70, 28);
376
            this.textBox5.Name = "textBox5";
377
            this.textBox5.Size = new System.Drawing.Size(104, 20);
378
            this.textBox5.TabIndex = 9;
379
            // 
380
            // label6
381
            // 
382
            this.label6.AutoSize = true;
383
            this.label6.Location = new System.Drawing.Point(26, 31);
384
            this.label6.Name = "label6";
385
            this.label6.Size = new System.Drawing.Size(38, 13);
386
            this.label6.TabIndex = 8;
387
            this.label6.Text = "&Name:";
388
            // 
1389 chris 389
            // MainForm
390
            // 
391
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
392
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
393
            this.ClientSize = new System.Drawing.Size(1097, 730);
394
            this.Controls.Add(this.panel1);
395
            this.Controls.Add(this.mGlView);
396
            this.Controls.Add(this.mMainToolStrip);
397
            this.Controls.Add(this.mMainMenuStrip);
398
            this.Controls.Add(this.mStatusStrip);
399
            this.Name = "MainForm";
400
            this.Text = "Sprite Editor";
401
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
402
            this.Load += new System.EventHandler(this.MainForm_Load);
403
            this.Shown += new System.EventHandler(this.MainForm_Shown);
404
            this.mMainMenuStrip.ResumeLayout(false);
405
            this.mMainMenuStrip.PerformLayout();
406
            this.mMainToolStrip.ResumeLayout(false);
407
            this.mMainToolStrip.PerformLayout();
1391 chris 408
            this.panel1.ResumeLayout(false);
409
            this.panel1.PerformLayout();
410
            this.groupBox1.ResumeLayout(false);
411
            this.groupBox1.PerformLayout();
1389 chris 412
            this.ResumeLayout(false);
413
            this.PerformLayout();
414
 
415
        }
416
 
417
        #endregion
418
 
419
        private System.Windows.Forms.StatusStrip mStatusStrip;
420
        private System.Windows.Forms.MenuStrip mMainMenuStrip;
421
        private System.Windows.Forms.ToolStripMenuItem mFileMenu;
422
        private System.Windows.Forms.ToolStripMenuItem mFileNewMenu;
423
        private System.Windows.Forms.ToolStripMenuItem mFileOpenMenu;
424
        private System.Windows.Forms.ToolStripMenuItem mFileSaveMenu;
425
        private System.Windows.Forms.ToolStripMenuItem mFileSaveAsMenu;
426
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
427
        private System.Windows.Forms.ToolStripMenuItem mFileExitMenu;
428
        private System.Windows.Forms.ToolStrip mMainToolStrip;
429
        private System.Windows.Forms.ToolStripButton mFileNewTB;
430
        private System.Windows.Forms.ToolStripButton mFileOpenTB;
431
        private System.Windows.Forms.ToolStripButton mFileSaveTB;
432
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
433
        private Tao.Platform.Windows.SimpleOpenGlControl mGlView;
434
        private System.Windows.Forms.Panel panel1;
435
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
436
        private System.Windows.Forms.OpenFileDialog openFileDialog;
437
        private System.Windows.Forms.SaveFileDialog saveFileDialog;
1391 chris 438
        private System.Windows.Forms.Label label1;
439
        private System.Windows.Forms.ListBox listBox1;
440
        private System.Windows.Forms.GroupBox groupBox1;
441
        private System.Windows.Forms.TextBox textBox4;
442
        private System.Windows.Forms.Label label5;
443
        private System.Windows.Forms.TextBox textBox3;
444
        private System.Windows.Forms.Label label4;
445
        private System.Windows.Forms.TextBox textBox2;
446
        private System.Windows.Forms.Label label3;
447
        private System.Windows.Forms.TextBox textBox1;
448
        private System.Windows.Forms.Label label2;
449
        private System.Windows.Forms.Button btnDelete;
450
        private System.Windows.Forms.Button btnAdd;
451
        private System.Windows.Forms.TextBox textBox5;
452
        private System.Windows.Forms.Label label6;
1389 chris 453
    }
454
}
455