2015-03-20 14:41:20 +00:00
|
|
|
|
namespace ScriptToolGui
|
|
|
|
|
{
|
|
|
|
|
partial class MainForm
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.components = new System.ComponentModel.Container();
|
|
|
|
|
this.mainMenu = new System.Windows.Forms.MenuStrip();
|
2015-03-21 05:25:21 +00:00
|
|
|
|
this.fileMenu = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.saveMenu = new System.Windows.Forms.ToolStripMenuItem();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.topPanel = new System.Windows.Forms.FlowLayoutPanel();
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
|
|
|
this.collectionSelector = new System.Windows.Forms.ComboBox();
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.groupSelector = new System.Windows.Forms.ComboBox();
|
2015-03-21 05:25:21 +00:00
|
|
|
|
this.backButton = new System.Windows.Forms.Button();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainPanel = new System.Windows.Forms.Panel();
|
|
|
|
|
this.mainSplitContainer = new System.Windows.Forms.SplitContainer();
|
|
|
|
|
this.leftSplitContainer = new System.Windows.Forms.SplitContainer();
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.textBoxPanel = new System.Windows.Forms.Panel();
|
|
|
|
|
this.ebString = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.m12String = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.m12StringEnglish = new System.Windows.Forms.TextBox();
|
|
|
|
|
this.lineOpsPanel = new System.Windows.Forms.FlowLayoutPanel();
|
|
|
|
|
this.copyCodesButton = new System.Windows.Forms.Button();
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.previewButton = new System.Windows.Forms.Button();
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer = new System.Windows.Forms.SplitContainer();
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.codeList = new System.Windows.Forms.ListBox();
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
|
|
this.referenceList = new System.Windows.Forms.ListBox();
|
|
|
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
|
|
|
this.gameSelectorPanel = new System.Windows.Forms.FlowLayoutPanel();
|
|
|
|
|
this.ebSelector = new System.Windows.Forms.RadioButton();
|
|
|
|
|
this.m12Selector = new System.Windows.Forms.RadioButton();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.statusBar = new System.Windows.Forms.StatusStrip();
|
2015-03-25 21:19:22 +00:00
|
|
|
|
this.writeLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.writeTimer = new System.Windows.Forms.Timer(this.components);
|
2015-03-25 21:19:22 +00:00
|
|
|
|
this.messageLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.previewer = new ScriptToolGui.StringPreviewer();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainMenu.SuspendLayout();
|
|
|
|
|
this.topPanel.SuspendLayout();
|
|
|
|
|
this.mainPanel.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).BeginInit();
|
|
|
|
|
this.mainSplitContainer.Panel1.SuspendLayout();
|
|
|
|
|
this.mainSplitContainer.Panel2.SuspendLayout();
|
|
|
|
|
this.mainSplitContainer.SuspendLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.leftSplitContainer)).BeginInit();
|
|
|
|
|
this.leftSplitContainer.Panel1.SuspendLayout();
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.leftSplitContainer.Panel2.SuspendLayout();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.leftSplitContainer.SuspendLayout();
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.textBoxPanel.SuspendLayout();
|
|
|
|
|
this.lineOpsPanel.SuspendLayout();
|
2015-03-20 21:40:43 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.codeSplitContainer)).BeginInit();
|
|
|
|
|
this.codeSplitContainer.Panel1.SuspendLayout();
|
|
|
|
|
this.codeSplitContainer.Panel2.SuspendLayout();
|
|
|
|
|
this.codeSplitContainer.SuspendLayout();
|
|
|
|
|
this.gameSelectorPanel.SuspendLayout();
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.statusBar.SuspendLayout();
|
2015-03-20 15:45:34 +00:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// mainMenu
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainMenu.BackColor = System.Drawing.SystemColors.Control;
|
|
|
|
|
this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2015-03-21 05:25:21 +00:00
|
|
|
|
this.fileMenu});
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainMenu.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.mainMenu.Name = "mainMenu";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.mainMenu.Size = new System.Drawing.Size(1026, 24);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainMenu.TabIndex = 8;
|
|
|
|
|
this.mainMenu.Text = "menuStrip1";
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
|
|
|
|
// fileMenu
|
|
|
|
|
//
|
|
|
|
|
this.fileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.saveMenu});
|
|
|
|
|
this.fileMenu.Name = "fileMenu";
|
|
|
|
|
this.fileMenu.Size = new System.Drawing.Size(37, 20);
|
|
|
|
|
this.fileMenu.Text = "File";
|
|
|
|
|
//
|
|
|
|
|
// saveMenu
|
|
|
|
|
//
|
|
|
|
|
this.saveMenu.Name = "saveMenu";
|
|
|
|
|
this.saveMenu.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
|
|
|
|
|
this.saveMenu.Size = new System.Drawing.Size(138, 22);
|
|
|
|
|
this.saveMenu.Text = "Save";
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.saveMenu.Click += new System.EventHandler(this.saveMenu_Click);
|
|
|
|
|
//
|
|
|
|
|
// topPanel
|
|
|
|
|
//
|
|
|
|
|
this.topPanel.AutoSize = true;
|
|
|
|
|
this.topPanel.Controls.Add(this.label1);
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.topPanel.Controls.Add(this.collectionSelector);
|
|
|
|
|
this.topPanel.Controls.Add(this.groupSelector);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.topPanel.Controls.Add(this.backButton);
|
|
|
|
|
this.topPanel.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.topPanel.Location = new System.Drawing.Point(0, 24);
|
|
|
|
|
this.topPanel.Name = "topPanel";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.topPanel.Size = new System.Drawing.Size(1026, 29);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.topPanel.TabIndex = 10;
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
2015-03-25 17:35:12 +00:00
|
|
|
|
// label1
|
|
|
|
|
//
|
|
|
|
|
this.label1.AutoSize = true;
|
|
|
|
|
this.label1.Location = new System.Drawing.Point(3, 8);
|
|
|
|
|
this.label1.Margin = new System.Windows.Forms.Padding(3, 8, 0, 0);
|
|
|
|
|
this.label1.Name = "label1";
|
|
|
|
|
this.label1.Size = new System.Drawing.Size(39, 13);
|
|
|
|
|
this.label1.TabIndex = 13;
|
|
|
|
|
this.label1.Text = "Group:";
|
|
|
|
|
//
|
|
|
|
|
// collectionSelector
|
|
|
|
|
//
|
|
|
|
|
this.collectionSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
|
|
|
this.collectionSelector.FormattingEnabled = true;
|
|
|
|
|
this.collectionSelector.Location = new System.Drawing.Point(45, 4);
|
|
|
|
|
this.collectionSelector.Margin = new System.Windows.Forms.Padding(3, 4, 3, 3);
|
|
|
|
|
this.collectionSelector.Name = "collectionSelector";
|
|
|
|
|
this.collectionSelector.Size = new System.Drawing.Size(157, 21);
|
|
|
|
|
this.collectionSelector.TabIndex = 14;
|
|
|
|
|
this.collectionSelector.SelectionChangeCommitted += new System.EventHandler(this.collectionSelector_SelectionChangeCommitted);
|
|
|
|
|
//
|
2015-03-25 02:02:27 +00:00
|
|
|
|
// groupSelector
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.groupSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
|
|
|
this.groupSelector.FormattingEnabled = true;
|
|
|
|
|
this.groupSelector.Location = new System.Drawing.Point(208, 4);
|
|
|
|
|
this.groupSelector.Margin = new System.Windows.Forms.Padding(3, 4, 3, 3);
|
|
|
|
|
this.groupSelector.Name = "groupSelector";
|
|
|
|
|
this.groupSelector.Size = new System.Drawing.Size(238, 21);
|
|
|
|
|
this.groupSelector.TabIndex = 10;
|
|
|
|
|
this.groupSelector.SelectionChangeCommitted += new System.EventHandler(this.groupSelector_SelectionChangeCommitted);
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
|
|
|
|
// backButton
|
|
|
|
|
//
|
|
|
|
|
this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.backButton.Location = new System.Drawing.Point(452, 3);
|
2015-03-21 05:25:21 +00:00
|
|
|
|
this.backButton.Name = "backButton";
|
|
|
|
|
this.backButton.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.backButton.TabIndex = 12;
|
|
|
|
|
this.backButton.Text = "Back";
|
|
|
|
|
this.backButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.backButton.Click += new System.EventHandler(this.backButton_Click);
|
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// mainPanel
|
2015-03-21 05:25:21 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainPanel.AutoSize = true;
|
|
|
|
|
this.mainPanel.BackColor = System.Drawing.SystemColors.Control;
|
|
|
|
|
this.mainPanel.Controls.Add(this.mainSplitContainer);
|
|
|
|
|
this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.mainPanel.Location = new System.Drawing.Point(0, 53);
|
|
|
|
|
this.mainPanel.Name = "mainPanel";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.mainPanel.Size = new System.Drawing.Size(1026, 667);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainPanel.TabIndex = 11;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// mainSplitContainer
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainSplitContainer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.mainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.mainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
|
|
|
this.mainSplitContainer.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.mainSplitContainer.Name = "mainSplitContainer";
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// mainSplitContainer.Panel1
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainSplitContainer.Panel1.AutoScroll = true;
|
|
|
|
|
this.mainSplitContainer.Panel1.BackColor = System.Drawing.SystemColors.Control;
|
|
|
|
|
this.mainSplitContainer.Panel1.Controls.Add(this.leftSplitContainer);
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// mainSplitContainer.Panel2
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainSplitContainer.Panel2.BackColor = System.Drawing.SystemColors.Control;
|
|
|
|
|
this.mainSplitContainer.Panel2.Controls.Add(this.codeSplitContainer);
|
|
|
|
|
this.mainSplitContainer.Panel2.Controls.Add(this.gameSelectorPanel);
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.mainSplitContainer.Size = new System.Drawing.Size(1026, 667);
|
|
|
|
|
this.mainSplitContainer.SplitterDistance = 800;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.mainSplitContainer.TabIndex = 6;
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// leftSplitContainer
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.leftSplitContainer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.leftSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.leftSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
|
|
|
this.leftSplitContainer.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.leftSplitContainer.Name = "leftSplitContainer";
|
|
|
|
|
this.leftSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
// leftSplitContainer.Panel1
|
2015-03-20 21:40:43 +00:00
|
|
|
|
//
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.leftSplitContainer.Panel1.Controls.Add(this.textBoxPanel);
|
|
|
|
|
this.leftSplitContainer.Panel1.Controls.Add(this.lineOpsPanel);
|
2015-03-25 17:35:12 +00:00
|
|
|
|
//
|
|
|
|
|
// leftSplitContainer.Panel2
|
|
|
|
|
//
|
|
|
|
|
this.leftSplitContainer.Panel2.Controls.Add(this.previewer);
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.leftSplitContainer.Size = new System.Drawing.Size(800, 667);
|
|
|
|
|
this.leftSplitContainer.SplitterDistance = 526;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.leftSplitContainer.TabIndex = 5;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-22 23:55:34 +00:00
|
|
|
|
// textBoxPanel
|
|
|
|
|
//
|
|
|
|
|
this.textBoxPanel.AutoScroll = true;
|
|
|
|
|
this.textBoxPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.textBoxPanel.Controls.Add(this.ebString);
|
|
|
|
|
this.textBoxPanel.Controls.Add(this.m12String);
|
|
|
|
|
this.textBoxPanel.Controls.Add(this.m12StringEnglish);
|
|
|
|
|
this.textBoxPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.textBoxPanel.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.textBoxPanel.Name = "textBoxPanel";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.textBoxPanel.Size = new System.Drawing.Size(796, 489);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.textBoxPanel.TabIndex = 10;
|
|
|
|
|
//
|
|
|
|
|
// ebString
|
|
|
|
|
//
|
|
|
|
|
this.ebString.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2015-03-25 19:06:43 +00:00
|
|
|
|
this.ebString.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.ebString.Location = new System.Drawing.Point(3, 4);
|
|
|
|
|
this.ebString.Multiline = true;
|
|
|
|
|
this.ebString.Name = "ebString";
|
|
|
|
|
this.ebString.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.ebString.Size = new System.Drawing.Size(786, 128);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.ebString.TabIndex = 9;
|
|
|
|
|
//
|
|
|
|
|
// m12String
|
|
|
|
|
//
|
|
|
|
|
this.m12String.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2015-03-25 19:06:43 +00:00
|
|
|
|
this.m12String.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.m12String.Location = new System.Drawing.Point(3, 138);
|
|
|
|
|
this.m12String.Multiline = true;
|
|
|
|
|
this.m12String.Name = "m12String";
|
|
|
|
|
this.m12String.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.m12String.Size = new System.Drawing.Size(786, 128);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.m12String.TabIndex = 10;
|
|
|
|
|
//
|
|
|
|
|
// m12StringEnglish
|
|
|
|
|
//
|
|
|
|
|
this.m12StringEnglish.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2015-03-25 19:06:43 +00:00
|
|
|
|
this.m12StringEnglish.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.m12StringEnglish.Location = new System.Drawing.Point(3, 272);
|
|
|
|
|
this.m12StringEnglish.Multiline = true;
|
|
|
|
|
this.m12StringEnglish.Name = "m12StringEnglish";
|
|
|
|
|
this.m12StringEnglish.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.m12StringEnglish.Size = new System.Drawing.Size(786, 128);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.m12StringEnglish.TabIndex = 11;
|
2015-03-25 21:19:22 +00:00
|
|
|
|
this.m12StringEnglish.MouseClick += new System.Windows.Forms.MouseEventHandler(this.m12StringEnglish_MouseClick);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
//
|
|
|
|
|
// lineOpsPanel
|
|
|
|
|
//
|
|
|
|
|
this.lineOpsPanel.AutoSize = true;
|
|
|
|
|
this.lineOpsPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.lineOpsPanel.Controls.Add(this.copyCodesButton);
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.lineOpsPanel.Controls.Add(this.previewButton);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.lineOpsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.lineOpsPanel.Location = new System.Drawing.Point(0, 489);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.lineOpsPanel.Name = "lineOpsPanel";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.lineOpsPanel.Size = new System.Drawing.Size(796, 33);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.lineOpsPanel.TabIndex = 9;
|
|
|
|
|
//
|
|
|
|
|
// copyCodesButton
|
|
|
|
|
//
|
|
|
|
|
this.copyCodesButton.AutoSize = true;
|
|
|
|
|
this.copyCodesButton.Location = new System.Drawing.Point(3, 3);
|
|
|
|
|
this.copyCodesButton.Name = "copyCodesButton";
|
|
|
|
|
this.copyCodesButton.Size = new System.Drawing.Size(124, 23);
|
|
|
|
|
this.copyCodesButton.TabIndex = 0;
|
|
|
|
|
this.copyCodesButton.Text = "Copy codes and labels";
|
|
|
|
|
this.copyCodesButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.copyCodesButton.Click += new System.EventHandler(this.copyCodesButton_Click);
|
|
|
|
|
//
|
2015-03-25 17:35:12 +00:00
|
|
|
|
// previewButton
|
|
|
|
|
//
|
|
|
|
|
this.previewButton.Location = new System.Drawing.Point(133, 3);
|
|
|
|
|
this.previewButton.Name = "previewButton";
|
|
|
|
|
this.previewButton.Size = new System.Drawing.Size(75, 23);
|
|
|
|
|
this.previewButton.TabIndex = 1;
|
|
|
|
|
this.previewButton.Text = "Preview";
|
|
|
|
|
this.previewButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.previewButton.Click += new System.EventHandler(this.previewButton_Click);
|
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// codeSplitContainer
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.codeSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.codeSplitContainer.Location = new System.Drawing.Point(0, 33);
|
|
|
|
|
this.codeSplitContainer.Name = "codeSplitContainer";
|
|
|
|
|
this.codeSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// codeSplitContainer.Panel1
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer.Panel1.Controls.Add(this.codeList);
|
|
|
|
|
this.codeSplitContainer.Panel1.Controls.Add(this.label2);
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// codeSplitContainer.Panel2
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer.Panel2.Controls.Add(this.referenceList);
|
|
|
|
|
this.codeSplitContainer.Panel2.Controls.Add(this.label3);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.codeSplitContainer.Size = new System.Drawing.Size(222, 634);
|
|
|
|
|
this.codeSplitContainer.SplitterDistance = 292;
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer.TabIndex = 1;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-25 02:02:27 +00:00
|
|
|
|
// codeList
|
|
|
|
|
//
|
|
|
|
|
this.codeList.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.codeList.FormattingEnabled = true;
|
|
|
|
|
this.codeList.HorizontalScrollbar = true;
|
|
|
|
|
this.codeList.Location = new System.Drawing.Point(0, 19);
|
|
|
|
|
this.codeList.Name = "codeList";
|
|
|
|
|
this.codeList.Size = new System.Drawing.Size(218, 269);
|
|
|
|
|
this.codeList.TabIndex = 3;
|
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// label2
|
|
|
|
|
//
|
|
|
|
|
this.label2.AutoSize = true;
|
|
|
|
|
this.label2.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.label2.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.label2.Margin = new System.Windows.Forms.Padding(0);
|
|
|
|
|
this.label2.Name = "label2";
|
|
|
|
|
this.label2.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
|
this.label2.Size = new System.Drawing.Size(46, 19);
|
|
|
|
|
this.label2.TabIndex = 0;
|
|
|
|
|
this.label2.Text = "Codes:";
|
|
|
|
|
//
|
|
|
|
|
// referenceList
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.referenceList.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.referenceList.FormattingEnabled = true;
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.referenceList.HorizontalScrollbar = true;
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.referenceList.Location = new System.Drawing.Point(0, 19);
|
|
|
|
|
this.referenceList.Name = "referenceList";
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.referenceList.Size = new System.Drawing.Size(218, 315);
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.referenceList.TabIndex = 2;
|
|
|
|
|
this.referenceList.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.referenceList_MouseDoubleClick);
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// label3
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.label3.AutoSize = true;
|
|
|
|
|
this.label3.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.label3.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.label3.Name = "label3";
|
|
|
|
|
this.label3.Padding = new System.Windows.Forms.Padding(3);
|
|
|
|
|
this.label3.Size = new System.Drawing.Size(71, 19);
|
|
|
|
|
this.label3.TabIndex = 1;
|
|
|
|
|
this.label3.Text = "References:";
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// gameSelectorPanel
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.gameSelectorPanel.AutoSize = true;
|
|
|
|
|
this.gameSelectorPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
|
|
|
this.gameSelectorPanel.Controls.Add(this.ebSelector);
|
|
|
|
|
this.gameSelectorPanel.Controls.Add(this.m12Selector);
|
|
|
|
|
this.gameSelectorPanel.Dock = System.Windows.Forms.DockStyle.Top;
|
|
|
|
|
this.gameSelectorPanel.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.gameSelectorPanel.Name = "gameSelectorPanel";
|
|
|
|
|
this.gameSelectorPanel.Size = new System.Drawing.Size(222, 33);
|
|
|
|
|
this.gameSelectorPanel.TabIndex = 0;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// ebSelector
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.ebSelector.Appearance = System.Windows.Forms.Appearance.Button;
|
|
|
|
|
this.ebSelector.Location = new System.Drawing.Point(3, 3);
|
|
|
|
|
this.ebSelector.Name = "ebSelector";
|
|
|
|
|
this.ebSelector.Size = new System.Drawing.Size(64, 23);
|
|
|
|
|
this.ebSelector.TabIndex = 0;
|
|
|
|
|
this.ebSelector.Text = "EB";
|
|
|
|
|
this.ebSelector.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
|
|
|
this.ebSelector.UseVisualStyleBackColor = true;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.ebSelector.CheckedChanged += new System.EventHandler(this.gameSelector_CheckedChanged);
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
// m12Selector
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.m12Selector.Appearance = System.Windows.Forms.Appearance.Button;
|
|
|
|
|
this.m12Selector.Checked = true;
|
|
|
|
|
this.m12Selector.Location = new System.Drawing.Point(73, 3);
|
|
|
|
|
this.m12Selector.Name = "m12Selector";
|
|
|
|
|
this.m12Selector.Size = new System.Drawing.Size(64, 23);
|
|
|
|
|
this.m12Selector.TabIndex = 1;
|
|
|
|
|
this.m12Selector.TabStop = true;
|
|
|
|
|
this.m12Selector.Text = "M12";
|
|
|
|
|
this.m12Selector.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
|
|
|
this.m12Selector.UseVisualStyleBackColor = true;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.m12Selector.CheckedChanged += new System.EventHandler(this.gameSelector_CheckedChanged);
|
|
|
|
|
//
|
|
|
|
|
// statusBar
|
|
|
|
|
//
|
|
|
|
|
this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2015-03-25 21:19:22 +00:00
|
|
|
|
this.writeLabel,
|
|
|
|
|
this.messageLabel});
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.statusBar.Location = new System.Drawing.Point(0, 720);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.statusBar.Name = "statusBar";
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.statusBar.Size = new System.Drawing.Size(1026, 22);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.statusBar.TabIndex = 7;
|
|
|
|
|
this.statusBar.Text = "statusStrip1";
|
|
|
|
|
//
|
2015-03-25 21:19:22 +00:00
|
|
|
|
// writeLabel
|
2015-03-21 20:47:30 +00:00
|
|
|
|
//
|
2015-03-25 21:19:22 +00:00
|
|
|
|
this.writeLabel.Name = "writeLabel";
|
|
|
|
|
this.writeLabel.Size = new System.Drawing.Size(0, 17);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
//
|
|
|
|
|
// writeTimer
|
|
|
|
|
//
|
|
|
|
|
this.writeTimer.Enabled = true;
|
|
|
|
|
this.writeTimer.Interval = 10000;
|
|
|
|
|
this.writeTimer.Tick += new System.EventHandler(this.writeTimer_Tick);
|
|
|
|
|
//
|
2015-03-25 21:19:22 +00:00
|
|
|
|
// messageLabel
|
|
|
|
|
//
|
|
|
|
|
this.messageLabel.BackColor = System.Drawing.SystemColors.Highlight;
|
|
|
|
|
this.messageLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
|
|
|
|
this.messageLabel.Name = "messageLabel";
|
|
|
|
|
this.messageLabel.Size = new System.Drawing.Size(0, 17);
|
|
|
|
|
//
|
2015-03-25 17:35:12 +00:00
|
|
|
|
// previewer
|
2015-03-21 20:47:30 +00:00
|
|
|
|
//
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.previewer.AutoScroll = true;
|
|
|
|
|
this.previewer.CharLookup = null;
|
|
|
|
|
this.previewer.DisplayedString = null;
|
|
|
|
|
this.previewer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.previewer.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.previewer.M12Compiler = null;
|
2015-03-25 19:06:43 +00:00
|
|
|
|
this.previewer.MaxWidth = 0;
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.previewer.Name = "previewer";
|
|
|
|
|
this.previewer.Size = new System.Drawing.Size(796, 133);
|
|
|
|
|
this.previewer.TabIndex = 0;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
//
|
|
|
|
|
// MainForm
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
2015-03-20 14:41:20 +00:00
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(1026, 742);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.Controls.Add(this.mainPanel);
|
|
|
|
|
this.Controls.Add(this.topPanel);
|
|
|
|
|
this.Controls.Add(this.mainMenu);
|
|
|
|
|
this.Controls.Add(this.statusBar);
|
|
|
|
|
this.MainMenuStrip = this.mainMenu;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
this.Name = "MainForm";
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
2015-03-20 15:45:34 +00:00
|
|
|
|
this.Text = "MOTHER 1+2 Funland";
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|
|
|
|
this.mainMenu.ResumeLayout(false);
|
|
|
|
|
this.mainMenu.PerformLayout();
|
|
|
|
|
this.topPanel.ResumeLayout(false);
|
|
|
|
|
this.topPanel.PerformLayout();
|
|
|
|
|
this.mainPanel.ResumeLayout(false);
|
|
|
|
|
this.mainSplitContainer.Panel1.ResumeLayout(false);
|
|
|
|
|
this.mainSplitContainer.Panel2.ResumeLayout(false);
|
|
|
|
|
this.mainSplitContainer.Panel2.PerformLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();
|
|
|
|
|
this.mainSplitContainer.ResumeLayout(false);
|
|
|
|
|
this.leftSplitContainer.Panel1.ResumeLayout(false);
|
|
|
|
|
this.leftSplitContainer.Panel1.PerformLayout();
|
2015-03-25 17:35:12 +00:00
|
|
|
|
this.leftSplitContainer.Panel2.ResumeLayout(false);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.leftSplitContainer)).EndInit();
|
|
|
|
|
this.leftSplitContainer.ResumeLayout(false);
|
2015-03-22 23:55:34 +00:00
|
|
|
|
this.textBoxPanel.ResumeLayout(false);
|
|
|
|
|
this.textBoxPanel.PerformLayout();
|
|
|
|
|
this.lineOpsPanel.ResumeLayout(false);
|
|
|
|
|
this.lineOpsPanel.PerformLayout();
|
2015-03-20 21:40:43 +00:00
|
|
|
|
this.codeSplitContainer.Panel1.ResumeLayout(false);
|
|
|
|
|
this.codeSplitContainer.Panel1.PerformLayout();
|
|
|
|
|
this.codeSplitContainer.Panel2.ResumeLayout(false);
|
|
|
|
|
this.codeSplitContainer.Panel2.PerformLayout();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.codeSplitContainer)).EndInit();
|
|
|
|
|
this.codeSplitContainer.ResumeLayout(false);
|
|
|
|
|
this.gameSelectorPanel.ResumeLayout(false);
|
2015-03-21 20:47:30 +00:00
|
|
|
|
this.statusBar.ResumeLayout(false);
|
|
|
|
|
this.statusBar.PerformLayout();
|
2015-03-20 15:45:34 +00:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
2015-03-20 14:41:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2015-03-20 15:45:34 +00:00
|
|
|
|
|
2015-03-21 20:47:30 +00:00
|
|
|
|
private System.Windows.Forms.MenuStrip mainMenu;
|
2015-03-21 05:25:21 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem fileMenu;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem saveMenu;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel topPanel;
|
2015-03-21 05:25:21 +00:00
|
|
|
|
private System.Windows.Forms.Button backButton;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
private System.Windows.Forms.ComboBox groupSelector;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
private System.Windows.Forms.Panel mainPanel;
|
|
|
|
|
private System.Windows.Forms.SplitContainer mainSplitContainer;
|
|
|
|
|
private System.Windows.Forms.SplitContainer leftSplitContainer;
|
2015-03-20 21:40:43 +00:00
|
|
|
|
private System.Windows.Forms.SplitContainer codeSplitContainer;
|
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
|
|
private System.Windows.Forms.ListBox referenceList;
|
|
|
|
|
private System.Windows.Forms.Label label3;
|
2015-03-21 05:25:21 +00:00
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel gameSelectorPanel;
|
|
|
|
|
private System.Windows.Forms.RadioButton ebSelector;
|
|
|
|
|
private System.Windows.Forms.RadioButton m12Selector;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
private System.Windows.Forms.StatusStrip statusBar;
|
2015-03-25 21:19:22 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel writeLabel;
|
2015-03-21 20:47:30 +00:00
|
|
|
|
private System.Windows.Forms.Timer writeTimer;
|
|
|
|
|
private System.Windows.Forms.Panel textBoxPanel;
|
|
|
|
|
private System.Windows.Forms.TextBox ebString;
|
|
|
|
|
private System.Windows.Forms.TextBox m12String;
|
|
|
|
|
private System.Windows.Forms.TextBox m12StringEnglish;
|
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel lineOpsPanel;
|
|
|
|
|
private System.Windows.Forms.Button copyCodesButton;
|
2015-03-22 23:55:34 +00:00
|
|
|
|
private System.Windows.Forms.ListBox codeList;
|
2015-03-25 02:02:27 +00:00
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
|
|
|
private System.Windows.Forms.ComboBox collectionSelector;
|
|
|
|
|
private System.Windows.Forms.Button previewButton;
|
2015-03-25 17:35:12 +00:00
|
|
|
|
private StringPreviewer previewer;
|
2015-03-25 21:19:22 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripStatusLabel messageLabel;
|
2015-03-20 14:41:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|