2008-05-29 11:54:45 +00:00
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
2007-10-31 20:34:09 +00:00
|
|
|
{
|
2007-12-26 14:29:36 +00:00
|
|
|
partial class ImageBrowserControl
|
2007-10-31 20:34:09 +00:00
|
|
|
{
|
|
|
|
/// <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))
|
|
|
|
{
|
2008-09-28 21:20:56 +00:00
|
|
|
CleanUp();
|
2007-10-31 20:34:09 +00:00
|
|
|
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()
|
|
|
|
{
|
2007-11-04 22:19:30 +00:00
|
|
|
this.components = new System.ComponentModel.Container();
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter = new System.Windows.Forms.SplitContainer();
|
2007-11-04 22:19:30 +00:00
|
|
|
this.objectname = new System.Windows.Forms.TextBox();
|
|
|
|
this.label = new System.Windows.Forms.Label();
|
|
|
|
this.refreshtimer = new System.Windows.Forms.Timer(this.components);
|
2008-10-01 17:35:34 +00:00
|
|
|
this.list = new CodeImp.DoomBuilder.Controls.OptimizedListView();
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter.Panel1.SuspendLayout();
|
2007-11-04 22:19:30 +00:00
|
|
|
this.splitter.Panel2.SuspendLayout();
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter.SuspendLayout();
|
|
|
|
this.SuspendLayout();
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
2007-11-04 22:19:30 +00:00
|
|
|
this.splitter.Panel1.Controls.Add(this.list);
|
|
|
|
//
|
|
|
|
// splitter.Panel2
|
|
|
|
//
|
|
|
|
this.splitter.Panel2.Controls.Add(this.objectname);
|
|
|
|
this.splitter.Panel2.Controls.Add(this.label);
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter.Size = new System.Drawing.Size(518, 346);
|
2007-11-04 22:19:30 +00:00
|
|
|
this.splitter.SplitterDistance = 312;
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter.TabIndex = 0;
|
|
|
|
this.splitter.TabStop = false;
|
|
|
|
//
|
2007-11-04 22:19:30 +00:00
|
|
|
// objectname
|
|
|
|
//
|
|
|
|
this.objectname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
|
|
|
|
this.objectname.Location = new System.Drawing.Point(145, 10);
|
|
|
|
this.objectname.Name = "objectname";
|
|
|
|
this.objectname.Size = new System.Drawing.Size(122, 20);
|
|
|
|
this.objectname.TabIndex = 0;
|
|
|
|
this.objectname.TextChanged += new System.EventHandler(this.objectname_TextChanged);
|
|
|
|
this.objectname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.objectname_KeyDown);
|
|
|
|
//
|
|
|
|
// label
|
|
|
|
//
|
|
|
|
this.label.AutoSize = true;
|
|
|
|
this.label.Location = new System.Drawing.Point(1, 13);
|
|
|
|
this.label.Name = "label";
|
|
|
|
this.label.Size = new System.Drawing.Size(138, 14);
|
|
|
|
this.label.TabIndex = 0;
|
|
|
|
this.label.Text = "Select or type object name:";
|
|
|
|
//
|
|
|
|
// refreshtimer
|
2007-10-31 20:34:09 +00:00
|
|
|
//
|
2007-11-04 22:19:30 +00:00
|
|
|
this.refreshtimer.Interval = 500;
|
|
|
|
this.refreshtimer.Tick += new System.EventHandler(this.refreshtimer_Tick);
|
2007-10-31 20:34:09 +00:00
|
|
|
//
|
2008-10-01 17:35:34 +00:00
|
|
|
// list
|
|
|
|
//
|
|
|
|
this.list.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
this.list.HideSelection = false;
|
|
|
|
this.list.Location = new System.Drawing.Point(0, 0);
|
|
|
|
this.list.MultiSelect = false;
|
|
|
|
this.list.Name = "list";
|
|
|
|
this.list.OwnerDraw = true;
|
|
|
|
this.list.ShowItemToolTips = true;
|
|
|
|
this.list.Size = new System.Drawing.Size(518, 312);
|
|
|
|
this.list.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
|
|
this.list.TabIndex = 1;
|
|
|
|
this.list.TileSize = new System.Drawing.Size(90, 90);
|
|
|
|
this.list.UseCompatibleStateImageBehavior = false;
|
|
|
|
this.list.View = System.Windows.Forms.View.Tile;
|
|
|
|
this.list.DrawItem += new System.Windows.Forms.DrawListViewItemEventHandler(this.list_DrawItem);
|
|
|
|
this.list.DoubleClick += new System.EventHandler(this.list_DoubleClick);
|
|
|
|
this.list.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.list_ItemSelectionChanged);
|
|
|
|
//
|
2008-05-05 14:22:36 +00:00
|
|
|
// ImageBrowserControl
|
2007-10-31 20:34:09 +00:00
|
|
|
//
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
this.Controls.Add(this.splitter);
|
|
|
|
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2008-05-05 14:22:36 +00:00
|
|
|
this.Name = "ImageBrowserControl";
|
2007-10-31 20:34:09 +00:00
|
|
|
this.Size = new System.Drawing.Size(518, 346);
|
|
|
|
this.splitter.Panel1.ResumeLayout(false);
|
2007-11-04 22:19:30 +00:00
|
|
|
this.splitter.Panel2.ResumeLayout(false);
|
|
|
|
this.splitter.Panel2.PerformLayout();
|
2007-10-31 20:34:09 +00:00
|
|
|
this.splitter.ResumeLayout(false);
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
private System.Windows.Forms.SplitContainer splitter;
|
2007-11-04 22:19:30 +00:00
|
|
|
private OptimizedListView list;
|
|
|
|
private System.Windows.Forms.Timer refreshtimer;
|
|
|
|
private System.Windows.Forms.TextBox objectname;
|
|
|
|
private System.Windows.Forms.Label label;
|
2007-10-31 20:34:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|