Initial classic view mode in texture browser

This commit is contained in:
ZZYZX 2017-01-09 06:47:58 +02:00
parent b3442f4f5e
commit 819d27885b
17 changed files with 1366 additions and 491 deletions

View file

@ -29,264 +29,281 @@ namespace CodeImp.DoomBuilder.Controls
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.labelMixMode = new System.Windows.Forms.Label();
this.label = new System.Windows.Forms.Label();
this.splitter = new System.Windows.Forms.SplitContainer();
this.list = new CodeImp.DoomBuilder.Controls.ImageSelectorPanel();
this.objectclear = new System.Windows.Forms.Button();
this.sizecombo = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.usedtexturesfirst = new System.Windows.Forms.CheckBox();
this.longtexturenames = new System.Windows.Forms.CheckBox();
this.filterheightlabel = new System.Windows.Forms.Label();
this.filterHeight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.filterwidthlabel = new System.Windows.Forms.Label();
this.filterWidth = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.texturetypecombo = new System.Windows.Forms.ComboBox();
this.objectname = new System.Windows.Forms.TextBox();
this.refreshtimer = new System.Windows.Forms.Timer(this.components);
this.splitter.Panel1.SuspendLayout();
this.splitter.Panel2.SuspendLayout();
this.splitter.SuspendLayout();
this.SuspendLayout();
//
// labelMixMode
//
this.labelMixMode.AutoSize = true;
this.labelMixMode.Location = new System.Drawing.Point(3, 8);
this.labelMixMode.Name = "labelMixMode";
this.labelMixMode.Size = new System.Drawing.Size(37, 13);
this.labelMixMode.TabIndex = 0;
this.labelMixMode.Text = "Show:";
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(164, 9);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(32, 13);
this.label.TabIndex = 0;
this.label.Text = "Filter:";
//
// splitter
//
this.splitter.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitter.IsSplitterFixed = true;
this.splitter.Location = new System.Drawing.Point(0, 0);
this.splitter.Name = "splitter";
this.splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitter.Panel1
//
this.splitter.Panel1.Controls.Add(this.list);
//
// splitter.Panel2
//
this.splitter.Panel2.Controls.Add(this.objectclear);
this.splitter.Panel2.Controls.Add(this.sizecombo);
this.splitter.Panel2.Controls.Add(this.label1);
this.splitter.Panel2.Controls.Add(this.usedtexturesfirst);
this.splitter.Panel2.Controls.Add(this.longtexturenames);
this.splitter.Panel2.Controls.Add(this.filterheightlabel);
this.splitter.Panel2.Controls.Add(this.filterHeight);
this.splitter.Panel2.Controls.Add(this.filterwidthlabel);
this.splitter.Panel2.Controls.Add(this.filterWidth);
this.splitter.Panel2.Controls.Add(this.texturetypecombo);
this.splitter.Panel2.Controls.Add(this.labelMixMode);
this.splitter.Panel2.Controls.Add(this.objectname);
this.splitter.Panel2.Controls.Add(this.label);
this.splitter.Size = new System.Drawing.Size(840, 346);
this.splitter.SplitterDistance = 284;
this.splitter.TabIndex = 0;
this.splitter.TabStop = false;
//
// list
//
this.list.AutoScroll = true;
this.list.BackColor = System.Drawing.Color.White;
this.list.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.list.Dock = System.Windows.Forms.DockStyle.Fill;
this.list.HideSelection = false;
this.list.ImageSize = 128;
this.list.Location = new System.Drawing.Point(0, 0);
this.list.MultiSelect = false;
this.list.Name = "list";
this.list.Size = new System.Drawing.Size(840, 284);
this.list.TabIndex = 1;
this.list.Title = "Default group";
this.list.ItemDoubleClicked += new CodeImp.DoomBuilder.Controls.ImageSelectorPanel.ItemSelectedEventHandler(this.list_ItemDoubleClicked);
this.list.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.list_KeyPress);
//
// objectclear
//
this.objectclear.Image = global::CodeImp.DoomBuilder.Properties.Resources.Close;
this.objectclear.Location = new System.Drawing.Point(330, 4);
this.objectclear.Name = "objectclear";
this.objectclear.Size = new System.Drawing.Size(26, 23);
this.objectclear.TabIndex = 3;
this.objectclear.TabStop = false;
this.objectclear.UseVisualStyleBackColor = true;
this.objectclear.Click += new System.EventHandler(this.objectclear_Click);
//
// sizecombo
//
this.sizecombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.sizecombo.FormattingEnabled = true;
this.sizecombo.Items.AddRange(new object[] {
this.components = new System.ComponentModel.Container();
this.labelMixMode = new System.Windows.Forms.Label();
this.label = new System.Windows.Forms.Label();
this.splitter = new System.Windows.Forms.SplitContainer();
this.list = new CodeImp.DoomBuilder.Controls.ImageSelectorPanel();
this.classicview = new System.Windows.Forms.CheckBox();
this.objectclear = new System.Windows.Forms.Button();
this.sizecombo = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.usedtexturesfirst = new System.Windows.Forms.CheckBox();
this.longtexturenames = new System.Windows.Forms.CheckBox();
this.filterheightlabel = new System.Windows.Forms.Label();
this.filterHeight = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.filterwidthlabel = new System.Windows.Forms.Label();
this.filterWidth = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.texturetypecombo = new System.Windows.Forms.ComboBox();
this.objectname = new System.Windows.Forms.TextBox();
this.refreshtimer = new System.Windows.Forms.Timer(this.components);
this.splitter.Panel1.SuspendLayout();
this.splitter.Panel2.SuspendLayout();
this.splitter.SuspendLayout();
this.SuspendLayout();
//
// labelMixMode
//
this.labelMixMode.AutoSize = true;
this.labelMixMode.Location = new System.Drawing.Point(3, 8);
this.labelMixMode.Name = "labelMixMode";
this.labelMixMode.Size = new System.Drawing.Size(37, 13);
this.labelMixMode.TabIndex = 0;
this.labelMixMode.Text = "Show:";
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(164, 9);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(32, 13);
this.label.TabIndex = 0;
this.label.Text = "Filter:";
//
// splitter
//
this.splitter.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitter.IsSplitterFixed = true;
this.splitter.Location = new System.Drawing.Point(0, 0);
this.splitter.Name = "splitter";
this.splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitter.Panel1
//
this.splitter.Panel1.Controls.Add(this.list);
//
// splitter.Panel2
//
this.splitter.Panel2.Controls.Add(this.classicview);
this.splitter.Panel2.Controls.Add(this.objectclear);
this.splitter.Panel2.Controls.Add(this.sizecombo);
this.splitter.Panel2.Controls.Add(this.label1);
this.splitter.Panel2.Controls.Add(this.usedtexturesfirst);
this.splitter.Panel2.Controls.Add(this.longtexturenames);
this.splitter.Panel2.Controls.Add(this.filterheightlabel);
this.splitter.Panel2.Controls.Add(this.filterHeight);
this.splitter.Panel2.Controls.Add(this.filterwidthlabel);
this.splitter.Panel2.Controls.Add(this.filterWidth);
this.splitter.Panel2.Controls.Add(this.texturetypecombo);
this.splitter.Panel2.Controls.Add(this.labelMixMode);
this.splitter.Panel2.Controls.Add(this.objectname);
this.splitter.Panel2.Controls.Add(this.label);
this.splitter.Size = new System.Drawing.Size(840, 346);
this.splitter.SplitterDistance = 284;
this.splitter.TabIndex = 0;
this.splitter.TabStop = false;
//
// list
//
this.list.AutoScroll = true;
this.list.BackColor = System.Drawing.Color.White;
this.list.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.list.ClassicView = false;
this.list.ContentType = "Textures";
this.list.Dock = System.Windows.Forms.DockStyle.Fill;
this.list.HideSelection = false;
this.list.ImageSize = 128;
this.list.Location = new System.Drawing.Point(0, 0);
this.list.MultiSelect = false;
this.list.Name = "list";
this.list.Size = new System.Drawing.Size(840, 284);
this.list.TabIndex = 1;
this.list.Title = "Default group";
this.list.ItemDoubleClicked += new CodeImp.DoomBuilder.Controls.ImageSelectorPanel.ItemSelectedEventHandler(this.list_ItemDoubleClicked);
this.list.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.list_KeyPress);
//
// classicview
//
this.classicview.AutoSize = true;
this.classicview.Location = new System.Drawing.Point(510, 8);
this.classicview.Name = "classicview";
this.classicview.Size = new System.Drawing.Size(84, 17);
this.classicview.TabIndex = 4;
this.classicview.TabStop = false;
this.classicview.Text = "Classic view";
this.classicview.UseVisualStyleBackColor = true;
this.classicview.CheckedChanged += new System.EventHandler(this.classicview_CheckedChanged);
//
// objectclear
//
this.objectclear.Image = global::CodeImp.DoomBuilder.Properties.Resources.Close;
this.objectclear.Location = new System.Drawing.Point(330, 4);
this.objectclear.Name = "objectclear";
this.objectclear.Size = new System.Drawing.Size(26, 23);
this.objectclear.TabIndex = 3;
this.objectclear.TabStop = false;
this.objectclear.UseVisualStyleBackColor = true;
this.objectclear.Click += new System.EventHandler(this.objectclear_Click);
//
// sizecombo
//
this.sizecombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.sizecombo.FormattingEnabled = true;
this.sizecombo.Items.AddRange(new object[] {
"1:1",
"64",
"80",
"96",
"128",
"192",
"256"});
this.sizecombo.Location = new System.Drawing.Point(43, 32);
this.sizecombo.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.sizecombo.Name = "sizecombo";
this.sizecombo.Size = new System.Drawing.Size(107, 21);
this.sizecombo.TabIndex = 2;
this.sizecombo.TabStop = false;
this.sizecombo.SelectedIndexChanged += new System.EventHandler(this.sizecombo_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(10, 35);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(30, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Size:";
//
// usedtexturesfirst
//
this.usedtexturesfirst.AutoSize = true;
this.usedtexturesfirst.Location = new System.Drawing.Point(365, 8);
this.usedtexturesfirst.Name = "usedtexturesfirst";
this.usedtexturesfirst.Size = new System.Drawing.Size(139, 17);
this.usedtexturesfirst.TabIndex = 0;
this.usedtexturesfirst.TabStop = false;
this.usedtexturesfirst.Text = "Used textures at the top";
this.usedtexturesfirst.UseVisualStyleBackColor = true;
this.usedtexturesfirst.CheckedChanged += new System.EventHandler(this.usedtexturesfirst_CheckedChanged);
//
// longtexturenames
//
this.longtexturenames.AutoSize = true;
this.longtexturenames.Location = new System.Drawing.Point(365, 34);
this.longtexturenames.Name = "longtexturenames";
this.longtexturenames.Size = new System.Drawing.Size(119, 17);
this.longtexturenames.TabIndex = 0;
this.longtexturenames.TabStop = false;
this.longtexturenames.Text = "Long texture names";
this.longtexturenames.UseVisualStyleBackColor = true;
this.longtexturenames.CheckedChanged += new System.EventHandler(this.longtexturenames_CheckedChanged);
//
// filterheightlabel
//
this.filterheightlabel.AutoSize = true;
this.filterheightlabel.Location = new System.Drawing.Point(258, 35);
this.filterheightlabel.Name = "filterheightlabel";
this.filterheightlabel.Size = new System.Drawing.Size(41, 13);
this.filterheightlabel.TabIndex = 0;
this.filterheightlabel.Text = "Height:";
//
// filterHeight
//
this.filterHeight.AllowDecimal = false;
this.filterHeight.AllowExpressions = false;
this.filterHeight.AllowNegative = false;
this.filterHeight.AllowRelative = false;
this.filterHeight.ButtonStep = 1;
this.filterHeight.ButtonStepBig = 10F;
this.filterHeight.ButtonStepFloat = 1F;
this.filterHeight.ButtonStepSmall = 0.1F;
this.filterHeight.ButtonStepsUseModifierKeys = false;
this.filterHeight.ButtonStepsWrapAround = false;
this.filterHeight.Location = new System.Drawing.Point(301, 30);
this.filterHeight.Name = "filterHeight";
this.filterHeight.Size = new System.Drawing.Size(54, 24);
this.filterHeight.StepValues = null;
this.filterHeight.TabIndex = 0;
this.filterHeight.TabStop = false;
this.filterHeight.WhenTextChanged += new System.EventHandler(this.filterSize_WhenTextChanged);
//
// filterwidthlabel
//
this.filterwidthlabel.AutoSize = true;
this.filterwidthlabel.Location = new System.Drawing.Point(159, 35);
this.filterwidthlabel.Name = "filterwidthlabel";
this.filterwidthlabel.Size = new System.Drawing.Size(38, 13);
this.filterwidthlabel.TabIndex = 0;
this.filterwidthlabel.Text = "Width:";
//
// filterWidth
//
this.filterWidth.AllowDecimal = false;
this.filterWidth.AllowExpressions = false;
this.filterWidth.AllowNegative = false;
this.filterWidth.AllowRelative = false;
this.filterWidth.ButtonStep = 1;
this.filterWidth.ButtonStepBig = 10F;
this.filterWidth.ButtonStepFloat = 1F;
this.filterWidth.ButtonStepSmall = 0.1F;
this.filterWidth.ButtonStepsUseModifierKeys = false;
this.filterWidth.ButtonStepsWrapAround = false;
this.filterWidth.Location = new System.Drawing.Point(199, 30);
this.filterWidth.Name = "filterWidth";
this.filterWidth.Size = new System.Drawing.Size(54, 24);
this.filterWidth.StepValues = null;
this.filterWidth.TabIndex = 0;
this.filterWidth.TabStop = false;
this.filterWidth.WhenTextChanged += new System.EventHandler(this.filterSize_WhenTextChanged);
//
// texturetypecombo
//
this.texturetypecombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.texturetypecombo.FormattingEnabled = true;
this.texturetypecombo.Items.AddRange(new object[] {
this.sizecombo.Location = new System.Drawing.Point(43, 32);
this.sizecombo.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.sizecombo.Name = "sizecombo";
this.sizecombo.Size = new System.Drawing.Size(107, 21);
this.sizecombo.TabIndex = 2;
this.sizecombo.TabStop = false;
this.sizecombo.SelectedIndexChanged += new System.EventHandler(this.sizecombo_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(10, 35);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(30, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Size:";
//
// usedtexturesfirst
//
this.usedtexturesfirst.AutoSize = true;
this.usedtexturesfirst.Location = new System.Drawing.Point(365, 8);
this.usedtexturesfirst.Name = "usedtexturesfirst";
this.usedtexturesfirst.Size = new System.Drawing.Size(139, 17);
this.usedtexturesfirst.TabIndex = 0;
this.usedtexturesfirst.TabStop = false;
this.usedtexturesfirst.Text = "Used textures at the top";
this.usedtexturesfirst.UseVisualStyleBackColor = true;
this.usedtexturesfirst.CheckedChanged += new System.EventHandler(this.usedtexturesfirst_CheckedChanged);
//
// longtexturenames
//
this.longtexturenames.AutoSize = true;
this.longtexturenames.Location = new System.Drawing.Point(365, 34);
this.longtexturenames.Name = "longtexturenames";
this.longtexturenames.Size = new System.Drawing.Size(119, 17);
this.longtexturenames.TabIndex = 0;
this.longtexturenames.TabStop = false;
this.longtexturenames.Text = "Long texture names";
this.longtexturenames.UseVisualStyleBackColor = true;
this.longtexturenames.CheckedChanged += new System.EventHandler(this.longtexturenames_CheckedChanged);
//
// filterheightlabel
//
this.filterheightlabel.AutoSize = true;
this.filterheightlabel.Location = new System.Drawing.Point(258, 35);
this.filterheightlabel.Name = "filterheightlabel";
this.filterheightlabel.Size = new System.Drawing.Size(41, 13);
this.filterheightlabel.TabIndex = 0;
this.filterheightlabel.Text = "Height:";
//
// filterHeight
//
this.filterHeight.AllowDecimal = false;
this.filterHeight.AllowExpressions = false;
this.filterHeight.AllowNegative = false;
this.filterHeight.AllowRelative = false;
this.filterHeight.ButtonStep = 1;
this.filterHeight.ButtonStepBig = 10F;
this.filterHeight.ButtonStepFloat = 1F;
this.filterHeight.ButtonStepSmall = 0.1F;
this.filterHeight.ButtonStepsUseModifierKeys = false;
this.filterHeight.ButtonStepsWrapAround = false;
this.filterHeight.Location = new System.Drawing.Point(301, 30);
this.filterHeight.Name = "filterHeight";
this.filterHeight.Size = new System.Drawing.Size(54, 24);
this.filterHeight.StepValues = null;
this.filterHeight.TabIndex = 0;
this.filterHeight.TabStop = false;
this.filterHeight.WhenTextChanged += new System.EventHandler(this.filterSize_WhenTextChanged);
//
// filterwidthlabel
//
this.filterwidthlabel.AutoSize = true;
this.filterwidthlabel.Location = new System.Drawing.Point(159, 35);
this.filterwidthlabel.Name = "filterwidthlabel";
this.filterwidthlabel.Size = new System.Drawing.Size(38, 13);
this.filterwidthlabel.TabIndex = 0;
this.filterwidthlabel.Text = "Width:";
//
// filterWidth
//
this.filterWidth.AllowDecimal = false;
this.filterWidth.AllowExpressions = false;
this.filterWidth.AllowNegative = false;
this.filterWidth.AllowRelative = false;
this.filterWidth.ButtonStep = 1;
this.filterWidth.ButtonStepBig = 10F;
this.filterWidth.ButtonStepFloat = 1F;
this.filterWidth.ButtonStepSmall = 0.1F;
this.filterWidth.ButtonStepsUseModifierKeys = false;
this.filterWidth.ButtonStepsWrapAround = false;
this.filterWidth.Location = new System.Drawing.Point(199, 30);
this.filterWidth.Name = "filterWidth";
this.filterWidth.Size = new System.Drawing.Size(54, 24);
this.filterWidth.StepValues = null;
this.filterWidth.TabIndex = 0;
this.filterWidth.TabStop = false;
this.filterWidth.WhenTextChanged += new System.EventHandler(this.filterSize_WhenTextChanged);
//
// texturetypecombo
//
this.texturetypecombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.texturetypecombo.FormattingEnabled = true;
this.texturetypecombo.Items.AddRange(new object[] {
"All",
"Textures",
"Flats",
"By selection type"});
this.texturetypecombo.Location = new System.Drawing.Point(43, 5);
this.texturetypecombo.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.texturetypecombo.Name = "texturetypecombo";
this.texturetypecombo.Size = new System.Drawing.Size(107, 21);
this.texturetypecombo.TabIndex = 0;
this.texturetypecombo.TabStop = false;
this.texturetypecombo.SelectedIndexChanged += new System.EventHandler(this.texturetypecombo_SelectedIndexChanged);
//
// objectname
//
this.objectname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.objectname.HideSelection = false;
this.objectname.Location = new System.Drawing.Point(199, 6);
this.objectname.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.objectname.Name = "objectname";
this.objectname.Size = new System.Drawing.Size(128, 20);
this.objectname.TabIndex = 0;
this.objectname.TabStop = false;
this.objectname.TextChanged += new System.EventHandler(this.objectname_TextChanged);
this.objectname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.objectname_KeyDown);
//
// refreshtimer
//
this.refreshtimer.Interval = 500;
this.refreshtimer.Tick += new System.EventHandler(this.refreshtimer_Tick);
//
// ImageBrowserControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.splitter);
this.Name = "ImageBrowserControl";
this.Size = new System.Drawing.Size(840, 346);
this.splitter.Panel1.ResumeLayout(false);
this.splitter.Panel2.ResumeLayout(false);
this.splitter.Panel2.PerformLayout();
this.splitter.ResumeLayout(false);
this.ResumeLayout(false);
this.texturetypecombo.Location = new System.Drawing.Point(43, 5);
this.texturetypecombo.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.texturetypecombo.Name = "texturetypecombo";
this.texturetypecombo.Size = new System.Drawing.Size(107, 21);
this.texturetypecombo.TabIndex = 0;
this.texturetypecombo.TabStop = false;
this.texturetypecombo.SelectedIndexChanged += new System.EventHandler(this.texturetypecombo_SelectedIndexChanged);
//
// objectname
//
this.objectname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.objectname.HideSelection = false;
this.objectname.Location = new System.Drawing.Point(199, 6);
this.objectname.Margin = new System.Windows.Forms.Padding(3, 3, 6, 3);
this.objectname.Name = "objectname";
this.objectname.Size = new System.Drawing.Size(128, 20);
this.objectname.TabIndex = 0;
this.objectname.TabStop = false;
this.objectname.TextChanged += new System.EventHandler(this.objectname_TextChanged);
this.objectname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.objectname_KeyDown);
//
// refreshtimer
//
this.refreshtimer.Interval = 500;
this.refreshtimer.Tick += new System.EventHandler(this.refreshtimer_Tick);
//
// ImageBrowserControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.splitter);
this.Name = "ImageBrowserControl";
this.Size = new System.Drawing.Size(840, 346);
this.splitter.Panel1.ResumeLayout(false);
this.splitter.Panel2.ResumeLayout(false);
this.splitter.Panel2.PerformLayout();
this.splitter.ResumeLayout(false);
this.ResumeLayout(false);
}
@ -308,6 +325,6 @@ namespace CodeImp.DoomBuilder.Controls
private System.Windows.Forms.ComboBox sizecombo;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button objectclear;
}
private System.Windows.Forms.CheckBox classicview;
}
}

View file

@ -81,7 +81,8 @@ namespace CodeImp.DoomBuilder.Controls
{
usedfirstgroup = "Available " + value + " (used first):";
availgroup = "Available " + value + ":";
}
list.ContentType = value;
}
}
#endregion
@ -119,6 +120,7 @@ namespace CodeImp.DoomBuilder.Controls
uselongtexturenames = General.Map.Options.UseLongTextureNames;
texturetype = General.Settings.ReadSetting(settingpath + ".texturetype", 0);
usedtexturesfirst.Checked = General.Settings.ReadSetting(settingpath + ".showusedtexturesfirst", false);
list.ClassicView = classicview.Checked = General.Settings.ReadSetting(settingpath + ".classicview", false);
int imagesize = General.Settings.ReadSetting(settingpath + ".imagesize", 128);
sizecombo.Text = (imagesize == 0 ? sizecombo.Items[0].ToString() : imagesize.ToString());
@ -172,6 +174,7 @@ namespace CodeImp.DoomBuilder.Controls
public virtual void OnClose(string settingpath)
{
General.Settings.WriteSetting(settingpath + ".showusedtexturesfirst", usedtexturesfirst.Checked);
General.Settings.WriteSetting(settingpath + ".classicview", classicview.Checked);
General.Settings.WriteSetting(settingpath + ".imagesize", list.ImageSize);
if(General.Map.Config.UseLongTextureNames) General.Map.Options.UseLongTextureNames = uselongtexturenames;
@ -365,13 +368,23 @@ namespace CodeImp.DoomBuilder.Controls
list.Focus();
}
}
#endregion
#region ================== Methods
//
private void classicview_CheckedChanged(object sender, EventArgs e)
{
if(!blockupdate)
{
list.ClassicView = classicview.Checked;
list.Focus();
}
}
// This selects an item by longname (mxd - changed from name to longname)
public void SelectItem(long longname)
#endregion
#region ================== Methods
// This selects an item by longname (mxd - changed from name to longname)
public void SelectItem(long longname)
{
// Not when selecting is prevented
if(preventselection) return;
@ -615,7 +628,7 @@ namespace CodeImp.DoomBuilder.Controls
{
list.Focus();
}
#endregion
}
#endregion
}
}

