Added: action numbers in linedef action selection dialog; Fixed: improper usages of 'Window' white color in place of 'Control' gray color in dialogs.

This commit is contained in:
ZZYZX 2017-02-12 20:33:31 +02:00
parent bffb499ffb
commit 946e805138
18 changed files with 2864 additions and 2644 deletions

View file

@ -943,7 +943,7 @@ zdoom
235
{
title = "Transfer Floor Texture and Special form Back Side";
title = "Transfer Floor and Special from Back Side";
id = "Floor_TransferTrigger";
arg0
@ -954,7 +954,7 @@ zdoom
}
236
{
title = "Transfer Floor Texture and Special using Numeric Change Model";
title = "Transfer Floor and Special using Numeric Change Model";
id = "Floor_TransferNumeric";
arg0

View file

@ -122,6 +122,9 @@
<Compile Include="Controls\ArgumentBox.Designer.cs">
<DependentUpon>ArgumentBox.cs</DependentUpon>
</Compile>
<Compile Include="Controls\TransparentTrackBar.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Controls\Scripting\ScriptDocumentTab.cs">
<SubType>Component</SubType>
</Compile>

View file

@ -0,0 +1,41 @@
using System.Drawing;
using System.Windows.Forms;
// [ZZ] this is a copypasted version of TransparentPanel :)
// implements the same functionality, except for a TrackBar, for use in tab controls.
namespace CodeImp.DoomBuilder.Controls
{
public class TransparentTrackBar : TrackBar
{
#region ================== Constructor / Disposer
// Constructor
public TransparentTrackBar()
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
}
#endregion
#region ================== Methods
protected override void OnCreateControl()
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
if (Parent != null)
BackColor = Parent.BackColor;
base.OnCreateControl();
}
// Disable background drawing by overriding this
protected override void OnPaintBackground(PaintEventArgs e)
{
if (BackColor != Color.Transparent)
e.Graphics.Clear(BackColor);
}
#endregion
}
}

View file

@ -30,6 +30,6 @@ using CodeImp.DoomBuilder;
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.3.0.2886")]
[assembly: AssemblyVersion("2.3.0.2887")]
[assembly: NeutralResourcesLanguageAttribute("en")]
[assembly: AssemblyHash("251c89f")]
[assembly: AssemblyHash("bffb499")]

View file

@ -21,6 +21,7 @@ using System.Collections.Generic;
using System.Globalization;
using System.Windows.Forms;
using CodeImp.DoomBuilder.Config;
using System.Drawing;
#endregion
@ -129,11 +130,81 @@ namespace CodeImp.DoomBuilder.Windows
// Remove generalized tab
tabs.TabPages.Remove(tabgeneralized);
}
// [ZZ] we are drawing nodes manually. we need nice number padding.
actions.DrawMode = TreeViewDrawMode.OwnerDrawText;
actions.DrawNode += Actions_DrawNode;
}
// This browses for an action
// Returns the new action or the same action when cancelled
public static int BrowseAction(IWin32Window owner, int action) { return BrowseAction(owner, action, false); } //mxd
private void Actions_DrawNode(object sender, DrawTreeNodeEventArgs e)
{
Rectangle nodeRect = Rectangle.FromLTRB(e.Bounds.Left + 1, e.Bounds.Top, e.Bounds.Right + 1, e.Bounds.Bottom);
Rectangle nodeTextRect = Rectangle.FromLTRB(nodeRect.Left, nodeRect.Top + 1, nodeRect.Right, nodeRect.Bottom);
string nodeText = e.Node.Text;
string[] parts = nodeText.Split(new char[] { '\t' }, 2);
Font nodeFont = e.Node.NodeFont;
if (nodeFont == null) nodeFont = ((TreeView)sender).Font;
int wd = (int)e.Graphics.MeasureString(parts[parts.Length - 1], nodeFont).Width;
nodeRect.Width = wd;
SizeF tagSize = e.Graphics.MeasureString("999 ", nodeFont);
if (parts.Length == 2)
nodeRect.Width += (int)tagSize.Width;
Brush fgBrush = null;
if ((e.State & TreeNodeStates.Selected) != 0)
{
// fill selected bg
e.Graphics.FillRectangle(SystemBrushes.Highlight, nodeRect);
// draw the node text
fgBrush = SystemBrushes.HighlightText;
}
else
{
// fill non selected bg (winforms does weird things here)
// never understood the fact that "Window" color is actually white, but actual window background is counted as "3D element".
e.Graphics.FillRectangle(SystemBrushes.Window, nodeRect);
//
fgBrush = SystemBrushes.WindowText;
}
StringFormat nodeStringFmt = new StringFormat
{
FormatFlags = StringFormatFlags.NoWrap,
Trimming = StringTrimming.None
};
if (parts.Length == 2)
{
e.Graphics.DrawString(parts[0], nodeFont, fgBrush, nodeTextRect, nodeStringFmt);
nodeTextRect.X += (int)tagSize.Width;
e.Graphics.DrawString(parts[1], nodeFont, fgBrush, nodeTextRect, nodeStringFmt);
}
else
{
e.Graphics.DrawString(parts[0], nodeFont, fgBrush, nodeTextRect, nodeStringFmt);
}
/*
// If the node has focus, draw the focus rectangle large, making
// it large enough to include the text of the node tag, if present.
if ((e.State & TreeNodeStates.Focused) != 0)
{
using (Pen focusPen = SystemPens.In)
{
focusPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
Rectangle focusBounds = nodeRect;
focusBounds.Size = new Size(focusBounds.Width - 1, focusBounds.Height - 1);
e.Graphics.DrawRectangle(focusPen, focusBounds);
}
}*/
}
// This browses for an action
// Returns the new action or the same action when cancelled
public static int BrowseAction(IWin32Window owner, int action) { return BrowseAction(owner, action, false); } //mxd
public static int BrowseAction(IWin32Window owner, int action, bool addanyaction)
{
ActionBrowserForm f = new ActionBrowserForm(action, addanyaction);
@ -170,8 +241,8 @@ namespace CodeImp.DoomBuilder.Windows
TreeNode cn = actions.Nodes.Add(ac.Title);
foreach(LinedefActionInfo ai in ac.Actions)
{
// Create action
TreeNode n = cn.Nodes.Add(ai.Title);
// Create action
TreeNode n = cn.Nodes.Add((ai.Index > 0) ? string.Format("{0}\t{1}", ai.Index, ai.Title) : ai.Title);
n.Tag = ai;
// This is the given action?
@ -190,8 +261,8 @@ namespace CodeImp.DoomBuilder.Windows
foreach(LinedefActionInfo ai in ac.Actions)
{
// Create action
TreeNode n = actions.Nodes.Add(ai.Title);
n.Tag = ai;
TreeNode n = actions.Nodes.Add((ai.Index > 0) ? string.Format("{0}\t{1}", ai.Index, ai.Title) : ai.Title);
n.Tag = ai;
}
}
}

View file

@ -135,27 +135,84 @@
<metadata name="label6.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="category.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="groupBox1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="category.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="groupBox2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="category.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="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="groupBox2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</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="option7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option7label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option6.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option6label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option5label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option4label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option3label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option2label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option1label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option0.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option0label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>

View file

