UltimateZoneBuilder/Source/Interface/LinedefEditForm.Designer.cs

783 lines
30 KiB
C#
Raw Normal View History

2007-12-26 00:31:32 +00:00
namespace CodeImp.DoomBuilder.Interface
{
partial class LinedefEditForm
{
/// <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 Windows Form 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()
{
2007-12-26 14:29:36 +00:00
System.Windows.Forms.Label label2;
System.Windows.Forms.Label taglabel;
2007-12-26 14:29:36 +00:00
System.Windows.Forms.Label label3;
System.Windows.Forms.Label label4;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label label6;
System.Windows.Forms.Label label7;
System.Windows.Forms.Label label8;
System.Windows.Forms.Label label9;
System.Windows.Forms.Label label10;
2007-12-27 01:24:11 +00:00
System.Windows.Forms.Label label11;
System.Windows.Forms.Label label12;
System.Windows.Forms.Label activationlabel;
this.arg0label = new System.Windows.Forms.Label();
this.arg1label = new System.Windows.Forms.Label();
this.arg4label = new System.Windows.Forms.Label();
this.arg2label = new System.Windows.Forms.Label();
this.arg3label = new System.Windows.Forms.Label();
2007-12-26 00:31:32 +00:00
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.actiongroup = new System.Windows.Forms.GroupBox();
this.hexenpanel = new System.Windows.Forms.Panel();
this.arg3 = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.arg2 = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.arg4 = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.arg1 = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.arg0 = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.activation = new System.Windows.Forms.ComboBox();
2007-12-26 00:31:32 +00:00
this.action = new CodeImp.DoomBuilder.Interface.ActionSelectorControl();
this.browseaction = new System.Windows.Forms.Button();
this.doompanel = new System.Windows.Forms.Panel();
this.tag = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.newtag = new System.Windows.Forms.Button();
2007-12-26 00:31:32 +00:00
this.settingsgroup = new System.Windows.Forms.GroupBox();
this.flags = new CodeImp.DoomBuilder.Interface.CheckboxArrayControl();
this.checkBox1 = new System.Windows.Forms.CheckBox();
2007-12-26 14:29:36 +00:00
this.tabs = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.backside = new System.Windows.Forms.CheckBox();
this.backgroup = new System.Windows.Forms.GroupBox();
2007-12-27 01:24:11 +00:00
this.backsector = new CodeImp.DoomBuilder.Interface.NumericTextbox();
2007-12-26 14:29:36 +00:00
this.backlow = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.backmid = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.backhigh = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.backoffsety = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.backoffsetx = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.frontside = new System.Windows.Forms.CheckBox();
this.frontgroup = new System.Windows.Forms.GroupBox();
2007-12-27 01:24:11 +00:00
this.frontsector = new CodeImp.DoomBuilder.Interface.NumericTextbox();
2007-12-26 14:29:36 +00:00
this.frontlow = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.frontmid = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.fronthigh = new CodeImp.DoomBuilder.Interface.TextureSelectorControl();
this.frontoffsety = new CodeImp.DoomBuilder.Interface.NumericTextbox();
this.frontoffsetx = new CodeImp.DoomBuilder.Interface.NumericTextbox();
label2 = new System.Windows.Forms.Label();
taglabel = new System.Windows.Forms.Label();
2007-12-26 14:29:36 +00:00
label3 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
label7 = new System.Windows.Forms.Label();
label8 = new System.Windows.Forms.Label();
label9 = new System.Windows.Forms.Label();
label10 = new System.Windows.Forms.Label();
2007-12-27 01:24:11 +00:00
label11 = new System.Windows.Forms.Label();
label12 = new System.Windows.Forms.Label();
activationlabel = new System.Windows.Forms.Label();
2007-12-26 00:31:32 +00:00
this.actiongroup.SuspendLayout();
this.hexenpanel.SuspendLayout();
this.doompanel.SuspendLayout();
2007-12-26 00:31:32 +00:00
this.settingsgroup.SuspendLayout();
2007-12-26 14:29:36 +00:00
this.tabs.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.backgroup.SuspendLayout();
this.frontgroup.SuspendLayout();
2007-12-26 00:31:32 +00:00
this.SuspendLayout();
//
2007-12-26 14:29:36 +00:00
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(15, 30);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(41, 14);
label2.TabIndex = 9;
label2.Text = "Action:";
//
// taglabel
2007-12-26 14:29:36 +00:00
//
taglabel.AutoSize = true;
taglabel.Location = new System.Drawing.Point(22, 22);
taglabel.Name = "taglabel";
taglabel.Size = new System.Drawing.Size(28, 14);
taglabel.TabIndex = 6;
taglabel.Text = "Tag:";
2007-12-26 14:29:36 +00:00
//
// label3
//
label3.Location = new System.Drawing.Point(234, 18);
2007-12-26 14:29:36 +00:00
label3.Name = "label3";
label3.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label3.TabIndex = 3;
label3.Text = "Upper";
label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label4
//
label4.Location = new System.Drawing.Point(325, 18);
2007-12-26 14:29:36 +00:00
label4.Name = "label4";
label4.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label4.TabIndex = 4;
label4.Text = "Middle";
label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label5
//
label5.Location = new System.Drawing.Point(416, 18);
label5.Name = "label5";
label5.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label5.TabIndex = 5;
label5.Text = "Lower";
label5.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label6
//
label6.AutoSize = true;
2007-12-27 01:24:11 +00:00
label6.Location = new System.Drawing.Point(16, 79);
2007-12-26 14:29:36 +00:00
label6.Name = "label6";
label6.Size = new System.Drawing.Size(81, 14);
label6.TabIndex = 7;
label6.Text = "Texture Offset:";
//
// label7
//
label7.AutoSize = true;
2007-12-27 01:24:11 +00:00
label7.Location = new System.Drawing.Point(16, 79);
2007-12-26 14:29:36 +00:00
label7.Name = "label7";
label7.Size = new System.Drawing.Size(81, 14);
label7.TabIndex = 7;
label7.Text = "Texture Offset:";
//
// label8
//
label8.Location = new System.Drawing.Point(416, 18);
label8.Name = "label8";
label8.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label8.TabIndex = 5;
label8.Text = "Lower";
label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label9
//
label9.Location = new System.Drawing.Point(325, 18);
2007-12-26 14:29:36 +00:00
label9.Name = "label9";
label9.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label9.TabIndex = 4;
label9.Text = "Middle";
label9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label10
//
label10.Location = new System.Drawing.Point(234, 18);
2007-12-26 14:29:36 +00:00
label10.Name = "label10";
label10.Size = new System.Drawing.Size(83, 16);
2007-12-26 14:29:36 +00:00
label10.TabIndex = 3;
label10.Text = "Upper";
label10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
2007-12-27 01:24:11 +00:00
// label11
//
label11.AutoSize = true;
label11.Location = new System.Drawing.Point(26, 40);
label11.Name = "label11";
label11.Size = new System.Drawing.Size(71, 14);
label11.TabIndex = 13;
label11.Text = "Sector Index:";
//
// label12
//
label12.AutoSize = true;
label12.Location = new System.Drawing.Point(26, 40);
label12.Name = "label12";
label12.Size = new System.Drawing.Size(71, 14);
label12.TabIndex = 16;
label12.Text = "Sector Index:";
//
// activationlabel
//
activationlabel.AutoSize = true;
activationlabel.Location = new System.Drawing.Point(6, 18);
activationlabel.Name = "activationlabel";
activationlabel.Size = new System.Drawing.Size(44, 14);
activationlabel.TabIndex = 10;
activationlabel.Text = "Trigger:";
//
// arg0label
//
2007-12-29 16:42:30 +00:00
this.arg0label.Location = new System.Drawing.Point(-18, 58);
this.arg0label.Name = "arg0label";
2007-12-29 16:42:30 +00:00
this.arg0label.Size = new System.Drawing.Size(179, 14);
this.arg0label.TabIndex = 12;
this.arg0label.Text = "Argument 1:";
this.arg0label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg0label.UseMnemonic = false;
//
// arg1label
//
2007-12-29 16:42:30 +00:00
this.arg1label.Location = new System.Drawing.Point(-18, 84);
this.arg1label.Name = "arg1label";
2007-12-29 16:42:30 +00:00
this.arg1label.Size = new System.Drawing.Size(179, 14);
this.arg1label.TabIndex = 14;
this.arg1label.Text = "Argument 2:";
this.arg1label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg1label.UseMnemonic = false;
//
// arg4label
//
2007-12-29 16:42:30 +00:00
this.arg4label.Location = new System.Drawing.Point(192, 84);
this.arg4label.Name = "arg4label";
2007-12-29 16:42:30 +00:00
this.arg4label.Size = new System.Drawing.Size(179, 14);
this.arg4label.TabIndex = 16;
this.arg4label.Text = "Argument 5:";
this.arg4label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg4label.UseMnemonic = false;
//
// arg2label
//
2007-12-29 16:42:30 +00:00
this.arg2label.Location = new System.Drawing.Point(-18, 110);
this.arg2label.Name = "arg2label";
2007-12-29 16:42:30 +00:00
this.arg2label.Size = new System.Drawing.Size(179, 14);
this.arg2label.TabIndex = 18;
this.arg2label.Text = "Argument 3:";
this.arg2label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg2label.UseMnemonic = false;
//
// arg3label
//
2007-12-29 16:42:30 +00:00
this.arg3label.Location = new System.Drawing.Point(192, 58);
this.arg3label.Name = "arg3label";
2007-12-29 16:42:30 +00:00
this.arg3label.Size = new System.Drawing.Size(179, 14);
this.arg3label.TabIndex = 20;
this.arg3label.Text = "Argument 4:";
this.arg3label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg3label.UseMnemonic = false;
//
2007-12-26 00:31:32 +00:00
// cancel
//
this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
2007-12-29 16:42:30 +00:00
this.cancel.Location = new System.Drawing.Point(439, 428);
2007-12-26 00:31:32 +00:00
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 25);
this.cancel.TabIndex = 17;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
2007-12-27 01:24:11 +00:00
this.cancel.Click += new System.EventHandler(this.cancel_Click);
2007-12-26 00:31:32 +00:00
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
2007-12-29 16:42:30 +00:00
this.apply.Location = new System.Drawing.Point(320, 428);
2007-12-26 00:31:32 +00:00
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 25);
this.apply.TabIndex = 16;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
2007-12-27 01:24:11 +00:00
this.apply.Click += new System.EventHandler(this.apply_Click);
2007-12-26 00:31:32 +00:00
//
// actiongroup
//
2007-12-26 14:29:36 +00:00
this.actiongroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
2007-12-26 00:31:32 +00:00
| System.Windows.Forms.AnchorStyles.Right)));
this.actiongroup.Controls.Add(this.hexenpanel);
2007-12-26 14:29:36 +00:00
this.actiongroup.Controls.Add(label2);
2007-12-26 00:31:32 +00:00
this.actiongroup.Controls.Add(this.action);
this.actiongroup.Controls.Add(this.browseaction);
this.actiongroup.Controls.Add(this.doompanel);
2007-12-26 14:29:36 +00:00
this.actiongroup.Location = new System.Drawing.Point(8, 169);
2007-12-26 00:31:32 +00:00
this.actiongroup.Name = "actiongroup";
2007-12-29 16:42:30 +00:00
this.actiongroup.Size = new System.Drawing.Size(517, 197);
2007-12-26 00:31:32 +00:00
this.actiongroup.TabIndex = 18;
this.actiongroup.TabStop = false;
this.actiongroup.Text = " Action ";
//
// hexenpanel
2007-12-26 14:29:36 +00:00
//
this.hexenpanel.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.hexenpanel.Controls.Add(this.arg3);
this.hexenpanel.Controls.Add(this.arg2);
this.hexenpanel.Controls.Add(this.arg4);
this.hexenpanel.Controls.Add(this.arg1);
this.hexenpanel.Controls.Add(this.arg0);
this.hexenpanel.Controls.Add(this.activation);
this.hexenpanel.Controls.Add(activationlabel);
this.hexenpanel.Controls.Add(this.arg1label);
this.hexenpanel.Controls.Add(this.arg0label);
this.hexenpanel.Controls.Add(this.arg3label);
this.hexenpanel.Controls.Add(this.arg2label);
this.hexenpanel.Controls.Add(this.arg4label);
this.hexenpanel.Location = new System.Drawing.Point(6, 54);
this.hexenpanel.Name = "hexenpanel";
2007-12-29 16:42:30 +00:00
this.hexenpanel.Size = new System.Drawing.Size(505, 137);
this.hexenpanel.TabIndex = 13;
//
// arg3
//
this.arg3.AllowNegative = false;
this.arg3.AllowRelative = true;
2007-12-29 16:42:30 +00:00
this.arg3.Location = new System.Drawing.Point(377, 55);
this.arg3.Name = "arg3";
this.arg3.Size = new System.Drawing.Size(50, 20);
this.arg3.TabIndex = 21;
//
// arg2
//
this.arg2.AllowNegative = false;
this.arg2.AllowRelative = true;
2007-12-29 16:42:30 +00:00
this.arg2.Location = new System.Drawing.Point(167, 107);
this.arg2.Name = "arg2";
this.arg2.Size = new System.Drawing.Size(50, 20);
this.arg2.TabIndex = 19;
//
// arg4
//
this.arg4.AllowNegative = false;
this.arg4.AllowRelative = true;
2007-12-29 16:42:30 +00:00
this.arg4.Location = new System.Drawing.Point(377, 81);
this.arg4.Name = "arg4";
this.arg4.Size = new System.Drawing.Size(50, 20);
this.arg4.TabIndex = 17;
//
// arg1
//
this.arg1.AllowNegative = false;
this.arg1.AllowRelative = true;
2007-12-29 16:42:30 +00:00
this.arg1.Location = new System.Drawing.Point(167, 81);
this.arg1.Name = "arg1";
this.arg1.Size = new System.Drawing.Size(50, 20);
this.arg1.TabIndex = 15;
//
// arg0
//
this.arg0.AllowNegative = false;
this.arg0.AllowRelative = true;
2007-12-29 16:42:30 +00:00
this.arg0.Location = new System.Drawing.Point(167, 55);
this.arg0.Name = "arg0";
this.arg0.Size = new System.Drawing.Size(50, 20);
this.arg0.TabIndex = 13;
//
// activation
//
this.activation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.activation.FormattingEnabled = true;
this.activation.Location = new System.Drawing.Point(56, 14);
this.activation.Name = "activation";
this.activation.Size = new System.Drawing.Size(437, 22);
this.activation.TabIndex = 11;
2007-12-26 14:29:36 +00:00
//
2007-12-26 00:31:32 +00:00
// action
//
this.action.BackColor = System.Drawing.SystemColors.Control;
this.action.Cursor = System.Windows.Forms.Cursors.Default;
2007-12-26 01:33:46 +00:00
this.action.Empty = false;
2007-12-26 14:29:36 +00:00
this.action.Location = new System.Drawing.Point(62, 27);
2007-12-26 00:31:32 +00:00
this.action.Name = "action";
this.action.Size = new System.Drawing.Size(401, 21);
2007-12-26 00:31:32 +00:00
this.action.TabIndex = 5;
2007-12-26 01:33:46 +00:00
this.action.Value = 402;
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
2007-12-26 00:31:32 +00:00
//
// browseaction
//
this.browseaction.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.browseaction.Image = global::CodeImp.DoomBuilder.Properties.Resources.treeview;
this.browseaction.Location = new System.Drawing.Point(469, 26);
2007-12-26 00:31:32 +00:00
this.browseaction.Name = "browseaction";
this.browseaction.Padding = new System.Windows.Forms.Padding(0, 0, 1, 3);
this.browseaction.Size = new System.Drawing.Size(30, 23);
this.browseaction.TabIndex = 3;
this.browseaction.Text = " ";
this.browseaction.UseVisualStyleBackColor = true;
this.browseaction.Click += new System.EventHandler(this.browseaction_Click);
//
// doompanel
//
this.doompanel.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.doompanel.Controls.Add(this.tag);
this.doompanel.Controls.Add(taglabel);
this.doompanel.Controls.Add(this.newtag);
this.doompanel.Location = new System.Drawing.Point(6, 54);
this.doompanel.Name = "doompanel";
2007-12-29 16:42:30 +00:00
this.doompanel.Size = new System.Drawing.Size(505, 137);
this.doompanel.TabIndex = 12;
//
// tag
//
this.tag.AllowNegative = false;
this.tag.AllowRelative = true;
this.tag.Location = new System.Drawing.Point(56, 19);
this.tag.Name = "tag";
this.tag.Size = new System.Drawing.Size(68, 20);
this.tag.TabIndex = 7;
//
// newtag
//
this.newtag.Location = new System.Drawing.Point(130, 18);
this.newtag.Name = "newtag";
this.newtag.Size = new System.Drawing.Size(76, 23);
this.newtag.TabIndex = 8;
this.newtag.Text = "New Tag";
this.newtag.UseVisualStyleBackColor = true;
this.newtag.Click += new System.EventHandler(this.newtag_Click);
2007-12-26 00:31:32 +00:00
//
// settingsgroup
//
this.settingsgroup.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.settingsgroup.Controls.Add(this.flags);
2007-12-26 14:29:36 +00:00
this.settingsgroup.Location = new System.Drawing.Point(8, 8);
2007-12-26 00:31:32 +00:00
this.settingsgroup.Name = "settingsgroup";
this.settingsgroup.Size = new System.Drawing.Size(517, 152);
2007-12-26 00:31:32 +00:00
this.settingsgroup.TabIndex = 19;
this.settingsgroup.TabStop = false;
this.settingsgroup.Text = " Settings ";
//
// flags
//
this.flags.AutoScroll = true;
this.flags.Columns = 3;
this.flags.Location = new System.Drawing.Point(18, 26);
this.flags.Name = "flags";
this.flags.Size = new System.Drawing.Size(493, 119);
2007-12-26 00:31:32 +00:00
this.flags.TabIndex = 0;
//
// checkBox1
//
this.checkBox1.Location = new System.Drawing.Point(0, 0);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(104, 24);
this.checkBox1.TabIndex = 0;
this.checkBox1.Text = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
2007-12-26 14:29:36 +00:00
// tabs
//
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.Controls.Add(this.tabPage1);
this.tabs.Controls.Add(this.tabPage2);
this.tabs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabs.Location = new System.Drawing.Point(10, 10);
this.tabs.Margin = new System.Windows.Forms.Padding(1);
this.tabs.Name = "tabs";
this.tabs.SelectedIndex = 0;
2007-12-29 16:42:30 +00:00
this.tabs.Size = new System.Drawing.Size(541, 401);
2007-12-26 14:29:36 +00:00
this.tabs.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
this.tabs.TabIndex = 20;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.settingsgroup);
this.tabPage1.Controls.Add(this.actiongroup);
this.tabPage1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabPage1.Location = new System.Drawing.Point(4, 23);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(5);
2007-12-29 16:42:30 +00:00
this.tabPage1.Size = new System.Drawing.Size(533, 374);
2007-12-26 14:29:36 +00:00
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Properties";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.backside);
this.tabPage2.Controls.Add(this.backgroup);
this.tabPage2.Controls.Add(this.frontside);
this.tabPage2.Controls.Add(this.frontgroup);
this.tabPage2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabPage2.Location = new System.Drawing.Point(4, 23);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(5);
2007-12-29 16:42:30 +00:00
this.tabPage2.Size = new System.Drawing.Size(533, 374);
2007-12-26 14:29:36 +00:00
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Sidedefs";
this.tabPage2.UseVisualStyleBackColor = true;
//
// backside
//
this.backside.AutoSize = true;
2007-12-29 16:42:30 +00:00
this.backside.Location = new System.Drawing.Point(20, 188);
2007-12-26 14:29:36 +00:00
this.backside.Name = "backside";
this.backside.Size = new System.Drawing.Size(74, 18);
this.backside.TabIndex = 2;
this.backside.Text = "Back Side";
this.backside.UseVisualStyleBackColor = true;
2007-12-27 01:24:11 +00:00
this.backside.CheckStateChanged += new System.EventHandler(this.backside_CheckStateChanged);
2007-12-26 14:29:36 +00:00
//
// backgroup
//
2007-12-27 01:24:11 +00:00
this.backgroup.Controls.Add(this.backsector);
this.backgroup.Controls.Add(label12);
2007-12-26 14:29:36 +00:00
this.backgroup.Controls.Add(this.backlow);
this.backgroup.Controls.Add(this.backmid);
this.backgroup.Controls.Add(this.backhigh);
this.backgroup.Controls.Add(this.backoffsety);
this.backgroup.Controls.Add(this.backoffsetx);
this.backgroup.Controls.Add(label7);
this.backgroup.Controls.Add(label8);
this.backgroup.Controls.Add(label9);
this.backgroup.Controls.Add(label10);
2007-12-27 01:24:11 +00:00
this.backgroup.Enabled = false;
2007-12-29 16:42:30 +00:00
this.backgroup.Location = new System.Drawing.Point(8, 191);
2007-12-26 14:29:36 +00:00
this.backgroup.Name = "backgroup";
2007-12-29 16:42:30 +00:00
this.backgroup.Size = new System.Drawing.Size(517, 175);
2007-12-26 14:29:36 +00:00
this.backgroup.TabIndex = 1;
this.backgroup.TabStop = false;
this.backgroup.Text = " ";
//
2007-12-27 01:24:11 +00:00
// backsector
//
this.backsector.AllowNegative = false;
this.backsector.AllowRelative = false;
this.backsector.Location = new System.Drawing.Point(103, 37);
this.backsector.Name = "backsector";
this.backsector.Size = new System.Drawing.Size(94, 20);
this.backsector.TabIndex = 17;
this.backsector.Enter += new System.EventHandler(this.SelectAllText);
//
2007-12-26 14:29:36 +00:00
// backlow
//
this.backlow.Location = new System.Drawing.Point(416, 37);
this.backlow.Name = "backlow";
this.backlow.Required = false;
2007-12-29 16:42:30 +00:00
this.backlow.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.backlow.TabIndex = 15;
this.backlow.TextureName = "";
//
// backmid
//
this.backmid.Location = new System.Drawing.Point(325, 37);
2007-12-26 14:29:36 +00:00
this.backmid.Name = "backmid";
this.backmid.Required = false;
2007-12-29 16:42:30 +00:00
this.backmid.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.backmid.TabIndex = 14;
this.backmid.TextureName = "";
//
// backhigh
//
this.backhigh.Location = new System.Drawing.Point(234, 37);
2007-12-26 14:29:36 +00:00
this.backhigh.Name = "backhigh";
this.backhigh.Required = false;
2007-12-29 16:42:30 +00:00
this.backhigh.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.backhigh.TabIndex = 13;
this.backhigh.TextureName = "";
//
// backoffsety
//
2007-12-27 01:24:11 +00:00
this.backoffsety.AllowNegative = true;
this.backoffsety.AllowRelative = true;
this.backoffsety.Location = new System.Drawing.Point(152, 76);
2007-12-26 14:29:36 +00:00
this.backoffsety.Name = "backoffsety";
this.backoffsety.Size = new System.Drawing.Size(45, 20);
this.backoffsety.TabIndex = 9;
2007-12-27 01:24:11 +00:00
this.backoffsety.Enter += new System.EventHandler(this.SelectAllText);
2007-12-26 14:29:36 +00:00
//
// backoffsetx
//
2007-12-27 01:24:11 +00:00
this.backoffsetx.AllowNegative = true;
this.backoffsetx.AllowRelative = true;
this.backoffsetx.Location = new System.Drawing.Point(103, 76);
2007-12-26 14:29:36 +00:00
this.backoffsetx.Name = "backoffsetx";
this.backoffsetx.Size = new System.Drawing.Size(45, 20);
this.backoffsetx.TabIndex = 8;
2007-12-27 01:24:11 +00:00
this.backoffsetx.Enter += new System.EventHandler(this.SelectAllText);
2007-12-26 14:29:36 +00:00
//
// frontside
//
this.frontside.AutoSize = true;
this.frontside.Location = new System.Drawing.Point(20, 6);
this.frontside.Name = "frontside";
this.frontside.Size = new System.Drawing.Size(75, 18);
this.frontside.TabIndex = 0;
this.frontside.Text = "Front Side";
this.frontside.UseVisualStyleBackColor = true;
2007-12-27 01:24:11 +00:00
this.frontside.CheckStateChanged += new System.EventHandler(this.frontside_CheckStateChanged);
2007-12-26 14:29:36 +00:00
//
// frontgroup
//
2007-12-27 01:24:11 +00:00
this.frontgroup.Controls.Add(this.frontsector);
this.frontgroup.Controls.Add(label11);
2007-12-26 14:29:36 +00:00
this.frontgroup.Controls.Add(this.frontlow);
this.frontgroup.Controls.Add(this.frontmid);
this.frontgroup.Controls.Add(this.fronthigh);
this.frontgroup.Controls.Add(this.frontoffsety);
this.frontgroup.Controls.Add(this.frontoffsetx);
this.frontgroup.Controls.Add(label6);
this.frontgroup.Controls.Add(label5);
this.frontgroup.Controls.Add(label4);
this.frontgroup.Controls.Add(label3);
2007-12-27 01:24:11 +00:00
this.frontgroup.Enabled = false;
2007-12-26 14:29:36 +00:00
this.frontgroup.Location = new System.Drawing.Point(8, 8);
this.frontgroup.Name = "frontgroup";
2007-12-29 16:42:30 +00:00
this.frontgroup.Size = new System.Drawing.Size(517, 175);
2007-12-26 14:29:36 +00:00
this.frontgroup.TabIndex = 0;
this.frontgroup.TabStop = false;
this.frontgroup.Text = " ";
//
2007-12-27 01:24:11 +00:00
// frontsector
//
this.frontsector.AllowNegative = false;
this.frontsector.AllowRelative = false;
this.frontsector.Location = new System.Drawing.Point(103, 37);
this.frontsector.Name = "frontsector";
this.frontsector.Size = new System.Drawing.Size(94, 20);
this.frontsector.TabIndex = 14;
this.frontsector.Enter += new System.EventHandler(this.SelectAllText);
//
2007-12-26 14:29:36 +00:00
// frontlow
//
this.frontlow.Location = new System.Drawing.Point(416, 37);
this.frontlow.Name = "frontlow";
this.frontlow.Required = false;
2007-12-29 16:42:30 +00:00
this.frontlow.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.frontlow.TabIndex = 12;
this.frontlow.TextureName = "";
//
// frontmid
//
this.frontmid.Location = new System.Drawing.Point(325, 37);
2007-12-26 14:29:36 +00:00
this.frontmid.Name = "frontmid";
this.frontmid.Required = false;
2007-12-29 16:42:30 +00:00
this.frontmid.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.frontmid.TabIndex = 11;
this.frontmid.TextureName = "";
//
// fronthigh
//
this.fronthigh.Location = new System.Drawing.Point(234, 37);
2007-12-26 14:29:36 +00:00
this.fronthigh.Name = "fronthigh";
this.fronthigh.Required = false;
2007-12-29 16:42:30 +00:00
this.fronthigh.Size = new System.Drawing.Size(83, 120);
2007-12-26 14:29:36 +00:00
this.fronthigh.TabIndex = 10;
this.fronthigh.TextureName = "";
//
// frontoffsety
//
2007-12-27 01:24:11 +00:00
this.frontoffsety.AllowNegative = true;
this.frontoffsety.AllowRelative = true;
this.frontoffsety.Location = new System.Drawing.Point(152, 76);
2007-12-26 14:29:36 +00:00
this.frontoffsety.Name = "frontoffsety";
this.frontoffsety.Size = new System.Drawing.Size(45, 20);
this.frontoffsety.TabIndex = 9;
2007-12-27 01:24:11 +00:00
this.frontoffsety.Enter += new System.EventHandler(this.SelectAllText);
2007-12-26 14:29:36 +00:00
//
// frontoffsetx
//
2007-12-27 01:24:11 +00:00
this.frontoffsetx.AllowNegative = true;
this.frontoffsetx.AllowRelative = true;
this.frontoffsetx.Location = new System.Drawing.Point(103, 76);
2007-12-26 14:29:36 +00:00
this.frontoffsetx.Name = "frontoffsetx";
this.frontoffsetx.Size = new System.Drawing.Size(45, 20);
this.frontoffsetx.TabIndex = 8;
2007-12-27 01:24:11 +00:00
this.frontoffsetx.Enter += new System.EventHandler(this.SelectAllText);
2007-12-26 14:29:36 +00:00
//
2007-12-26 00:31:32 +00:00
// LinedefEditForm
//
2007-12-26 14:29:36 +00:00
this.AcceptButton = this.apply;
2007-12-26 00:31:32 +00:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
2007-12-26 14:29:36 +00:00
this.CancelButton = this.cancel;
2007-12-29 16:42:30 +00:00
this.ClientSize = new System.Drawing.Size(561, 463);
2007-12-26 14:29:36 +00:00
this.Controls.Add(this.tabs);
2007-12-26 00:31:32 +00:00
this.Controls.Add(this.cancel);
this.Controls.Add(this.apply);
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "LinedefEditForm";
this.Opacity = 0;
2007-12-26 01:33:46 +00:00
this.ShowInTaskbar = false;
2007-12-26 00:31:32 +00:00
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Linedefs";
this.actiongroup.ResumeLayout(false);
2007-12-26 14:29:36 +00:00
this.actiongroup.PerformLayout();
this.hexenpanel.ResumeLayout(false);
this.hexenpanel.PerformLayout();
this.doompanel.ResumeLayout(false);
this.doompanel.PerformLayout();
2007-12-26 00:31:32 +00:00
this.settingsgroup.ResumeLayout(false);
2007-12-26 14:29:36 +00:00
this.tabs.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.backgroup.ResumeLayout(false);
this.backgroup.PerformLayout();
this.frontgroup.ResumeLayout(false);
this.frontgroup.PerformLayout();
2007-12-26 00:31:32 +00:00
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button cancel;
private System.Windows.Forms.Button apply;
private System.Windows.Forms.GroupBox actiongroup;
private System.Windows.Forms.GroupBox settingsgroup;
private CheckboxArrayControl flags;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Button browseaction;
private ActionSelectorControl action;
2007-12-26 14:29:36 +00:00
private NumericTextbox tag;
private System.Windows.Forms.Button newtag;
private System.Windows.Forms.TabControl tabs;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.GroupBox frontgroup;
private System.Windows.Forms.CheckBox frontside;
private NumericTextbox frontoffsety;
private NumericTextbox frontoffsetx;
private System.Windows.Forms.CheckBox backside;
private System.Windows.Forms.GroupBox backgroup;
private NumericTextbox backoffsety;
private NumericTextbox backoffsetx;
private TextureSelectorControl frontlow;
private TextureSelectorControl frontmid;
private TextureSelectorControl fronthigh;
private TextureSelectorControl backlow;
private TextureSelectorControl backmid;
private TextureSelectorControl backhigh;
2007-12-27 01:24:11 +00:00
private NumericTextbox backsector;
private NumericTextbox frontsector;
private System.Windows.Forms.ComboBox activation;
private System.Windows.Forms.Panel doompanel;
private System.Windows.Forms.Panel hexenpanel;
private NumericTextbox arg3;
private NumericTextbox arg2;
private NumericTextbox arg4;
private NumericTextbox arg1;
private NumericTextbox arg0;
private System.Windows.Forms.Label arg0label;
private System.Windows.Forms.Label arg1label;
private System.Windows.Forms.Label arg4label;
private System.Windows.Forms.Label arg2label;
private System.Windows.Forms.Label arg3label;
2007-12-26 00:31:32 +00:00
}
}