Subversion Repositories AndroidProjects

Rev

Rev 832 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
780 chris 1
namespace BauzoidEdit
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
        {
809 chris 31
            this.components = new System.ComponentModel.Container();
780 chris 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
781 chris 48
            this.mGlView = new Tao.Platform.Windows.SimpleOpenGlControl();
1451 chris 49
#pragma warning restore 0618
809 chris 50
            this.panel1 = new System.Windows.Forms.Panel();
832 chris 51
            this.swatchesPanel = new System.Windows.Forms.Panel();
52
            this.panel3 = new System.Windows.Forms.Panel();
53
            this.backColorPanel = new System.Windows.Forms.Panel();
54
            this.foreColorPanel = new System.Windows.Forms.Panel();
55
            this.colorWheelPanel = new System.Windows.Forms.Panel();
56
            this.viewPanel = new System.Windows.Forms.Panel();
57
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
825 chris 58
            this.swatchesBox = new BauzoidNET.controls.ColorPalette();
832 chris 59
            this.toolButton1 = new BauzoidNET.controls.RadioToolButton();
60
            this.toolButton2 = new BauzoidNET.controls.RadioToolButton();
823 chris 61
            this.toolButton3 = new BauzoidNET.controls.RadioToolButton();
62
            this.mainColorWidget = new BauzoidNET.controls.ColorWidget();
832 chris 63
            this.swatchesButton = new BauzoidNET.controls.CheckToolButton();
831 chris 64
            this.colorWheelButton = new BauzoidNET.controls.CheckToolButton();
780 chris 65
            this.mMainMenuStrip.SuspendLayout();
66
            this.mMainToolStrip.SuspendLayout();
809 chris 67
            this.panel1.SuspendLayout();
832 chris 68
            this.swatchesPanel.SuspendLayout();
69
            this.panel3.SuspendLayout();
70
            this.colorWheelPanel.SuspendLayout();
831 chris 71
            this.viewPanel.SuspendLayout();
780 chris 72
            this.SuspendLayout();
73
            // 
74
            // mStatusStrip
75
            // 
831 chris 76
            this.mStatusStrip.Location = new System.Drawing.Point(0, 708);
780 chris 77
            this.mStatusStrip.Name = "mStatusStrip";
831 chris 78
            this.mStatusStrip.Size = new System.Drawing.Size(1097, 22);
780 chris 79
            this.mStatusStrip.TabIndex = 5;
80
            // 
81
            // mMainMenuStrip
82
            // 
83
            this.mMainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
84
            this.mFileMenu});
85
            this.mMainMenuStrip.Location = new System.Drawing.Point(0, 0);
86
            this.mMainMenuStrip.Name = "mMainMenuStrip";
831 chris 87
            this.mMainMenuStrip.Size = new System.Drawing.Size(1097, 24);
780 chris 88
            this.mMainMenuStrip.TabIndex = 6;
89
            this.mMainMenuStrip.Text = "menuStrip1";
90
            // 
91
            // mFileMenu
92
            // 
93
            this.mFileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
94
            this.mFileNewMenu,
95
            this.mFileOpenMenu,
96
            this.mFileSaveMenu,
97
            this.mFileSaveAsMenu,
98
            this.toolStripMenuItem1,
99
            this.mFileExitMenu});
100
            this.mFileMenu.Name = "mFileMenu";
101
            this.mFileMenu.Size = new System.Drawing.Size(37, 20);
102
            this.mFileMenu.Text = "&File";
103
            // 
104
            // mFileNewMenu
105
            // 
106
            this.mFileNewMenu.Name = "mFileNewMenu";
107
            this.mFileNewMenu.Size = new System.Drawing.Size(123, 22);
108
            this.mFileNewMenu.Text = "&New";
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
            // 
116
            // mFileSaveMenu
117
            // 
118
            this.mFileSaveMenu.Name = "mFileSaveMenu";
119
            this.mFileSaveMenu.Size = new System.Drawing.Size(123, 22);
120
            this.mFileSaveMenu.Text = "&Save";
121
            // 
122
            // mFileSaveAsMenu
123
            // 
124
            this.mFileSaveAsMenu.Name = "mFileSaveAsMenu";
125
            this.mFileSaveAsMenu.Size = new System.Drawing.Size(123, 22);
126
            this.mFileSaveAsMenu.Text = "Save &As...";
127
            // 
