2009-04-19 18:07:22 +00:00
namespace CodeImp.DoomBuilder.Windows
{
partial class ResourceOptionsForm
{
/// <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 Windows Form 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 ( )
{
2022-10-20 18:40:07 +00:00
System . Windows . Forms . Label label1 ;
System . Windows . Forms . Label label2 ;
System . Windows . Forms . Label label3 ;
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( ResourceOptionsForm ) ) ;
this . tabs = new System . Windows . Forms . TabControl ( ) ;
this . wadfiletab = new System . Windows . Forms . TabPage ( ) ;
this . label6 = new System . Windows . Forms . Label ( ) ;
this . strictpatches = new System . Windows . Forms . CheckBox ( ) ;
this . browsewad = new System . Windows . Forms . Button ( ) ;
this . wadlocation = new System . Windows . Forms . TextBox ( ) ;
this . directorytab = new System . Windows . Forms . TabPage ( ) ;
2023-06-09 09:16:21 +00:00
this . pke_directorylink = new System . Windows . Forms . LinkLabel ( ) ;
this . pk3_directorylink = new System . Windows . Forms . LinkLabel ( ) ;
2022-10-20 18:40:07 +00:00
this . dir_flats = new System . Windows . Forms . CheckBox ( ) ;
this . dir_textures = new System . Windows . Forms . CheckBox ( ) ;
this . browsedir = new System . Windows . Forms . Button ( ) ;
this . dirlocation = new System . Windows . Forms . TextBox ( ) ;
this . pk3filetab = new System . Windows . Forms . TabPage ( ) ;
2023-06-09 09:16:21 +00:00
this . pkelink = new System . Windows . Forms . LinkLabel ( ) ;
2022-10-20 18:40:07 +00:00
this . pk3link = new System . Windows . Forms . LinkLabel ( ) ;
this . browsepk3 = new System . Windows . Forms . Button ( ) ;
this . pk3location = new System . Windows . Forms . TextBox ( ) ;
this . cancel = new System . Windows . Forms . Button ( ) ;
this . apply = new System . Windows . Forms . Button ( ) ;
this . wadfiledialog = new System . Windows . Forms . OpenFileDialog ( ) ;
this . pk3filedialog = new System . Windows . Forms . OpenFileDialog ( ) ;
this . notfortesting = new System . Windows . Forms . CheckBox ( ) ;
this . checkingloader = new System . Windows . Forms . Panel ( ) ;
this . pictureBox1 = new System . Windows . Forms . PictureBox ( ) ;
this . label4 = new System . Windows . Forms . Label ( ) ;
label1 = new System . Windows . Forms . Label ( ) ;
label2 = new System . Windows . Forms . Label ( ) ;
label3 = new System . Windows . Forms . Label ( ) ;
this . tabs . SuspendLayout ( ) ;
this . wadfiletab . SuspendLayout ( ) ;
this . directorytab . SuspendLayout ( ) ;
this . pk3filetab . SuspendLayout ( ) ;
this . checkingloader . SuspendLayout ( ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . pictureBox1 ) ) . BeginInit ( ) ;
this . SuspendLayout ( ) ;
//
// label1
//
label1 . AutoSize = true ;
label1 . Location = new System . Drawing . Point ( 15 , 20 ) ;
label1 . Name = "label1" ;
label1 . Size = new System . Drawing . Size ( 104 , 13 ) ;
label1 . TabIndex = 0 ;
label1 . Text = "WAD File Resource:" ;
//
// label2
//
label2 . AutoSize = true ;
label2 . Location = new System . Drawing . Point ( 15 , 20 ) ;
label2 . Name = "label2" ;
label2 . Size = new System . Drawing . Size ( 101 , 13 ) ;
label2 . TabIndex = 3 ;
label2 . Text = "Directory Resource:" ;
//
// label3
//
label3 . AutoSize = true ;
label3 . Location = new System . Drawing . Point ( 15 , 20 ) ;
label3 . Name = "label3" ;
2023-06-09 09:16:21 +00:00
label3 . Size = new System . Drawing . Size ( 163 , 13 ) ;
2022-10-20 18:40:07 +00:00
label3 . TabIndex = 3 ;
2023-06-09 09:16:21 +00:00
label3 . Text = "PK3, PKE, or PK7 File Resource:" ;
2022-10-20 18:40:07 +00:00
//
// tabs
//
this . tabs . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Bottom )
2018-07-13 04:56:13 +00:00
| System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2022-10-20 18:40:07 +00:00
this . tabs . Controls . Add ( this . wadfiletab ) ;
this . tabs . Controls . Add ( this . directorytab ) ;
this . tabs . Controls . Add ( this . pk3filetab ) ;
this . tabs . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Bold , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . tabs . Location = new System . Drawing . Point ( 9 , 11 ) ;
this . tabs . Name = "tabs" ;
this . tabs . Padding = new System . Drawing . Point ( 16 , 3 ) ;
this . tabs . SelectedIndex = 0 ;
2023-06-09 09:16:21 +00:00
this . tabs . Size = new System . Drawing . Size ( 379 , 237 ) ;
2022-10-20 18:40:07 +00:00
this . tabs . TabIndex = 0 ;
//
// wadfiletab
//
this . wadfiletab . Controls . Add ( this . label6 ) ;
this . wadfiletab . Controls . Add ( this . strictpatches ) ;
this . wadfiletab . Controls . Add ( this . browsewad ) ;
this . wadfiletab . Controls . Add ( this . wadlocation ) ;
this . wadfiletab . Controls . Add ( label1 ) ;
this . wadfiletab . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . wadfiletab . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . wadfiletab . Name = "wadfiletab" ;
this . wadfiletab . Padding = new System . Windows . Forms . Padding ( 3 ) ;
2023-06-09 09:16:21 +00:00
this . wadfiletab . Size = new System . Drawing . Size ( 371 , 211 ) ;
2022-10-20 18:40:07 +00:00
this . wadfiletab . TabIndex = 0 ;
this . wadfiletab . Text = "From WAD File" ;
this . wadfiletab . UseVisualStyleBackColor = true ;
//
// label6
//
this . label6 . Location = new System . Drawing . Point ( 14 , 102 ) ;
this . label6 . Name = "label6" ;
2023-06-09 09:16:21 +00:00
this . label6 . Size = new System . Drawing . Size ( 339 , 58 ) ;
2022-10-20 18:40:07 +00:00
this . label6 . TabIndex = 0 ;
this . label6 . Text = resources . GetString ( "label6.Text" ) ;
//
// strictpatches
//
this . strictpatches . AutoSize = true ;
this . strictpatches . Location = new System . Drawing . Point ( 17 , 72 ) ;
this . strictpatches . Name = "strictpatches" ;
this . strictpatches . Size = new System . Drawing . Size ( 299 , 17 ) ;
this . strictpatches . TabIndex = 3 ;
this . strictpatches . Text = "Strictly load patches between P_START and P_END only" ;
this . strictpatches . UseVisualStyleBackColor = true ;
//
// browsewad
//
this . browsewad . Image = global :: CodeImp . DoomBuilder . Properties . Resources . Folder ;
2023-06-09 09:16:21 +00:00
this . browsewad . Location = new System . Drawing . Point ( 325 , 35 ) ;
2022-10-20 18:40:07 +00:00
this . browsewad . Name = "browsewad" ;
this . browsewad . Padding = new System . Windows . Forms . Padding ( 0 , 0 , 1 , 3 ) ;
this . browsewad . Size = new System . Drawing . Size ( 28 , 24 ) ;
this . browsewad . TabIndex = 2 ;
this . browsewad . Text = " " ;
this . browsewad . UseVisualStyleBackColor = true ;
this . browsewad . Click + = new System . EventHandler ( this . browsewad_Click ) ;
//
// wadlocation
//
this . wadlocation . Location = new System . Drawing . Point ( 17 , 37 ) ;
this . wadlocation . Name = "wadlocation" ;
this . wadlocation . ReadOnly = true ;
2023-06-09 09:16:21 +00:00
this . wadlocation . Size = new System . Drawing . Size ( 302 , 20 ) ;
2022-10-20 18:40:07 +00:00
this . wadlocation . TabIndex = 1 ;
this . wadlocation . TabStop = false ;
this . wadlocation . Enter + = new System . EventHandler ( this . wadlocation_Enter ) ;
//
// directorytab
//
2023-06-09 09:16:21 +00:00
this . directorytab . Controls . Add ( this . pke_directorylink ) ;
this . directorytab . Controls . Add ( this . pk3_directorylink ) ;
2022-10-20 18:40:07 +00:00
this . directorytab . Controls . Add ( this . dir_flats ) ;
this . directorytab . Controls . Add ( this . dir_textures ) ;
this . directorytab . Controls . Add ( this . browsedir ) ;
this . directorytab . Controls . Add ( this . dirlocation ) ;
this . directorytab . Controls . Add ( label2 ) ;
this . directorytab . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . directorytab . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . directorytab . Name = "directorytab" ;
this . directorytab . Padding = new System . Windows . Forms . Padding ( 3 ) ;
2023-06-09 09:16:21 +00:00
this . directorytab . Size = new System . Drawing . Size ( 371 , 211 ) ;
2022-10-20 18:40:07 +00:00
this . directorytab . TabIndex = 1 ;
this . directorytab . Text = "From Directory" ;
this . directorytab . UseVisualStyleBackColor = true ;
//
2023-06-09 09:16:21 +00:00
// pke_directorylink
//
this . pke_directorylink . LinkArea = new System . Windows . Forms . LinkArea ( 31 , 32 ) ;
this . pke_directorylink . LinkColor = System . Drawing . SystemColors . HotTrack ;
this . pke_directorylink . Location = new System . Drawing . Point ( 15 , 173 ) ;
this . pke_directorylink . Name = "pke_directorylink" ;
this . pke_directorylink . Size = new System . Drawing . Size ( 339 , 46 ) ;
this . pke_directorylink . TabIndex = 7 ;
this . pke_directorylink . TabStop = true ;
this . pke_directorylink . Text = "Alternatively, you may use the Eternity PKE directory structure." ;
this . pke_directorylink . UseCompatibleTextRendering = true ;
this . pke_directorylink . LinkClicked + = new System . Windows . Forms . LinkLabelLinkClickedEventHandler ( this . pke_link_Click ) ;
//
// pk3_directorylink
//
this . pk3_directorylink . LinkArea = new System . Windows . Forms . LinkArea ( 26 , 29 ) ;
this . pk3_directorylink . LinkColor = System . Drawing . SystemColors . HotTrack ;
this . pk3_directorylink . Location = new System . Drawing . Point ( 14 , 127 ) ;
this . pk3_directorylink . Name = "pk3_directorylink" ;
this . pk3_directorylink . Size = new System . Drawing . Size ( 339 , 58 ) ;
this . pk3_directorylink . TabIndex = 1 ;
this . pk3_directorylink . TabStop = true ;
this . pk3_directorylink . Text = "The directory may use the ZDoom PK3 directory structure, or you can choose to use" +
2018-07-13 04:56:13 +00:00
" the options above to load texture or flat images from the directory root." ;
2023-06-09 09:16:21 +00:00
this . pk3_directorylink . UseCompatibleTextRendering = true ;
this . pk3_directorylink . LinkClicked + = new System . Windows . Forms . LinkLabelLinkClickedEventHandler ( this . pk3_link_Click ) ;
2022-10-20 18:40:07 +00:00
//
// dir_flats
//
this . dir_flats . AutoSize = true ;
this . dir_flats . Location = new System . Drawing . Point ( 17 , 98 ) ;
this . dir_flats . Name = "dir_flats" ;
this . dir_flats . Size = new System . Drawing . Size ( 197 , 17 ) ;
this . dir_flats . TabIndex = 4 ;
this . dir_flats . Text = "Load images in directory root as flats" ;
this . dir_flats . UseVisualStyleBackColor = true ;
//
// dir_textures
//
this . dir_textures . AutoSize = true ;
this . dir_textures . Location = new System . Drawing . Point ( 17 , 72 ) ;
this . dir_textures . Name = "dir_textures" ;
this . dir_textures . Size = new System . Drawing . Size ( 215 , 17 ) ;
this . dir_textures . TabIndex = 3 ;
this . dir_textures . Text = "Load images in directory root as textures" ;
this . dir_textures . UseVisualStyleBackColor = true ;
//
// browsedir
//
this . browsedir . Image = global :: CodeImp . DoomBuilder . Properties . Resources . Folder ;
this . browsedir . Location = new System . Drawing . Point ( 315 , 35 ) ;
this . browsedir . Name = "browsedir" ;
this . browsedir . Padding = new System . Windows . Forms . Padding ( 0 , 0 , 1 , 3 ) ;
this . browsedir . Size = new System . Drawing . Size ( 28 , 24 ) ;
this . browsedir . TabIndex = 2 ;
this . browsedir . UseVisualStyleBackColor = true ;
this . browsedir . Click + = new System . EventHandler ( this . browsedir_Click ) ;
//
// dirlocation
//
this . dirlocation . BackColor = System . Drawing . SystemColors . Control ;
this . dirlocation . Location = new System . Drawing . Point ( 17 , 37 ) ;
this . dirlocation . Name = "dirlocation" ;
this . dirlocation . ReadOnly = true ;
this . dirlocation . Size = new System . Drawing . Size ( 292 , 20 ) ;
this . dirlocation . TabIndex = 0 ;
this . dirlocation . TabStop = false ;
this . dirlocation . Enter + = new System . EventHandler ( this . dirlocation_Enter ) ;
//
// pk3filetab
//
2023-06-09 09:16:21 +00:00
this . pk3filetab . Controls . Add ( this . pkelink ) ;
2022-10-20 18:40:07 +00:00
this . pk3filetab . Controls . Add ( this . pk3link ) ;
this . pk3filetab . Controls . Add ( this . browsepk3 ) ;
this . pk3filetab . Controls . Add ( this . pk3location ) ;
this . pk3filetab . Controls . Add ( label3 ) ;
this . pk3filetab . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . pk3filetab . Location = new System . Drawing . Point ( 4 , 22 ) ;
this . pk3filetab . Name = "pk3filetab" ;
2023-06-09 09:16:21 +00:00
this . pk3filetab . Size = new System . Drawing . Size ( 371 , 211 ) ;
2022-10-20 18:40:07 +00:00
this . pk3filetab . TabIndex = 2 ;
2023-06-09 09:16:21 +00:00
this . pk3filetab . Text = "From PK3/PKE/PK7" ;
2022-10-20 18:40:07 +00:00
this . pk3filetab . UseVisualStyleBackColor = true ;
//
2023-06-09 09:16:21 +00:00
// pkelink
//
this . pkelink . LinkArea = new System . Windows . Forms . LinkArea ( 42 , 36 ) ;
this . pkelink . LinkColor = System . Drawing . SystemColors . HotTrack ;
this . pkelink . Location = new System . Drawing . Point ( 15 , 111 ) ;
this . pkelink . Name = "pkelink" ;
this . pkelink . Size = new System . Drawing . Size ( 338 , 47 ) ;
this . pkelink . TabIndex = 8 ;
this . pkelink . TabStop = true ;
this . pkelink . Text = "PKE archive files are expected to use the Eternity archive directory structure." ;
this . pkelink . UseCompatibleTextRendering = true ;
this . pkelink . LinkClicked + = new System . Windows . Forms . LinkLabelLinkClickedEventHandler ( this . pke_link_Click ) ;
//
2022-10-20 18:40:07 +00:00
// pk3link
//
2023-06-09 09:16:21 +00:00
this . pk3link . LinkArea = new System . Windows . Forms . LinkArea ( 50 , 33 ) ;
2022-10-20 18:40:07 +00:00
this . pk3link . LinkColor = System . Drawing . SystemColors . HotTrack ;
this . pk3link . Location = new System . Drawing . Point ( 15 , 72 ) ;
this . pk3link . Name = "pk3link" ;
2023-06-09 09:16:21 +00:00
this . pk3link . Size = new System . Drawing . Size ( 338 , 47 ) ;
2022-10-20 18:40:07 +00:00
this . pk3link . TabIndex = 7 ;
this . pk3link . TabStop = true ;
2023-06-09 09:16:21 +00:00
this . pk3link . Text = "PK3 and PK7 archive files are expected to use the ZDoom archive directory structu" +
"re." ;
2022-10-20 18:40:07 +00:00
this . pk3link . UseCompatibleTextRendering = true ;
2023-06-09 09:16:21 +00:00
this . pk3link . LinkClicked + = new System . Windows . Forms . LinkLabelLinkClickedEventHandler ( this . pk3_link_Click ) ;
2022-10-20 18:40:07 +00:00
//
// browsepk3
//
this . browsepk3 . Image = global :: CodeImp . DoomBuilder . Properties . Resources . Folder ;
2023-06-09 09:16:21 +00:00
this . browsepk3 . Location = new System . Drawing . Point ( 325 , 35 ) ;
2022-10-20 18:40:07 +00:00
this . browsepk3 . Name = "browsepk3" ;
this . browsepk3 . Padding = new System . Windows . Forms . Padding ( 0 , 0 , 1 , 3 ) ;
this . browsepk3 . Size = new System . Drawing . Size ( 28 , 24 ) ;
this . browsepk3 . TabIndex = 1 ;
this . browsepk3 . UseVisualStyleBackColor = true ;
this . browsepk3 . Click + = new System . EventHandler ( this . browsepk3_Click ) ;
//
// pk3location
//
this . pk3location . Location = new System . Drawing . Point ( 17 , 37 ) ;
this . pk3location . Name = "pk3location" ;
this . pk3location . ReadOnly = true ;
2023-06-09 09:16:21 +00:00
this . pk3location . Size = new System . Drawing . Size ( 302 , 20 ) ;
2022-10-20 18:40:07 +00:00
this . pk3location . TabIndex = 0 ;
this . pk3location . TabStop = false ;
this . pk3location . Enter + = new System . EventHandler ( this . pk3location_Enter ) ;
//
// cancel
//
this . cancel . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . cancel . DialogResult = System . Windows . Forms . DialogResult . Cancel ;
2023-06-09 09:16:21 +00:00
this . cancel . Location = new System . Drawing . Point ( 272 , 330 ) ;
2022-10-20 18:40:07 +00:00
this . cancel . Name = "cancel" ;
this . cancel . Size = new System . Drawing . Size ( 112 , 25 ) ;
this . cancel . TabIndex = 2 ;
this . cancel . Text = "Cancel" ;
this . cancel . UseVisualStyleBackColor = true ;
this . cancel . Click + = new System . EventHandler ( this . cancel_Click ) ;
//
// apply
//
this . apply . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2023-06-09 09:16:21 +00:00
this . apply . Location = new System . Drawing . Point ( 154 , 330 ) ;
2022-10-20 18:40:07 +00:00
this . apply . Name = "apply" ;
this . apply . Size = new System . Drawing . Size ( 112 , 25 ) ;
this . apply . TabIndex = 1 ;
this . apply . Text = "OK" ;
this . apply . UseVisualStyleBackColor = true ;
this . apply . Click + = new System . EventHandler ( this . apply_Click ) ;
//
// wadfiledialog
//
this . wadfiledialog . Filter = "Doom WAD Files (*.wad;*.iwad)|*.wad;*.iwad" ;
this . wadfiledialog . Title = "Browse WAD File" ;
//
// pk3filedialog
//
2023-06-09 09:16:21 +00:00
this . pk3filedialog . Filter = "Doom PK3/PKE/PK7 Files (*.pk3;*.pke;*.pk7;*.ipk3;*.ipk7)|*.pk3;*.pke;*.pk7;*.ipk3" +
";*.ipk7" ;
this . pk3filedialog . Title = "Browse PK3, PKE, or PK7 File" ;
2022-10-20 18:40:07 +00:00
//
// notfortesting
//
this . notfortesting . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left ) ) ) ;
this . notfortesting . AutoSize = true ;
2023-06-09 09:16:21 +00:00
this . notfortesting . Location = new System . Drawing . Point ( 12 , 260 ) ;
2022-10-20 18:40:07 +00:00
this . notfortesting . Name = "notfortesting" ;
this . notfortesting . Size = new System . Drawing . Size ( 239 , 17 ) ;
this . notfortesting . TabIndex = 3 ;
this . notfortesting . Text = "Exclude this resource from testing parameters" ;
this . notfortesting . UseVisualStyleBackColor = true ;
//
// checkingloader
//
this . checkingloader . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left )
2022-09-18 17:54:53 +00:00
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2022-10-20 18:40:07 +00:00
this . checkingloader . BackColor = System . Drawing . SystemColors . Info ;
this . checkingloader . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . checkingloader . Controls . Add ( this . pictureBox1 ) ;
this . checkingloader . Controls . Add ( this . label4 ) ;
this . checkingloader . Cursor = System . Windows . Forms . Cursors . AppStarting ;
this . checkingloader . ForeColor = System . Drawing . SystemColors . InfoText ;
2023-06-09 09:16:21 +00:00
this . checkingloader . Location = new System . Drawing . Point ( 12 , 289 ) ;
2022-10-20 18:40:07 +00:00
this . checkingloader . Name = "checkingloader" ;
2023-06-09 09:16:21 +00:00
this . checkingloader . Size = new System . Drawing . Size ( 372 , 32 ) ;
2022-10-20 18:40:07 +00:00
this . checkingloader . TabIndex = 4 ;
this . checkingloader . Visible = false ;
//
// pictureBox1
//
this . pictureBox1 . Image = global :: CodeImp . DoomBuilder . Properties . Resources . Loader ;
this . pictureBox1 . InitialImage = global :: CodeImp . DoomBuilder . Properties . Resources . Loader ;
this . pictureBox1 . Location = new System . Drawing . Point ( 8 , 7 ) ;
this . pictureBox1 . Name = "pictureBox1" ;
this . pictureBox1 . Size = new System . Drawing . Size ( 16 , 16 ) ;
this . pictureBox1 . TabIndex = 2 ;
this . pictureBox1 . TabStop = false ;
//
// label4
//
this . label4 . AutoSize = true ;
this . label4 . Location = new System . Drawing . Point ( 29 , 8 ) ;
this . label4 . Name = "label4" ;
this . label4 . Size = new System . Drawing . Size ( 176 , 13 ) ;
this . label4 . TabIndex = 0 ;
this . label4 . Text = "Please wait, checking the archive..." ;
//
// ResourceOptionsForm
//
this . AcceptButton = this . apply ;
this . AutoScaleDimensions = new System . Drawing . SizeF ( 96F , 96F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Dpi ;
this . CancelButton = this . cancel ;
2023-06-09 09:16:21 +00:00
this . ClientSize = new System . Drawing . Size ( 396 , 363 ) ;
2022-10-20 18:40:07 +00:00
this . Controls . Add ( this . checkingloader ) ;
this . Controls . Add ( this . notfortesting ) ;
this . Controls . Add ( this . cancel ) ;
this . Controls . Add ( this . apply ) ;
this . Controls . Add ( this . tabs ) ;
this . FormBorderStyle = System . Windows . Forms . FormBorderStyle . FixedDialog ;
this . MaximizeBox = false ;
this . MinimizeBox = false ;
this . Name = "ResourceOptionsForm" ;
this . Opacity = 0D ;
this . ShowIcon = false ;
this . ShowInTaskbar = false ;
this . StartPosition = System . Windows . Forms . FormStartPosition . CenterParent ;
this . Text = "Resource Options" ;
this . HelpRequested + = new System . Windows . Forms . HelpEventHandler ( this . ResourceOptionsForm_HelpRequested ) ;
this . tabs . ResumeLayout ( false ) ;
this . wadfiletab . ResumeLayout ( false ) ;
this . wadfiletab . PerformLayout ( ) ;
this . directorytab . ResumeLayout ( false ) ;
this . directorytab . PerformLayout ( ) ;
this . pk3filetab . ResumeLayout ( false ) ;
this . pk3filetab . PerformLayout ( ) ;
this . checkingloader . ResumeLayout ( false ) ;
this . checkingloader . PerformLayout ( ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . pictureBox1 ) ) . EndInit ( ) ;
this . ResumeLayout ( false ) ;
this . PerformLayout ( ) ;
2009-04-19 18:07:22 +00:00
}
#endregion
private System . Windows . Forms . TabControl tabs ;
private System . Windows . Forms . TabPage wadfiletab ;
private System . Windows . Forms . TabPage directorytab ;
private System . Windows . Forms . Button cancel ;
private System . Windows . Forms . Button apply ;
private System . Windows . Forms . TextBox wadlocation ;
private System . Windows . Forms . Button browsewad ;
private System . Windows . Forms . Button browsedir ;
private System . Windows . Forms . TextBox dirlocation ;
private System . Windows . Forms . CheckBox dir_flats ;
private System . Windows . Forms . CheckBox dir_textures ;
private System . Windows . Forms . OpenFileDialog wadfiledialog ;
private System . Windows . Forms . TabPage pk3filetab ;
private System . Windows . Forms . Button browsepk3 ;
private System . Windows . Forms . TextBox pk3location ;
private System . Windows . Forms . OpenFileDialog pk3filedialog ;
private System . Windows . Forms . LinkLabel pk3link ;
2023-06-09 09:16:21 +00:00
private System . Windows . Forms . LinkLabel pk3_directorylink ;
2009-04-19 18:07:22 +00:00
private System . Windows . Forms . CheckBox strictpatches ;
private System . Windows . Forms . Label label6 ;
2009-07-02 14:15:47 +00:00
private System . Windows . Forms . CheckBox notfortesting ;
2022-09-18 17:54:53 +00:00
private System . Windows . Forms . Panel checkingloader ;
private System . Windows . Forms . Label label4 ;
private System . Windows . Forms . PictureBox pictureBox1 ;
2023-06-09 09:16:21 +00:00
private System . Windows . Forms . LinkLabel pkelink ;
private System . Windows . Forms . LinkLabel pke_directorylink ;
2022-09-18 17:54:53 +00:00
}
2009-04-19 18:07:22 +00:00
}