UltimateZoneBuilder/Source/Controls/ScriptEditorPanel.Designer.cs

286 lines
13 KiB
C#
Raw Normal View History

namespace CodeImp.DoomBuilder.Controls
{
partial class ScriptEditorPanel
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if(disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tabs = new System.Windows.Forms.TabControl();
2008-11-06 15:00:01 +00:00
this.toolbar = new System.Windows.Forms.ToolStrip();
2008-11-06 22:54:23 +00:00
this.buttonnew = new System.Windows.Forms.ToolStripDropDownButton();
this.buttonopen = new System.Windows.Forms.ToolStripButton();
this.buttonsave = new System.Windows.Forms.ToolStripButton();
this.buttonsaveall = new System.Windows.Forms.ToolStripButton();
2008-11-09 17:59:13 +00:00
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
2008-11-06 22:54:23 +00:00
this.buttonundo = new System.Windows.Forms.ToolStripButton();
this.buttonredo = new System.Windows.Forms.ToolStripButton();
2008-11-09 17:59:13 +00:00
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
2008-11-06 22:54:23 +00:00
this.buttoncut = new System.Windows.Forms.ToolStripButton();
this.buttoncopy = new System.Windows.Forms.ToolStripButton();
this.buttonpaste = new System.Windows.Forms.ToolStripButton();
2008-11-09 17:59:13 +00:00
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.buttonscriptconfig = new System.Windows.Forms.ToolStripDropDownButton();
this.buttoncompile = new System.Windows.Forms.ToolStripButton();
this.buttonclose = new System.Windows.Forms.ToolStripButton();
this.openfile = new System.Windows.Forms.OpenFileDialog();
this.savefile = new System.Windows.Forms.SaveFileDialog();
2008-11-06 15:00:01 +00:00
this.toolbar.SuspendLayout();
this.SuspendLayout();
//
// tabs
//
2008-11-06 15:00:01 +00:00
this.tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tabs.Location = new System.Drawing.Point(3, 33);
this.tabs.Margin = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.tabs.Name = "tabs";
this.tabs.Padding = new System.Drawing.Point(12, 3);
this.tabs.SelectedIndex = 0;
2008-11-06 15:00:01 +00:00
this.tabs.Size = new System.Drawing.Size(691, 435);
this.tabs.TabIndex = 0;
2008-11-10 16:11:44 +00:00
this.tabs.TabStop = false;
2008-11-09 17:59:13 +00:00
this.tabs.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabs_Selecting);
2008-11-10 16:11:44 +00:00
this.tabs.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tabs_MouseUp);
//
2008-11-06 15:00:01 +00:00
// toolbar
//
this.toolbar.AllowMerge = false;
2008-11-06 22:54:23 +00:00
this.toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
2008-11-06 15:00:01 +00:00
this.toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.buttonnew,
2008-11-06 22:54:23 +00:00
this.buttonopen,
this.buttonsave,
this.buttonsaveall,
this.toolStripSeparator1,
this.buttonundo,
this.buttonredo,
this.toolStripSeparator2,
this.buttoncut,
this.buttoncopy,
this.buttonpaste,
this.toolStripSeparator3,
this.buttonscriptconfig,
2008-11-09 17:59:13 +00:00
this.buttoncompile,
this.buttonclose});
2008-11-06 15:00:01 +00:00
this.toolbar.Location = new System.Drawing.Point(0, 0);
this.toolbar.Name = "toolbar";
this.toolbar.Size = new System.Drawing.Size(697, 25);
this.toolbar.TabIndex = 1;
//
// buttonnew
//
this.buttonnew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
2008-11-06 22:54:23 +00:00
this.buttonnew.Image = global::CodeImp.DoomBuilder.Properties.Resources.NewScript;
2008-11-06 15:00:01 +00:00
this.buttonnew.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.buttonnew.ImageTransparentColor = System.Drawing.Color.Magenta;
2008-11-06 22:54:23 +00:00
this.buttonnew.Margin = new System.Windows.Forms.Padding(6, 1, 0, 2);
2008-11-06 15:00:01 +00:00
this.buttonnew.Name = "buttonnew";
this.buttonnew.Size = new System.Drawing.Size(29, 22);
this.buttonnew.Text = "New File";
//
// buttonopen
//
this.buttonopen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
2008-11-06 22:54:23 +00:00
this.buttonopen.Image = global::CodeImp.DoomBuilder.Properties.Resources.OpenScript;
2008-11-06 15:00:01 +00:00
this.buttonopen.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.buttonopen.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonopen.Margin = new System.Windows.Forms.Padding(3, 1, 0, 2);
this.buttonopen.Name = "buttonopen";
this.buttonopen.Size = new System.Drawing.Size(23, 22);
this.buttonopen.Text = "Open File";
this.buttonopen.Click += new System.EventHandler(this.buttonopen_Click);
//
2008-11-06 22:54:23 +00:00
// buttonsave
2008-11-06 15:00:01 +00:00
//
2008-11-06 22:54:23 +00:00
this.buttonsave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonsave.Enabled = false;
this.buttonsave.Image = global::CodeImp.DoomBuilder.Properties.Resources.SaveScript;
this.buttonsave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonsave.Name = "buttonsave";
this.buttonsave.Size = new System.Drawing.Size(23, 22);
this.buttonsave.Text = "Save File";
2008-11-09 17:59:13 +00:00
this.buttonsave.Click += new System.EventHandler(this.buttonsave_Click);
2008-11-06 15:00:01 +00:00
//
2008-11-06 22:54:23 +00:00
// buttonsaveall
2008-11-06 15:00:01 +00:00
//
2008-11-06 22:54:23 +00:00
this.buttonsaveall.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonsaveall.Enabled = false;
this.buttonsaveall.Image = global::CodeImp.DoomBuilder.Properties.Resources.SaveAll;
this.buttonsaveall.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonsaveall.Name = "buttonsaveall";
this.buttonsaveall.Size = new System.Drawing.Size(23, 22);
this.buttonsaveall.Text = "Save All Files";
2008-11-09 17:59:13 +00:00
this.buttonsaveall.Click += new System.EventHandler(this.buttonsaveall_Click);
2008-11-06 22:54:23 +00:00
//
2008-11-09 17:59:13 +00:00
// toolStripSeparator1
2008-11-06 22:54:23 +00:00
//
2008-11-09 17:59:13 +00:00
this.toolStripSeparator1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
2008-11-06 22:54:23 +00:00
//
// buttonundo
//
this.buttonundo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonundo.Image = global::CodeImp.DoomBuilder.Properties.Resources.Undo;
this.buttonundo.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonundo.Name = "buttonundo";
this.buttonundo.Size = new System.Drawing.Size(23, 22);
this.buttonundo.Text = "Undo";
2008-11-09 17:59:13 +00:00
this.buttonundo.Click += new System.EventHandler(this.buttonundo_Click);
2008-11-06 22:54:23 +00:00
//
// buttonredo
//
this.buttonredo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonredo.Image = global::CodeImp.DoomBuilder.Properties.Resources.Redo;
this.buttonredo.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonredo.Name = "buttonredo";
this.buttonredo.Size = new System.Drawing.Size(23, 22);
this.buttonredo.Text = "Redo";
2008-11-09 17:59:13 +00:00
this.buttonredo.Click += new System.EventHandler(this.buttonredo_Click);
2008-11-06 22:54:23 +00:00
//
2008-11-09 17:59:13 +00:00
// toolStripSeparator2
2008-11-06 22:54:23 +00:00
//
2008-11-09 17:59:13 +00:00
this.toolStripSeparator2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
2008-11-06 22:54:23 +00:00
//
// buttoncut
//
this.buttoncut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttoncut.Image = global::CodeImp.DoomBuilder.Properties.Resources.Cut;
this.buttoncut.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttoncut.Name = "buttoncut";
this.buttoncut.Size = new System.Drawing.Size(23, 22);
this.buttoncut.Text = "Cut Selection";
2008-11-09 17:59:13 +00:00
this.buttoncut.Click += new System.EventHandler(this.buttoncut_Click);
2008-11-06 22:54:23 +00:00
//
// buttoncopy
//
this.buttoncopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttoncopy.Image = global::CodeImp.DoomBuilder.Properties.Resources.Copy;
this.buttoncopy.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttoncopy.Name = "buttoncopy";
this.buttoncopy.Size = new System.Drawing.Size(23, 22);
this.buttoncopy.Text = "Copy Selection";
2008-11-09 17:59:13 +00:00
this.buttoncopy.Click += new System.EventHandler(this.buttoncopy_Click);
2008-11-06 22:54:23 +00:00
//
// buttonpaste
//
this.buttonpaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonpaste.Image = global::CodeImp.DoomBuilder.Properties.Resources.Paste;
this.buttonpaste.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonpaste.Name = "buttonpaste";
this.buttonpaste.Size = new System.Drawing.Size(23, 22);
this.buttonpaste.Text = "Paste";
2008-11-09 17:59:13 +00:00
this.buttonpaste.Click += new System.EventHandler(this.buttonpaste_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// buttonscriptconfig
//
this.buttonscriptconfig.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonscriptconfig.Enabled = false;
this.buttonscriptconfig.Image = global::CodeImp.DoomBuilder.Properties.Resources.ScriptPalette;
this.buttonscriptconfig.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonscriptconfig.Name = "buttonscriptconfig";
this.buttonscriptconfig.Size = new System.Drawing.Size(29, 22);
this.buttonscriptconfig.Text = "Change Script Type";
//
// buttoncompile
//
this.buttoncompile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttoncompile.Image = global::CodeImp.DoomBuilder.Properties.Resources.ScriptCompile;
this.buttoncompile.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttoncompile.Margin = new System.Windows.Forms.Padding(3, 1, 0, 2);
this.buttoncompile.Name = "buttoncompile";
this.buttoncompile.Size = new System.Drawing.Size(23, 22);
this.buttoncompile.Text = "Compile Script";
this.buttoncompile.Click += new System.EventHandler(this.buttoncompile_Click);
2008-11-09 17:59:13 +00:00
//
// buttonclose
//
this.buttonclose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.buttonclose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonclose.Image = global::CodeImp.DoomBuilder.Properties.Resources.Close;
this.buttonclose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.buttonclose.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonclose.Name = "buttonclose";
this.buttonclose.Size = new System.Drawing.Size(23, 22);
this.buttonclose.Text = "Close File";
this.buttonclose.Click += new System.EventHandler(this.buttonclose_Click);
//
// openfile
//
this.openfile.Title = "Open Script";
//
// savefile
//
this.savefile.Title = "Save Script As";
2008-11-06 15:00:01 +00:00
//
// ScriptEditorPanel
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
2008-11-06 15:00:01 +00:00
this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.toolbar);
this.Controls.Add(this.tabs);
this.Name = "ScriptEditorPanel";
this.Size = new System.Drawing.Size(697, 471);
2008-11-06 15:00:01 +00:00
this.toolbar.ResumeLayout(false);
this.toolbar.PerformLayout();
this.ResumeLayout(false);
2008-11-06 15:00:01 +00:00
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TabControl tabs;
2008-11-06 15:00:01 +00:00
private System.Windows.Forms.ToolStrip toolbar;
private System.Windows.Forms.ToolStripButton buttonopen;
private System.Windows.Forms.ToolStripDropDownButton buttonnew;
private System.Windows.Forms.OpenFileDialog openfile;
private System.Windows.Forms.SaveFileDialog savefile;
2008-11-06 22:54:23 +00:00
private System.Windows.Forms.ToolStripButton buttonsave;
private System.Windows.Forms.ToolStripButton buttonsaveall;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton buttoncompile;
private System.Windows.Forms.ToolStripButton buttonundo;
private System.Windows.Forms.ToolStripButton buttonredo;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton buttoncut;
private System.Windows.Forms.ToolStripButton buttoncopy;
private System.Windows.Forms.ToolStripButton buttonpaste;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
2008-11-09 17:59:13 +00:00
private System.Windows.Forms.ToolStripDropDownButton buttonscriptconfig;
private System.Windows.Forms.ToolStripButton buttonclose;
}
}