View file

@ -3,6 +3,7 @@
using System;
using System.Drawing;
using CodeImp.DoomBuilder.Data;
using System.Drawing.Drawing2D;
#endregion
@ -78,7 +79,7 @@ namespace CodeImp.DoomBuilder.Controls
return false;
}
internal void Draw(Graphics g, Image bmp, int x, int y, int w, int h, bool selected, bool used)
internal void Draw(Graphics g, Image bmp, int x, int y, int w, int h, bool selected, bool used, bool classicview)
{
if(bmp == null) return;
@ -108,8 +109,19 @@ namespace CodeImp.DoomBuilder.Controls
bgcolor = Color.Black;
bgbrush = Brushes.Black;
fgbrush = (used ? Brushes.Orange : Brushes.White);
selectedbgbrush = Brushes.Gray;
frame = (used ? Pens.Orange : Pens.Gray);
if (!classicview)
{
selectedbgbrush = Brushes.Gray;
}
else
{
Color topselected = Color.FromArgb(255, 37, 67, 151);
Color bottomselected = Color.FromArgb(255, 1, 20, 83);
selectedbgbrush = new LinearGradientBrush(new Point(x - 2, y - 3), new Point(x - 2, y + h + 4 + SystemFonts.MessageBoxFont.Height), topselected, bottomselected);
}
frame = (used ? Pens.Orange : Pens.Gray);
selection = Pens.Red;
selectionbrush = Brushes.Red;
selectiontextbrush = Brushes.White;
@ -119,7 +131,18 @@ namespace CodeImp.DoomBuilder.Controls
bgcolor = SystemColors.Window;
bgbrush = SystemBrushes.Window;
fgbrush = (used ? SystemBrushes.HotTrack : SystemBrushes.ControlText);
selectedbgbrush = SystemBrushes.Highlight;
if (!classicview)
{
selectedbgbrush = SystemBrushes.Highlight;
}
else
{
Color topselected = Color.FromArgb(255, 151, 67, 37);
Color bottomselected = Color.FromArgb(255, 83, 20, 1);
selectedbgbrush = new LinearGradientBrush(new Point(x - 2, y - 3), new Point(x - 2, y + h + 4 + SystemFonts.MessageBoxFont.Height), topselected, bottomselected);
}
frame = (used ? SystemPens.HotTrack : SystemPens.ActiveBorder);
selection = SystemPens.HotTrack;
selectionbrush = SystemBrushes.HotTrack;
@ -129,14 +152,24 @@ namespace CodeImp.DoomBuilder.Controls
// Item bg
g.FillRectangle(bgbrush, x - 2, y - 2, w + 3, h + 8 + SystemFonts.MessageBoxFont.Height);
// Selected image bg
if(selected) g.FillRectangle(selectedbgbrush, x - 2, y - 2, w + 4, h + 2 + SystemFonts.MessageBoxFont.Height);
// Selected image bg
if (selected)
{
if (!classicview)
{
g.FillRectangle(selectedbgbrush, x - 2, y - 2, w + 4, h + 2 + SystemFonts.MessageBoxFont.Height);
}
else
{
g.FillRectangle(selectedbgbrush, x - 13, y - 2, w + 26, h + 4 + SystemFonts.MessageBoxFont.Height);
}
}
// Image
g.DrawImage(bmp, ix, iy, iw, ih);
// Frame
if(selected)
if(selected && !classicview)
{
g.DrawRectangle(selection, x - 1, y - 1, w + 1, h + 1);
g.DrawRectangle(selection, x - 2, y - 2, w + 3, h + 3);
@ -144,13 +177,14 @@ namespace CodeImp.DoomBuilder.Controls
// Image name bg
g.FillRectangle(selectionbrush, x - 2, y + h + 2, w + 4, SystemFonts.MessageBoxFont.Height);
}
else
else if (!classicview)
{
g.DrawRectangle(frame, x - 1, y - 1, w + 1, h + 1);
}
// Image name
g.DrawString(TextureName, SystemFonts.MessageBoxFont, (selected ? selectiontextbrush : fgbrush), x - 2, y + h + 1);
// Image name
float textureNameX = classicview ? (x + w / 2 - g.MeasureString(TextureName, SystemFonts.MessageBoxFont).Width / 2) : (x - 2);
g.DrawString(TextureName, SystemFonts.MessageBoxFont, (selected ? selectiontextbrush : fgbrush), textureNameX, y + h + 1);
// Image size
if(General.Settings.ShowTextureSizes && icon.IsPreviewLoaded && itemtype == ImageBrowserItemType.IMAGE)
@ -173,7 +207,6 @@ namespace CodeImp.DoomBuilder.Controls
}
}
// Draw text
g.DrawString(imagesize, SystemFonts.MessageBoxFont, (selected ? selectiontextbrush : fgbrush), x, y - 1);
}
}