128
            // toolStripMenuItem1
129
            // 
130
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
131
            this.toolStripMenuItem1.Size = new System.Drawing.Size(120, 6);
132
            // 
133
            // mFileExitMenu
134
            // 
135
            this.mFileExitMenu.Name = "mFileExitMenu";
136
            this.mFileExitMenu.Size = new System.Drawing.Size(123, 22);
137
            this.mFileExitMenu.Text = "&Exit";
138
            // 
139
            // mMainToolStrip
140
            // 
141
            this.mMainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
142
            this.mFileNewTB,
143
            this.mFileOpenTB,
144
            this.mFileSaveTB,
145
            this.toolStripSeparator1});
146
            this.mMainToolStrip.Location = new System.Drawing.Point(0, 24);
147
            this.mMainToolStrip.Name = "mMainToolStrip";
831 chris 148
            this.mMainToolStrip.Size = new System.Drawing.Size(1097, 25);
780 chris 149
            this.mMainToolStrip.TabIndex = 7;
150
            this.mMainToolStrip.Text = "toolStrip1";
151
            // 
152
            // mFileNewTB
153
            // 
154
            this.mFileNewTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
155
            this.mFileNewTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileNewTB.Image")));
156
            this.mFileNewTB.ImageTransparentColor = System.Drawing.Color.Magenta;
157
            this.mFileNewTB.Name = "mFileNewTB";
158
            this.mFileNewTB.Size = new System.Drawing.Size(23, 22);
159
            this.mFileNewTB.Text = "toolStripButton1";
160
            this.mFileNewTB.ToolTipText = "New";
161
            // 
162
            // mFileOpenTB
163
            // 
164
            this.mFileOpenTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
165
            this.mFileOpenTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileOpenTB.Image")));
166
            this.mFileOpenTB.ImageTransparentColor = System.Drawing.Color.Magenta;
167
            this.mFileOpenTB.Name = "mFileOpenTB";
168
            this.mFileOpenTB.Size = new System.Drawing.Size(23, 22);
169
            this.mFileOpenTB.Text = "toolStripButton2";
170
            this.mFileOpenTB.ToolTipText = "Open";
171
            // 
172
            // mFileSaveTB
173
            // 
174
            this.mFileSaveTB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
175
            this.mFileSaveTB.Image = ((System.Drawing.Image)(resources.GetObject("mFileSaveTB.Image")));
176
            this.mFileSaveTB.ImageTransparentColor = System.Drawing.Color.Magenta;
177
            this.mFileSaveTB.Name = "mFileSaveTB";
178
            this.mFileSaveTB.Size = new System.Drawing.Size(23, 22);
179
            this.mFileSaveTB.Text = "toolStripButton3";
180
            this.mFileSaveTB.ToolTipText = "Save";
181
            // 
182
            // toolStripSeparator1
183
            // 
184
            this.toolStripSeparator1.Name = "toolStripSeparator1";
185
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
186
            // 
187
            // mGlView
188
            // 
781 chris 189
            this.mGlView.AccumBits = ((byte)(0));
800 chris 190
            this.mGlView.AutoCheckErrors = true;
781 chris 191
            this.mGlView.AutoFinish = false;
192
            this.mGlView.AutoMakeCurrent = true;
193
            this.mGlView.AutoSwapBuffers = true;
780 chris 194
            this.mGlView.BackColor = System.Drawing.Color.Black;
781 chris 195
            this.mGlView.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mGlView.BackgroundImage")));
196
            this.mGlView.ColorBits = ((byte)(32));
197
            this.mGlView.DepthBits = ((byte)(16));
780 chris 198
            this.mGlView.Dock = System.Windows.Forms.DockStyle.Fill;
199
            this.mGlView.Location = new System.Drawing.Point(0, 49);
200
            this.mGlView.Name = "mGlView";
831 chris 201
            this.mGlView.Size = new System.Drawing.Size(1097, 659);
781 chris 202
            this.mGlView.StencilBits = ((byte)(0));
780 chris 203
            this.mGlView.TabIndex = 8;
204
            this.mGlView.VSync = false;
781 chris 205
            this.mGlView.Paint += new System.Windows.Forms.PaintEventHandler(this.mGlView_Paint);
825 chris 206
            this.mGlView.Resize += new System.EventHandler(this.mGlView_Resize);
780 chris 207
            // 
809 chris 208
            // panel1
