namespace Giants.Launcher { partial class OptionsForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.cmbRenderer = new System.Windows.Forms.ComboBox(); this.cmbResolution = new System.Windows.Forms.ComboBox(); this.cmbAntialiasing = new System.Windows.Forms.ComboBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.cmbMode = new System.Windows.Forms.ComboBox(); this.chkTripleBuffering = new System.Windows.Forms.CheckBox(); this.chkVSync = new System.Windows.Forms.CheckBox(); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.btnResetDefaults = new System.Windows.Forms.Button(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.chkUpdates = new System.Windows.Forms.CheckBox(); this.cmbBranch = new System.Windows.Forms.ComboBox(); this.BranchGroupBox = new System.Windows.Forms.GroupBox(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox3.SuspendLayout(); this.BranchGroupBox.SuspendLayout(); this.SuspendLayout(); // // cmbRenderer // this.cmbRenderer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbRenderer.FormattingEnabled = true; this.cmbRenderer.Location = new System.Drawing.Point(165, 23); this.cmbRenderer.Margin = new System.Windows.Forms.Padding(4); this.cmbRenderer.Name = "cmbRenderer"; this.cmbRenderer.Size = new System.Drawing.Size(335, 24); this.cmbRenderer.TabIndex = 0; this.cmbRenderer.SelectedIndexChanged += new System.EventHandler(this.cmbRenderer_SelectedIndexChanged); // // cmbResolution // this.cmbResolution.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbResolution.FormattingEnabled = true; this.cmbResolution.Location = new System.Drawing.Point(165, 62); this.cmbResolution.Margin = new System.Windows.Forms.Padding(4); this.cmbResolution.Name = "cmbResolution"; this.cmbResolution.Size = new System.Drawing.Size(335, 24); this.cmbResolution.TabIndex = 1; // // cmbAntialiasing // this.cmbAntialiasing.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbAntialiasing.FormattingEnabled = true; this.cmbAntialiasing.Location = new System.Drawing.Point(165, 100); this.cmbAntialiasing.Margin = new System.Windows.Forms.Padding(4); this.cmbAntialiasing.Name = "cmbAntialiasing"; this.cmbAntialiasing.Size = new System.Drawing.Size(335, 24); this.cmbAntialiasing.TabIndex = 2; // // groupBox1 // this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.cmbRenderer); this.groupBox1.Controls.Add(this.cmbResolution); this.groupBox1.Controls.Add(this.cmbAntialiasing); this.groupBox1.Location = new System.Drawing.Point(16, 15); this.groupBox1.Margin = new System.Windows.Forms.Padding(4); this.groupBox1.Name = "groupBox1"; this.groupBox1.Padding = new System.Windows.Forms.Padding(4); this.groupBox1.Size = new System.Drawing.Size(509, 143); this.groupBox1.TabIndex = 4; this.groupBox1.TabStop = false; this.groupBox1.Text = "Graphics Settings"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(69, 103); this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(83, 16); this.label3.TabIndex = 6; this.label3.Text = "Anti-aliasing:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(77, 65); this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(74, 16); this.label2.TabIndex = 5; this.label2.Text = "Resolution:"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(85, 27); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(67, 16); this.label1.TabIndex = 4; this.label1.Text = "Renderer:"; // // groupBox2 // this.groupBox2.Controls.Add(this.cmbMode); this.groupBox2.Controls.Add(this.chkTripleBuffering); this.groupBox2.Controls.Add(this.chkVSync); this.groupBox2.Location = new System.Drawing.Point(16, 170); this.groupBox2.Margin = new System.Windows.Forms.Padding(4); this.groupBox2.Name = "groupBox2"; this.groupBox2.Padding = new System.Windows.Forms.Padding(4); this.groupBox2.Size = new System.Drawing.Size(157, 114); this.groupBox2.TabIndex = 5; this.groupBox2.TabStop = false; this.groupBox2.Text = "Mode"; // // cmbMode // this.cmbMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbMode.FormattingEnabled = true; this.cmbMode.Items.AddRange(new object[] { "Fullscreen", "Windowed", "Borderless"}); this.cmbMode.Location = new System.Drawing.Point(16, 23); this.cmbMode.Margin = new System.Windows.Forms.Padding(4); this.cmbMode.Name = "cmbMode"; this.cmbMode.Size = new System.Drawing.Size(116, 24); this.cmbMode.TabIndex = 3; // // chkTripleBuffering // this.chkTripleBuffering.AutoSize = true; this.chkTripleBuffering.Location = new System.Drawing.Point(16, 79); this.chkTripleBuffering.Margin = new System.Windows.Forms.Padding(4); this.chkTripleBuffering.Name = "chkTripleBuffering"; this.chkTripleBuffering.Size = new System.Drawing.Size(119, 20); this.chkTripleBuffering.TabIndex = 2; this.chkTripleBuffering.Text = "Triple Buffering"; this.chkTripleBuffering.UseVisualStyleBackColor = true; // // chkVSync // this.chkVSync.AutoSize = true; this.chkVSync.Location = new System.Drawing.Point(16, 53); this.chkVSync.Margin = new System.Windows.Forms.Padding(4); this.chkVSync.Name = "chkVSync"; this.chkVSync.Size = new System.Drawing.Size(107, 20); this.chkVSync.TabIndex = 1; this.chkVSync.Text = "Vertical Sync"; this.chkVSync.UseVisualStyleBackColor = true; // // btnOK // this.btnOK.Location = new System.Drawing.Point(317, 272); this.btnOK.Margin = new System.Windows.Forms.Padding(4); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(100, 28); this.btnOK.TabIndex = 6; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(425, 272); this.btnCancel.Margin = new System.Windows.Forms.Padding(4); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(100, 28); this.btnCancel.TabIndex = 7; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnResetDefaults // this.btnResetDefaults.Location = new System.Drawing.Point(400, 170); this.btnResetDefaults.Margin = new System.Windows.Forms.Padding(4); this.btnResetDefaults.Name = "btnResetDefaults"; this.btnResetDefaults.Size = new System.Drawing.Size(125, 28); this.btnResetDefaults.TabIndex = 8; this.btnResetDefaults.Text = "Reset Defaults"; this.btnResetDefaults.UseVisualStyleBackColor = true; this.btnResetDefaults.Click += new System.EventHandler(this.btnResetDefaults_Click); // // groupBox3 // this.groupBox3.Controls.Add(this.chkUpdates); this.groupBox3.Location = new System.Drawing.Point(181, 167); this.groupBox3.Margin = new System.Windows.Forms.Padding(4); this.groupBox3.Name = "groupBox3"; this.groupBox3.Padding = new System.Windows.Forms.Padding(4); this.groupBox3.Size = new System.Drawing.Size(169, 54); this.groupBox3.TabIndex = 6; this.groupBox3.TabStop = false; this.groupBox3.Text = "Other"; // // chkUpdates // this.chkUpdates.AutoSize = true; this.chkUpdates.Location = new System.Drawing.Point(11, 24); this.chkUpdates.Margin = new System.Windows.Forms.Padding(4); this.chkUpdates.Name = "chkUpdates"; this.chkUpdates.Size = new System.Drawing.Size(140, 20); this.chkUpdates.TabIndex = 1; this.chkUpdates.Text = "Check for Updates"; this.chkUpdates.UseVisualStyleBackColor = true; // // cmbBranch // this.cmbBranch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbBranch.FormattingEnabled = true; this.cmbBranch.Location = new System.Drawing.Point(27, 17); this.cmbBranch.Name = "cmbBranch"; this.cmbBranch.Size = new System.Drawing.Size(124, 24); this.cmbBranch.TabIndex = 9; // // BranchGroupBox // this.BranchGroupBox.Controls.Add(this.cmbBranch); this.BranchGroupBox.Location = new System.Drawing.Point(181, 222); this.BranchGroupBox.Name = "BranchGroupBox"; this.BranchGroupBox.Size = new System.Drawing.Size(169, 49); this.BranchGroupBox.TabIndex = 10; this.BranchGroupBox.TabStop = false; this.BranchGroupBox.Text = "Branch"; this.BranchGroupBox.Visible = false; // // OptionsForm // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSize = true; this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(541, 316); this.ControlBox = false; this.Controls.Add(this.BranchGroupBox); this.Controls.Add(this.groupBox3); this.Controls.Add(this.btnResetDefaults); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Margin = new System.Windows.Forms.Padding(4); this.Name = "OptionsForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "OptionsForm"; this.TopMost = true; this.Load += new System.EventHandler(this.OptionsForm_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.groupBox3.ResumeLayout(false); this.groupBox3.PerformLayout(); this.BranchGroupBox.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ComboBox cmbRenderer; private System.Windows.Forms.ComboBox cmbResolution; private System.Windows.Forms.ComboBox cmbAntialiasing; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.CheckBox chkVSync; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnResetDefaults; private System.Windows.Forms.CheckBox chkTripleBuffering; private System.Windows.Forms.GroupBox groupBox3; private System.Windows.Forms.CheckBox chkUpdates; private System.Windows.Forms.ComboBox cmbMode; private System.Windows.Forms.ComboBox cmbBranch; private System.Windows.Forms.GroupBox BranchGroupBox; } }