graphical interface fixes

This commit is contained in:
codeimp 2009-01-02 18:27:08 +00:00
parent 8cfc37a45d
commit 5a05905177
8 changed files with 147 additions and 364 deletions

BIN
Build/Trackbar.dll Normal file

Binary file not shown.

View file

@ -497,6 +497,7 @@
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Trackbar, Version=1.0.2486.37933, Culture=neutral, PublicKeyToken=503bf28f63ad27b4" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Windows\AboutForm.resx">

View file

@ -54,6 +54,7 @@ namespace CodeImp.DoomBuilder.Controls
//
// button
//
this.button.BackColor = System.Drawing.SystemColors.Control;
this.button.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.button.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.button.Image = global::CodeImp.DoomBuilder.Properties.Resources.ColorPick;
@ -62,10 +63,10 @@ namespace CodeImp.DoomBuilder.Controls
this.button.Padding = new System.Windows.Forms.Padding(0, 0, 2, 3);
this.button.Size = new System.Drawing.Size(26, 23);
this.button.TabIndex = 2;
this.button.UseVisualStyleBackColor = true;
this.button.UseVisualStyleBackColor = false;
this.button.MouseMove += new System.Windows.Forms.MouseEventHandler(this.button_MouseMove);
this.button.Click += new System.EventHandler(this.button_Click);
this.button.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button_MouseDown);
this.button.MouseMove += new System.Windows.Forms.MouseEventHandler(this.button_MouseMove);
this.button.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button_MouseUp);
//
// dialog
@ -75,7 +76,7 @@ namespace CodeImp.DoomBuilder.Controls
// ColorControl
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.SystemColors.Control;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.button);
this.Controls.Add(this.panel);
this.Controls.Add(this.label);

View file

@ -353,7 +353,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// skill
//
this.skill.BackColor = System.Drawing.SystemColors.Control;
this.skill.BackColor = System.Drawing.Color.Transparent;
this.skill.Cursor = System.Windows.Forms.Cursors.Default;
this.skill.Empty = false;
this.skill.GeneralizedCategories = null;

View file

@ -299,7 +299,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// action
//
this.action.BackColor = System.Drawing.SystemColors.Control;
this.action.BackColor = System.Drawing.Color.Transparent;
this.action.Cursor = System.Windows.Forms.Cursors.Default;
this.action.Empty = false;
this.action.GeneralizedCategories = null;
@ -557,7 +557,7 @@ namespace CodeImp.DoomBuilder.Windows
this.tabsidedefs.Location = new System.Drawing.Point(4, 23);
this.tabsidedefs.Name = "tabsidedefs";
this.tabsidedefs.Padding = new System.Windows.Forms.Padding(5);
this.tabsidedefs.Size = new System.Drawing.Size(533, 530);
this.tabsidedefs.Size = new System.Drawing.Size(533, 538);
this.tabsidedefs.TabIndex = 1;
this.tabsidedefs.Text = "Sidedefs";
this.tabsidedefs.UseVisualStyleBackColor = true;
@ -578,8 +578,8 @@ namespace CodeImp.DoomBuilder.Windows
//
this.splitter.Panel2.Controls.Add(this.backside);
this.splitter.Panel2.Controls.Add(this.backgroup);
this.splitter.Size = new System.Drawing.Size(523, 520);
this.splitter.SplitterDistance = 253;
this.splitter.Size = new System.Drawing.Size(523, 528);
this.splitter.SplitterDistance = 256;
this.splitter.TabIndex = 3;
//
// frontside
@ -613,7 +613,7 @@ namespace CodeImp.DoomBuilder.Windows
this.frontgroup.Enabled = false;
this.frontgroup.Location = new System.Drawing.Point(3, 3);
this.frontgroup.Name = "frontgroup";
this.frontgroup.Size = new System.Drawing.Size(517, 247);
this.frontgroup.Size = new System.Drawing.Size(517, 250);
this.frontgroup.TabIndex = 0;
this.frontgroup.TabStop = false;
this.frontgroup.Text = " ";
@ -720,7 +720,7 @@ namespace CodeImp.DoomBuilder.Windows
this.backgroup.Enabled = false;
this.backgroup.Location = new System.Drawing.Point(3, 3);
this.backgroup.Name = "backgroup";
this.backgroup.Size = new System.Drawing.Size(519, 257);
this.backgroup.Size = new System.Drawing.Size(519, 262);
this.backgroup.TabIndex = 1;
this.backgroup.TabStop = false;
this.backgroup.Text = " ";
@ -803,7 +803,7 @@ namespace CodeImp.DoomBuilder.Windows
this.tabcustom.Location = new System.Drawing.Point(4, 23);
this.tabcustom.Name = "tabcustom";
this.tabcustom.Padding = new System.Windows.Forms.Padding(3);
this.tabcustom.Size = new System.Drawing.Size(533, 530);
this.tabcustom.Size = new System.Drawing.Size(533, 538);
this.tabcustom.TabIndex = 2;
this.tabcustom.Text = "Custom";
this.tabcustom.UseVisualStyleBackColor = true;
@ -818,7 +818,7 @@ namespace CodeImp.DoomBuilder.Windows
this.fieldslist.Location = new System.Drawing.Point(11, 11);
this.fieldslist.Margin = new System.Windows.Forms.Padding(8);
this.fieldslist.Name = "fieldslist";
this.fieldslist.Size = new System.Drawing.Size(511, 508);
this.fieldslist.Size = new System.Drawing.Size(511, 516);
this.fieldslist.TabIndex = 0;
//
// LinedefEditForm