View file

@ -27,6 +27,8 @@ namespace CodeImp.DoomBuilder.Controls
private List<Rectangle> rectangles;
private ImageBrowserItem lastselecteditem;
private int imagesize = 128;
private bool classicview = false;
private string contenttype = "Textures";
private string title;
private int titleheight = SystemFonts.MessageBoxFont.Height + 6;
@ -112,9 +114,21 @@ namespace CodeImp.DoomBuilder.Controls
}
}
public bool ClassicView
{
get { return classicview; }
set
{
classicview = value;
UpdateRectangles();
if (selection.Count > 0) ScrollToItem(selection[0]);
}
}
public List<ImageBrowserItem> Items { get { return items; } }
public List<ImageBrowserItem> SelectedItems { get { return selection; } }
public string Title { get { return title; } set { title = value; } }
public string ContentType { get { return contenttype; } set { contenttype = value; } } // why do encapsulation when it's not needed?
#endregion
@ -383,16 +397,17 @@ namespace CodeImp.DoomBuilder.Controls
public int GetIndexAt(int x, int y)
{
const int pad = 3;
int padhorz = classicview?13:2;
int padvert = 2;
int font = 4 + SystemFonts.MessageBoxFont.Height;
for(var i = 0; i < rectangles.Count; i++)
{
var rec = rectangles[i];
if(rec.Left - pad <= x
&& rec.Right + pad >= x
&& rec.Top - pad <= y
&& rec.Bottom + pad + font >= y)
if(rec.Left - padhorz <= x
&& rec.Right + padhorz >= x
&& rec.Top - padvert <= y
&& rec.Bottom + padvert + font >= y)
{
return i;
}
@ -467,20 +482,35 @@ namespace CodeImp.DoomBuilder.Controls
internal void UpdateRectangles()
{
int w = ClientRectangle.Width - scrollbar.Width;
const int pad = 2;
int padhorz = classicview?13:2;
int padvert = 2;
int font = 4 + SystemFonts.MessageBoxFont.Height;
int cx = 0;
int cy = titleheight;
int my = 0;
rectangles.Clear();
foreach(var ti in items)
//
ImageBrowserItemType currentType = ImageBrowserItemType.IMAGE; // initialized to random value
bool currentUsedInMap = false;
var firstItem = (items.Count > 0) ? items[0] : null;
foreach (var ti in items)
{
Image preview = GetPreview(ti, imagesize);
if (classicview && (ti == firstItem || (currentType == ImageBrowserItemType.IMAGE && ti.ItemType != ImageBrowserItemType.IMAGE) || currentUsedInMap != ti.Icon.UsedInMap))
{
// new row, also provide space for category name.
cx = 0;
cy += titleheight + my + ((ti != firstItem) ? 16 : 0);
my = 0;
currentType = ti.ItemType;
currentUsedInMap = ti.Icon.UsedInMap;
}
int rw = w - cx;
int wid = Math.Max((imagesize > 0 ? imagesize : preview.Width), ti.TextureNameWidth) + pad + pad;
int hei = (imagesize > 0 ? imagesize : preview.Height) + pad + pad + font;
int wid = Math.Max((imagesize > 0 ? imagesize : preview.Width), ti.TextureNameWidth) + padhorz + padhorz;
int hei = (imagesize > 0 ? imagesize : preview.Height) + padvert + padvert + font;
if(rw < wid)
{
@ -491,7 +521,7 @@ namespace CodeImp.DoomBuilder.Controls
}
my = Math.Max(my, hei);
var rect = new Rectangle(cx + pad, cy + pad, wid - pad - pad, hei - pad - pad - font);
var rect = new Rectangle(cx + padhorz, cy + padvert, wid - padhorz - padhorz, hei - padvert - padvert - font);
rectangles.Add(rect);
cx += wid;
}
@ -499,7 +529,7 @@ namespace CodeImp.DoomBuilder.Controls
if(rectangles.Count > 0)
{
scrollbar.Maximum = cy + my;
scrollbar.SmallChange = (imagesize > 0 ? imagesize : 128) + pad + pad + font;
scrollbar.SmallChange = (imagesize > 0 ? imagesize : 128) + padvert + padvert + font;
scrollbar.LargeChange = ClientRectangle.Height;
scrollbar.Visible = (scrollbar.Maximum > ClientRectangle.Height);
@ -526,40 +556,75 @@ namespace CodeImp.DoomBuilder.Controls
DrawTextures(e.Graphics);
}
private void DrawTextureHeader(Graphics g, string text, Rectangle rec, bool background)
{
bool blackbrowsers = (General.Settings != null && General.Settings.BlackBrowsers);
if (background)
{
// Draw group name bg
Color bgcolor = (blackbrowsers ? Color.Gray : SystemColors.Control);
using (Brush bg = new SolidBrush(Color.FromArgb(192, bgcolor)))
{
g.FillRectangle(bg, rec.X, rec.Y, rec.Width, rec.Height);
}
}
else
{
// Draw underline
Color underlinecolor = blackbrowsers ? Color.FromArgb(0x7FFFFFFF) : Color.FromArgb((SystemColors.ControlText.ToArgb()&0xFFFFFF)|0x7F000000);
g.DrawLine(new Pen(underlinecolor), rec.Left, rec.Bottom, rec.Right - 2, rec.Bottom);
}
// Draw group name
Brush fgbrush = (blackbrowsers ? Brushes.White : SystemBrushes.ControlText);
Font bf = new Font(SystemFonts.MessageBoxFont, FontStyle.Bold);
g.DrawString(text, bf, fgbrush, rec.X, rec.Y);
}
private void DrawTextures(Graphics g)
{
// Draw items
if(items.Count > 0)
// Draw items
int scrollwidth = (scrollbar.Visible ? scrollbar.Width : 0);
if (items.Count > 0)
{
int y = scrollbar.Value;
int height = ClientRectangle.Height - titleheight;
for(var i = 0; i < items.Count; i++)
ImageBrowserItemType currentType = ImageBrowserItemType.IMAGE; // initialized to random value
bool currentUsedInMap = false;
for (var i = 0; i < items.Count; i++)
{
if (classicview && (i == 0 || (currentType == ImageBrowserItemType.IMAGE && items[i].ItemType != ImageBrowserItemType.IMAGE) || currentUsedInMap != items[i].Icon.UsedInMap))
{
// draw corresponding title right above this item.
string hdrname;
if (items[i].ItemType == ImageBrowserItemType.IMAGE)
{
if (items[i].Icon.UsedInMap) hdrname = "Used " + contenttype + ":";
else hdrname = "All " + contenttype + ":";
}
else hdrname = "Directories:";
DrawTextureHeader(g, hdrname, new Rectangle(2, rectangles[i].Y - titleheight - y, ClientRectangle.Width - scrollwidth - 4, SystemFonts.MessageBoxFont.Height), false);
currentType = items[i].ItemType;
currentUsedInMap = items[i].Icon.UsedInMap;
}
Rectangle rec = rectangles[i];
if(rec.Bottom < y) continue;
if(rec.Top > y + height) break;
Image bmp = GetPreview(items[i], imagesize);
items[i].Draw(g, bmp, rec.X, rec.Y - y, rec.Width, rec.Height, selection.Contains(items[i]), items[i].Icon.UsedInMap);
items[i].Draw(g, bmp, rec.X, rec.Y - y, rec.Width, rec.Height, selection.Contains(items[i]), items[i].Icon.UsedInMap, classicview);
}
}
// Draw title on top of items
if(!string.IsNullOrEmpty(title))
{
// Draw group name bg
bool blackbrowsers = (General.Settings != null && General.Settings.BlackBrowsers);
Color bgcolor = (blackbrowsers ? Color.Gray : SystemColors.Control);
using(Brush bg = new SolidBrush(Color.FromArgb(192, bgcolor)))
{
int scrollwidth = (scrollbar.Visible ? scrollbar.Width : 0);
g.FillRectangle(bg, 2, 2, ClientRectangle.Width - scrollwidth - 4, SystemFonts.MessageBoxFont.Height);
}
// Draw group name
Brush fgbrush = (blackbrowsers ? Brushes.White : SystemBrushes.ControlText);
g.DrawString(title, SystemFonts.MessageBoxFont, fgbrush, 2, 2);
DrawTextureHeader(g, title, new Rectangle(2, 2, ClientRectangle.Width - scrollwidth - 4, SystemFonts.MessageBoxFont.Height), true);
}
}

File diff suppressed because it is too large Load diff

View file

@ -28,154 +28,154 @@ namespace CodeImp.DoomBuilder.Windows
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextureBrowserForm));
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.smallimages = new System.Windows.Forms.ImageList(this.components);
this.tvTextureSets = new CodeImp.DoomBuilder.Controls.MultiSelectTreeview();
this.browser = new CodeImp.DoomBuilder.Controls.ImageBrowserControl();
this.panel = new System.Windows.Forms.Panel();
this.splitter = new CodeImp.DoomBuilder.Controls.CollapsibleSplitContainer();
this.panel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitter)).BeginInit();
this.splitter.Panel1.SuspendLayout();
this.splitter.Panel2.SuspendLayout();
this.splitter.SuspendLayout();
this.SuspendLayout();
//
// 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(682, 413);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(98, 25);
this.cancel.TabIndex = 3;
this.cancel.TabStop = false;
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.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.apply.Location = new System.Drawing.Point(682, 381);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(98, 30);
this.apply.TabIndex = 2;
this.apply.TabStop = false;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// smallimages
//
this.smallimages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("smallimages.ImageStream")));
this.smallimages.TransparentColor = System.Drawing.Color.Transparent;
this.smallimages.Images.SetKeyName(0, "KnownTextureSet2.ico");
this.smallimages.Images.SetKeyName(1, "AllTextureSet2.ico");
this.smallimages.Images.SetKeyName(2, "FileTextureSet.ico");
this.smallimages.Images.SetKeyName(3, "FolderTextureSet.ico");
this.smallimages.Images.SetKeyName(4, "PK3TextureSet.ico");
this.smallimages.Images.SetKeyName(5, "WadTextureSet.png");
this.smallimages.Images.SetKeyName(6, "FolderImage.png");
this.smallimages.Images.SetKeyName(7, "ArchiveImage.png");
this.smallimages.Images.SetKeyName(8, "TextLump.png");
//
// tvTextureSets
//
this.tvTextureSets.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.tvTextureSets.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tvTextureSets.HideSelection = false;
this.tvTextureSets.ImageIndex = 0;
this.tvTextureSets.ImageList = this.smallimages;
this.tvTextureSets.Location = new System.Drawing.Point(0, 3);
this.tvTextureSets.Name = "tvTextureSets";
this.tvTextureSets.SelectedImageIndex = 0;
this.tvTextureSets.SelectionBackColor = System.Drawing.SystemColors.Highlight;
this.tvTextureSets.SelectionMode = CodeImp.DoomBuilder.Controls.TreeViewSelectionMode.SingleSelect;
this.tvTextureSets.Size = new System.Drawing.Size(198, 374);
this.tvTextureSets.TabIndex = 4;
this.tvTextureSets.TabStop = false;
this.tvTextureSets.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tvTextureSets_KeyUp);
this.tvTextureSets.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvTextureSets_NodeMouseClick);
//
// browser
//
this.browser.Dock = System.Windows.Forms.DockStyle.Fill;
this.browser.HideInputBox = false;
this.browser.Location = new System.Drawing.Point(0, 0);
this.browser.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.browser.Name = "browser";
this.browser.Padding = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.browser.PreventSelection = false;
this.browser.Size = new System.Drawing.Size(573, 442);
this.browser.TabIndex = 1;
this.browser.TabStop = false;
this.browser.SelectedItemDoubleClicked += new CodeImp.DoomBuilder.Controls.ImageBrowserControl.SelectedItemDoubleClickDelegate(this.browser_SelectedItemDoubleClicked);
this.browser.SelectedItemChanged += new CodeImp.DoomBuilder.Controls.ImageBrowserControl.SelectedItemChangedDelegate(this.browser_SelectedItemChanged);
//
// panel
//
this.panel.Controls.Add(this.tvTextureSets);
this.panel.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel.Location = new System.Drawing.Point(0, 0);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(203, 442);
this.panel.TabIndex = 6;
//
// splitter
//
this.splitter.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitter.Location = new System.Drawing.Point(0, 0);
this.splitter.Name = "splitter";
//
// splitter.Panel1
//
this.splitter.Panel1.Controls.Add(this.browser);
//
// splitter.Panel2
//
this.splitter.Panel2.Controls.Add(this.panel);
this.splitter.Panel2MinSize = 100;
this.splitter.Size = new System.Drawing.Size(784, 442);
this.splitter.SplitterDistance = 573;
this.splitter.SplitterWidth = 8;
this.splitter.TabIndex = 0;
this.splitter.TabStop = false;
//
// TextureBrowserForm
//
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(784, 442);
this.Controls.Add(this.apply);
this.Controls.Add(this.cancel);
this.Controls.Add(this.splitter);
this.MinimizeBox = false;
this.Name = "TextureBrowserForm";
this.Opacity = 0;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Browse Textures";
this.Shown += new System.EventHandler(this.TextureBrowserForm_Shown);
this.Activated += new System.EventHandler(this.TextureBrowserForm_Activated);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextureBrowserForm_FormClosing);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.TextureBrowserForm_HelpRequested);
this.panel.ResumeLayout(false);
this.splitter.Panel1.ResumeLayout(false);
this.splitter.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitter)).EndInit();
this.splitter.ResumeLayout(false);
this.ResumeLayout(false);
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextureBrowserForm));
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.smallimages = new System.Windows.Forms.ImageList(this.components);
this.tvTextureSets = new CodeImp.DoomBuilder.Controls.MultiSelectTreeview();
this.browser = new CodeImp.DoomBuilder.Controls.ImageBrowserControl();
this.panel = new System.Windows.Forms.Panel();
this.splitter = new CodeImp.DoomBuilder.Controls.CollapsibleSplitContainer();
this.panel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitter)).BeginInit();
this.splitter.Panel1.SuspendLayout();
this.splitter.Panel2.SuspendLayout();
this.splitter.SuspendLayout();
this.SuspendLayout();
//
// 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(682, 413);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(98, 25);
this.cancel.TabIndex = 3;
this.cancel.TabStop = false;
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.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.apply.Location = new System.Drawing.Point(682, 381);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(98, 30);
this.apply.TabIndex = 2;
this.apply.TabStop = false;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// smallimages
//
this.smallimages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("smallimages.ImageStream")));
this.smallimages.TransparentColor = System.Drawing.Color.Transparent;
this.smallimages.Images.SetKeyName(0, "KnownTextureSet2.ico");
this.smallimages.Images.SetKeyName(1, "AllTextureSet2.ico");
this.smallimages.Images.SetKeyName(2, "FileTextureSet.ico");
this.smallimages.Images.SetKeyName(3, "FolderTextureSet.ico");
this.smallimages.Images.SetKeyName(4, "PK3TextureSet.ico");
this.smallimages.Images.SetKeyName(5, "WadTextureSet.png");
this.smallimages.Images.SetKeyName(6, "FolderImage.png");
this.smallimages.Images.SetKeyName(7, "ArchiveImage.png");
this.smallimages.Images.SetKeyName(8, "TextLump.png");
//
// tvTextureSets
//
this.tvTextureSets.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.tvTextureSets.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.tvTextureSets.HideSelection = false;
this.tvTextureSets.ImageIndex = 0;
this.tvTextureSets.ImageList = this.smallimages;
this.tvTextureSets.Location = new System.Drawing.Point(0, 3);
this.tvTextureSets.Name = "tvTextureSets";
this.tvTextureSets.SelectedImageIndex = 0;
this.tvTextureSets.SelectionBackColor = System.Drawing.SystemColors.Highlight;
this.tvTextureSets.SelectionMode = CodeImp.DoomBuilder.Controls.TreeViewSelectionMode.SingleSelect;
this.tvTextureSets.Size = new System.Drawing.Size(198, 374);
this.tvTextureSets.TabIndex = 4;
this.tvTextureSets.TabStop = false;
this.tvTextureSets.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvTextureSets_NodeMouseClick);
this.tvTextureSets.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tvTextureSets_KeyUp);
//
// browser
//
this.browser.Dock = System.Windows.Forms.DockStyle.Fill;
this.browser.HideInputBox = false;
this.browser.Location = new System.Drawing.Point(0, 0);
this.browser.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.browser.Name = "browser";
this.browser.Padding = new System.Windows.Forms.Padding(3, 3, 0, 3);
this.browser.PreventSelection = false;
this.browser.Size = new System.Drawing.Size(573, 442);
this.browser.TabIndex = 1;
this.browser.TabStop = false;
this.browser.SelectedItemChanged += new CodeImp.DoomBuilder.Controls.ImageBrowserControl.SelectedItemChangedDelegate(this.browser_SelectedItemChanged);
this.browser.SelectedItemDoubleClicked += new CodeImp.DoomBuilder.Controls.ImageBrowserControl.SelectedItemDoubleClickDelegate(this.browser_SelectedItemDoubleClicked);
//
// panel
//
this.panel.Controls.Add(this.tvTextureSets);
this.panel.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel.Location = new System.Drawing.Point(0, 0);
this.panel.Name = "panel";
this.panel.Size = new System.Drawing.Size(203, 442);
this.panel.TabIndex = 6;
//
// splitter
//
this.splitter.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitter.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitter.Location = new System.Drawing.Point(0, 0);
this.splitter.Name = "splitter";
//
// splitter.Panel1
//
this.splitter.Panel1.Controls.Add(this.browser);
//
// splitter.Panel2
//
this.splitter.Panel2.Controls.Add(this.panel);
this.splitter.Panel2MinSize = 100;
this.splitter.Size = new System.Drawing.Size(784, 442);
this.splitter.SplitterDistance = 573;
this.splitter.SplitterWidth = 8;
this.splitter.TabIndex = 0;
this.splitter.TabStop = false;
//
// TextureBrowserForm
//
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(784, 442);
this.Controls.Add(this.apply);
this.Controls.Add(this.cancel);
this.Controls.Add(this.splitter);
this.MinimizeBox = false;
this.Name = "TextureBrowserForm";
this.Opacity = 0D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Browse Textures";
this.Activated += new System.EventHandler(this.TextureBrowserForm_Activated);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextureBrowserForm_FormClosing);
this.Shown += new System.EventHandler(this.TextureBrowserForm_Shown);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.TextureBrowserForm_HelpRequested);
this.panel.ResumeLayout(false);
this.splitter.Panel1.ResumeLayout(false);
this.splitter.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitter)).EndInit();
this.splitter.ResumeLayout(false);
this.ResumeLayout(false);
}

