mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
233 lines
9.7 KiB
C#
233 lines
9.7 KiB
C#
namespace SabreTools
|
|
{
|
|
partial class SabreToolsUI
|
|
{
|
|
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.generateDatLabel = new System.Windows.Forms.Label();
|
|
this.systemsLabel = new System.Windows.Forms.Label();
|
|
this.systemsCheckedListBox = new System.Windows.Forms.CheckedListBox();
|
|
this.sourcesCheckedListBox = new System.Windows.Forms.CheckedListBox();
|
|
this.sourcesLabel = new System.Windows.Forms.Label();
|
|
this.generateButton = new System.Windows.Forms.Button();
|
|
this.generateAllButton = new System.Windows.Forms.Button();
|
|
this.oldCheckBox = new System.Windows.Forms.CheckBox();
|
|
this.renameCheckBox = new System.Windows.Forms.CheckBox();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem,
|
|
this.editToolStripMenuItem,
|
|
this.helpToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(681, 24);
|
|
this.menuStrip1.TabIndex = 0;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.quitToolStripMenuItem});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fileToolStripMenuItem.Text = "File";
|
|
//
|
|
// quitToolStripMenuItem
|
|
//
|
|
this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
|
|
this.quitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.X)));
|
|
this.quitToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
|
|
this.quitToolStripMenuItem.Text = "Exit";
|
|
this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
|
|
//
|
|
// editToolStripMenuItem
|
|
//
|
|
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
|
|
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
|
|
this.editToolStripMenuItem.Text = "Edit";
|
|
//
|
|
// helpToolStripMenuItem
|
|
//
|
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.aboutToolStripMenuItem});
|
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|
this.helpToolStripMenuItem.Text = "Help";
|
|
//
|
|
// aboutToolStripMenuItem
|
|
//
|
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
|
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
|
|
this.aboutToolStripMenuItem.Text = "About";
|
|
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
|
//
|
|
// generateDatLabel
|
|
//
|
|
this.generateDatLabel.AutoSize = true;
|
|
this.generateDatLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.generateDatLabel.Location = new System.Drawing.Point(12, 34);
|
|
this.generateDatLabel.Name = "generateDatLabel";
|
|
this.generateDatLabel.Size = new System.Drawing.Size(112, 17);
|
|
this.generateDatLabel.TabIndex = 1;
|
|
this.generateDatLabel.Text = "Generate DAT";
|
|
//
|
|
// systemsLabel
|
|
//
|
|
this.systemsLabel.AutoSize = true;
|
|
this.systemsLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.systemsLabel.Location = new System.Drawing.Point(15, 65);
|
|
this.systemsLabel.Name = "systemsLabel";
|
|
this.systemsLabel.Size = new System.Drawing.Size(56, 15);
|
|
this.systemsLabel.TabIndex = 3;
|
|
this.systemsLabel.Text = "Systems:";
|
|
//
|
|
// systemsCheckedListBox
|
|
//
|
|
this.systemsCheckedListBox.FormattingEnabled = true;
|
|
this.systemsCheckedListBox.Items.AddRange(GetAllSystems());
|
|
this.systemsCheckedListBox.Location = new System.Drawing.Point(77, 65);
|
|
this.systemsCheckedListBox.Name = "systemsCheckedListBox";
|
|
this.systemsCheckedListBox.Size = new System.Drawing.Size(260, 34);
|
|
this.systemsCheckedListBox.TabIndex = 4;
|
|
//
|
|
// sourcesLabel
|
|
//
|
|
this.sourcesLabel.AutoSize = true;
|
|
this.sourcesLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.sourcesLabel.Location = new System.Drawing.Point(353, 65);
|
|
this.sourcesLabel.Name = "sourcesLabel";
|
|
this.sourcesLabel.Size = new System.Drawing.Size(55, 15);
|
|
this.sourcesLabel.TabIndex = 6;
|
|
this.sourcesLabel.Text = "Sources:";
|
|
//
|
|
// sourcesCheckedListBox
|
|
//
|
|
this.sourcesCheckedListBox.FormattingEnabled = true;
|
|
this.sourcesCheckedListBox.Items.AddRange(GetAllSources());
|
|
this.sourcesCheckedListBox.Location = new System.Drawing.Point(415, 65);
|
|
this.sourcesCheckedListBox.Name = "sourcesCheckedListBox";
|
|
this.sourcesCheckedListBox.Size = new System.Drawing.Size(244, 34);
|
|
this.sourcesCheckedListBox.TabIndex = 7;
|
|
//
|
|
// generateButton
|
|
//
|
|
this.generateButton.Location = new System.Drawing.Point(18, 145);
|
|
this.generateButton.Name = "generateButton";
|
|
this.generateButton.Size = new System.Drawing.Size(75, 23);
|
|
this.generateButton.TabIndex = 8;
|
|
this.generateButton.Text = "Generate";
|
|
this.generateButton.UseVisualStyleBackColor = true;
|
|
this.generateButton.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// generateAllButton
|
|
//
|
|
this.generateAllButton.Location = new System.Drawing.Point(100, 145);
|
|
this.generateAllButton.Name = "generateAllButton";
|
|
this.generateAllButton.Size = new System.Drawing.Size(97, 23);
|
|
this.generateAllButton.TabIndex = 9;
|
|
this.generateAllButton.Text = "Generate All";
|
|
this.generateAllButton.UseVisualStyleBackColor = true;
|
|
this.generateAllButton.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// oldCheckBox
|
|
//
|
|
this.oldCheckBox.AutoSize = true;
|
|
this.oldCheckBox.Location = new System.Drawing.Point(18, 105);
|
|
this.oldCheckBox.Name = "oldCheckBox";
|
|
this.oldCheckBox.Size = new System.Drawing.Size(129, 17);
|
|
this.oldCheckBox.TabIndex = 10;
|
|
this.oldCheckBox.Text = "Use RomVault Format";
|
|
this.oldCheckBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// renameCheckBox
|
|
//
|
|
this.renameCheckBox.AutoSize = true;
|
|
this.renameCheckBox.Checked = true;
|
|
this.renameCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.renameCheckBox.Location = new System.Drawing.Point(154, 105);
|
|
this.renameCheckBox.Name = "renameCheckBox";
|
|
this.renameCheckBox.Size = new System.Drawing.Size(102, 17);
|
|
this.renameCheckBox.TabIndex = 11;
|
|
this.renameCheckBox.Text = "Rename Games";
|
|
this.renameCheckBox.UseVisualStyleBackColor = true;
|
|
//
|
|
// SabreToolsUI
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(681, 477);
|
|
this.Controls.Add(this.renameCheckBox);
|
|
this.Controls.Add(this.oldCheckBox);
|
|
this.Controls.Add(this.generateAllButton);
|
|
this.Controls.Add(this.generateButton);
|
|
this.Controls.Add(this.sourcesCheckedListBox);
|
|
this.Controls.Add(this.sourcesLabel);
|
|
this.Controls.Add(this.systemsCheckedListBox);
|
|
this.Controls.Add(this.systemsLabel);
|
|
this.Controls.Add(this.generateDatLabel);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "SabreToolsUI";
|
|
this.Text = "SabreTools UI";
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
|
private System.Windows.Forms.Label generateDatLabel;
|
|
private System.Windows.Forms.Label systemsLabel;
|
|
private System.Windows.Forms.CheckedListBox systemsCheckedListBox;
|
|
private System.Windows.Forms.CheckedListBox sourcesCheckedListBox;
|
|
private System.Windows.Forms.Label sourcesLabel;
|
|
private System.Windows.Forms.Button generateButton;
|
|
private System.Windows.Forms.Button generateAllButton;
|
|
private System.Windows.Forms.CheckBox oldCheckBox;
|
|
private System.Windows.Forms.CheckBox renameCheckBox;
|
|
}
|
|
}
|
|
|