View file

@ -62,19 +62,19 @@ namespace CodeImp.DoomBuilder.Windows
this.scriptfontname = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.viewdistance = new Dotnetrix.Controls.TrackBar();
this.movespeed = new Dotnetrix.Controls.TrackBar();
this.mousespeed = new Dotnetrix.Controls.TrackBar();
this.fieldofview = new Dotnetrix.Controls.TrackBar();
this.viewdistancelabel = new System.Windows.Forms.Label();
this.viewdistance = new System.Windows.Forms.TrackBar();
this.label13 = new System.Windows.Forms.Label();
this.fixedaspect = new System.Windows.Forms.CheckBox();
this.invertyaxis = new System.Windows.Forms.CheckBox();
this.movespeedlabel = new System.Windows.Forms.Label();
this.movespeed = new System.Windows.Forms.TrackBar();
this.label11 = new System.Windows.Forms.Label();
this.mousespeedlabel = new System.Windows.Forms.Label();
this.mousespeed = new System.Windows.Forms.TrackBar();
this.label9 = new System.Windows.Forms.Label();
this.fieldofviewlabel = new System.Windows.Forms.Label();
this.fieldofview = new System.Windows.Forms.TrackBar();
this.label4 = new System.Windows.Forms.Label();
this.visualbilinear = new System.Windows.Forms.CheckBox();
this.tabkeys = new System.Windows.Forms.TabPage();
@ -89,9 +89,7 @@ namespace CodeImp.DoomBuilder.Windows
this.actiondescription = new System.Windows.Forms.Label();
this.tabcolors = new System.Windows.Forms.TabPage();
this.imagebrightnesslabel = new System.Windows.Forms.Label();
this.imagebrightness = new System.Windows.Forms.TrackBar();
this.doublesidedalphalabel = new System.Windows.Forms.Label();
this.doublesidedalpha = new System.Windows.Forms.TrackBar();
this.label2 = new System.Windows.Forms.Label();
this.blackbrowsers = new System.Windows.Forms.CheckBox();
this.colorsgroup3 = new System.Windows.Forms.GroupBox();
@ -102,6 +100,8 @@ namespace CodeImp.DoomBuilder.Windows
this.colorlinenumbers = new CodeImp.DoomBuilder.Controls.ColorControl();
this.colorcomments = new CodeImp.DoomBuilder.Controls.ColorControl();
this.colorplaintext = new CodeImp.DoomBuilder.Controls.ColorControl();
this.doublesidedalpha = new Dotnetrix.Controls.TrackBar();
this.imagebrightness = new Dotnetrix.Controls.TrackBar();
label7 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
@ -121,9 +121,9 @@ namespace CodeImp.DoomBuilder.Windows
this.tabkeys.SuspendLayout();
this.actioncontrolpanel.SuspendLayout();
this.tabcolors.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.imagebrightness)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.doublesidedalpha)).BeginInit();
this.colorsgroup3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.doublesidedalpha)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.imagebrightness)).BeginInit();
this.SuspendLayout();
//
// label7
@ -251,7 +251,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorgrid64
//
this.colorgrid64.BackColor = System.Drawing.SystemColors.Control;
this.colorgrid64.BackColor = System.Drawing.Color.Transparent;
this.colorgrid64.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorgrid64.Label = "64 Block grid:";
this.colorgrid64.Location = new System.Drawing.Point(15, 288);
@ -263,7 +263,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorgrid
//
this.colorgrid.BackColor = System.Drawing.SystemColors.Control;
this.colorgrid.BackColor = System.Drawing.Color.Transparent;
this.colorgrid.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorgrid.Label = "Custom grid:";
this.colorgrid.Location = new System.Drawing.Point(15, 259);
@ -275,7 +275,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorindication
//
this.colorindication.BackColor = System.Drawing.SystemColors.Control;
this.colorindication.BackColor = System.Drawing.Color.Transparent;
this.colorindication.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorindication.Label = "Indications:";
this.colorindication.Location = new System.Drawing.Point(15, 230);
@ -287,7 +287,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorsoundlinedefs
//
this.colorsoundlinedefs.BackColor = System.Drawing.SystemColors.Control;
this.colorsoundlinedefs.BackColor = System.Drawing.Color.Transparent;
this.colorsoundlinedefs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorsoundlinedefs.Label = "Sound lines:";
this.colorsoundlinedefs.Location = new System.Drawing.Point(15, 143);
@ -299,7 +299,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorspeciallinedefs
//
this.colorspeciallinedefs.BackColor = System.Drawing.SystemColors.Control;
this.colorspeciallinedefs.BackColor = System.Drawing.Color.Transparent;
this.colorspeciallinedefs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorspeciallinedefs.Label = "Action lines:";
this.colorspeciallinedefs.Location = new System.Drawing.Point(15, 114);
@ -311,7 +311,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorbackcolor
//
this.colorbackcolor.BackColor = System.Drawing.SystemColors.Control;
this.colorbackcolor.BackColor = System.Drawing.Color.Transparent;
this.colorbackcolor.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorbackcolor.Label = "Background:";
this.colorbackcolor.Location = new System.Drawing.Point(15, 27);
@ -323,7 +323,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorselection
//
this.colorselection.BackColor = System.Drawing.SystemColors.Control;
this.colorselection.BackColor = System.Drawing.Color.Transparent;
this.colorselection.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorselection.Label = "Selection:";
this.colorselection.Location = new System.Drawing.Point(15, 201);
@ -335,7 +335,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorvertices
//
this.colorvertices.BackColor = System.Drawing.SystemColors.Control;
this.colorvertices.BackColor = System.Drawing.Color.Transparent;
this.colorvertices.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorvertices.Label = "Vertices:";
this.colorvertices.Location = new System.Drawing.Point(15, 56);
@ -347,7 +347,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorhighlight
//
this.colorhighlight.BackColor = System.Drawing.SystemColors.Control;
this.colorhighlight.BackColor = System.Drawing.Color.Transparent;
this.colorhighlight.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorhighlight.Label = "Highlight:";
this.colorhighlight.Location = new System.Drawing.Point(15, 172);
@ -359,7 +359,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorlinedefs
//
this.colorlinedefs.BackColor = System.Drawing.SystemColors.Control;
this.colorlinedefs.BackColor = System.Drawing.Color.Transparent;
this.colorlinedefs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorlinedefs.Label = "Common lines:";
this.colorlinedefs.Location = new System.Drawing.Point(15, 85);
@ -526,19 +526,19 @@ namespace CodeImp.DoomBuilder.Windows
//
// groupBox2
//
this.groupBox2.Controls.Add(this.viewdistancelabel);
this.groupBox2.Controls.Add(this.viewdistance);
this.groupBox2.Controls.Add(this.movespeed);
this.groupBox2.Controls.Add(this.mousespeed);
this.groupBox2.Controls.Add(this.fieldofview);
this.groupBox2.Controls.Add(this.viewdistancelabel);
this.groupBox2.Controls.Add(this.label13);
this.groupBox2.Controls.Add(this.fixedaspect);
this.groupBox2.Controls.Add(this.invertyaxis);
this.groupBox2.Controls.Add(this.movespeedlabel);
this.groupBox2.Controls.Add(this.movespeed);
this.groupBox2.Controls.Add(this.label11);
this.groupBox2.Controls.Add(this.mousespeedlabel);
this.groupBox2.Controls.Add(this.mousespeed);
this.groupBox2.Controls.Add(this.label9);
this.groupBox2.Controls.Add(this.fieldofviewlabel);
this.groupBox2.Controls.Add(this.fieldofview);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.visualbilinear);
this.groupBox2.Location = new System.Drawing.Point(262, 8);
@ -548,6 +548,56 @@ namespace CodeImp.DoomBuilder.Windows
this.groupBox2.TabStop = false;
this.groupBox2.Text = " Visual Modes ";
//
// viewdistance
//
this.viewdistance.LargeChange = 2;
this.viewdistance.Location = new System.Drawing.Point(103, 196);
this.viewdistance.Maximum = 15;
this.viewdistance.Minimum = 1;
this.viewdistance.Name = "viewdistance";
this.viewdistance.Size = new System.Drawing.Size(150, 45);
this.viewdistance.TabIndex = 34;
this.viewdistance.TickStyle = System.Windows.Forms.TickStyle.Both;
this.viewdistance.Value = 1;
this.viewdistance.ValueChanged += new System.EventHandler(this.viewdistance_ValueChanged);
//
// movespeed
//
this.movespeed.Location = new System.Drawing.Point(103, 141);
this.movespeed.Maximum = 20;
this.movespeed.Minimum = 1;
this.movespeed.Name = "movespeed";
this.movespeed.Size = new System.Drawing.Size(150, 45);
this.movespeed.TabIndex = 33;
this.movespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
this.movespeed.Value = 1;
this.movespeed.ValueChanged += new System.EventHandler(this.movespeed_ValueChanged);
//
// mousespeed
//
this.mousespeed.Location = new System.Drawing.Point(103, 84);
this.mousespeed.Maximum = 20;
this.mousespeed.Minimum = 1;
this.mousespeed.Name = "mousespeed";
this.mousespeed.Size = new System.Drawing.Size(150, 45);
this.mousespeed.TabIndex = 32;
this.mousespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
this.mousespeed.Value = 1;
this.mousespeed.ValueChanged += new System.EventHandler(this.mousespeed_ValueChanged);
//
// fieldofview
//
this.fieldofview.LargeChange = 1;
this.fieldofview.Location = new System.Drawing.Point(103, 29);
this.fieldofview.Maximum = 17;
this.fieldofview.Minimum = 5;
this.fieldofview.Name = "fieldofview";
this.fieldofview.Size = new System.Drawing.Size(150, 45);
this.fieldofview.TabIndex = 31;
this.fieldofview.TickStyle = System.Windows.Forms.TickStyle.Both;
this.fieldofview.Value = 5;
this.fieldofview.ValueChanged += new System.EventHandler(this.fieldofview_ValueChanged);
//
// viewdistancelabel
//
this.viewdistancelabel.AutoSize = true;
@ -557,19 +607,6 @@ namespace CodeImp.DoomBuilder.Windows
this.viewdistancelabel.TabIndex = 30;
this.viewdistancelabel.Text = "200 mp";
//
// viewdistance
//
this.viewdistance.LargeChange = 2;
this.viewdistance.Location = new System.Drawing.Point(103, 196);
this.viewdistance.Maximum = 15;
this.viewdistance.Minimum = 1;
this.viewdistance.Name = "viewdistance";
this.viewdistance.Size = new System.Drawing.Size(150, 42);
this.viewdistance.TabIndex = 29;
this.viewdistance.TickStyle = System.Windows.Forms.TickStyle.Both;
this.viewdistance.Value = 1;
this.viewdistance.ValueChanged += new System.EventHandler(this.viewdistance_ValueChanged);
//
// label13
//
this.label13.AutoSize = true;
@ -608,18 +645,6 @@ namespace CodeImp.DoomBuilder.Windows
this.movespeedlabel.TabIndex = 25;
this.movespeedlabel.Text = "100";
//
// movespeed
//
this.movespeed.Location = new System.Drawing.Point(103, 141);
this.movespeed.Maximum = 20;
this.movespeed.Minimum = 1;
this.movespeed.Name = "movespeed";
this.movespeed.Size = new System.Drawing.Size(150, 42);
this.movespeed.TabIndex = 24;
this.movespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
this.movespeed.Value = 1;
this.movespeed.ValueChanged += new System.EventHandler(this.movespeed_ValueChanged);
//
// label11
//
this.label11.AutoSize = true;
@ -638,18 +663,6 @@ namespace CodeImp.DoomBuilder.Windows
this.mousespeedlabel.TabIndex = 22;
this.mousespeedlabel.Text = "100";
//
// mousespeed
//
this.mousespeed.Location = new System.Drawing.Point(103, 84);
this.mousespeed.Maximum = 20;
this.mousespeed.Minimum = 1;
this.mousespeed.Name = "mousespeed";
this.mousespeed.Size = new System.Drawing.Size(150, 42);
this.mousespeed.TabIndex = 21;
this.mousespeed.TickStyle = System.Windows.Forms.TickStyle.Both;
this.mousespeed.Value = 1;
this.mousespeed.ValueChanged += new System.EventHandler(this.mousespeed_ValueChanged);
//
// label9
//
this.label9.AutoSize = true;
@ -668,19 +681,6 @@ namespace CodeImp.DoomBuilder.Windows
this.fieldofviewlabel.TabIndex = 19;
this.fieldofviewlabel.Text = "50°";
//
// fieldofview
//
this.fieldofview.LargeChange = 1;
this.fieldofview.Location = new System.Drawing.Point(103, 29);
this.fieldofview.Maximum = 17;
this.fieldofview.Minimum = 5;
this.fieldofview.Name = "fieldofview";
this.fieldofview.Size = new System.Drawing.Size(150, 42);
this.fieldofview.TabIndex = 18;
this.fieldofview.TickStyle = System.Windows.Forms.TickStyle.Both;
this.fieldofview.Value = 5;
this.fieldofview.ValueChanged += new System.EventHandler(this.fieldofview_ValueChanged);
//
// label4
//
this.label4.AutoSize = true;
@ -824,11 +824,11 @@ namespace CodeImp.DoomBuilder.Windows
//
// tabcolors
//
this.tabcolors.Controls.Add(this.imagebrightnesslabel);
this.tabcolors.Controls.Add(this.imagebrightness);
this.tabcolors.Controls.Add(this.doublesidedalpha);
this.tabcolors.Controls.Add(this.imagebrightnesslabel);
this.tabcolors.Controls.Add(label1);
this.tabcolors.Controls.Add(this.doublesidedalphalabel);
this.tabcolors.Controls.Add(this.doublesidedalpha);
this.tabcolors.Controls.Add(this.label2);
this.tabcolors.Controls.Add(this.blackbrowsers);
this.tabcolors.Controls.Add(this.colorsgroup3);
@ -851,16 +851,6 @@ namespace CodeImp.DoomBuilder.Windows
this.imagebrightnesslabel.TabIndex = 22;
this.imagebrightnesslabel.Text = "+ 0 y";
//
// imagebrightness
//
this.imagebrightness.LargeChange = 3;
this.imagebrightness.Location = new System.Drawing.Point(379, 235);
this.imagebrightness.Name = "imagebrightness";
this.imagebrightness.Size = new System.Drawing.Size(154, 42);
this.imagebrightness.TabIndex = 21;
this.imagebrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
this.imagebrightness.ValueChanged += new System.EventHandler(this.imagebrightness_ValueChanged);
//
// doublesidedalphalabel
//
this.doublesidedalphalabel.AutoSize = true;
@ -870,16 +860,6 @@ namespace CodeImp.DoomBuilder.Windows
this.doublesidedalphalabel.TabIndex = 16;
this.doublesidedalphalabel.Text = "0%";
//
// doublesidedalpha
//
this.doublesidedalpha.LargeChange = 3;
this.doublesidedalpha.Location = new System.Drawing.Point(379, 180);
this.doublesidedalpha.Name = "doublesidedalpha";
this.doublesidedalpha.Size = new System.Drawing.Size(154, 42);
this.doublesidedalpha.TabIndex = 15;
this.doublesidedalpha.TickStyle = System.Windows.Forms.TickStyle.Both;
this.doublesidedalpha.ValueChanged += new System.EventHandler(this.doublesidedalpha_ValueChanged);
//
// label2
//
this.label2.AutoSize = true;
@ -918,7 +898,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorconstants
//
this.colorconstants.BackColor = System.Drawing.SystemColors.Control;
this.colorconstants.BackColor = System.Drawing.Color.Transparent;
this.colorconstants.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorconstants.Label = "Constants:";
this.colorconstants.Location = new System.Drawing.Point(213, 85);
@ -930,7 +910,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorliterals
//
this.colorliterals.BackColor = System.Drawing.SystemColors.Control;
this.colorliterals.BackColor = System.Drawing.Color.Transparent;
this.colorliterals.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorliterals.Label = "Literals:";
this.colorliterals.Location = new System.Drawing.Point(213, 56);
@ -942,7 +922,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorscriptbackground
//
this.colorscriptbackground.BackColor = System.Drawing.SystemColors.Control;
this.colorscriptbackground.BackColor = System.Drawing.Color.Transparent;
this.colorscriptbackground.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorscriptbackground.Label = "Background:";
this.colorscriptbackground.Location = new System.Drawing.Point(15, 27);
@ -954,7 +934,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorkeywords
//
this.colorkeywords.BackColor = System.Drawing.SystemColors.Control;
this.colorkeywords.BackColor = System.Drawing.Color.Transparent;
this.colorkeywords.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorkeywords.Label = "Keywords:";
this.colorkeywords.Location = new System.Drawing.Point(213, 27);
@ -966,7 +946,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorlinenumbers
//
this.colorlinenumbers.BackColor = System.Drawing.SystemColors.Control;
this.colorlinenumbers.BackColor = System.Drawing.Color.Transparent;
this.colorlinenumbers.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorlinenumbers.Label = "Line numbers:";
this.colorlinenumbers.Location = new System.Drawing.Point(15, 56);
@ -978,7 +958,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorcomments
//
this.colorcomments.BackColor = System.Drawing.SystemColors.Control;
this.colorcomments.BackColor = System.Drawing.Color.Transparent;
this.colorcomments.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorcomments.Label = "Comments:";
this.colorcomments.Location = new System.Drawing.Point(15, 114);
@ -990,7 +970,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// colorplaintext
//
this.colorplaintext.BackColor = System.Drawing.SystemColors.Control;
this.colorplaintext.BackColor = System.Drawing.Color.Transparent;
this.colorplaintext.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.colorplaintext.Label = "Plain text:";
this.colorplaintext.Location = new System.Drawing.Point(15, 85);
@ -1000,6 +980,26 @@ namespace CodeImp.DoomBuilder.Windows
this.colorplaintext.Size = new System.Drawing.Size(150, 23);
this.colorplaintext.TabIndex = 12;
//
// doublesidedalpha
//
this.doublesidedalpha.LargeChange = 3;
this.doublesidedalpha.Location = new System.Drawing.Point(379, 180);
this.doublesidedalpha.Name = "doublesidedalpha";
this.doublesidedalpha.Size = new System.Drawing.Size(154, 45);
this.doublesidedalpha.TabIndex = 32;
this.doublesidedalpha.TickStyle = System.Windows.Forms.TickStyle.Both;
this.doublesidedalpha.ValueChanged += new System.EventHandler(this.doublesidedalpha_ValueChanged);
//
// imagebrightness
//
this.imagebrightness.LargeChange = 3;
this.imagebrightness.Location = new System.Drawing.Point(379, 235);
this.imagebrightness.Name = "imagebrightness";
this.imagebrightness.Size = new System.Drawing.Size(154, 45);
this.imagebrightness.TabIndex = 33;
this.imagebrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
this.imagebrightness.ValueChanged += new System.EventHandler(this.imagebrightness_ValueChanged);
//
// PreferencesForm
//
this.AcceptButton = this.apply;
@ -1039,9 +1039,9 @@ namespace CodeImp.DoomBuilder.Windows
this.actioncontrolpanel.PerformLayout();
this.tabcolors.ResumeLayout(false);
this.tabcolors.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.imagebrightness)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.doublesidedalpha)).EndInit();
this.colorsgroup3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.doublesidedalpha)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.imagebrightness)).EndInit();
this.ResumeLayout(false);
}
@ -1087,23 +1087,17 @@ namespace CodeImp.DoomBuilder.Windows
private System.Windows.Forms.CheckBox squarethings;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label doublesidedalphalabel;
private System.Windows.Forms.TrackBar doublesidedalpha;
private System.Windows.Forms.Label imagebrightnesslabel;
private System.Windows.Forms.TrackBar imagebrightness;
private System.Windows.Forms.CheckBox classicbilinear;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox visualbilinear;
private System.Windows.Forms.Label fieldofviewlabel;
private System.Windows.Forms.TrackBar fieldofview;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label movespeedlabel;
private System.Windows.Forms.TrackBar movespeed;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label mousespeedlabel;
private System.Windows.Forms.TrackBar mousespeed;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label viewdistancelabel;
private System.Windows.Forms.TrackBar viewdistance;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.CheckBox fixedaspect;
private System.Windows.Forms.CheckBox invertyaxis;
@ -1117,5 +1111,11 @@ namespace CodeImp.DoomBuilder.Windows
private System.Windows.Forms.ComboBox scriptfontsize;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label scriptfontlabel;
private Dotnetrix.Controls.TrackBar fieldofview;
private Dotnetrix.Controls.TrackBar movespeed;
private Dotnetrix.Controls.TrackBar mousespeed;
private Dotnetrix.Controls.TrackBar viewdistance;
private Dotnetrix.Controls.TrackBar doublesidedalpha;
private Dotnetrix.Controls.TrackBar imagebrightness;
}
}

