mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
6a685b7678
Added two new type handlers that can be used in UDMF ('Thing Type' and 'Thing Class') Polished the browse icons and browse buttons. Added more events for plugins to intercept.
93 lines
3.4 KiB
C#
93 lines
3.4 KiB
C#
namespace CodeImp.DoomBuilder.Controls
|
|
{
|
|
partial class ArgumentBox
|
|
{
|
|
/// <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.combobox = new System.Windows.Forms.ComboBox();
|
|
this.button = new System.Windows.Forms.Button();
|
|
this.scrollbuttons = new System.Windows.Forms.VScrollBar();
|
|
this.SuspendLayout();
|
|
//
|
|
// combobox
|
|
//
|
|
this.combobox.DropDownWidth = 130;
|
|
this.combobox.Location = new System.Drawing.Point(0, 1);
|
|
this.combobox.Name = "combobox";
|
|
this.combobox.Size = new System.Drawing.Size(149, 22);
|
|
this.combobox.TabIndex = 0;
|
|
this.combobox.Validating += new System.ComponentModel.CancelEventHandler(this.combobox_Validating);
|
|
this.combobox.TextChanged += new System.EventHandler(this.combobox_TextChanged);
|
|
//
|
|
// button
|
|
//
|
|
this.button.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.button.Image = global::CodeImp.DoomBuilder.Properties.Resources.treeview;
|
|
this.button.Location = new System.Drawing.Point(153, 0);
|
|
this.button.Name = "button";
|
|
this.button.Padding = new System.Windows.Forms.Padding(0, 0, 1, 2);
|
|
this.button.Size = new System.Drawing.Size(28, 24);
|
|
this.button.TabIndex = 1;
|
|
this.button.UseVisualStyleBackColor = true;
|
|
this.button.Visible = false;
|
|
this.button.Click += new System.EventHandler(this.button_Click);
|
|
//
|
|
// scrollbuttons
|
|
//
|
|
this.scrollbuttons.LargeChange = 10000;
|
|
this.scrollbuttons.Location = new System.Drawing.Point(186, -1);
|
|
this.scrollbuttons.Maximum = 10000;
|
|
this.scrollbuttons.Minimum = -10000;
|
|
this.scrollbuttons.Name = "scrollbuttons";
|
|
this.scrollbuttons.Size = new System.Drawing.Size(18, 24);
|
|
this.scrollbuttons.TabIndex = 2;
|
|
this.scrollbuttons.Visible = false;
|
|
this.scrollbuttons.ValueChanged += new System.EventHandler(this.scrollbuttons_ValueChanged);
|
|
//
|
|
// ArgumentBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.Controls.Add(this.scrollbuttons);
|
|
this.Controls.Add(this.button);
|
|
this.Controls.Add(this.combobox);
|
|
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Name = "ArgumentBox";
|
|
this.Size = new System.Drawing.Size(268, 64);
|
|
this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ArgumentBox_Layout);
|
|
this.Resize += new System.EventHandler(this.ArgumentBox_Resize);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox combobox;
|
|
private System.Windows.Forms.Button button;
|
|
private System.Windows.Forms.VScrollBar scrollbuttons;
|
|
}
|
|
}
|