@ -28,389 +28,389 @@ namespace CodeImp.DoomBuilder.Windows
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.GroupBox groupBox2;
this.option7 = new System.Windows.Forms.ComboBox();
this.option7label = new System.Windows.Forms.Label();
this.option6 = new System.Windows.Forms.ComboBox();
this.option6label = new System.Windows.Forms.Label();
this.option5 = new System.Windows.Forms.ComboBox();
this.option5label = new System.Windows.Forms.Label();
this.option4 = new System.Windows.Forms.ComboBox();
this.option4label = new System.Windows.Forms.Label();
this.option3 = new System.Windows.Forms.ComboBox();
this.option3label = new System.Windows.Forms.Label();
this.option2 = new System.Windows.Forms.ComboBox();
this.option2label = new System.Windows.Forms.Label();
this.option1 = new System.Windows.Forms.ComboBox();
this.option1label = new System.Windows.Forms.Label();
this.option0 = new System.Windows.Forms.ComboBox();
this.option0label = new System.Windows.Forms.Label();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.tabs = new System.Windows.Forms.TabControl();
this.tabeffects = new System.Windows.Forms.TabPage();
this.filterPanel = new System.Windows.Forms.Panel();
this.tbFilter = new System.Windows.Forms.TextBox();
this.btnClearFilter = new System.Windows.Forms.Button();
this.labelFilter = new System.Windows.Forms.Label();
this.effects = new System.Windows.Forms.ListView();
this.colnumber = new System.Windows.Forms.ColumnHeader();
this.colname = new System.Windows.Forms.ColumnHeader();
this.tabgeneralized = new System.Windows.Forms.TabPage();
groupBox2 = new System.Windows.Forms.GroupBox();
groupBox2.SuspendLayout();
this.tabs.SuspendLayout();
this.tabeffects.SuspendLayout();
this.filterPanel.SuspendLayout();
this.tabgeneralized.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
groupBox2.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)));
groupBox2.Controls.Add(this.option7);
groupBox2.Controls.Add(this.option7label);
groupBox2.Controls.Add(this.option6);
groupBox2.Controls.Add(this.option6label);
groupBox2.Controls.Add(this.option5);
groupBox2.Controls.Add(this.option5label);
groupBox2.Controls.Add(this.option4);
groupBox2.Controls.Add(this.option4label);
groupBox2.Controls.Add(this.option3);
groupBox2.Controls.Add(this.option3label);
groupBox2.Controls.Add(this.option2);
groupBox2.Controls.Add(this.option2label);
groupBox2.Controls.Add(this.option1);
groupBox2.Controls.Add(this.option1label);
groupBox2.Controls.Add(this.option0);
groupBox2.Controls.Add(this.option0label);
groupBox2.Location = new System.Drawing.Point(6, 6);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(379, 398);
groupBox2.TabIndex = 1;
groupBox2.TabStop = false;
groupBox2.Text = " Options ";
//
// option7
//
this.option7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option7.FormattingEnabled = true;
this.option7.Location = new System.Drawing.Point(118, 280);
this.option7.Name = "option7";
this.option7.Size = new System.Drawing.Size(199, 21);
this.option7.TabIndex = 7;
this.option7.Visible = false;
//
// option7label
//
this.option7label.Location = new System.Drawing.Point(3, 283);
this.option7label.Name = "option7label";
this.option7label.Size = new System.Drawing.Size(109, 19);
this.option7label.TabIndex = 16;
this.option7label.Text = "Option:";
this.option7label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option7label.Visible = false;
//
// option6
//
this.option6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option6.FormattingEnabled = true;
this.option6.Location = new System.Drawing.Point(118, 244);
this.option6.Name = "option6";
this.option6.Size = new System.Drawing.Size(199, 21);
this.option6.TabIndex = 6;
this.option6.Visible = false;
//
// option6label
//
this.option6label.Location = new System.Drawing.Point(3, 247);
this.option6label.Name = "option6label";
this.option6label.Size = new System.Drawing.Size(109, 19);
this.option6label.TabIndex = 14;
this.option6label.Text = "Option:";
this.option6label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option6label.Visible = false;
//
// option5
//
this.option5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option5.FormattingEnabled = true;
this.option5.Location = new System.Drawing.Point(118, 208);
this.option5.Name = "option5";
this.option5.Size = new System.Drawing.Size(199, 21);
this.option5.TabIndex = 5;
this.option5.Visible = false;
//
// option5label
//
this.option5label.Location = new System.Drawing.Point(3, 211);
this.option5label.Name = "option5label";
this.option5label.Size = new System.Drawing.Size(109, 19);
this.option5label.TabIndex = 12;
this.option5label.Text = "Option:";
this.option5label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option5label.Visible = false;
//
// option4
//
this.option4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option4.FormattingEnabled = true;
this.option4.Location = new System.Drawing.Point(118, 172);
this.option4.Name = "option4";
this.option4.Size = new System.Drawing.Size(199, 21);
this.option4.TabIndex = 4;
this.option4.Visible = false;
//
// option4label
//
this.option4label.Location = new System.Drawing.Point(3, 175);
this.option4label.Name = "option4label";
this.option4label.Size = new System.Drawing.Size(109, 19);
this.option4label.TabIndex = 10;
this.option4label.Text = "Option:";
this.option4label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option4label.Visible = false;
//
// option3
//
this.option3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option3.FormattingEnabled = true;
this.option3.Location = new System.Drawing.Point(118, 136);
this.option3.Name = "option3";
this.option3.Size = new System.Drawing.Size(199, 21);
this.option3.TabIndex = 3;
this.option3.Visible = false;
//
// option3label
//
this.option3label.Location = new System.Drawing.Point(3, 139);
this.option3label.Name = "option3label";
this.option3label.Size = new System.Drawing.Size(109, 19);
this.option3label.TabIndex = 8;
this.option3label.Text = "Option:";
this.option3label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option3label.Visible = false;
//
// option2
//
this.option2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option2.FormattingEnabled = true;
this.option2.Location = new System.Drawing.Point(118, 100);
this.option2.Name = "option2";
this.option2.Size = new System.Drawing.Size(199, 21);
this.option2.TabIndex = 2;
this.option2.Visible = false;
//
// option2label
//
this.option2label.Location = new System.Drawing.Point(3, 103);
this.option2label.Name = "option2label";
this.option2label.Size = new System.Drawing.Size(109, 19);
this.option2label.TabIndex = 6;
this.option2label.Text = "Option:";
this.option2label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option2label.Visible = false;
//
// option1
//
this.option1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option1.FormattingEnabled = true;
this.option1.Location = new System.Drawing.Point(118, 64);
this.option1.Name = "option1";
this.option1.Size = new System.Drawing.Size(199, 21);
this.option1.TabIndex = 1;
this.option1.Visible = false;
//
// option1label
//
this.option1label.Location = new System.Drawing.Point(3, 67);
this.option1label.Name = "option1label";
this.option1label.Size = new System.Drawing.Size(109, 19);
this.option1label.TabIndex = 4;
this.option1label.Text = "Option:";
this.option1label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option1label.Visible = false;
//
// option0
//
this.option0.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option0.FormattingEnabled = true;
this.option0.Location = new System.Drawing.Point(118, 28);
this.option0.Name = "option0";
this.option0.Size = new System.Drawing.Size(199, 21);
this.option0.TabIndex = 0;
this.option0.Visible = false;
//
// option0label
//
this.option0label.Location = new System.Drawing.Point(3, 31);
this.option0label.Name = "option0label";
this.option0label.Size = new System.Drawing.Size(109, 19);
this.option0label.TabIndex = 2;
this.option0label.Text = "Option:";
this.option0label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option0label.Visible = false;
//
// 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;
this.cancel.Location = new System.Drawing.Point(293, 457);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 27);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(175, 457);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 27);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// 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.tabeffects);
this.tabs.Controls.Add(this.tabgeneralized);
this.tabs.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tabs.Location = new System.Drawing.Point(10, 10);
this.tabs.Margin = new System.Windows.Forms.Padding(1);
this.tabs.Name = "tabs";
this.tabs.Padding = new System.Drawing.Point(24, 3);
this.tabs.SelectedIndex = 0;
this.tabs.Size = new System.Drawing.Size(399, 436);
this.tabs.TabIndex = 0;
//
// tabeffects
//
this.tabeffects.Controls.Add(this.filterPanel);
this.tabeffects.Controls.Add(this.effects);
this.tabeffects.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabeffects.Location = new System.Drawing.Point(4, 22);
this.tabeffects.Name = "tabeffects";
this.tabeffects.Padding = new System.Windows.Forms.Padding(3);
this.tabeffects.Size = new System.Drawing.Size(391, 410);
this.tabeffects.TabIndex = 0;
this.tabeffects.Text = "Predefined Effects";
this.tabeffects.UseVisualStyleBackColor = true;
//
// filterPanel
//
this.filterPanel.Controls.Add(this.tbFilter);
this.filterPanel.Controls.Add(this.btnClearFilter);
this.filterPanel.Controls.Add(this.labelFilter);
this.filterPanel.Location = new System.Drawing.Point(6, 3);
this.filterPanel.Name = "filterPanel";
this.filterPanel.Size = new System.Drawing.Size(379, 30);
this.filterPanel.TabIndex = 32;
//
// tbFilter
//
this.tbFilter.Location = new System.Drawing.Point(47, 5);
this.tbFilter.Name = "tbFilter";
this.tbFilter.Size = new System.Drawing.Size(135, 20);
this.tbFilter.TabIndex = 28;
this.tbFilter.TextChanged += new System.EventHandler(this.tbFilter_TextChanged);
this.tbFilter.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tbFilter_KeyUp);
//
// btnClearFilter
//
this.btnClearFilter.Image = global::CodeImp.DoomBuilder.Properties.Resources.SearchClear;
this.btnClearFilter.Location = new System.Drawing.Point(188, 3);
this.btnClearFilter.Name = "btnClearFilter";
this.btnClearFilter.Size = new System.Drawing.Size(32, 24);
this.btnClearFilter.TabIndex = 30;
this.btnClearFilter.UseVisualStyleBackColor = true;
this.btnClearFilter.Click += new System.EventHandler(this.btnClearFilter_Click);
//
// labelFilter
//
this.labelFilter.AutoSize = true;
this.labelFilter.Location = new System.Drawing.Point(8, 8);
this.labelFilter.Name = "labelFilter";
this.labelFilter.Size = new System.Drawing.Size(32, 13);
this.labelFilter.TabIndex = 29;
this.labelFilter.Text = "Filter:";
//
// effects
//
this.effects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
System.Windows.Forms.GroupBox groupBox2;
this.option7 = new System.Windows.Forms.ComboBox();
this.option7label = new System.Windows.Forms.Label();
this.option6 = new System.Windows.Forms.ComboBox();
this.option6label = new System.Windows.Forms.Label();
this.option5 = new System.Windows.Forms.ComboBox();
this.option5label = new System.Windows.Forms.Label();
this.option4 = new System.Windows.Forms.ComboBox();
this.option4label = new System.Windows.Forms.Label();
this.option3 = new System.Windows.Forms.ComboBox();
this.option3label = new System.Windows.Forms.Label();
this.option2 = new System.Windows.Forms.ComboBox();
this.option2label = new System.Windows.Forms.Label();
this.option1 = new System.Windows.Forms.ComboBox();
this.option1label = new System.Windows.Forms.Label();
this.option0 = new System.Windows.Forms.ComboBox();
this.option0label = new System.Windows.Forms.Label();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.tabs = new System.Windows.Forms.TabControl();
this.tabeffects = new System.Windows.Forms.TabPage();
this.filterPanel = new System.Windows.Forms.Panel();
this.tbFilter = new System.Windows.Forms.TextBox();
this.btnClearFilter = new System.Windows.Forms.Button();
this.labelFilter = new System.Windows.Forms.Label();
this.effects = new System.Windows.Forms.ListView();
this.colnumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colname = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tabgeneralized = new System.Windows.Forms.TabPage();
groupBox2 = new System.Windows.Forms.GroupBox();
groupBox2.SuspendLayout();
this.tabs.SuspendLayout();
this.tabeffects.SuspendLayout();
this.filterPanel.SuspendLayout();
this.tabgeneralized.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
groupBox2.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)));
groupBox2.Controls.Add(this.option7);
groupBox2.Controls.Add(this.option7label);
groupBox2.Controls.Add(this.option6);
groupBox2.Controls.Add(this.option6label);
groupBox2.Controls.Add(this.option5);
groupBox2.Controls.Add(this.option5label);
groupBox2.Controls.Add(this.option4);
groupBox2.Controls.Add(this.option4label);
groupBox2.Controls.Add(this.option3);
groupBox2.Controls.Add(this.option3label);
groupBox2.Controls.Add(this.option2);
groupBox2.Controls.Add(this.option2label);
groupBox2.Controls.Add(this.option1);
groupBox2.Controls.Add(this.option1label);
groupBox2.Controls.Add(this.option0);
groupBox2.Controls.Add(this.option0label);
groupBox2.Location = new System.Drawing.Point(6, 6);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(379, 398);
groupBox2.TabIndex = 1;
groupBox2.TabStop = false;
groupBox2.Text = " Options ";
//
// option7
//
this.option7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option7.FormattingEnabled = true;
this.option7.Location = new System.Drawing.Point(118, 280);
this.option7.Name = "option7";
this.option7.Size = new System.Drawing.Size(199, 21);
this.option7.TabIndex = 7;
this.option7.Visible = false;
//
// option7label
//
this.option7label.Location = new System.Drawing.Point(3, 283);
this.option7label.Name = "option7label";
this.option7label.Size = new System.Drawing.Size(109, 19);
this.option7label.TabIndex = 16;
this.option7label.Text = "Option:";
this.option7label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option7label.Visible = false;
//
// option6
//
this.option6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option6.FormattingEnabled = true;
this.option6.Location = new System.Drawing.Point(118, 244);
this.option6.Name = "option6";
this.option6.Size = new System.Drawing.Size(199, 21);
this.option6.TabIndex = 6;
this.option6.Visible = false;
//
// option6label
//
this.option6label.Location = new System.Drawing.Point(3, 247);
this.option6label.Name = "option6label";
this.option6label.Size = new System.Drawing.Size(109, 19);
this.option6label.TabIndex = 14;
this.option6label.Text = "Option:";
this.option6label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option6label.Visible = false;
//
// option5
//
this.option5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option5.FormattingEnabled = true;
this.option5.Location = new System.Drawing.Point(118, 208);
this.option5.Name = "option5";
this.option5.Size = new System.Drawing.Size(199, 21);
this.option5.TabIndex = 5;
this.option5.Visible = false;
//
// option5label
//
this.option5label.Location = new System.Drawing.Point(3, 211);
this.option5label.Name = "option5label";
this.option5label.Size = new System.Drawing.Size(109, 19);
this.option5label.TabIndex = 12;
this.option5label.Text = "Option:";
this.option5label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option5label.Visible = false;
//
// option4
//
this.option4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option4.FormattingEnabled = true;
this.option4.Location = new System.Drawing.Point(118, 172);
this.option4.Name = "option4";
this.option4.Size = new System.Drawing.Size(199, 21);
this.option4.TabIndex = 4;
this.option4.Visible = false;
//
// option4label
//
this.option4label.Location = new System.Drawing.Point(3, 175);
this.option4label.Name = "option4label";
this.option4label.Size = new System.Drawing.Size(109, 19);
this.option4label.TabIndex = 10;
this.option4label.Text = "Option:";
this.option4label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option4label.Visible = false;
//
// option3
//
this.option3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option3.FormattingEnabled = true;
this.option3.Location = new System.Drawing.Point(118, 136);
this.option3.Name = "option3";
this.option3.Size = new System.Drawing.Size(199, 21);
this.option3.TabIndex = 3;
this.option3.Visible = false;
//
// option3label
//
this.option3label.Location = new System.Drawing.Point(3, 139);
this.option3label.Name = "option3label";
this.option3label.Size = new System.Drawing.Size(109, 19);
this.option3label.TabIndex = 8;
this.option3label.Text = "Option:";
this.option3label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option3label.Visible = false;
//
// option2
//
this.option2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option2.FormattingEnabled = true;
this.option2.Location = new System.Drawing.Point(118, 100);
this.option2.Name = "option2";
this.option2.Size = new System.Drawing.Size(199, 21);
this.option2.TabIndex = 2;
this.option2.Visible = false;
//
// option2label
//
this.option2label.Location = new System.Drawing.Point(3, 103);
this.option2label.Name = "option2label";
this.option2label.Size = new System.Drawing.Size(109, 19);
this.option2label.TabIndex = 6;
this.option2label.Text = "Option:";
this.option2label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option2label.Visible = false;
//
// option1
//
this.option1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option1.FormattingEnabled = true;
this.option1.Location = new System.Drawing.Point(118, 64);
this.option1.Name = "option1";
this.option1.Size = new System.Drawing.Size(199, 21);
this.option1.TabIndex = 1;
this.option1.Visible = false;
//
// option1label
//
this.option1label.Location = new System.Drawing.Point(3, 67);
this.option1label.Name = "option1label";
this.option1label.Size = new System.Drawing.Size(109, 19);
this.option1label.TabIndex = 4;
this.option1label.Text = "Option:";
this.option1label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option1label.Visible = false;
//
// option0
//
this.option0.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.option0.FormattingEnabled = true;
this.option0.Location = new System.Drawing.Point(118, 28);
this.option0.Name = "option0";
this.option0.Size = new System.Drawing.Size(199, 21);
this.option0.TabIndex = 0;
this.option0.Visible = false;
//
// option0label
//
this.option0label.Location = new System.Drawing.Point(3, 31);
this.option0label.Name = "option0label";
this.option0label.Size = new System.Drawing.Size(109, 19);
this.option0label.TabIndex = 2;
this.option0label.Text = "Option:";
this.option0label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.option0label.Visible = false;
//
// 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;
this.cancel.Location = new System.Drawing.Point(293, 457);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 27);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(175, 457);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 27);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// 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.tabeffects);
this.tabs.Controls.Add(this.tabgeneralized);
this.tabs.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tabs.Location = new System.Drawing.Point(10, 10);
this.tabs.Margin = new System.Windows.Forms.Padding(1);
this.tabs.Name = "tabs";
this.tabs.Padding = new System.Drawing.Point(24, 3);
this.tabs.SelectedIndex = 0;
this.tabs.Size = new System.Drawing.Size(399, 436);
this.tabs.TabIndex = 0;
//
// tabeffects
//
this.tabeffects.Controls.Add(this.filterPanel);
this.tabeffects.Controls.Add(this.effects);
this.tabeffects.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabeffects.Location = new System.Drawing.Point(4, 22);
this.tabeffects.Name = "tabeffects";
this.tabeffects.Padding = new System.Windows.Forms.Padding(3);
this.tabeffects.Size = new System.Drawing.Size(391, 410);
this.tabeffects.TabIndex = 0;
this.tabeffects.Text = "Predefined Effects";
this.tabeffects.UseVisualStyleBackColor = true;
//
// filterPanel
//
this.filterPanel.Controls.Add(this.tbFilter);
this.filterPanel.Controls.Add(this.btnClearFilter);
this.filterPanel.Controls.Add(this.labelFilter);
this.filterPanel.Location = new System.Drawing.Point(6, 3);
this.filterPanel.Name = "filterPanel";
this.filterPanel.Size = new System.Drawing.Size(379, 30);
this.filterPanel.TabIndex = 32;
//
// tbFilter
//
this.tbFilter.Location = new System.Drawing.Point(47, 5);
this.tbFilter.Name = "tbFilter";
this.tbFilter.Size = new System.Drawing.Size(135, 20);
this.tbFilter.TabIndex = 28;
this.tbFilter.TextChanged += new System.EventHandler(this.tbFilter_TextChanged);
this.tbFilter.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tbFilter_KeyUp);
//
// btnClearFilter
//
this.btnClearFilter.Image = global::CodeImp.DoomBuilder.Properties.Resources.SearchClear;
this.btnClearFilter.Location = new System.Drawing.Point(188, 3);
this.btnClearFilter.Name = "btnClearFilter";
this.btnClearFilter.Size = new System.Drawing.Size(32, 24);
this.btnClearFilter.TabIndex = 30;
this.btnClearFilter.UseVisualStyleBackColor = true;
this.btnClearFilter.Click += new System.EventHandler(this.btnClearFilter_Click);
//
// labelFilter
//
this.labelFilter.AutoSize = true;
this.labelFilter.Location = new System.Drawing.Point(8, 8);
this.labelFilter.Name = "labelFilter";
this.labelFilter.Size = new System.Drawing.Size(32, 13);
this.labelFilter.TabIndex = 29;
this.labelFilter.Text = "Filter:";
//
// effects
//
this.effects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colnumber,
this.colname});
this.effects.FullRowSelect = true;
this.effects.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.effects.HideSelection = false;
this.effects.Location = new System.Drawing.Point(6, 34);
this.effects.MultiSelect = false;
this.effects.Name = "effects";
this.effects.Size = new System.Drawing.Size(379, 369);
this.effects.TabIndex = 0;
this.effects.UseCompatibleStateImageBehavior = false;
this.effects.View = System.Windows.Forms.View.Details;
this.effects.DoubleClick += new System.EventHandler(this.effects_DoubleClick);
this.effects.MouseEnter += new System.EventHandler(this.effects_MouseEnter);
this.effects.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.effects_KeyPress);
//
// colnumber
//
this.colnumber.Text = "Effect";
this.colnumber.Width = 70;
//
// colname
//
this.colname.Text = "Description";
this.colname.Width = 280;
//
// tabgeneralized
//
this.tabgeneralized.Controls.Add(groupBox2);
this.tabgeneralized.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabgeneralized.Location = new System.Drawing.Point(4, 22);
this.tabgeneralized.Name = "tabgeneralized";
this.tabgeneralized.Padding = new System.Windows.Forms.Padding(3);
this.tabgeneralized.Size = new System.Drawing.Size(391, 410);
this.tabgeneralized.TabIndex = 1;
this.tabgeneralized.Text = "Generalized Effects";
this.tabgeneralized.UseVisualStyleBackColor = true;
//
// EffectBrowserForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(419, 496);
this.Controls.Add(this.tabs);
this.Controls.Add(this.cancel);
this.Controls.Add(this.apply);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "EffectBrowserForm";
this.Opacity = 0;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Effect";
this.Shown += new System.EventHandler(this.EffectBrowserForm_Shown);
groupBox2.ResumeLayout(false);
this.tabs.ResumeLayout(false);
this.tabeffects.ResumeLayout(false);
this.filterPanel.ResumeLayout(false);
this.filterPanel.PerformLayout();
this.tabgeneralized.ResumeLayout(false);
this.ResumeLayout(false);
this.effects.FullRowSelect = true;
this.effects.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.effects.HideSelection = false;
this.effects.Location = new System.Drawing.Point(6, 34);
this.effects.MultiSelect = false;
this.effects.Name = "effects";
this.effects.Size = new System.Drawing.Size(379, 369);
this.effects.TabIndex = 0;
this.effects.UseCompatibleStateImageBehavior = false;
this.effects.View = System.Windows.Forms.View.Details;
this.effects.DoubleClick += new System.EventHandler(this.effects_DoubleClick);
this.effects.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.effects_KeyPress);
this.effects.MouseEnter += new System.EventHandler(this.effects_MouseEnter);
//
// colnumber
//
this.colnumber.Text = "Effect";
this.colnumber.Width = 70;
//
// colname
//
this.colname.Text = "Description";
this.colname.Width = 280;
//
// tabgeneralized
//
this.tabgeneralized.Controls.Add(groupBox2);
this.tabgeneralized.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabgeneralized.Location = new System.Drawing.Point(4, 22);
this.tabgeneralized.Name = "tabgeneralized";
this.tabgeneralized.Padding = new System.Windows.Forms.Padding(3);
this.tabgeneralized.Size = new System.Drawing.Size(391, 410);
this.tabgeneralized.TabIndex = 1;
this.tabgeneralized.Text = "Generalized Effects";
this.tabgeneralized.UseVisualStyleBackColor = true;
//
// EffectBrowserForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(419, 496);
this.Controls.Add(this.tabs);
this.Controls.Add(this.cancel);
this.Controls.Add(this.apply);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "EffectBrowserForm";
this.Opacity = 0D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Effect";
this.Shown += new System.EventHandler(this.EffectBrowserForm_Shown);
groupBox2.ResumeLayout(false);
this.tabs.ResumeLayout(false);
this.tabeffects.ResumeLayout(false);
this.filterPanel.ResumeLayout(false);
this.filterPanel.PerformLayout();
this.tabgeneralized.ResumeLayout(false);
this.ResumeLayout(false);
}

