mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
0a7bd9f636
Changes since 5bf51d0: Large scale cleanup & refactoring. Sound Propagation Mode: you can now click on doublesided linedefs to toggle sound blocking flag. Sound Environment Mode: you can now click on doublesided linedefs to toggle sound zone boundary flag. Sound Propagation Mode: reimplemented the highlighting of non-deaf things. Things are now highlighted using selection color. Removed "Show tooltips" checkbox. Tooltips are now always enabled. Fixed, Sound Environment Mode: thing tooltip about multiple active sound environment things was shown even when there was only one active sound environment thing. Fixed, Sound Environment Mode: "Configure colors" toolbar button was not working because of missing action. Fixed, cosmetic: "Configure colors" toolbar icon was missing a tooltip. Fixed, cosmetic: display was not redrawn after changing colors using "Color configuration" window.
62 lines
2 KiB
C#
62 lines
2 KiB
C#
namespace CodeImp.DoomBuilder.SoundPropagationMode
|
|
{
|
|
partial class SoundEnvironmentPanel
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.soundenvironments = new CodeImp.DoomBuilder.SoundPropagationMode.BufferedTreeView();
|
|
this.SuspendLayout();
|
|
//
|
|
// soundenvironments
|
|
//
|
|
this.soundenvironments.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.soundenvironments.Location = new System.Drawing.Point(0, 0);
|
|
this.soundenvironments.Name = "soundenvironments";
|
|
this.soundenvironments.ShowNodeToolTips = true;
|
|
this.soundenvironments.Size = new System.Drawing.Size(214, 512);
|
|
this.soundenvironments.TabIndex = 0;
|
|
this.soundenvironments.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.soundenvironments_NodeMouseClick);
|
|
this.soundenvironments.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.soundenvironments_BeforeSelect);
|
|
//
|
|
// SoundEnvironmentPanel
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.soundenvironments);
|
|
this.Name = "SoundEnvironmentPanel";
|
|
this.Size = new System.Drawing.Size(214, 512);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private BufferedTreeView soundenvironments;
|
|
|
|
|
|
}
|
|
}
|