View file

@ -117,6 +117,12 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="cancel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="apply.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="smallimages.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
@ -125,7 +131,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACS
EQAAAk1TRnQBSQFMAgEBCQEAAaQBAQGkAQEBEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
EQAAAk1TRnQBSQFMAgEBCQEAAcQBAQHEAQEBEAEAARYBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAAUIDAAEBAQABCAUAAYABEBgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc
AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA
AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz
@ -168,13 +174,13 @@
AewEAAEOAfADBwK8AvABvAEOAwABUgGaAVIB/wG8Af8GGQHzAbwBUgFLAQACHAJ0AgcD7wH3ARwD7QES
AgABbQHwAe8DBwG8AgACbQEOBAABDgHwAgcKEgFSAaANUgIAAe0BHAF0AUsBHAj/Ae0BEgIAAW0B8ALv
AwcCAAERAQcB7AQAAQ4B8AHvAgcD7wH3ARwD7QESAVIDoAEcAf8BrgGaAb0BdQHjAa4B/wHtAesCAAHs
AXMBdAFLAfcB/wauAf8B7QESAgABbQHwA+8CBwIAAm0BDgQAAQ4B8AHvARwI9QHtARIBUgH/AqAB9wH/
AXMBdAFLAfcB/wauAf8B7QESAgABbQHwA+8CBwIAAm0BDgQAAQ4B8AHvARwI/wHtARIBUgH/AqAB9wH/
Aa4C/wJ1Aa4B/wHtAesCAAGTA3QB7wH/Aa4BlAH/AZoBlAGuAf8B7QESAgABbQG8BO8BBwIAAREBBwHs
BAABDgG8Ae8B9wH1Bq4B9QHtARIBAAFSAv8B7wH/Aa4BlAH/AZoBlAGuAf8B7QHrAgABHAGZAcMBegHv
Af8C0wH/AZoC0wH/Ae0BEgIACG0BAAEPAewBDwQAAQ4BvALvAfUBrgGUAfUBmgGUAa4B9QHtARICAAJS
Ae8B/wHTBK4B0wH/Ae0B6wMAAhwBmgHvAf8G0wH/Ae0BEgIACQ4B6wGRAQ0EAAEOAfQB8AHvAfUC0wH1
AZoC0wH1Ae0BEgQAAe8B/wbTAf8B7QHrBAABmQF0AQcI/wHtARICAAEOAWUBkAG7BQkB9wFsAg4DAAMO
Ae8B9QbTAfUB7QESBAABBwj/Ae0B6wYAAgcD7wH3ARwD7Q4AAQ4HAAEHCPUB7QESBAACBwPvAfcBHAPt
BAABDgG8Ae8B9wH/Bq4B/wHtARIBAAFSAv8B7wH/Aa4BlAH/AZoBlAGuAf8B7QHrAgABHAGZAcMBegHv
Af8C0wH/AZoC0wH/Ae0BEgIACG0BAAEPAewBDwQAAQ4BvALvAf8BrgGUAf8BmgGUAa4B/wHtARICAAJS
Ae8B/wHTBK4B0wH/Ae0B6wMAAhwBmgHvAf8G0wH/Ae0BEgIACQ4B6wGRAQ0EAAEOAfQB8AHvAf8C0wH/
AZoC0wH/Ae0BEgQAAe8B/wbTAf8B7QHrBAABmQF0AQcI/wHtARICAAEOAWUBkAG7BQkB9wFsAg4DAAMO
Ae8B/wbTAf8B7QESBAABBwj/Ae0B6wYAAgcD7wH3ARwD7Q4AAQ4HAAEHCP8B7QESBAACBwPvAfcBHAPt
CQACmRwAAgcD7wH3ARwD7f8AcgAB9wKuAW0BbAHqAmwEZjQAAfcF/wL0AxkBZgkACA4TAAH3Aq4BbQFs
AeoCbARmBAABtQL/ApMBmQEHAbsBtAIZA2YGAAEOAQAF7wH3AQ4DAAJzAesBbgFtAUoBEwEVAUMBEQEP
AQ4BDwMAAfcF/wL0AxkBZgQAAbUC/wGTAZoBegGfAZ4BuwH0AfMBZgEZAWYFAAEOAe8BAAHwAvEC8gG8
@ -203,6 +209,18 @@
HP8L
</value>
</data>
<metadata name="tvTextureSets.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="browser.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="panel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="splitter.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5466
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.AutomapMode.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.AutomapMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ShowHiddenLines {
get {
object obj = ResourceManager.GetObject("ShowHiddenLines", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.AutomapMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ShowLocks {
get {
object obj = ResourceManager.GetObject("ShowLocks", resourceCulture);
@ -74,6 +80,9 @@ namespace CodeImp.DoomBuilder.AutomapMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ShowSecrets {
get {
object obj = ResourceManager.GetObject("ShowSecrets", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5485
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap AlignThings {
get {
object obj = ResourceManager.GetObject("AlignThings", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Angle {
get {
object obj = ResourceManager.GetObject("Angle", resourceCulture);
@ -74,6 +80,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap BrightnessGradient {
get {
object obj = ResourceManager.GetObject("BrightnessGradient", resourceCulture);
@ -81,6 +90,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap CeilingAlign {
get {
object obj = ResourceManager.GetObject("CeilingAlign", resourceCulture);
@ -88,6 +100,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap CeilsGradient {
get {
object obj = ResourceManager.GetObject("CeilsGradient", resourceCulture);
@ -95,6 +110,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Check {
get {
object obj = ResourceManager.GetObject("Check", resourceCulture);
@ -102,6 +120,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Close {
get {
object obj = ResourceManager.GetObject("Close", resourceCulture);
@ -109,6 +130,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ColorPick {
get {
object obj = ResourceManager.GetObject("ColorPick", resourceCulture);
@ -116,6 +140,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Copy {
get {
object obj = ResourceManager.GetObject("Copy", resourceCulture);
@ -123,6 +150,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap CopyProperties {
get {
object obj = ResourceManager.GetObject("CopyProperties", resourceCulture);
@ -130,6 +160,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap CurveLines {
get {
object obj = ResourceManager.GetObject("CurveLines", resourceCulture);
@ -137,6 +170,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Door {
get {
object obj = ResourceManager.GetObject("Door", resourceCulture);
@ -144,6 +180,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap DrawCurveMode {
get {
object obj = ResourceManager.GetObject("DrawCurveMode", resourceCulture);
@ -151,6 +190,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap DrawEllipseMode {
get {
object obj = ResourceManager.GetObject("DrawEllipseMode", resourceCulture);
@ -158,6 +200,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap DrawGeometryMode {
get {
object obj = ResourceManager.GetObject("DrawGeometryMode", resourceCulture);
@ -165,6 +210,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap DrawGridMode {
get {
object obj = ResourceManager.GetObject("DrawGridMode", resourceCulture);
@ -172,6 +220,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap DrawRectangleMode {
get {
object obj = ResourceManager.GetObject("DrawRectangleMode", resourceCulture);
@ -179,6 +230,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap FilterThings {
get {
object obj = ResourceManager.GetObject("FilterThings", resourceCulture);
@ -186,6 +240,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Flip {
get {
object obj = ResourceManager.GetObject("Flip", resourceCulture);
@ -193,6 +250,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap FlipSelectionH {
get {
object obj = ResourceManager.GetObject("FlipSelectionH", resourceCulture);
@ -200,6 +260,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap FlipSelectionV {
get {
object obj = ResourceManager.GetObject("FlipSelectionV", resourceCulture);
@ -207,6 +270,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap FloorAlign {
get {
object obj = ResourceManager.GetObject("FloorAlign", resourceCulture);
@ -214,6 +280,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap FloorsGradient {
get {
object obj = ResourceManager.GetObject("FloorsGradient", resourceCulture);
@ -221,6 +290,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Folder {
get {
object obj = ResourceManager.GetObject("Folder", resourceCulture);
@ -228,6 +300,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Guidelines {
get {
object obj = ResourceManager.GetObject("Guidelines", resourceCulture);
@ -235,6 +310,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Hide {
get {
object obj = ResourceManager.GetObject("Hide", resourceCulture);
@ -242,6 +320,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap HideAll {
get {
object obj = ResourceManager.GetObject("HideAll", resourceCulture);
@ -249,6 +330,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Join {
get {
object obj = ResourceManager.GetObject("Join", resourceCulture);
@ -256,6 +340,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap LightRadius {
get {
object obj = ResourceManager.GetObject("LightRadius", resourceCulture);
@ -263,6 +350,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap List {
get {
object obj = ResourceManager.GetObject("List", resourceCulture);
@ -270,6 +360,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap List_Images {
get {
object obj = ResourceManager.GetObject("List_Images", resourceCulture);
@ -277,6 +370,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Merge {
get {
object obj = ResourceManager.GetObject("Merge", resourceCulture);
@ -284,6 +380,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap NewSector2 {
get {
object obj = ResourceManager.GetObject("NewSector2", resourceCulture);
@ -291,6 +390,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap PasteProperties {
get {
object obj = ResourceManager.GetObject("PasteProperties", resourceCulture);
@ -298,6 +400,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap PastePropertiesOptions {
get {
object obj = ResourceManager.GetObject("PastePropertiesOptions", resourceCulture);
@ -305,6 +410,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap PlaceThings {
get {
object obj = ResourceManager.GetObject("PlaceThings", resourceCulture);
@ -312,6 +420,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Repeat {
get {
object obj = ResourceManager.GetObject("Repeat", resourceCulture);
@ -319,6 +430,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Reset {
get {
object obj = ResourceManager.GetObject("Reset", resourceCulture);
@ -326,6 +440,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Save {
get {
object obj = ResourceManager.GetObject("Save", resourceCulture);
@ -333,6 +450,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap SelectThingsInSectors {
get {
object obj = ResourceManager.GetObject("SelectThingsInSectors", resourceCulture);
@ -340,6 +460,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap SelectTouching {
get {
object obj = ResourceManager.GetObject("SelectTouching", resourceCulture);
@ -347,6 +470,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Show {
get {
object obj = ResourceManager.GetObject("Show", resourceCulture);
@ -354,6 +480,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Show2 {
get {
object obj = ResourceManager.GetObject("Show2", resourceCulture);
@ -361,6 +490,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Show3 {
get {
object obj = ResourceManager.GetObject("Show3", resourceCulture);
@ -368,6 +500,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Similar {
get {
object obj = ResourceManager.GetObject("Similar", resourceCulture);
@ -375,6 +510,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap SoundRadius {
get {
object obj = ResourceManager.GetObject("SoundRadius", resourceCulture);
@ -382,6 +520,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Text {
get {
object obj = ResourceManager.GetObject("Text", resourceCulture);
@ -389,6 +530,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap TextureLock {
get {
object obj = ResourceManager.GetObject("TextureLock", resourceCulture);
@ -396,6 +540,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ThingPointAtCursor {
get {
object obj = ResourceManager.GetObject("ThingPointAtCursor", resourceCulture);
@ -403,6 +550,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap treeview {
get {
object obj = ResourceManager.GetObject("treeview", resourceCulture);
@ -410,6 +560,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ViewSelectionEffects {
get {
object obj = ResourceManager.GetObject("ViewSelectionEffects", resourceCulture);
@ -417,6 +570,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ViewSelectionIndex {
get {
object obj = ResourceManager.GetObject("ViewSelectionIndex", resourceCulture);
@ -424,6 +580,9 @@ namespace CodeImp.DoomBuilder.BuilderModes.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap VisualModeGZ {
get {
object obj = ResourceManager.GetObject("VisualModeGZ", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4927
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.ColorPicker.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.ColorPicker.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.ColorPicker.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.ColorPicker.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap cp {
get {
object obj = ResourceManager.GetObject("cp", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.269
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.CommentsPanel.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.CommentsPanel.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.CommentsPanel.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap LinesMode {
get {
object obj = ResourceManager.GetObject("LinesMode", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.CommentsPanel.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap SectorsMode {
get {
object obj = ResourceManager.GetObject("SectorsMode", resourceCulture);
@ -74,6 +80,9 @@ namespace CodeImp.DoomBuilder.CommentsPanel.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ThingsMode {
get {
object obj = ResourceManager.GetObject("ThingsMode", resourceCulture);
@ -81,6 +90,9 @@ namespace CodeImp.DoomBuilder.CommentsPanel.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap VerticesMode {
get {
object obj = ResourceManager.GetObject("VerticesMode", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.586
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.Plugins.NodesViewer.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.Plugins.NodesViewer.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5466
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.SoundPropagationMode.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap ColorManagement {
get {
object obj = ResourceManager.GetObject("ColorManagement", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Status0 {
get {
object obj = ResourceManager.GetObject("Status0", resourceCulture);
@ -74,6 +80,9 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Warning {
get {
object obj = ResourceManager.GetObject("Warning", resourceCulture);

View file

@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:2.0.50727.4927
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@ -13,13 +13,13 @@ namespace CodeImp.DoomBuilder.StairSectorBuilder.Properties {
/// <summary>
/// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// Этот класс создан автоматически классом StronglyTypedResourceBuilder
// с помощью такого средства, как ResGen или Visual Studio.
// Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
// с параметром /str или перестройте свой проект VS.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -33,12 +33,12 @@ namespace CodeImp.DoomBuilder.StairSectorBuilder.Properties {
}
/// <summary>
/// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.StairSectorBuilder.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -47,8 +47,8 @@ namespace CodeImp.DoomBuilder.StairSectorBuilder.Properties {
}
/// <summary>
/// Перезаписывает свойство CurrentUICulture текущего потока для всех
/// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.StairSectorBuilder.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Byte[].
/// </summary>
internal static byte[] Actions {
get {
object obj = ResourceManager.GetObject("Actions", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.StairSectorBuilder.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap StairIcon {
get {
object obj = ResourceManager.GetObject("StairIcon", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5420
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.TagExplorer.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.TagExplorer.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.TagExplorer.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.TagExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Save {
get {
object obj = ResourceManager.GetObject("Save", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.TagExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap SearchClear {
get {
object obj = ResourceManager.GetObject("SearchClear", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.3615
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.TagRange.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.TagRange.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.TagRange.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.TagRange.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap tag_blue {
get {
object obj = ResourceManager.GetObject("tag_blue", resourceCulture);

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5420
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@ -19,7 +19,7 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@ -38,7 +38,7 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if(object.ReferenceEquals(resourceMan, null)) {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@ -60,6 +60,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Drawsegs {
get {
object obj = ResourceManager.GetObject("Drawsegs", resourceCulture);
@ -67,6 +70,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Drawsegs_pal {
get {
object obj = ResourceManager.GetObject("Drawsegs_pal", resourceCulture);
@ -74,6 +80,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Heatmap_pal {
get {
object obj = ResourceManager.GetObject("Heatmap_pal", resourceCulture);
@ -81,6 +90,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Openings {
get {
object obj = ResourceManager.GetObject("Openings", resourceCulture);
@ -88,6 +100,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Openings_pal {
get {
object obj = ResourceManager.GetObject("Openings_pal", resourceCulture);
@ -95,6 +110,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Solidsegs {
get {
object obj = ResourceManager.GetObject("Solidsegs", resourceCulture);
@ -102,6 +120,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Solidsegs_pal {
get {
object obj = ResourceManager.GetObject("Solidsegs_pal", resourceCulture);
@ -109,6 +130,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Visplanes {
get {
object obj = ResourceManager.GetObject("Visplanes", resourceCulture);
@ -116,6 +140,9 @@ namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer.Properties {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Visplanes_pal {
get {
object obj = ResourceManager.GetObject("Visplanes_pal", resourceCulture);