View file

@ -117,11 +117,59 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="groupBox2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</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="groupBox2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
<metadata name="option7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option7label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option6.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option6label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option5label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option4label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option3label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option2label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option1label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option0.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option0label.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="option7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>

View file

@ -28,142 +28,142 @@
/// </summary>
private void InitializeComponent()
{
this.bQuit = new System.Windows.Forms.Button();
this.bContinue = new System.Windows.Forms.Button();
this.errorMessage = new System.Windows.Forms.TextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.reportlink = new System.Windows.Forms.LinkLabel();
this.newissue = new System.Windows.Forms.LinkLabel();
this.bToClipboard = new System.Windows.Forms.Button();
this.errorDescription = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// bQuit
//
this.bQuit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bQuit.Image = global::CodeImp.DoomBuilder.Properties.Resources.SearchClear;
this.bQuit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bQuit.Location = new System.Drawing.Point(537, 212);
this.bQuit.Name = "bQuit";
this.bQuit.Size = new System.Drawing.Size(75, 28);
this.bQuit.TabIndex = 0;
this.bQuit.Text = "Quit";
this.bQuit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.bQuit.UseVisualStyleBackColor = true;
this.bQuit.Click += new System.EventHandler(this.bQuit_Click);
//
// bContinue
//
this.bContinue.Image = global::CodeImp.DoomBuilder.Properties.Resources.Test;
this.bContinue.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bContinue.Location = new System.Drawing.Point(446, 212);
this.bContinue.Name = "bContinue";
this.bContinue.Size = new System.Drawing.Size(88, 28);
this.bContinue.TabIndex = 1;
this.bContinue.Text = "Continue";
this.bContinue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.bContinue.UseVisualStyleBackColor = true;
this.bContinue.Click += new System.EventHandler(this.bContinue_Click);
//
// errorMessage
//
this.errorMessage.Location = new System.Drawing.Point(77, 28);
this.errorMessage.Multiline = true;
this.errorMessage.Name = "errorMessage";
this.errorMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.errorMessage.Size = new System.Drawing.Size(535, 151);
this.errorMessage.TabIndex = 3;
this.errorMessage.Text = "Stack trace";
//
// pictureBox1
//
this.pictureBox1.Image = global::CodeImp.DoomBuilder.Properties.Resources.MCrash;
this.pictureBox1.Location = new System.Drawing.Point(7, 9);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(64, 64);
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// reportlink
//
this.reportlink.AutoSize = true;
this.reportlink.LinkArea = new System.Windows.Forms.LinkArea(101, 16);
this.reportlink.LinkColor = System.Drawing.SystemColors.HotTrack;
this.reportlink.Location = new System.Drawing.Point(75, 211);
this.reportlink.Name = "reportlink";
this.reportlink.Size = new System.Drawing.Size(369, 30);
this.reportlink.TabIndex = 5;
this.reportlink.TabStop = true;
this.reportlink.Text = "Including the steps required to reproduce this error, a test map/resource\r\nrequre" +
"d to trigger it and the error report can immensely help fixing it.";
this.reportlink.UseCompatibleTextRendering = true;
this.reportlink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.reportlink_LinkClicked);
//
// gitissueslink
//
this.newissue.AutoSize = true;
this.newissue.LinkArea = new System.Windows.Forms.LinkArea(51, 21);
this.newissue.LinkColor = System.Drawing.SystemColors.HotTrack;
this.newissue.Location = new System.Drawing.Point(75, 188);
this.newissue.Name = "newissue";
this.newissue.Size = new System.Drawing.Size(359, 17);
this.newissue.TabIndex = 8;
this.newissue.TabStop = true;
this.newissue.Text = "Help fixing this error by creating an Issue at the GitHub Issues Tracker.";
this.newissue.UseCompatibleTextRendering = true;
this.newissue.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.newissue_LinkClicked);
//
// bToClipboard
//
this.bToClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.bToClipboard.Image = global::CodeImp.DoomBuilder.Properties.Resources.Copy;
this.bToClipboard.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bToClipboard.Location = new System.Drawing.Point(446, 184);
this.bToClipboard.Name = "bToClipboard";
this.bToClipboard.Size = new System.Drawing.Size(166, 24);
this.bToClipboard.TabIndex = 9;
this.bToClipboard.Text = "Copy to clipboard";
this.bToClipboard.UseVisualStyleBackColor = true;
this.bToClipboard.Click += new System.EventHandler(this.bToClipboard_Click);
//
// errorDescription
//
this.errorDescription.AutoSize = true;
this.errorDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.errorDescription.Location = new System.Drawing.Point(77, 9);
this.errorDescription.Name = "errorDescription";
this.errorDescription.Size = new System.Drawing.Size(176, 13);
this.errorDescription.TabIndex = 10;
this.errorDescription.Text = "An application error occurred:";
//
// ExceptionDialog
//
this.AcceptButton = this.bContinue;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.bQuit;
this.ClientSize = new System.Drawing.Size(624, 244);
this.Controls.Add(this.reportlink);
this.Controls.Add(this.errorDescription);
this.Controls.Add(this.bToClipboard);
this.Controls.Add(this.newissue);
this.Controls.Add(this.errorMessage);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.bContinue);
this.Controls.Add(this.bQuit);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExceptionDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "OH NOES! MOAR ERRORS!";
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
this.bQuit = new System.Windows.Forms.Button();
this.bContinue = new System.Windows.Forms.Button();
this.errorMessage = new System.Windows.Forms.TextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.reportlink = new System.Windows.Forms.LinkLabel();
this.newissue = new System.Windows.Forms.LinkLabel();
this.bToClipboard = new System.Windows.Forms.Button();
this.errorDescription = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// bQuit
//
this.bQuit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bQuit.Image = global::CodeImp.DoomBuilder.Properties.Resources.SearchClear;
this.bQuit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bQuit.Location = new System.Drawing.Point(537, 212);
this.bQuit.Name = "bQuit";
this.bQuit.Size = new System.Drawing.Size(75, 28);
this.bQuit.TabIndex = 0;
this.bQuit.Text = "Quit";
this.bQuit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.bQuit.UseVisualStyleBackColor = true;
this.bQuit.Click += new System.EventHandler(this.bQuit_Click);
//
// bContinue
//
this.bContinue.Image = global::CodeImp.DoomBuilder.Properties.Resources.Test;
this.bContinue.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bContinue.Location = new System.Drawing.Point(446, 212);
this.bContinue.Name = "bContinue";
this.bContinue.Size = new System.Drawing.Size(88, 28);
this.bContinue.TabIndex = 1;
this.bContinue.Text = "Continue";
this.bContinue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.bContinue.UseVisualStyleBackColor = true;
this.bContinue.Click += new System.EventHandler(this.bContinue_Click);
//
// errorMessage
//
this.errorMessage.Location = new System.Drawing.Point(77, 28);
this.errorMessage.Multiline = true;
this.errorMessage.Name = "errorMessage";
this.errorMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.errorMessage.Size = new System.Drawing.Size(535, 151);
this.errorMessage.TabIndex = 3;
this.errorMessage.Text = "Stack trace";
//
// pictureBox1
//
this.pictureBox1.Image = global::CodeImp.DoomBuilder.Properties.Resources.MCrash;
this.pictureBox1.Location = new System.Drawing.Point(7, 9);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(64, 64);
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// reportlink
//
this.reportlink.AutoSize = true;
this.reportlink.LinkArea = new System.Windows.Forms.LinkArea(101, 16);
this.reportlink.LinkColor = System.Drawing.SystemColors.HotTrack;
this.reportlink.Location = new System.Drawing.Point(75, 211);
this.reportlink.Name = "reportlink";
this.reportlink.Size = new System.Drawing.Size(369, 30);
this.reportlink.TabIndex = 5;
this.reportlink.TabStop = true;
this.reportlink.Text = "Including the steps required to reproduce this error, a test map/resource\r\nrequre" +
"d to trigger it and the error report can immensely help fixing it.";
this.reportlink.UseCompatibleTextRendering = true;
this.reportlink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.reportlink_LinkClicked);
//
// newissue
//
this.newissue.AutoSize = true;
this.newissue.LinkArea = new System.Windows.Forms.LinkArea(51, 21);
this.newissue.LinkColor = System.Drawing.SystemColors.HotTrack;
this.newissue.Location = new System.Drawing.Point(75, 188);
this.newissue.Name = "newissue";
this.newissue.Size = new System.Drawing.Size(359, 17);
this.newissue.TabIndex = 8;
this.newissue.TabStop = true;
this.newissue.Text = "Help fixing this error by creating an Issue at the GitHub Issues Tracker.";
this.newissue.UseCompatibleTextRendering = true;
this.newissue.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.newissue_LinkClicked);
//
// bToClipboard
//
this.bToClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.bToClipboard.Image = global::CodeImp.DoomBuilder.Properties.Resources.Copy;
this.bToClipboard.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.bToClipboard.Location = new System.Drawing.Point(446, 184);
this.bToClipboard.Name = "bToClipboard";
this.bToClipboard.Size = new System.Drawing.Size(166, 24);
this.bToClipboard.TabIndex = 9;
this.bToClipboard.Text = "Copy to clipboard";
this.bToClipboard.UseVisualStyleBackColor = true;
this.bToClipboard.Click += new System.EventHandler(this.bToClipboard_Click);
//
// errorDescription
//
this.errorDescription.AutoSize = true;
this.errorDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.errorDescription.Location = new System.Drawing.Point(77, 9);
this.errorDescription.Name = "errorDescription";
this.errorDescription.Size = new System.Drawing.Size(176, 13);
this.errorDescription.TabIndex = 10;
this.errorDescription.Text = "An application error occurred:";
//
// ExceptionDialog
//
this.AcceptButton = this.bContinue;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.bQuit;
this.ClientSize = new System.Drawing.Size(624, 244);
this.Controls.Add(this.reportlink);
this.Controls.Add(this.errorDescription);
this.Controls.Add(this.bToClipboard);
this.Controls.Add(this.newissue);
this.Controls.Add(this.errorMessage);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.bContinue);
this.Controls.Add(this.bQuit);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExceptionDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "OH NOES! MOAR ERRORS!";
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}