209
            // 
831 chris 210
            this.panel1.Controls.Add(this.swatchesPanel);
211
            this.panel1.Controls.Add(this.panel3);
212
            this.panel1.Controls.Add(this.colorWheelPanel);
213
            this.panel1.Controls.Add(this.viewPanel);
809 chris 214
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
831 chris 215
            this.panel1.Location = new System.Drawing.Point(912, 49);
809 chris 216
            this.panel1.Name = "panel1";
831 chris 217
            this.panel1.Size = new System.Drawing.Size(185, 659);
809 chris 218
            this.panel1.TabIndex = 9;
219
            // 
832 chris 220
            // swatchesPanel
221
            // 
222
            this.swatchesPanel.Controls.Add(this.swatchesBox);
223
            this.swatchesPanel.Dock = System.Windows.Forms.DockStyle.Top;
224
            this.swatchesPanel.Location = new System.Drawing.Point(0, 306);
225
            this.swatchesPanel.Name = "swatchesPanel";
226
            this.swatchesPanel.Size = new System.Drawing.Size(185, 75);
227
            this.swatchesPanel.TabIndex = 10;
228
            // 
229
            // panel3
230
            // 
231
            this.panel3.Controls.Add(this.foreColorPanel);
232
            this.panel3.Controls.Add(this.backColorPanel);
233
            this.panel3.Controls.Add(this.toolButton1);
234
            this.panel3.Controls.Add(this.toolButton2);
235
            this.panel3.Controls.Add(this.toolButton3);
236
            this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
237
            this.panel3.Location = new System.Drawing.Point(0, 222);
238
            this.panel3.Name = "panel3";
239
            this.panel3.Size = new System.Drawing.Size(185, 84);
240
            this.panel3.TabIndex = 9;
241
            // 
242
            // backColorPanel
243
            // 
244
            this.backColorPanel.BackColor = System.Drawing.Color.White;
245
            this.backColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
246
            this.backColorPanel.Location = new System.Drawing.Point(149, 24);
247
            this.backColorPanel.Name = "backColorPanel";
248
            this.backColorPanel.Size = new System.Drawing.Size(28, 28);
249
            this.backColorPanel.TabIndex = 2;
250
            // 
251
            // foreColorPanel
252
            // 
253
            this.foreColorPanel.BackColor = System.Drawing.Color.Red;
254
            this.foreColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
255
            this.foreColorPanel.Location = new System.Drawing.Point(134, 8);
256
            this.foreColorPanel.Name = "foreColorPanel";
257
            this.foreColorPanel.Size = new System.Drawing.Size(28, 28);
258
            this.foreColorPanel.TabIndex = 1;
259
            // 
260
            // colorWheelPanel
261
            // 
262
            this.colorWheelPanel.Controls.Add(this.mainColorWidget);
263
            this.colorWheelPanel.Dock = System.Windows.Forms.DockStyle.Top;
264
            this.colorWheelPanel.Location = new System.Drawing.Point(0, 30);
265
            this.colorWheelPanel.Name = "colorWheelPanel";
266
            this.colorWheelPanel.Size = new System.Drawing.Size(185, 192);
267
            this.colorWheelPanel.TabIndex = 8;
268
            // 
269
            // viewPanel
270
            // 
271
            this.viewPanel.Controls.Add(this.swatchesButton);
272
            this.viewPanel.Controls.Add(this.colorWheelButton);
273
            this.viewPanel.Dock = System.Windows.Forms.DockStyle.Top;
274
            this.viewPanel.Location = new System.Drawing.Point(0, 0);
275
            this.viewPanel.Name = "viewPanel";
276
            this.viewPanel.Size = new System.Drawing.Size(185, 30);
277
            this.viewPanel.TabIndex = 7;
278
            // 
279
            // contextMenuStrip1
280
            // 
281
            this.contextMenuStrip1.Name = "contextMenuStrip1";
282
            this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
283
            // 
825 chris 284
            // swatchesBox
823 chris 285
            // 
831 chris 286
            this.swatchesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
287
            | System.Windows.Forms.AnchorStyles.Right)));
832 chris 288
            this.swatchesBox.AutoScroll = true;
831 chris 289
            this.swatchesBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
825 chris 290
            this.swatchesBox.CellSIze = 16;
291
            this.swatchesBox.CurrentColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
831 chris 292
            this.swatchesBox.Location = new System.Drawing.Point(2, 3);