View file

@ -117,238 +117,19 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label7.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label6.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="groupBox1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="groupBox1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label14.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="defaultviewmode.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="classicbilinear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="squarethings.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="qualitydisplay.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="colorsgroup1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorgrid64.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorgrid.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorindication.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorsoundlinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorspeciallinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorbackcolor.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorselection.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorvertices.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorhighlight.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorlinedefs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="cancel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="apply.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tabs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tabinterface.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="groupBox3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="panel1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="scriptfontlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="scriptfontsize.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label8.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="scriptfontbold.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="scriptfontname.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="groupBox2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="viewdistancelabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="viewdistance.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label13.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="fixedaspect.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="invertyaxis.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="movespeedlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="movespeed.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label11.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="mousespeedlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="mousespeed.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label9.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="fieldofviewlabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="fieldofview.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="visualbilinear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tabkeys.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="listactions.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actioncontrolpanel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actioncontrol.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actiontitle.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actioncontrolclear.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actionkey.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="actiondescription.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tabcolors.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="imagebrightnesslabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="imagebrightness.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="doublesidedalphalabel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="doublesidedalpha.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="blackbrowsers.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorsgroup3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorconstants.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorliterals.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorscriptbackground.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorkeywords.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorlinenumbers.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorcomments.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="colorplaintext.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>