File diff suppressed because it is too large Load diff

View file

@ -117,16 +117,22 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="label11.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label12.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
@ -138,16 +144,10 @@
<metadata name="label10.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label11.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label12.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="activationlabel.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
</root>

File diff suppressed because it is too large Load diff

View file

@ -117,28 +117,31 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="browseScreenshotsFolderDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>114, 17</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="label7.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</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.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</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="label18.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label29.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label27.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label29.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label18.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<data name="scriptallmanstyle.ToolTip" xml:space="preserve">
@ -152,7 +155,4 @@ markers in snippets will be replaced
with newline characters, otherwise
they will be replaced with tabs/spaces.</value>
</data>
<metadata name="browseScreenshotsFolderDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>114, 17</value>
</metadata>
</root>

View file

@ -28,385 +28,385 @@ namespace CodeImp.DoomBuilder.Windows
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Label label1;
System.Windows.Forms.Label label3;
System.Windows.Forms.GroupBox groupeffect;
System.Windows.Forms.Label label8;
System.Windows.Forms.Label label9;
System.Windows.Forms.GroupBox groupfloorceiling;
System.Windows.Forms.Label label7;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label label6;
System.Windows.Forms.Label label2;
System.Windows.Forms.Label label4;
this.browseeffect = new System.Windows.Forms.Button();
this.effect = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.tagSelector = new CodeImp.DoomBuilder.Controls.TagSelector();
this.heightoffset = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.brightness = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.ceilingheight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.sectorheightlabel = new System.Windows.Forms.Label();
this.sectorheight = new System.Windows.Forms.Label();
this.floortex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.floorheight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.ceilingtex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.tooltip = new System.Windows.Forms.ToolTip(this.components);
label1 = new System.Windows.Forms.Label();
label3 = new System.Windows.Forms.Label();
groupeffect = new System.Windows.Forms.GroupBox();
label8 = new System.Windows.Forms.Label();
label9 = new System.Windows.Forms.Label();
groupfloorceiling = new System.Windows.Forms.GroupBox();
label7 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
groupeffect.SuspendLayout();
groupfloorceiling.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
label1.Location = new System.Drawing.Point(271, 18);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(83, 16);
label1.TabIndex = 15;
label1.Text = "Floor";
label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label3
//
label3.Location = new System.Drawing.Point(363, 18);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(83, 16);
label3.TabIndex = 14;
label3.Text = "Ceiling";
label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// groupeffect
//
groupeffect.BackColor = System.Drawing.Color.Transparent;
groupeffect.Controls.Add(this.browseeffect);
groupeffect.Controls.Add(this.effect);
groupeffect.Controls.Add(label8);
groupeffect.Controls.Add(this.tagSelector);
groupeffect.Location = new System.Drawing.Point(3, 195);
groupeffect.Name = "groupeffect";
groupeffect.Size = new System.Drawing.Size(436, 92);
groupeffect.TabIndex = 1;
groupeffect.TabStop = false;
groupeffect.Text = "Effect and identification";
//
// browseeffect
//
this.browseeffect.Image = global::CodeImp.DoomBuilder.Properties.Resources.List;
this.browseeffect.Location = new System.Drawing.Point(402, 26);
this.browseeffect.Name = "browseeffect";
this.browseeffect.Size = new System.Drawing.Size(28, 25);
this.browseeffect.TabIndex = 1;
this.browseeffect.Text = " ";
this.browseeffect.UseVisualStyleBackColor = true;
this.browseeffect.Click += new System.EventHandler(this.browseeffect_Click);
//
// effect
//
this.effect.BackColor = System.Drawing.Color.Transparent;
this.effect.Cursor = System.Windows.Forms.Cursors.Default;
this.effect.Empty = false;
this.effect.GeneralizedCategories = null;
this.effect.GeneralizedOptions = null;
this.effect.Location = new System.Drawing.Point(61, 28);
this.effect.Name = "effect";
this.effect.Size = new System.Drawing.Size(335, 21);
this.effect.TabIndex = 0;
this.effect.Value = 402;
//
// label8
//
label8.AutoSize = true;
label8.Location = new System.Drawing.Point(12, 31);
label8.Name = "label8";
label8.Size = new System.Drawing.Size(45, 13);
label8.TabIndex = 0;
label8.Text = "Special:";
//
// tagSelector
//
this.tagSelector.Location = new System.Drawing.Point(19, 52);
this.tagSelector.Name = "tagSelector";
this.tagSelector.Size = new System.Drawing.Size(414, 34);
this.tagSelector.TabIndex = 0;
//
// label9
//
label9.Location = new System.Drawing.Point(16, 159);
label9.Name = "label9";
label9.Size = new System.Drawing.Size(78, 14);
label9.TabIndex = 2;
label9.Text = "Brightness:";
label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// groupfloorceiling
//
groupfloorceiling.BackColor = System.Drawing.Color.Transparent;
groupfloorceiling.Controls.Add(label7);
groupfloorceiling.Controls.Add(label5);
groupfloorceiling.Controls.Add(label6);
groupfloorceiling.Controls.Add(this.heightoffset);
groupfloorceiling.Controls.Add(this.brightness);
groupfloorceiling.Controls.Add(this.ceilingheight);
groupfloorceiling.Controls.Add(label9);
groupfloorceiling.Controls.Add(label2);
groupfloorceiling.Controls.Add(this.sectorheightlabel);
groupfloorceiling.Controls.Add(label4);
groupfloorceiling.Controls.Add(this.sectorheight);
groupfloorceiling.Controls.Add(this.floortex);
groupfloorceiling.Controls.Add(this.floorheight);
groupfloorceiling.Controls.Add(this.ceilingtex);
groupfloorceiling.Location = new System.Drawing.Point(3, 3);
groupfloorceiling.Name = "groupfloorceiling";
groupfloorceiling.Size = new System.Drawing.Size(436, 186);
groupfloorceiling.TabIndex = 0;
groupfloorceiling.TabStop = false;
groupfloorceiling.Text = "Floor and ceiling ";
//
// label7
//
label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
label7.ForeColor = System.Drawing.SystemColors.HotTrack;
label7.Location = new System.Drawing.Point(16, 100);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(78, 14);
label7.TabIndex = 25;
label7.Text = "Height offset:";
label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.tooltip.SetToolTip(label7, "Changes floor and ceiling height by given value.\r\nUse \"++\" to raise by sector hei" +
"ght.\r\nUse \"--\" to lower by sector height.");
//
// label5
//
label5.Location = new System.Drawing.Point(16, 70);
label5.Name = "label5";
label5.Size = new System.Drawing.Size(78, 14);
label5.TabIndex = 17;
label5.Text = "Floor height:";
label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label6
//
label6.Location = new System.Drawing.Point(16, 40);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(78, 14);
label6.TabIndex = 19;
label6.Text = "Ceiling height:";
label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// heightoffset
//
this.heightoffset.AllowDecimal = false;
this.heightoffset.AllowExpressions = true;
this.heightoffset.AllowNegative = true;
this.heightoffset.AllowRelative = true;
this.heightoffset.ButtonStep = 8;
this.heightoffset.ButtonStepBig = 16F;
this.heightoffset.ButtonStepFloat = 1F;
this.heightoffset.ButtonStepSmall = 1F;
this.heightoffset.ButtonStepsUseModifierKeys = true;
this.heightoffset.ButtonStepsWrapAround = false;
this.heightoffset.Location = new System.Drawing.Point(99, 95);
this.heightoffset.Name = "heightoffset";
this.heightoffset.Size = new System.Drawing.Size(88, 24);
this.heightoffset.StepValues = null;
this.heightoffset.TabIndex = 26;
this.heightoffset.WhenTextChanged += new System.EventHandler(this.heightoffset_WhenTextChanged);
//
// brightness
//
this.brightness.AllowDecimal = false;
this.brightness.AllowExpressions = false;
this.brightness.AllowNegative = true;
this.brightness.AllowRelative = true;
this.brightness.ButtonStep = 8;
this.brightness.ButtonStepBig = 16F;
this.brightness.ButtonStepFloat = 1F;
this.brightness.ButtonStepSmall = 1F;
this.brightness.ButtonStepsUseModifierKeys = true;
this.brightness.ButtonStepsWrapAround = false;
this.brightness.Location = new System.Drawing.Point(99, 154);
this.brightness.Name = "brightness";
this.brightness.Size = new System.Drawing.Size(73, 24);
this.brightness.StepValues = null;
this.brightness.TabIndex = 24;
this.brightness.WhenTextChanged += new System.EventHandler(this.brightness_WhenTextChanged);
//
// ceilingheight
//
this.ceilingheight.AllowDecimal = false;
this.ceilingheight.AllowExpressions = true;
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ButtonStep = 8;
this.ceilingheight.ButtonStepBig = 16F;
this.ceilingheight.ButtonStepFloat = 1F;
this.ceilingheight.ButtonStepSmall = 1F;
this.ceilingheight.ButtonStepsUseModifierKeys = true;
this.ceilingheight.ButtonStepsWrapAround = false;
this.ceilingheight.Location = new System.Drawing.Point(99, 35);
this.ceilingheight.Name = "ceilingheight";
this.ceilingheight.Size = new System.Drawing.Size(88, 24);
this.ceilingheight.StepValues = null;
this.ceilingheight.TabIndex = 22;
this.ceilingheight.WhenTextChanged += new System.EventHandler(this.ceilingheight_TextChanged);
//
// label2
//
label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
label2.Location = new System.Drawing.Point(196, 16);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(114, 16);
label2.TabIndex = 15;
label2.Text = "Floor";
label2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// sectorheightlabel
//
this.sectorheightlabel.Location = new System.Drawing.Point(16, 130);
this.sectorheightlabel.Name = "sectorheightlabel";
this.sectorheightlabel.Size = new System.Drawing.Size(78, 14);
this.sectorheightlabel.TabIndex = 20;
this.sectorheightlabel.Text = "Sector height:";
this.sectorheightlabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label4
//
label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
label4.Location = new System.Drawing.Point(316, 16);
label4.Name = "label4";
label4.Size = new System.Drawing.Size(114, 16);
label4.TabIndex = 14;
label4.Text = "Ceiling";
label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// sectorheight
//
this.sectorheight.AutoSize = true;
this.sectorheight.Location = new System.Drawing.Point(100, 130);
this.sectorheight.Name = "sectorheight";
this.sectorheight.Size = new System.Drawing.Size(13, 13);
this.sectorheight.TabIndex = 21;
this.sectorheight.Text = "0";
//
// floortex
//
this.floortex.Location = new System.Drawing.Point(196, 35);
this.floortex.MultipleTextures = false;
this.floortex.Name = "floortex";
this.floortex.Size = new System.Drawing.Size(114, 138);
this.floortex.TabIndex = 2;
this.floortex.TextureName = "";
this.floortex.OnValueChanged += new System.EventHandler(this.floortex_OnValueChanged);
//
// floorheight
//
this.floorheight.AllowDecimal = false;
this.floorheight.AllowExpressions = true;
this.floorheight.AllowNegative = true;
this.floorheight.AllowRelative = true;
this.floorheight.ButtonStep = 8;
this.floorheight.ButtonStepBig = 16F;
this.floorheight.ButtonStepFloat = 1F;
this.floorheight.ButtonStepSmall = 1F;
this.floorheight.ButtonStepsUseModifierKeys = true;
this.floorheight.ButtonStepsWrapAround = false;
this.floorheight.Location = new System.Drawing.Point(99, 65);
this.floorheight.Name = "floorheight";
this.floorheight.Size = new System.Drawing.Size(88, 24);
this.floorheight.StepValues = null;
this.floorheight.TabIndex = 23;
this.floorheight.WhenTextChanged += new System.EventHandler(this.floorheight_TextChanged);
//
// ceilingtex
//
this.ceilingtex.Location = new System.Drawing.Point(316, 35);
this.ceilingtex.MultipleTextures = false;
this.ceilingtex.Name = "ceilingtex";
this.ceilingtex.Size = new System.Drawing.Size(114, 138);
this.ceilingtex.TabIndex = 3;
this.ceilingtex.TextureName = "";
this.ceilingtex.OnValueChanged += new System.EventHandler(this.ceilingtex_OnValueChanged);
//
// 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;
this.cancel.Location = new System.Drawing.Point(344, 306);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 25);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(226, 306);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 25);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.Window;
this.panel1.Controls.Add(groupfloorceiling);
this.panel1.Controls.Add(groupeffect);
this.panel1.Location = new System.Drawing.Point(12, 10);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(443, 290);
this.panel1.TabIndex = 3;
//
// tooltip
//
this.tooltip.AutomaticDelay = 10;
this.tooltip.AutoPopDelay = 10000;
this.tooltip.InitialDelay = 10;
this.tooltip.ReshowDelay = 100;
//
// SectorEditForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(468, 337);
this.Controls.Add(this.panel1);
this.Controls.Add(this.cancel);
this.Controls.Add(this.apply);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SectorEditForm";
this.Opacity = 0;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Sector";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.SectorEditForm_HelpRequested);
groupeffect.ResumeLayout(false);
groupeffect.PerformLayout();
groupfloorceiling.ResumeLayout(false);
groupfloorceiling.PerformLayout();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Label label1;
System.Windows.Forms.Label label3;
System.Windows.Forms.GroupBox groupeffect;
System.Windows.Forms.Label label8;
System.Windows.Forms.Label label9;
System.Windows.Forms.GroupBox groupfloorceiling;
System.Windows.Forms.Label label7;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label label6;
System.Windows.Forms.Label label2;
System.Windows.Forms.Label label4;
this.browseeffect = new System.Windows.Forms.Button();
this.effect = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.tagSelector = new CodeImp.DoomBuilder.Controls.TagSelector();
this.heightoffset = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.brightness = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.ceilingheight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.sectorheightlabel = new System.Windows.Forms.Label();
this.sectorheight = new System.Windows.Forms.Label();
this.floortex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.floorheight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.ceilingtex = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.tooltip = new System.Windows.Forms.ToolTip(this.components);
label1 = new System.Windows.Forms.Label();
label3 = new System.Windows.Forms.Label();
groupeffect = new System.Windows.Forms.GroupBox();
label8 = new System.Windows.Forms.Label();
label9 = new System.Windows.Forms.Label();
groupfloorceiling = new System.Windows.Forms.GroupBox();
label7 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
groupeffect.SuspendLayout();
groupfloorceiling.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
label1.Location = new System.Drawing.Point(271, 18);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(83, 16);
label1.TabIndex = 15;
label1.Text = "Floor";
label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// label3
//
label3.Location = new System.Drawing.Point(363, 18);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(83, 16);
label3.TabIndex = 14;
label3.Text = "Ceiling";
label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// groupeffect
//
groupeffect.BackColor = System.Drawing.Color.Transparent;
groupeffect.Controls.Add(this.browseeffect);
groupeffect.Controls.Add(this.effect);
groupeffect.Controls.Add(label8);
groupeffect.Controls.Add(this.tagSelector);
groupeffect.Location = new System.Drawing.Point(3, 195);
groupeffect.Name = "groupeffect";
groupeffect.Size = new System.Drawing.Size(436, 92);
groupeffect.TabIndex = 1;
groupeffect.TabStop = false;
groupeffect.Text = "Effect and identification";
//
// browseeffect
//
this.browseeffect.Image = global::CodeImp.DoomBuilder.Properties.Resources.List;
this.browseeffect.Location = new System.Drawing.Point(402, 26);
this.browseeffect.Name = "browseeffect";
this.browseeffect.Size = new System.Drawing.Size(28, 25);
this.browseeffect.TabIndex = 1;
this.browseeffect.Text = " ";
this.browseeffect.UseVisualStyleBackColor = true;
this.browseeffect.Click += new System.EventHandler(this.browseeffect_Click);
//
// effect
//
this.effect.BackColor = System.Drawing.Color.Transparent;
this.effect.Cursor = System.Windows.Forms.Cursors.Default;
this.effect.Empty = false;
this.effect.GeneralizedCategories = null;
this.effect.GeneralizedOptions = null;
this.effect.Location = new System.Drawing.Point(61, 28);
this.effect.Name = "effect";
this.effect.Size = new System.Drawing.Size(335, 21);
this.effect.TabIndex = 0;
this.effect.Value = 402;
//
// label8
//
label8.AutoSize = true;
label8.Location = new System.Drawing.Point(12, 31);
label8.Name = "label8";
label8.Size = new System.Drawing.Size(45, 13);
label8.TabIndex = 0;
label8.Text = "Special:";
//
// tagSelector
//
this.tagSelector.Location = new System.Drawing.Point(19, 52);
this.tagSelector.Name = "tagSelector";
this.tagSelector.Size = new System.Drawing.Size(414, 34);
this.tagSelector.TabIndex = 0;
//
// label9
//
label9.Location = new System.Drawing.Point(16, 159);
label9.Name = "label9";
label9.Size = new System.Drawing.Size(78, 14);
label9.TabIndex = 2;
label9.Text = "Brightness:";
label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// groupfloorceiling
//
groupfloorceiling.BackColor = System.Drawing.Color.Transparent;
groupfloorceiling.Controls.Add(label7);
groupfloorceiling.Controls.Add(label5);
groupfloorceiling.Controls.Add(label6);
groupfloorceiling.Controls.Add(this.heightoffset);
groupfloorceiling.Controls.Add(this.brightness);
groupfloorceiling.Controls.Add(this.ceilingheight);
groupfloorceiling.Controls.Add(label9);
groupfloorceiling.Controls.Add(label2);
groupfloorceiling.Controls.Add(this.sectorheightlabel);
groupfloorceiling.Controls.Add(label4);
groupfloorceiling.Controls.Add(this.sectorheight);
groupfloorceiling.Controls.Add(this.floortex);
groupfloorceiling.Controls.Add(this.floorheight);
groupfloorceiling.Controls.Add(this.ceilingtex);
groupfloorceiling.Location = new System.Drawing.Point(3, 3);
groupfloorceiling.Name = "groupfloorceiling";
groupfloorceiling.Size = new System.Drawing.Size(436, 186);
groupfloorceiling.TabIndex = 0;
groupfloorceiling.TabStop = false;
groupfloorceiling.Text = "Floor and ceiling ";
//
// label7
//
label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
label7.ForeColor = System.Drawing.SystemColors.HotTrack;
label7.Location = new System.Drawing.Point(16, 100);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(78, 14);
label7.TabIndex = 25;
label7.Text = "Height offset:";
label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.tooltip.SetToolTip(label7, "Changes floor and ceiling height by given value.\r\nUse \"++\" to raise by sector hei" +
"ght.\r\nUse \"--\" to lower by sector height.");
//
// label5
//
label5.Location = new System.Drawing.Point(16, 70);
label5.Name = "label5";
label5.Size = new System.Drawing.Size(78, 14);
label5.TabIndex = 17;
label5.Text = "Floor height:";
label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label6
//
label6.Location = new System.Drawing.Point(16, 40);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(78, 14);
label6.TabIndex = 19;
label6.Text = "Ceiling height:";
label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// heightoffset
//
this.heightoffset.AllowDecimal = false;
this.heightoffset.AllowExpressions = true;
this.heightoffset.AllowNegative = true;
this.heightoffset.AllowRelative = true;
this.heightoffset.ButtonStep = 8;
this.heightoffset.ButtonStepBig = 16F;
this.heightoffset.ButtonStepFloat = 1F;
this.heightoffset.ButtonStepSmall = 1F;
this.heightoffset.ButtonStepsUseModifierKeys = true;
this.heightoffset.ButtonStepsWrapAround = false;
this.heightoffset.Location = new System.Drawing.Point(99, 95);
this.heightoffset.Name = "heightoffset";
this.heightoffset.Size = new System.Drawing.Size(88, 24);
this.heightoffset.StepValues = null;
this.heightoffset.TabIndex = 26;
this.heightoffset.WhenTextChanged += new System.EventHandler(this.heightoffset_WhenTextChanged);
//
// brightness
//
this.brightness.AllowDecimal = false;
this.brightness.AllowExpressions = false;
this.brightness.AllowNegative = true;
this.brightness.AllowRelative = true;
this.brightness.ButtonStep = 8;
this.brightness.ButtonStepBig = 16F;
this.brightness.ButtonStepFloat = 1F;
this.brightness.ButtonStepSmall = 1F;
this.brightness.ButtonStepsUseModifierKeys = true;
this.brightness.ButtonStepsWrapAround = false;
this.brightness.Location = new System.Drawing.Point(99, 154);
this.brightness.Name = "brightness";
this.brightness.Size = new System.Drawing.Size(73, 24);
this.brightness.StepValues = null;
this.brightness.TabIndex = 24;
this.brightness.WhenTextChanged += new System.EventHandler(this.brightness_WhenTextChanged);
//
// ceilingheight
//
this.ceilingheight.AllowDecimal = false;
this.ceilingheight.AllowExpressions = true;
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ButtonStep = 8;
this.ceilingheight.ButtonStepBig = 16F;
this.ceilingheight.ButtonStepFloat = 1F;
this.ceilingheight.ButtonStepSmall = 1F;
this.ceilingheight.ButtonStepsUseModifierKeys = true;
this.ceilingheight.ButtonStepsWrapAround = false;
this.ceilingheight.Location = new System.Drawing.Point(99, 35);
this.ceilingheight.Name = "ceilingheight";
this.ceilingheight.Size = new System.Drawing.Size(88, 24);
this.ceilingheight.StepValues = null;
this.ceilingheight.TabIndex = 22;
this.ceilingheight.WhenTextChanged += new System.EventHandler(this.ceilingheight_TextChanged);
//
// label2
//
label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
label2.Location = new System.Drawing.Point(196, 16);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(114, 16);
label2.TabIndex = 15;
label2.Text = "Floor";
label2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// sectorheightlabel
//
this.sectorheightlabel.Location = new System.Drawing.Point(16, 130);
this.sectorheightlabel.Name = "sectorheightlabel";
this.sectorheightlabel.Size = new System.Drawing.Size(78, 14);
this.sectorheightlabel.TabIndex = 20;
this.sectorheightlabel.Text = "Sector height:";
this.sectorheightlabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label4
//
label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
label4.Location = new System.Drawing.Point(316, 16);
label4.Name = "label4";
label4.Size = new System.Drawing.Size(114, 16);
label4.TabIndex = 14;
label4.Text = "Ceiling";
label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// sectorheight
//
this.sectorheight.AutoSize = true;
this.sectorheight.Location = new System.Drawing.Point(100, 130);
this.sectorheight.Name = "sectorheight";
this.sectorheight.Size = new System.Drawing.Size(13, 13);
this.sectorheight.TabIndex = 21;
this.sectorheight.Text = "0";
//
// floortex
//
this.floortex.Location = new System.Drawing.Point(196, 35);
this.floortex.MultipleTextures = false;
this.floortex.Name = "floortex";
this.floortex.Size = new System.Drawing.Size(114, 138);
this.floortex.TabIndex = 2;
this.floortex.TextureName = "";
this.floortex.OnValueChanged += new System.EventHandler(this.floortex_OnValueChanged);
//
// floorheight
//
this.floorheight.AllowDecimal = false;
this.floorheight.AllowExpressions = true;
this.floorheight.AllowNegative = true;
this.floorheight.AllowRelative = true;
this.floorheight.ButtonStep = 8;
this.floorheight.ButtonStepBig = 16F;
this.floorheight.ButtonStepFloat = 1F;
this.floorheight.ButtonStepSmall = 1F;
this.floorheight.ButtonStepsUseModifierKeys = true;
this.floorheight.ButtonStepsWrapAround = false;
this.floorheight.Location = new System.Drawing.Point(99, 65);
this.floorheight.Name = "floorheight";
this.floorheight.Size = new System.Drawing.Size(88, 24);
this.floorheight.StepValues = null;
this.floorheight.TabIndex = 23;
this.floorheight.WhenTextChanged += new System.EventHandler(this.floorheight_TextChanged);
//
// ceilingtex
//
this.ceilingtex.Location = new System.Drawing.Point(316, 35);
this.ceilingtex.MultipleTextures = false;
this.ceilingtex.Name = "ceilingtex";
this.ceilingtex.Size = new System.Drawing.Size(114, 138);
this.ceilingtex.TabIndex = 3;
this.ceilingtex.TextureName = "";
this.ceilingtex.OnValueChanged += new System.EventHandler(this.ceilingtex_OnValueChanged);
//
// 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;
this.cancel.Location = new System.Drawing.Point(344, 306);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 25);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(226, 306);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 25);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.Control;
this.panel1.Controls.Add(groupfloorceiling);
this.panel1.Controls.Add(groupeffect);
this.panel1.Location = new System.Drawing.Point(12, 10);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(443, 290);
this.panel1.TabIndex = 3;
//
// tooltip
//
this.tooltip.AutomaticDelay = 10;
this.tooltip.AutoPopDelay = 10000;
this.tooltip.InitialDelay = 10;
this.tooltip.ReshowDelay = 100;
//
// SectorEditForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(468, 337);
this.Controls.Add(this.panel1);
this.Controls.Add(this.cancel);
this.Controls.Add(this.apply);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SectorEditForm";
this.Opacity = 0D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Sector";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.SectorEditForm_HelpRequested);
groupeffect.ResumeLayout(false);
groupeffect.PerformLayout();
groupfloorceiling.ResumeLayout(false);
groupfloorceiling.PerformLayout();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}