825 chris 293
            this.swatchesBox.Name = "swatchesBox";
831 chris 294
            this.swatchesBox.NumCols = 11;
295
            this.swatchesBox.NumRows = 4;
296
            this.swatchesBox.Size = new System.Drawing.Size(180, 68);
825 chris 297
            this.swatchesBox.TabIndex = 6;
298
            this.swatchesBox.ColorPicked += new System.EventHandler(this.colorPalette1_ColorPicked);
823 chris 299
            // 
832 chris 300
            // toolButton1
821 chris 301
            // 
832 chris 302
            this.toolButton1.Appearance = System.Windows.Forms.Appearance.Button;
303
            this.toolButton1.Checked = true;
304
            this.toolButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
305
            this.toolButton1.Location = new System.Drawing.Point(3, 12);
306
            this.toolButton1.Name = "toolButton1";
307
            this.toolButton1.Offset = 3;
308
            this.toolButton1.Size = new System.Drawing.Size(35, 35);
309
            this.toolButton1.TabIndex = 3;
310
            this.toolButton1.TabStop = true;
311
            this.toolButton1.Text = "Pen";
312
            this.toolButton1.UseVisualStyleBackColor = true;
821 chris 313
            // 
314
            // toolButton2
315
            // 
316
            this.toolButton2.Appearance = System.Windows.Forms.Appearance.Button;
317
            this.toolButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
318
            this.toolButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolButton2.Image")));
831 chris 319
            this.toolButton2.Location = new System.Drawing.Point(44, 12);
821 chris 320
            this.toolButton2.Name = "toolButton2";
321
            this.toolButton2.Offset = 3;
822 chris 322
            this.toolButton2.Size = new System.Drawing.Size(35, 35);
821 chris 323
            this.toolButton2.TabIndex = 4;
324
            this.toolButton2.Text = "Brush";
325
            this.toolButton2.UseVisualStyleBackColor = true;
326
            // 
832 chris 327
            // toolButton3
820 chris 328
            // 
832 chris 329
            this.toolButton3.Appearance = System.Windows.Forms.Appearance.Button;
330
            this.toolButton3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
331
            this.toolButton3.Location = new System.Drawing.Point(85, 12);
332
            this.toolButton3.Name = "toolButton3";
333
            this.toolButton3.Offset = 3;
334
            this.toolButton3.Size = new System.Drawing.Size(35, 35);
335
            this.toolButton3.TabIndex = 5;
336
            this.toolButton3.Text = "Eraser";
337
            this.toolButton3.UseVisualStyleBackColor = true;
820 chris 338
            // 
819 chris 339
            // mainColorWidget
340
            // 
341
            this.mainColorWidget.CurrentColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
342
            this.mainColorWidget.Location = new System.Drawing.Point(0, 0);
343
            this.mainColorWidget.MarkerSize = 4;
344
            this.mainColorWidget.Name = "mainColorWidget";
823 chris 345
            this.mainColorWidget.Size = new System.Drawing.Size(185, 184);
819 chris 346
            this.mainColorWidget.TabIndex = 0;
347
            this.mainColorWidget.WheelThicknessFactor = 0.15F;
348
            this.mainColorWidget.ColorChange += new System.EventHandler(this.colorWidget1_ColorChange);
349
            // 
832 chris 350
            // swatchesButton
831 chris 351
            // 
832 chris 352
            this.swatchesButton.Appearance = System.Windows.Forms.Appearance.Button;
353
            this.swatchesButton.Checked = true;
354
            this.swatchesButton.CheckState = System.Windows.Forms.CheckState.Checked;
355
            this.swatchesButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.5F);
356
            this.swatchesButton.Image = ((System.Drawing.Image)(resources.GetObject("swatchesButton.Image")));
357
            this.swatchesButton.Location = new System.Drawing.Point(31, 4);
358
            this.swatchesButton.Name = "swatchesButton";
359
            this.swatchesButton.Offset = 2;
360
            this.swatchesButton.Size = new System.Drawing.Size(22, 22);
361
            this.swatchesButton.TabIndex = 1;
362
            this.swatchesButton.UseVisualStyleBackColor = true;
831 chris 363
            // 
364
            // colorWheelButton
365
            // 
366
            this.colorWheelButton.Appearance = System.Windows.Forms.Appearance.Button;
