Subversion Repositories AndroidProjects

Rev

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