View file

@ -117,18 +117,18 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<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="label3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</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="groupeffect.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>

View file

@ -28,457 +28,457 @@ namespace CodeImp.DoomBuilder.Windows
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.GroupBox groupBox2;
System.Windows.Forms.Label label7;
this.cbAbsoluteHeight = new System.Windows.Forms.CheckBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.posX = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.posY = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.posZ = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.zlabel = new System.Windows.Forms.Label();
this.typegroup = new System.Windows.Forms.GroupBox();
this.thingtype = new CodeImp.DoomBuilder.Controls.ThingBrowserControl();
this.anglecontrol = new CodeImp.DoomBuilder.Controls.AngleControlEx();
this.cbRandomAngle = new System.Windows.Forms.CheckBox();
this.angle = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.settingsgroup = new System.Windows.Forms.GroupBox();
this.missingflags = new System.Windows.Forms.PictureBox();
this.flags = new CodeImp.DoomBuilder.Controls.CheckboxArrayControl();
this.actiongroup = new System.Windows.Forms.GroupBox();
this.argscontrol = new CodeImp.DoomBuilder.Controls.ArgumentsControl();
this.actionhelp = new CodeImp.DoomBuilder.Controls.ActionSpecialHelpButton();
this.action = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.browseaction = new System.Windows.Forms.Button();
this.idgroup = new System.Windows.Forms.GroupBox();
this.tagSelector = new CodeImp.DoomBuilder.Controls.TagSelector();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.hint = new System.Windows.Forms.PictureBox();
this.hintlabel = new System.Windows.Forms.Label();
this.tooltip = new System.Windows.Forms.ToolTip(this.components);
this.panel = new System.Windows.Forms.Panel();
this.applypanel = new System.Windows.Forms.Panel();
groupBox2 = new System.Windows.Forms.GroupBox();
label7 = new System.Windows.Forms.Label();
groupBox2.SuspendLayout();
this.typegroup.SuspendLayout();
this.groupBox4.SuspendLayout();
this.settingsgroup.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.missingflags)).BeginInit();
this.actiongroup.SuspendLayout();
this.idgroup.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.hint)).BeginInit();
this.panel.SuspendLayout();
this.applypanel.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
groupBox2.Controls.Add(this.cbAbsoluteHeight);
groupBox2.Controls.Add(this.label2);
groupBox2.Controls.Add(this.label1);
groupBox2.Controls.Add(this.posX);
groupBox2.Controls.Add(this.posY);
groupBox2.Controls.Add(this.posZ);
groupBox2.Controls.Add(this.zlabel);
groupBox2.Location = new System.Drawing.Point(260, 242);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(177, 134);
groupBox2.TabIndex = 2;
groupBox2.TabStop = false;
groupBox2.Text = " Position ";
//
// cbAbsoluteHeight
//
this.cbAbsoluteHeight.AutoSize = true;
this.cbAbsoluteHeight.Location = new System.Drawing.Point(12, 111);
this.cbAbsoluteHeight.Name = "cbAbsoluteHeight";
this.cbAbsoluteHeight.Size = new System.Drawing.Size(99, 17);
this.cbAbsoluteHeight.TabIndex = 16;
this.cbAbsoluteHeight.Text = "Absolute height";
this.cbAbsoluteHeight.UseVisualStyleBackColor = true;
this.cbAbsoluteHeight.CheckedChanged += new System.EventHandler(this.cbAbsoluteHeight_CheckedChanged);
//
// label2
//
this.label2.Location = new System.Drawing.Point(5, 21);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(50, 14);
this.label2.TabIndex = 15;
this.label2.Text = "X:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label1
//
this.label1.Location = new System.Drawing.Point(5, 51);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(50, 14);
this.label1.TabIndex = 14;
this.label1.Text = "Y:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// posX
//
this.posX.AllowDecimal = false;
this.posX.AllowExpressions = true;
this.posX.AllowNegative = true;
this.posX.AllowRelative = true;
this.posX.ButtonStep = 8;
this.posX.ButtonStepBig = 16F;
this.posX.ButtonStepFloat = 1F;
this.posX.ButtonStepSmall = 1F;
this.posX.ButtonStepsUseModifierKeys = true;
this.posX.ButtonStepsWrapAround = false;
this.posX.Location = new System.Drawing.Point(61, 16);
this.posX.Name = "posX";
this.posX.Size = new System.Drawing.Size(72, 24);
this.posX.StepValues = null;
this.posX.TabIndex = 13;
this.posX.WhenTextChanged += new System.EventHandler(this.posX_WhenTextChanged);
//
// posY
//
this.posY.AllowDecimal = false;
this.posY.AllowExpressions = true;
this.posY.AllowNegative = true;
this.posY.AllowRelative = true;
this.posY.ButtonStep = 8;
this.posY.ButtonStepBig = 16F;
this.posY.ButtonStepFloat = 1F;
this.posY.ButtonStepSmall = 1F;
this.posY.ButtonStepsUseModifierKeys = true;
this.posY.ButtonStepsWrapAround = false;
this.posY.Location = new System.Drawing.Point(61, 46);
this.posY.Name = "posY";
this.posY.Size = new System.Drawing.Size(72, 24);
this.posY.StepValues = null;
this.posY.TabIndex = 12;
this.posY.WhenTextChanged += new System.EventHandler(this.posY_WhenTextChanged);
//
// posZ
//
this.posZ.AllowDecimal = false;
this.posZ.AllowExpressions = true;
this.posZ.AllowNegative = true;
this.posZ.AllowRelative = true;
this.posZ.ButtonStep = 8;
this.posZ.ButtonStepBig = 16F;
this.posZ.ButtonStepFloat = 1F;
this.posZ.ButtonStepSmall = 1F;
this.posZ.ButtonStepsUseModifierKeys = true;
this.posZ.ButtonStepsWrapAround = false;
this.posZ.Location = new System.Drawing.Point(61, 76);
this.posZ.Name = "posZ";
this.posZ.Size = new System.Drawing.Size(72, 24);
this.posZ.StepValues = null;
this.posZ.TabIndex = 11;
this.posZ.WhenTextChanged += new System.EventHandler(this.posZ_WhenTextChanged);
//
// zlabel
//
this.zlabel.Location = new System.Drawing.Point(5, 81);
this.zlabel.Name = "zlabel";
this.zlabel.Size = new System.Drawing.Size(50, 14);
this.zlabel.TabIndex = 9;
this.zlabel.Text = "Height:";
this.zlabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label7
//
label7.AutoSize = true;
label7.Location = new System.Drawing.Point(15, 30);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(40, 13);
label7.TabIndex = 9;
label7.Text = "Action:";
//
// typegroup
//
this.typegroup.Controls.Add(this.thingtype);
this.typegroup.Location = new System.Drawing.Point(4, 3);
this.typegroup.Name = "typegroup";
this.typegroup.Size = new System.Drawing.Size(250, 373);
this.typegroup.TabIndex = 0;
this.typegroup.TabStop = false;
this.typegroup.Text = " Thing ";
//
// thingtype
//
this.thingtype.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.thingtype.Location = new System.Drawing.Point(9, 13);
this.thingtype.Margin = new System.Windows.Forms.Padding(6);
this.thingtype.Name = "thingtype";
this.thingtype.Size = new System.Drawing.Size(232, 357);
this.thingtype.TabIndex = 0;
this.thingtype.UseMultiSelection = true;
this.thingtype.OnTypeDoubleClicked += new CodeImp.DoomBuilder.Controls.ThingBrowserControl.TypeDoubleClickDeletegate(this.thingtype_OnTypeDoubleClicked);
this.thingtype.OnTypeChanged += new CodeImp.DoomBuilder.Controls.ThingBrowserControl.TypeChangedDeletegate(this.thingtype_OnTypeChanged);
//
// anglecontrol
//
this.anglecontrol.Angle = 0;
this.anglecontrol.AngleOffset = 0;
this.anglecontrol.DoomAngleClamping = false;
this.anglecontrol.Location = new System.Drawing.Point(20, 40);
this.anglecontrol.Name = "anglecontrol";
this.anglecontrol.Size = new System.Drawing.Size(69, 69);
this.anglecontrol.TabIndex = 20;
this.anglecontrol.AngleChanged += new System.EventHandler(this.anglecontrol_AngleChanged);
//
// cbRandomAngle
//
this.cbRandomAngle.AutoSize = true;
this.cbRandomAngle.Location = new System.Drawing.Point(6, 111);
this.cbRandomAngle.Name = "cbRandomAngle";
this.cbRandomAngle.Size = new System.Drawing.Size(95, 17);
this.cbRandomAngle.TabIndex = 17;
this.cbRandomAngle.Text = "Random angle";
this.cbRandomAngle.UseVisualStyleBackColor = true;
this.cbRandomAngle.CheckedChanged += new System.EventHandler(this.cbRandomAngle_CheckedChanged);
//
// angle
//
this.angle.AllowDecimal = false;
this.angle.AllowExpressions = false;
this.angle.AllowNegative = true;
this.angle.AllowRelative = true;
this.angle.ButtonStep = 5;
this.angle.ButtonStepBig = 15F;
this.angle.ButtonStepFloat = 1F;
this.angle.ButtonStepSmall = 1F;
this.angle.ButtonStepsUseModifierKeys = true;
this.angle.ButtonStepsWrapAround = false;
this.angle.Location = new System.Drawing.Point(13, 16);
this.angle.Name = "angle";
this.angle.Size = new System.Drawing.Size(82, 24);
this.angle.StepValues = null;
this.angle.TabIndex = 10;
this.angle.WhenTextChanged += new System.EventHandler(this.angle_WhenTextChanged);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.cbRandomAngle);
this.groupBox4.Controls.Add(this.anglecontrol);
this.groupBox4.Controls.Add(this.angle);
this.groupBox4.Location = new System.Drawing.Point(443, 242);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(107, 134);
this.groupBox4.TabIndex = 3;
this.groupBox4.TabStop = false;
this.groupBox4.Text = " Angle";
//
// settingsgroup
//
this.settingsgroup.Controls.Add(this.missingflags);
this.settingsgroup.Controls.Add(this.flags);
this.settingsgroup.Location = new System.Drawing.Point(260, 3);
this.settingsgroup.Name = "settingsgroup";
this.settingsgroup.Size = new System.Drawing.Size(290, 233);
this.settingsgroup.TabIndex = 1;
this.settingsgroup.TabStop = false;
this.settingsgroup.Text = " Settings ";
//
// missingflags
//
this.missingflags.BackColor = System.Drawing.SystemColors.Window;
this.missingflags.Image = global::CodeImp.DoomBuilder.Properties.Resources.Warning;
this.missingflags.Location = new System.Drawing.Point(55, -2);
this.missingflags.Name = "missingflags";
this.missingflags.Size = new System.Drawing.Size(16, 16);
this.missingflags.TabIndex = 5;
this.missingflags.TabStop = false;
this.missingflags.Visible = false;
//
// flags
//
this.flags.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.flags.AutoScroll = true;
this.flags.Columns = 2;
this.flags.Location = new System.Drawing.Point(14, 19);
this.flags.Name = "flags";
this.flags.Size = new System.Drawing.Size(270, 211);
this.flags.TabIndex = 0;
this.flags.VerticalSpacing = 1;
this.flags.OnValueChanged += new System.EventHandler(this.flags_OnValueChanged);
//
// actiongroup
//
this.actiongroup.Controls.Add(this.argscontrol);
this.actiongroup.Controls.Add(this.actionhelp);
this.actiongroup.Controls.Add(label7);
this.actiongroup.Controls.Add(this.action);
this.actiongroup.Controls.Add(this.browseaction);
this.actiongroup.Location = new System.Drawing.Point(4, 382);
this.actiongroup.Name = "actiongroup";
this.actiongroup.Size = new System.Drawing.Size(546, 145);
this.actiongroup.TabIndex = 22;
this.actiongroup.TabStop = false;
this.actiongroup.Text = " Action ";
//
// argscontrol
//
this.argscontrol.Location = new System.Drawing.Point(6, 57);
this.argscontrol.Name = "argscontrol";
this.argscontrol.Size = new System.Drawing.Size(534, 80);
this.argscontrol.TabIndex = 15;
//
// actionhelp
//
this.actionhelp.Location = new System.Drawing.Point(512, 25);
this.actionhelp.Name = "actionhelp";
this.actionhelp.Size = new System.Drawing.Size(28, 25);
this.actionhelp.TabIndex = 14;
//
// action
//
this.action.BackColor = System.Drawing.SystemColors.Control;
this.action.Cursor = System.Windows.Forms.Cursors.Default;
this.action.Empty = false;
this.action.GeneralizedCategories = null;
this.action.GeneralizedOptions = null;
this.action.Location = new System.Drawing.Point(62, 27);
this.action.Name = "action";
this.action.Size = new System.Drawing.Size(414, 21);
this.action.TabIndex = 0;
this.action.Value = 402;
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
//
// browseaction
//
this.browseaction.Image = global::CodeImp.DoomBuilder.Properties.Resources.List;
this.browseaction.Location = new System.Drawing.Point(482, 25);
this.browseaction.Name = "browseaction";
this.browseaction.Size = new System.Drawing.Size(28, 25);
this.browseaction.TabIndex = 1;
this.browseaction.Text = " ";
this.tooltip.SetToolTip(this.browseaction, "Browse Action");
this.browseaction.UseVisualStyleBackColor = true;
this.browseaction.Click += new System.EventHandler(this.browseaction_Click);
//
// idgroup
//
this.idgroup.Controls.Add(this.tagSelector);
this.idgroup.Location = new System.Drawing.Point(4, 533);
this.idgroup.Name = "idgroup";
this.idgroup.Size = new System.Drawing.Size(546, 66);
this.idgroup.TabIndex = 0;
this.idgroup.TabStop = false;
this.idgroup.Text = " Identification ";
//
// tagSelector
//
this.tagSelector.Location = new System.Drawing.Point(6, 19);
this.tagSelector.Name = "tagSelector";
this.tagSelector.Size = new System.Drawing.Size(534, 35);
this.tagSelector.TabIndex = 8;
//
// cancel
//
this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancel.Location = new System.Drawing.Point(438, 4);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 25);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(320, 4);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 25);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// hint
//
this.hint.Image = global::CodeImp.DoomBuilder.Properties.Resources.Lightbulb;
this.hint.Location = new System.Drawing.Point(0, 8);
this.hint.Name = "hint";
this.hint.Size = new System.Drawing.Size(16, 16);
this.hint.TabIndex = 3;
this.hint.TabStop = false;
//
// hintlabel
//
this.hintlabel.AutoSize = true;
this.hintlabel.Location = new System.Drawing.Point(18, 3);
this.hintlabel.Name = "hintlabel";
this.hintlabel.Size = new System.Drawing.Size(195, 26);
this.hintlabel.TabIndex = 4;
this.hintlabel.Text = "Select categories or several thing types \r\nto randomly assign them to selection";
//
// panel
//
this.panel.BackColor = System.Drawing.SystemColors.Window;
this.panel.Controls.Add(this.actiongroup);
this.panel.Controls.Add(this.groupBox4);
this.panel.Controls.Add(this.idgroup);
this.panel.Controls.Add(this.typegroup);
this.panel.Controls.Add(groupBox2);
this.panel.Controls.Add(this.settingsgroup);
this.panel.Location = new System.Drawing.Point(12, 12);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(553, 606);
this.panel.TabIndex = 5;
//
// applypanel
//
this.applypanel.Controls.Add(this.cancel);
this.applypanel.Controls.Add(this.apply);
this.applypanel.Controls.Add(this.hintlabel);
this.applypanel.Controls.Add(this.hint);
this.applypanel.Location = new System.Drawing.Point(12, 624);
this.applypanel.Name = "applypanel";
this.applypanel.Size = new System.Drawing.Size(553, 32);
this.applypanel.TabIndex = 6;
//
// ThingEditForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(577, 670);
this.Controls.Add(this.applypanel);
this.Controls.Add(this.panel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ThingEditForm";
this.Opacity = 0;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Thing";
this.Shown += new System.EventHandler(this.ThingEditForm_Shown);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ThingEditForm_HelpRequested);
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.typegroup.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.settingsgroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.missingflags)).EndInit();
this.actiongroup.ResumeLayout(false);
this.actiongroup.PerformLayout();
this.idgroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.hint)).EndInit();
this.panel.ResumeLayout(false);
this.applypanel.ResumeLayout(false);
this.applypanel.PerformLayout();
this.ResumeLayout(false);
this.components = new System.ComponentModel.Container();
System.Windows.Forms.GroupBox groupBox2;
System.Windows.Forms.Label label7;
this.cbAbsoluteHeight = new System.Windows.Forms.CheckBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.posX = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.posY = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.posZ = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.zlabel = new System.Windows.Forms.Label();
this.typegroup = new System.Windows.Forms.GroupBox();
this.thingtype = new CodeImp.DoomBuilder.Controls.ThingBrowserControl();
this.anglecontrol = new CodeImp.DoomBuilder.Controls.AngleControlEx();
this.cbRandomAngle = new System.Windows.Forms.CheckBox();
this.angle = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.settingsgroup = new System.Windows.Forms.GroupBox();
this.missingflags = new System.Windows.Forms.PictureBox();
this.flags = new CodeImp.DoomBuilder.Controls.CheckboxArrayControl();
this.actiongroup = new System.Windows.Forms.GroupBox();
this.argscontrol = new CodeImp.DoomBuilder.Controls.ArgumentsControl();
this.actionhelp = new CodeImp.DoomBuilder.Controls.ActionSpecialHelpButton();
this.action = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.browseaction = new System.Windows.Forms.Button();
this.idgroup = new System.Windows.Forms.GroupBox();
this.tagSelector = new CodeImp.DoomBuilder.Controls.TagSelector();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.hint = new System.Windows.Forms.PictureBox();
this.hintlabel = new System.Windows.Forms.Label();
this.tooltip = new System.Windows.Forms.ToolTip(this.components);
this.panel = new System.Windows.Forms.Panel();
this.applypanel = new System.Windows.Forms.Panel();
groupBox2 = new System.Windows.Forms.GroupBox();
label7 = new System.Windows.Forms.Label();
groupBox2.SuspendLayout();
this.typegroup.SuspendLayout();
this.groupBox4.SuspendLayout();
this.settingsgroup.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.missingflags)).BeginInit();
this.actiongroup.SuspendLayout();
this.idgroup.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.hint)).BeginInit();
this.panel.SuspendLayout();
this.applypanel.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
//
groupBox2.Controls.Add(this.cbAbsoluteHeight);
groupBox2.Controls.Add(this.label2);
groupBox2.Controls.Add(this.label1);
groupBox2.Controls.Add(this.posX);
groupBox2.Controls.Add(this.posY);
groupBox2.Controls.Add(this.posZ);
groupBox2.Controls.Add(this.zlabel);
groupBox2.Location = new System.Drawing.Point(260, 242);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(177, 134);
groupBox2.TabIndex = 2;
groupBox2.TabStop = false;
groupBox2.Text = " Position ";
//
// cbAbsoluteHeight
//
this.cbAbsoluteHeight.AutoSize = true;
this.cbAbsoluteHeight.Location = new System.Drawing.Point(12, 111);
this.cbAbsoluteHeight.Name = "cbAbsoluteHeight";
this.cbAbsoluteHeight.Size = new System.Drawing.Size(99, 17);
this.cbAbsoluteHeight.TabIndex = 16;
this.cbAbsoluteHeight.Text = "Absolute height";
this.cbAbsoluteHeight.UseVisualStyleBackColor = true;
this.cbAbsoluteHeight.CheckedChanged += new System.EventHandler(this.cbAbsoluteHeight_CheckedChanged);
//
// label2
//
this.label2.Location = new System.Drawing.Point(5, 21);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(50, 14);
this.label2.TabIndex = 15;
this.label2.Text = "X:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label1
//
this.label1.Location = new System.Drawing.Point(5, 51);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(50, 14);
this.label1.TabIndex = 14;
this.label1.Text = "Y:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// posX
//
this.posX.AllowDecimal = false;
this.posX.AllowExpressions = true;
this.posX.AllowNegative = true;
this.posX.AllowRelative = true;
this.posX.ButtonStep = 8;
this.posX.ButtonStepBig = 16F;
this.posX.ButtonStepFloat = 1F;
this.posX.ButtonStepSmall = 1F;
this.posX.ButtonStepsUseModifierKeys = true;
this.posX.ButtonStepsWrapAround = false;
this.posX.Location = new System.Drawing.Point(61, 16);
this.posX.Name = "posX";
this.posX.Size = new System.Drawing.Size(72, 24);
this.posX.StepValues = null;
this.posX.TabIndex = 13;
this.posX.WhenTextChanged += new System.EventHandler(this.posX_WhenTextChanged);
//
// posY
//
this.posY.AllowDecimal = false;
this.posY.AllowExpressions = true;
this.posY.AllowNegative = true;
this.posY.AllowRelative = true;
this.posY.ButtonStep = 8;
this.posY.ButtonStepBig = 16F;
this.posY.ButtonStepFloat = 1F;
this.posY.ButtonStepSmall = 1F;
this.posY.ButtonStepsUseModifierKeys = true;
this.posY.ButtonStepsWrapAround = false;
this.posY.Location = new System.Drawing.Point(61, 46);
this.posY.Name = "posY";
this.posY.Size = new System.Drawing.Size(72, 24);
this.posY.StepValues = null;
this.posY.TabIndex = 12;
this.posY.WhenTextChanged += new System.EventHandler(this.posY_WhenTextChanged);
//
// posZ
//
this.posZ.AllowDecimal = false;
this.posZ.AllowExpressions = true;
this.posZ.AllowNegative = true;
this.posZ.AllowRelative = true;
this.posZ.ButtonStep = 8;
this.posZ.ButtonStepBig = 16F;
this.posZ.ButtonStepFloat = 1F;
this.posZ.ButtonStepSmall = 1F;
this.posZ.ButtonStepsUseModifierKeys = true;
this.posZ.ButtonStepsWrapAround = false;
this.posZ.Location = new System.Drawing.Point(61, 76);
this.posZ.Name = "posZ";
this.posZ.Size = new System.Drawing.Size(72, 24);
this.posZ.StepValues = null;
this.posZ.TabIndex = 11;
this.posZ.WhenTextChanged += new System.EventHandler(this.posZ_WhenTextChanged);
//
// zlabel
//
this.zlabel.Location = new System.Drawing.Point(5, 81);
this.zlabel.Name = "zlabel";
this.zlabel.Size = new System.Drawing.Size(50, 14);
this.zlabel.TabIndex = 9;
this.zlabel.Text = "Height:";
this.zlabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label7
//
label7.AutoSize = true;
label7.Location = new System.Drawing.Point(15, 30);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(40, 13);
label7.TabIndex = 9;
label7.Text = "Action:";
//
// typegroup
//
this.typegroup.Controls.Add(this.thingtype);
this.typegroup.Location = new System.Drawing.Point(4, 3);
this.typegroup.Name = "typegroup";
this.typegroup.Size = new System.Drawing.Size(250, 373);
this.typegroup.TabIndex = 0;
this.typegroup.TabStop = false;
this.typegroup.Text = " Thing ";
//
// thingtype
//
this.thingtype.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.thingtype.Location = new System.Drawing.Point(9, 13);
this.thingtype.Margin = new System.Windows.Forms.Padding(6);
this.thingtype.Name = "thingtype";
this.thingtype.Size = new System.Drawing.Size(232, 357);
this.thingtype.TabIndex = 0;
this.thingtype.UseMultiSelection = true;
this.thingtype.OnTypeChanged += new CodeImp.DoomBuilder.Controls.ThingBrowserControl.TypeChangedDeletegate(this.thingtype_OnTypeChanged);
this.thingtype.OnTypeDoubleClicked += new CodeImp.DoomBuilder.Controls.ThingBrowserControl.TypeDoubleClickDeletegate(this.thingtype_OnTypeDoubleClicked);
//
// anglecontrol
//
this.anglecontrol.Angle = 0;
this.anglecontrol.AngleOffset = 0;
this.anglecontrol.DoomAngleClamping = false;
this.anglecontrol.Location = new System.Drawing.Point(20, 40);
this.anglecontrol.Name = "anglecontrol";
this.anglecontrol.Size = new System.Drawing.Size(69, 69);
this.anglecontrol.TabIndex = 20;
this.anglecontrol.AngleChanged += new System.EventHandler(this.anglecontrol_AngleChanged);
//
// cbRandomAngle
//
this.cbRandomAngle.AutoSize = true;
this.cbRandomAngle.Location = new System.Drawing.Point(6, 111);
this.cbRandomAngle.Name = "cbRandomAngle";
this.cbRandomAngle.Size = new System.Drawing.Size(95, 17);
this.cbRandomAngle.TabIndex = 17;
this.cbRandomAngle.Text = "Random angle";
this.cbRandomAngle.UseVisualStyleBackColor = true;
this.cbRandomAngle.CheckedChanged += new System.EventHandler(this.cbRandomAngle_CheckedChanged);
//
// angle
//
this.angle.AllowDecimal = false;
this.angle.AllowExpressions = false;
this.angle.AllowNegative = true;
this.angle.AllowRelative = true;
this.angle.ButtonStep = 5;
this.angle.ButtonStepBig = 15F;
this.angle.ButtonStepFloat = 1F;
this.angle.ButtonStepSmall = 1F;
this.angle.ButtonStepsUseModifierKeys = true;
this.angle.ButtonStepsWrapAround = false;
this.angle.Location = new System.Drawing.Point(13, 16);
this.angle.Name = "angle";
this.angle.Size = new System.Drawing.Size(82, 24);
this.angle.StepValues = null;
this.angle.TabIndex = 10;
this.angle.WhenTextChanged += new System.EventHandler(this.angle_WhenTextChanged);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.cbRandomAngle);
this.groupBox4.Controls.Add(this.anglecontrol);
this.groupBox4.Controls.Add(this.angle);
this.groupBox4.Location = new System.Drawing.Point(443, 242);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(107, 134);
this.groupBox4.TabIndex = 3;
this.groupBox4.TabStop = false;
this.groupBox4.Text = " Angle";
//
// settingsgroup
//
this.settingsgroup.Controls.Add(this.missingflags);
this.settingsgroup.Controls.Add(this.flags);
this.settingsgroup.Location = new System.Drawing.Point(260, 3);
this.settingsgroup.Name = "settingsgroup";
this.settingsgroup.Size = new System.Drawing.Size(290, 233);
this.settingsgroup.TabIndex = 1;
this.settingsgroup.TabStop = false;
this.settingsgroup.Text = " Settings ";
//
// missingflags
//
this.missingflags.BackColor = System.Drawing.SystemColors.Window;
this.missingflags.Image = global::CodeImp.DoomBuilder.Properties.Resources.Warning;
this.missingflags.Location = new System.Drawing.Point(55, -2);
this.missingflags.Name = "missingflags";
this.missingflags.Size = new System.Drawing.Size(16, 16);
this.missingflags.TabIndex = 5;
this.missingflags.TabStop = false;
this.missingflags.Visible = false;
//
// flags
//
this.flags.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.flags.AutoScroll = true;
this.flags.Columns = 2;
this.flags.Location = new System.Drawing.Point(14, 19);
this.flags.Name = "flags";
this.flags.Size = new System.Drawing.Size(270, 211);
this.flags.TabIndex = 0;
this.flags.VerticalSpacing = 1;
this.flags.OnValueChanged += new System.EventHandler(this.flags_OnValueChanged);
//
// actiongroup
//
this.actiongroup.Controls.Add(this.argscontrol);
this.actiongroup.Controls.Add(this.actionhelp);
this.actiongroup.Controls.Add(label7);
this.actiongroup.Controls.Add(this.action);
this.actiongroup.Controls.Add(this.browseaction);
this.actiongroup.Location = new System.Drawing.Point(4, 382);
this.actiongroup.Name = "actiongroup";
this.actiongroup.Size = new System.Drawing.Size(546, 145);
this.actiongroup.TabIndex = 22;
this.actiongroup.TabStop = false;
this.actiongroup.Text = " Action ";
//
// argscontrol
//
this.argscontrol.Location = new System.Drawing.Point(6, 57);
this.argscontrol.Name = "argscontrol";
this.argscontrol.Size = new System.Drawing.Size(534, 80);
this.argscontrol.TabIndex = 15;
//
// actionhelp
//
this.actionhelp.Location = new System.Drawing.Point(512, 25);
this.actionhelp.Name = "actionhelp";
this.actionhelp.Size = new System.Drawing.Size(28, 25);
this.actionhelp.TabIndex = 14;
//
// action
//
this.action.BackColor = System.Drawing.SystemColors.Control;
this.action.Cursor = System.Windows.Forms.Cursors.Default;
this.action.Empty = false;
this.action.GeneralizedCategories = null;
this.action.GeneralizedOptions = null;
this.action.Location = new System.Drawing.Point(62, 27);
this.action.Name = "action";
this.action.Size = new System.Drawing.Size(414, 21);
this.action.TabIndex = 0;
this.action.Value = 402;
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
//
// browseaction
//
this.browseaction.Image = global::CodeImp.DoomBuilder.Properties.Resources.List;
this.browseaction.Location = new System.Drawing.Point(482, 25);
this.browseaction.Name = "browseaction";
this.browseaction.Size = new System.Drawing.Size(28, 25);
this.browseaction.TabIndex = 1;
this.browseaction.Text = " ";
this.tooltip.SetToolTip(this.browseaction, "Browse Action");
this.browseaction.UseVisualStyleBackColor = true;
this.browseaction.Click += new System.EventHandler(this.browseaction_Click);
//
// idgroup
//
this.idgroup.Controls.Add(this.tagSelector);
this.idgroup.Location = new System.Drawing.Point(4, 533);
this.idgroup.Name = "idgroup";
this.idgroup.Size = new System.Drawing.Size(546, 66);
this.idgroup.TabIndex = 0;
this.idgroup.TabStop = false;
this.idgroup.Text = " Identification ";
//
// tagSelector
//
this.tagSelector.Location = new System.Drawing.Point(6, 19);
this.tagSelector.Name = "tagSelector";
this.tagSelector.Size = new System.Drawing.Size(534, 35);
this.tagSelector.TabIndex = 8;
//
// cancel
//
this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancel.Location = new System.Drawing.Point(438, 4);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(112, 25);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(320, 4);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(112, 25);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// hint
//
this.hint.Image = global::CodeImp.DoomBuilder.Properties.Resources.Lightbulb;
this.hint.Location = new System.Drawing.Point(0, 8);
this.hint.Name = "hint";
this.hint.Size = new System.Drawing.Size(16, 16);
this.hint.TabIndex = 3;
this.hint.TabStop = false;
//
// hintlabel
//
this.hintlabel.AutoSize = true;
this.hintlabel.Location = new System.Drawing.Point(18, 3);
this.hintlabel.Name = "hintlabel";
this.hintlabel.Size = new System.Drawing.Size(195, 26);
this.hintlabel.TabIndex = 4;
this.hintlabel.Text = "Select categories or several thing types \r\nto randomly assign them to selection";
//
// panel
//
this.panel.BackColor = System.Drawing.SystemColors.Control;
this.panel.Controls.Add(this.actiongroup);
this.panel.Controls.Add(this.groupBox4);
this.panel.Controls.Add(this.idgroup);
this.panel.Controls.Add(this.typegroup);
this.panel.Controls.Add(groupBox2);
this.panel.Controls.Add(this.settingsgroup);
this.panel.Location = new System.Drawing.Point(12, 12);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(553, 606);
this.panel.TabIndex = 5;
//
// applypanel
//
this.applypanel.Controls.Add(this.cancel);
this.applypanel.Controls.Add(this.apply);
this.applypanel.Controls.Add(this.hintlabel);
this.applypanel.Controls.Add(this.hint);
this.applypanel.Location = new System.Drawing.Point(12, 624);
this.applypanel.Name = "applypanel";
this.applypanel.Size = new System.Drawing.Size(553, 32);
this.applypanel.TabIndex = 6;
//
// ThingEditForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(577, 670);
this.Controls.Add(this.applypanel);
this.Controls.Add(this.panel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ThingEditForm";
this.Opacity = 0D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Thing";
this.Shown += new System.EventHandler(this.ThingEditForm_Shown);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ThingEditForm_HelpRequested);
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.typegroup.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.settingsgroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.missingflags)).EndInit();
this.actiongroup.ResumeLayout(false);
this.actiongroup.PerformLayout();
this.idgroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.hint)).EndInit();
this.panel.ResumeLayout(false);
this.applypanel.ResumeLayout(false);
this.applypanel.PerformLayout();
this.ResumeLayout(false);
}

View file

@ -120,12 +120,12 @@
<metadata name="groupBox2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<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="label7.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>

View file

@ -29,5 +29,5 @@ using System.Resources;
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.3.0.2886")]
[assembly: AssemblyVersion("2.3.0.2887")]
[assembly: NeutralResourcesLanguageAttribute("en")]