367
            this.colorWheelButton.Checked = true;
368
            this.colorWheelButton.CheckState = System.Windows.Forms.CheckState.Checked;
369
            this.colorWheelButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.5F);
370
            this.colorWheelButton.Image = ((System.Drawing.Image)(resources.GetObject("colorWheelButton.Image")));
371
            this.colorWheelButton.Location = new System.Drawing.Point(3, 4);
372
            this.colorWheelButton.Name = "colorWheelButton";
373
            this.colorWheelButton.Offset = 2;
374
            this.colorWheelButton.Size = new System.Drawing.Size(22, 22);
375
            this.colorWheelButton.TabIndex = 0;
376
            this.colorWheelButton.UseVisualStyleBackColor = true;
377
            // 
780 chris 378
            // MainForm
379
            // 
380
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
381
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
831 chris 382
            this.ClientSize = new System.Drawing.Size(1097, 730);
809 chris 383
            this.Controls.Add(this.panel1);
780 chris 384
            this.Controls.Add(this.mGlView);
385
            this.Controls.Add(this.mMainToolStrip);
386
            this.Controls.Add(this.mMainMenuStrip);
387
            this.Controls.Add(this.mStatusStrip);
388
            this.Name = "MainForm";
819 chris 389
            this.Text = "Pixeloid";
789 chris 390
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
391
            this.Load += new System.EventHandler(this.MainForm_Load);
780 chris 392
            this.mMainMenuStrip.ResumeLayout(false);
393
            this.mMainMenuStrip.PerformLayout();
394
            this.mMainToolStrip.ResumeLayout(false);
395
            this.mMainToolStrip.PerformLayout();
809 chris 396
            this.panel1.ResumeLayout(false);
832 chris 397
            this.swatchesPanel.ResumeLayout(false);
398
            this.panel3.ResumeLayout(false);
399
            this.colorWheelPanel.ResumeLayout(false);
831 chris 400
            this.viewPanel.ResumeLayout(false);
780 chris 401
            this.ResumeLayout(false);
402
            this.PerformLayout();
403
 
404
        }
405
 
406
        #endregion
407
 
408
        private System.Windows.Forms.StatusStrip mStatusStrip;
409
        private System.Windows.Forms.MenuStrip mMainMenuStrip;
410
        private System.Windows.Forms.ToolStripMenuItem mFileMenu;
411
        private System.Windows.Forms.ToolStripMenuItem mFileNewMenu;
412
        private System.Windows.Forms.ToolStripMenuItem mFileOpenMenu;
413
        private System.Windows.Forms.ToolStripMenuItem mFileSaveMenu;
414
        private System.Windows.Forms.ToolStripMenuItem mFileSaveAsMenu;
415
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
416
        private System.Windows.Forms.ToolStripMenuItem mFileExitMenu;
417
        private System.Windows.Forms.ToolStrip mMainToolStrip;
418
        private System.Windows.Forms.ToolStripButton mFileNewTB;
419
        private System.Windows.Forms.ToolStripButton mFileOpenTB;
420
        private System.Windows.Forms.ToolStripButton mFileSaveTB;
421
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
1451 chris 422
#pragma warning disable 0618
781 chris 423
        private Tao.Platform.Windows.SimpleOpenGlControl mGlView;
1451 chris 424
#pragma warning restore 0618
809 chris 425
        private System.Windows.Forms.Panel panel1;
426
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
819 chris 427
        private BauzoidNET.controls.ColorWidget mainColorWidget;
428
        private System.Windows.Forms.Panel foreColorPanel;
832 chris 429
        private System.Windows.Forms.Panel backColorPanel;
823 chris 430
        private BauzoidNET.controls.RadioToolButton toolButton1;
431
        private BauzoidNET.controls.RadioToolButton toolButton3;
432
        private BauzoidNET.controls.RadioToolButton toolButton2;
825 chris 433
        private BauzoidNET.controls.ColorPalette swatchesBox;
831 chris 434
        private System.Windows.Forms.Panel viewPanel;
435
        private System.Windows.Forms.Panel colorWheelPanel;
436
        private System.Windows.Forms.Panel swatchesPanel;
437
        private System.Windows.Forms.Panel panel3;
438
        private BauzoidNET.controls.CheckToolButton colorWheelButton;
439
        private BauzoidNET.controls.CheckToolButton swatchesButton;
780 chris 440
    }
441
}
442