2009-04-19 18:07:22 +00:00
namespace CodeImp.DoomBuilder.Controls
{
partial class ImageSelectorControl
{
/// <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 ) )
{
if ( bmp ! = null ) bmp . Dispose ( ) ;
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 . preview = new System . Windows . Forms . Panel ( ) ;
2013-06-17 13:17:53 +00:00
this . labelSize = new System . Windows . Forms . Label ( ) ;
2009-04-19 18:07:22 +00:00
this . name = new CodeImp . DoomBuilder . Controls . AutoSelectTextbox ( ) ;
2013-06-17 13:17:53 +00:00
this . preview . SuspendLayout ( ) ;
2009-04-19 18:07:22 +00:00
this . SuspendLayout ( ) ;
//
// preview
//
this . preview . BackColor = System . Drawing . SystemColors . AppWorkspace ;
this . preview . BackgroundImageLayout = System . Windows . Forms . ImageLayout . Zoom ;
this . preview . BorderStyle = System . Windows . Forms . BorderStyle . Fixed3D ;
2013-06-17 13:17:53 +00:00
this . preview . Controls . Add ( this . labelSize ) ;
2009-04-19 18:07:22 +00:00
this . preview . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . preview . Name = "preview" ;
this . preview . Size = new System . Drawing . Size ( 68 , 60 ) ;
this . preview . TabIndex = 1 ;
this . preview . MouseLeave + = new System . EventHandler ( this . preview_MouseLeave ) ;
this . preview . MouseMove + = new System . Windows . Forms . MouseEventHandler ( this . preview_MouseMove ) ;
this . preview . Click + = new System . EventHandler ( this . preview_Click ) ;
this . preview . MouseDown + = new System . Windows . Forms . MouseEventHandler ( this . preview_MouseDown ) ;
this . preview . MouseUp + = new System . Windows . Forms . MouseEventHandler ( this . preview_MouseUp ) ;
this . preview . MouseEnter + = new System . EventHandler ( this . preview_MouseEnter ) ;
//
2013-06-17 13:17:53 +00:00
// labelSize
//
this . labelSize . AutoSize = true ;
Visual mode, UDMF: added "Scale Texture Up (X)", "Scale Texture Down (X)", "Scale Texture Up (Y)", "Scale Texture Down (Y)" actions. Default keys are Num6, Num4, Num8, Num5.
Visual mode, UDMF: renamed "Rotate Thing Clockwise" and "Rotate Thing Counterclockwise" actions to "Rotate Clockwise" and "Rotate Counterclockwise". These actions can now be used to change rotation of floor/ceiling textures.
Visual mode, UDMF: "Reset Texture Offsets" action now also resets sidedef's scale and floor/ceiling's scale and rotation.
Visual mode, UDMF: control line's OffsetX and OffsetY were not taken into account when calculating texture offsets of 3d floors' sides.
Visual mode, UDMF: fixed a ton of bugs in Auto align functions.
Visual mode, UDMF: when using "Move Texture Left/Right/Up/Down by 1" actions texture offsets were not updated properly when texture's scale was < 1.0.
Visual mode, UDMF: OffsetX and OffsetY were not taken into account in "Fit Texture Width/Height" actions.
Dockers Panel: added Pin/Unpin button, which acts the same as "Preferences -> Interface -> Side panels -> Auto hide" checkbox.
Texture size labels can now be disabled by unchecking "Preferences -> Interface -> Show texture and flat sizes in browsers" checkbox.
Texture size labels now are not shown for unknown textures.
Most of texture size labels had incorrect bg color.
ZDoom_linedefs.cfg: action specials 223 and 224 had incorrect Arg0.
2013-06-24 14:21:13 +00:00
this . labelSize . BackColor = System . Drawing . Color . Black ;
2013-06-17 13:17:53 +00:00
this . labelSize . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 7F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . labelSize . ForeColor = System . Drawing . Color . White ;
this . labelSize . Location = new System . Drawing . Point ( 1 , 1 ) ;
this . labelSize . MaximumSize = new System . Drawing . Size ( 0 , 13 ) ;
this . labelSize . Name = "labelSize" ;
this . labelSize . Size = new System . Drawing . Size ( 48 , 13 ) ;
this . labelSize . TabIndex = 0 ;
this . labelSize . Text = "128x128" ;
2013-07-08 13:13:28 +00:00
this . labelSize . Visible = false ;
2013-06-17 13:17:53 +00:00
//
2009-04-19 18:07:22 +00:00
// name
//
this . name . AutoCompleteMode = System . Windows . Forms . AutoCompleteMode . Suggest ;
this . name . AutoCompleteSource = System . Windows . Forms . AutoCompleteSource . CustomSource ;
this . name . CharacterCasing = System . Windows . Forms . CharacterCasing . Upper ;
this . name . Location = new System . Drawing . Point ( 0 , 64 ) ;
2009-06-08 18:52:56 +00:00
this . name . MaxLength = 8 ;
2009-04-19 18:07:22 +00:00
this . name . Name = "name" ;
this . name . Size = new System . Drawing . Size ( 68 , 20 ) ;
this . name . TabIndex = 2 ;
this . name . TextChanged + = new System . EventHandler ( this . name_TextChanged ) ;
//
// ImageSelectorControl
//
2009-07-09 22:43:39 +00:00
this . AutoScaleDimensions = new System . Drawing . SizeF ( 96F , 96F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Dpi ;
2009-04-19 18:07:22 +00:00
this . Controls . Add ( this . name ) ;
this . Controls . Add ( this . preview ) ;
this . Name = "ImageSelectorControl" ;
this . Size = new System . Drawing . Size ( 115 , 136 ) ;
this . Layout + = new System . Windows . Forms . LayoutEventHandler ( this . ImageSelectorControl_Layout ) ;
this . Resize + = new System . EventHandler ( this . ImageSelectorControl_Resize ) ;
2013-06-17 13:17:53 +00:00
this . preview . ResumeLayout ( false ) ;
this . preview . PerformLayout ( ) ;
2009-04-19 18:07:22 +00:00
this . ResumeLayout ( false ) ;
this . PerformLayout ( ) ;
}
#endregion
protected System . Windows . Forms . Panel preview ;
protected CodeImp . DoomBuilder . Controls . AutoSelectTextbox name ;
2013-06-17 13:17:53 +00:00
private System . Windows . Forms . Label labelSize ;
2009-04-19 18:07:22 +00:00
}
}