2016-06-19 20:02:10 +00:00
|
|
|
|
namespace PSLauncher
|
|
|
|
|
|
{
|
|
|
|
|
|
partial class SettingsForm
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <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.label2 = new System.Windows.Forms.Label();
|
|
|
|
|
|
this.selectDirectory = new System.Windows.Forms.Button();
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.planetsidePathTextField = new System.Windows.Forms.TextBox();
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.launchArgs = new System.Windows.Forms.TextBox();
|
|
|
|
|
|
this.label10 = new System.Windows.Forms.Label();
|
|
|
|
|
|
this.planetsideVersion = new System.Windows.Forms.Label();
|
2022-04-26 20:21:42 +00:00
|
|
|
|
this.findPTRDirDialogue = new Ookii.Dialogs.WinForms.VistaFolderBrowserDialog();
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.clearOnLaunch = new System.Windows.Forms.CheckBox();
|
|
|
|
|
|
this.button1 = new System.Windows.Forms.Button();
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.coreCombat = new System.Windows.Forms.CheckBox();
|
|
|
|
|
|
this.editServerList = new System.Windows.Forms.Button();
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.generateClientIni = new System.Windows.Forms.CheckBox();
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
|
//
|
|
|
|
|
|
// label2
|
|
|
|
|
|
//
|
|
|
|
|
|
this.label2.AutoSize = true;
|
|
|
|
|
|
this.label2.Location = new System.Drawing.Point(9, 17);
|
|
|
|
|
|
this.label2.Name = "label2";
|
|
|
|
|
|
this.label2.Size = new System.Drawing.Size(90, 13);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.label2.TabIndex = 0;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.label2.Text = "PlanetSide Folder";
|
|
|
|
|
|
//
|
|
|
|
|
|
// selectDirectory
|
|
|
|
|
|
//
|
|
|
|
|
|
this.selectDirectory.Location = new System.Drawing.Point(12, 59);
|
|
|
|
|
|
this.selectDirectory.Name = "selectDirectory";
|
|
|
|
|
|
this.selectDirectory.Size = new System.Drawing.Size(75, 23);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.selectDirectory.TabIndex = 2;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.selectDirectory.Text = "Choose";
|
|
|
|
|
|
this.selectDirectory.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.selectDirectory.Click += new System.EventHandler(this.button1_Click);
|
|
|
|
|
|
//
|
2017-03-19 15:20:57 +00:00
|
|
|
|
// planetsidePathTextField
|
2016-06-19 20:02:10 +00:00
|
|
|
|
//
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.planetsidePathTextField.Location = new System.Drawing.Point(12, 33);
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.planetsidePathTextField.Name = "planetsidePathTextField";
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.planetsidePathTextField.ReadOnly = true;
|
|
|
|
|
|
this.planetsidePathTextField.Size = new System.Drawing.Size(222, 20);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.planetsidePathTextField.TabIndex = 1;
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.planetsidePathTextField.Text = "Path to PlanetSide folder";
|
2016-06-19 20:02:10 +00:00
|
|
|
|
//
|
|
|
|
|
|
// launchArgs
|
|
|
|
|
|
//
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.launchArgs.Location = new System.Drawing.Point(12, 195);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.launchArgs.Name = "launchArgs";
|
|
|
|
|
|
this.launchArgs.Size = new System.Drawing.Size(222, 20);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.launchArgs.TabIndex = 9;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.launchArgs.TextChanged += new System.EventHandler(this.launchArgs_TextChanged);
|
|
|
|
|
|
//
|
|
|
|
|
|
// label10
|
|
|
|
|
|
//
|
|
|
|
|
|
this.label10.AutoSize = true;
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.label10.Location = new System.Drawing.Point(9, 176);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.label10.Name = "label10";
|
|
|
|
|
|
this.label10.Size = new System.Drawing.Size(158, 13);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.label10.TabIndex = 8;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.label10.Text = "Additional command line options";
|
|
|
|
|
|
//
|
|
|
|
|
|
// planetsideVersion
|
|
|
|
|
|
//
|
|
|
|
|
|
this.planetsideVersion.Location = new System.Drawing.Point(102, 59);
|
|
|
|
|
|
this.planetsideVersion.Name = "planetsideVersion";
|
|
|
|
|
|
this.planetsideVersion.Size = new System.Drawing.Size(132, 21);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.planetsideVersion.TabIndex = 3;
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.planetsideVersion.Text = "Version";
|
|
|
|
|
|
this.planetsideVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
//
|
|
|
|
|
|
// clearOnLaunch
|
|
|
|
|
|
//
|
|
|
|
|
|
this.clearOnLaunch.AutoSize = true;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.clearOnLaunch.Location = new System.Drawing.Point(12, 123);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.clearOnLaunch.Name = "clearOnLaunch";
|
|
|
|
|
|
this.clearOnLaunch.Size = new System.Drawing.Size(133, 17);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.clearOnLaunch.TabIndex = 5;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.clearOnLaunch.Text = "Clear output on launch";
|
|
|
|
|
|
this.clearOnLaunch.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.clearOnLaunch.CheckedChanged += new System.EventHandler(this.clearOnLaunch_CheckedChanged);
|
|
|
|
|
|
//
|
|
|
|
|
|
// button1
|
|
|
|
|
|
//
|
|
|
|
|
|
this.button1.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.button1.Location = new System.Drawing.Point(91, 226);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.button1.Name = "button1";
|
|
|
|
|
|
this.button1.Size = new System.Drawing.Size(62, 23);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.button1.TabIndex = 10;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.button1.Text = "OK";
|
|
|
|
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.button1.Click += new System.EventHandler(this.button1_Click_1);
|
|
|
|
|
|
//
|
2017-03-19 15:20:57 +00:00
|
|
|
|
// coreCombat
|
|
|
|
|
|
//
|
|
|
|
|
|
this.coreCombat.AutoSize = true;
|
|
|
|
|
|
this.coreCombat.Location = new System.Drawing.Point(12, 98);
|
|
|
|
|
|
this.coreCombat.Name = "coreCombat";
|
|
|
|
|
|
this.coreCombat.Size = new System.Drawing.Size(87, 17);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.coreCombat.TabIndex = 4;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.coreCombat.Text = "Core Combat";
|
|
|
|
|
|
this.coreCombat.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.coreCombat.CheckedChanged += new System.EventHandler(this.coreCombat_CheckedChanged);
|
|
|
|
|
|
//
|
|
|
|
|
|
// editServerList
|
|
|
|
|
|
//
|
|
|
|
|
|
this.editServerList.Location = new System.Drawing.Point(134, 94);
|
|
|
|
|
|
this.editServerList.Name = "editServerList";
|
|
|
|
|
|
this.editServerList.Size = new System.Drawing.Size(100, 23);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.editServerList.TabIndex = 7;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.editServerList.Text = "Edit Server List...";
|
|
|
|
|
|
this.editServerList.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.editServerList.Click += new System.EventHandler(this.editServerList_Click);
|
|
|
|
|
|
//
|
2017-03-19 19:46:03 +00:00
|
|
|
|
// generateClientIni
|
|
|
|
|
|
//
|
|
|
|
|
|
this.generateClientIni.AutoSize = true;
|
|
|
|
|
|
this.generateClientIni.Location = new System.Drawing.Point(12, 146);
|
|
|
|
|
|
this.generateClientIni.Name = "generateClientIni";
|
|
|
|
|
|
this.generateClientIni.Size = new System.Drawing.Size(111, 17);
|
|
|
|
|
|
this.generateClientIni.TabIndex = 6;
|
|
|
|
|
|
this.generateClientIni.Text = "Generate client.ini";
|
|
|
|
|
|
this.generateClientIni.UseVisualStyleBackColor = true;
|
|
|
|
|
|
this.generateClientIni.CheckedChanged += new System.EventHandler(this.generateClientIni_CheckedChanged);
|
|
|
|
|
|
//
|
2016-06-19 20:02:10 +00:00
|
|
|
|
// SettingsForm
|
|
|
|
|
|
//
|
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(244, 251);
|
2017-03-19 19:46:03 +00:00
|
|
|
|
this.Controls.Add(this.generateClientIni);
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.Controls.Add(this.editServerList);
|
|
|
|
|
|
this.Controls.Add(this.coreCombat);
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.Controls.Add(this.planetsideVersion);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.Controls.Add(this.button1);
|
|
|
|
|
|
this.Controls.Add(this.clearOnLaunch);
|
|
|
|
|
|
this.Controls.Add(this.launchArgs);
|
|
|
|
|
|
this.Controls.Add(this.label10);
|
|
|
|
|
|
this.Controls.Add(this.label2);
|
|
|
|
|
|
this.Controls.Add(this.selectDirectory);
|
2016-06-19 20:49:51 +00:00
|
|
|
|
this.Controls.Add(this.planetsidePathTextField);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
|
|
|
|
this.MaximizeBox = false;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.MaximumSize = new System.Drawing.Size(260, 290);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.MinimizeBox = false;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
this.MinimumSize = new System.Drawing.Size(260, 290);
|
2016-06-19 20:02:10 +00:00
|
|
|
|
this.Name = "SettingsForm";
|
|
|
|
|
|
this.Text = "Settings";
|
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
|
|
|
private System.Windows.Forms.Button selectDirectory;
|
2016-06-19 20:49:51 +00:00
|
|
|
|
private System.Windows.Forms.TextBox planetsidePathTextField;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
private System.Windows.Forms.TextBox launchArgs;
|
|
|
|
|
|
private System.Windows.Forms.Label label10;
|
|
|
|
|
|
private System.Windows.Forms.Label planetsideVersion;
|
2022-04-26 20:21:42 +00:00
|
|
|
|
private Ookii.Dialogs.WinForms.VistaFolderBrowserDialog findPTRDirDialogue;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
private System.Windows.Forms.CheckBox clearOnLaunch;
|
|
|
|
|
|
private System.Windows.Forms.Button button1;
|
2017-03-19 15:20:57 +00:00
|
|
|
|
private System.Windows.Forms.CheckBox coreCombat;
|
|
|
|
|
|
private System.Windows.Forms.Button editServerList;
|
2017-03-19 19:46:03 +00:00
|
|
|
|
private System.Windows.Forms.CheckBox generateClientIni;
|
2016-06-19 20:02:10 +00:00
|
|
|
|
}
|
2022-04-26 20:21:42 +00:00
|
|
|
|
}
|