View file

@ -37,20 +37,20 @@ namespace CodeImp.DoomBuilder.Windows
System.Windows.Forms.Label label8;
System.Windows.Forms.GroupBox groupfloorceiling;
System.Windows.Forms.Label label7;
System.Windows.Forms.Label label6;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label label2;
System.Windows.Forms.Label label4;
System.Windows.Forms.Label label6;
this.tag = new CodeImp.DoomBuilder.Controls.NumericTextbox();
this.newtag = new System.Windows.Forms.Button();
this.browseeffect = new System.Windows.Forms.Button();
this.brightness = new CodeImp.DoomBuilder.Controls.NumericTextbox();
this.effect = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.sectorheight = new System.Windows.Forms.Label();
this.ceilingheight = new CodeImp.DoomBuilder.Controls.NumericTextbox();
this.floorheight = new CodeImp.DoomBuilder.Controls.NumericTextbox();
this.floortex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.ceilingtex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.ceilingheight = new CodeImp.DoomBuilder.Controls.NumericTextbox();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.tabs = new System.Windows.Forms.TabControl();
@ -68,10 +68,10 @@ namespace CodeImp.DoomBuilder.Windows
label8 = new System.Windows.Forms.Label();
groupfloorceiling = new System.Windows.Forms.GroupBox();
label7 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
groupaction.SuspendLayout();
groupeffect.SuspendLayout();
groupfloorceiling.SuspendLayout();
@ -191,7 +191,7 @@ namespace CodeImp.DoomBuilder.Windows
//
// effect
//
this.effect.BackColor = System.Drawing.SystemColors.Control;
this.effect.BackColor = System.Drawing.Color.Transparent;
this.effect.Cursor = System.Windows.Forms.Cursors.Default;
this.effect.Empty = false;
this.effect.GeneralizedCategories = null;
@ -250,26 +250,6 @@ namespace CodeImp.DoomBuilder.Windows
label7.Text = "Sector height:";
label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label6
//
label6.AutoSize = true;
label6.Location = new System.Drawing.Point(33, 40);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(73, 14);
label6.TabIndex = 19;
label6.Text = "Ceiling height:";
label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// ceilingheight
//
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ImeMode = System.Windows.Forms.ImeMode.Off;
this.ceilingheight.Location = new System.Drawing.Point(112, 37);
this.ceilingheight.Name = "ceilingheight";
this.ceilingheight.Size = new System.Drawing.Size(68, 20);
this.ceilingheight.TabIndex = 18;
//
// label5
//
label5.AutoSize = true;
@ -324,6 +304,26 @@ namespace CodeImp.DoomBuilder.Windows
this.ceilingtex.TabIndex = 12;
this.ceilingtex.TextureName = "";
//
// label6
//
label6.AutoSize = true;
label6.Location = new System.Drawing.Point(33, 40);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(73, 14);
label6.TabIndex = 19;
label6.Text = "Ceiling height:";
label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// ceilingheight
//
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ImeMode = System.Windows.Forms.ImeMode.Off;
this.ceilingheight.Location = new System.Drawing.Point(112, 37);
this.ceilingheight.Name = "ceilingheight";
this.ceilingheight.Size = new System.Drawing.Size(68, 20);
this.ceilingheight.TabIndex = 18;
//
// cancel
//
this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));