mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-15 00:51:39 +00:00
145 lines
No EOL
5 KiB
C#
145 lines
No EOL
5 KiB
C#
namespace CodeImp.DoomBuilder.BuilderModes.Interface
|
|
{
|
|
partial class ObjExporterSettingsForm
|
|
{
|
|
/// <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() {
|
|
this.tbExportPath = new System.Windows.Forms.TextBox();
|
|
this.browse = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.cbFixScale = new System.Windows.Forms.CheckBox();
|
|
this.export = new System.Windows.Forms.Button();
|
|
this.cancel = new System.Windows.Forms.Button();
|
|
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
|
this.cbExportTextures = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// tbExportPath
|
|
//
|
|
this.tbExportPath.Location = new System.Drawing.Point(82, 12);
|
|
this.tbExportPath.Name = "tbExportPath";
|
|
this.tbExportPath.Size = new System.Drawing.Size(272, 20);
|
|
this.tbExportPath.TabIndex = 0;
|
|
//
|
|
// browse
|
|
//
|
|
this.browse.Location = new System.Drawing.Point(360, 10);
|
|
this.browse.Name = "browse";
|
|
this.browse.Size = new System.Drawing.Size(75, 23);
|
|
this.browse.TabIndex = 1;
|
|
this.browse.Text = "Browse...";
|
|
this.browse.UseVisualStyleBackColor = true;
|
|
this.browse.Click += new System.EventHandler(this.browse_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(64, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "Export path:";
|
|
//
|
|
// cbFixScale
|
|
//
|
|
this.cbFixScale.AutoSize = true;
|
|
this.cbFixScale.Location = new System.Drawing.Point(12, 42);
|
|
this.cbFixScale.Name = "cbFixScale";
|
|
this.cbFixScale.Size = new System.Drawing.Size(207, 17);
|
|
this.cbFixScale.TabIndex = 3;
|
|
this.cbFixScale.Text = "Export for GZDoom (Fix Vertical Scale)";
|
|
this.cbFixScale.UseVisualStyleBackColor = true;
|
|
//
|
|
// export
|
|
//
|
|
this.export.Location = new System.Drawing.Point(360, 73);
|
|
this.export.Name = "export";
|
|
this.export.Size = new System.Drawing.Size(75, 23);
|
|
this.export.TabIndex = 4;
|
|
this.export.Text = "Export";
|
|
this.export.UseVisualStyleBackColor = true;
|
|
this.export.Click += new System.EventHandler(this.export_Click);
|
|
//
|
|
// cancel
|
|
//
|
|
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.cancel.Location = new System.Drawing.Point(279, 73);
|
|
this.cancel.Name = "cancel";
|
|
this.cancel.Size = new System.Drawing.Size(75, 23);
|
|
this.cancel.TabIndex = 5;
|
|
this.cancel.Text = "Cancel";
|
|
this.cancel.UseVisualStyleBackColor = true;
|
|
this.cancel.Click += new System.EventHandler(this.cancel_Click);
|
|
//
|
|
// saveFileDialog
|
|
//
|
|
this.saveFileDialog.DefaultExt = "obj";
|
|
this.saveFileDialog.Filter = "Wavefront obj files|*.obj";
|
|
this.saveFileDialog.Title = "Select save location:";
|
|
//
|
|
// cbExportTextures
|
|
//
|
|
this.cbExportTextures.AutoSize = true;
|
|
this.cbExportTextures.Location = new System.Drawing.Point(12, 65);
|
|
this.cbExportTextures.Name = "cbExportTextures";
|
|
this.cbExportTextures.Size = new System.Drawing.Size(96, 17);
|
|
this.cbExportTextures.TabIndex = 6;
|
|
this.cbExportTextures.Text = "Export textures";
|
|
this.cbExportTextures.UseVisualStyleBackColor = true;
|
|
//
|
|
// ObjExporterSettingsForm
|
|
//
|
|
this.AcceptButton = this.export;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.cancel;
|
|
this.ClientSize = new System.Drawing.Size(447, 100);
|
|
this.Controls.Add(this.cbExportTextures);
|
|
this.Controls.Add(this.cancel);
|
|
this.Controls.Add(this.export);
|
|
this.Controls.Add(this.cbFixScale);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.browse);
|
|
this.Controls.Add(this.tbExportPath);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "ObjExporterSettingsForm";
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "Export to Wavefront .obj";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tbExportPath;
|
|
private System.Windows.Forms.Button browse;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.CheckBox cbFixScale;
|
|
private System.Windows.Forms.Button export;
|
|
private System.Windows.Forms.Button cancel;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
|
private System.Windows.Forms.CheckBox cbExportTextures;
|
|
}
|
|
} |