mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
013865e27d
Reverted "Delete Item" action to the way it worked in DB2. Added "Dissolve Item" action, which works the way "Delete Item" worked in previous revisions of GZDB. Added "Auto Clear Sidedef Textures" action, "Edit" menu and toolbar button, which toggle automatic removal of sidedef textures when floor or ceiling height is changed or when geometry is drawn, copied or pasted. Draw Settings panel: upper/lower texture overrides can now be used. Draw Settings panel: added 2 sets of buttons, which allow to quickly set or clear textures in current selection. Things are now rendered behind AND on top of the grid/linedefs/vertices when they are dragged. Redesigned hints system. They are now shown in a side panel. Edit area auto-focusing is now disabled when script editor is open. Texture Browser form: no texture group was selected when opening the form in some cases. Fixed several strange/misleading text messages.
77 lines
2.6 KiB
C#
77 lines
2.6 KiB
C#
namespace CodeImp.DoomBuilder.BuilderModes
|
|
{
|
|
partial class UndoRedoPanel
|
|
{
|
|
/// <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.list = new CodeImp.DoomBuilder.Controls.OptimizedListView();
|
|
this.coldescription = new System.Windows.Forms.ColumnHeader();
|
|
this.SuspendLayout();
|
|
//
|
|
// list
|
|
//
|
|
this.list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.coldescription});
|
|
this.list.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.list.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.list.FullRowSelect = true;
|
|
this.list.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
|
this.list.Location = new System.Drawing.Point(0, 0);
|
|
this.list.MultiSelect = false;
|
|
this.list.Name = "list";
|
|
this.list.ShowGroups = false;
|
|
this.list.Size = new System.Drawing.Size(390, 548);
|
|
this.list.TabIndex = 1;
|
|
this.list.UseCompatibleStateImageBehavior = false;
|
|
this.list.View = System.Windows.Forms.View.Details;
|
|
this.list.Resize += new System.EventHandler(this.list_Resize);
|
|
this.list.SelectedIndexChanged += new System.EventHandler(this.list_SelectedIndexChanged);
|
|
this.list.MouseUp += new System.Windows.Forms.MouseEventHandler(this.list_MouseUp);
|
|
this.list.KeyUp += new System.Windows.Forms.KeyEventHandler(this.list_KeyUp);
|
|
//
|
|
// coldescription
|
|
//
|
|
this.coldescription.Text = "Description";
|
|
this.coldescription.Width = 238;
|
|
//
|
|
// UndoRedoPanel
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.list);
|
|
this.Name = "UndoRedoPanel";
|
|
this.Size = new System.Drawing.Size(390, 548);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CodeImp.DoomBuilder.Controls.OptimizedListView list;
|
|
private System.Windows.Forms.ColumnHeader coldescription;
|
|
}
|
|
}
|