1
0
mirror of synced 2024-09-24 03:28:21 +02:00
Switch-Toolbox/File_Format_Library/GUI/Byaml/ByamlEditor.Designer.cs
KillzXGaming c922ff1e4f Big BYAML and AAMP update!
- AAMP can now save back to YAML!
- Added text editor for AAMP editor
- AAMP library has been improved signifcantly, now using one library for all versions.
- BYAML now uses YAML by default. You can still right click in the editor and export as XML if needed.
- BYAML saving speed improved signifcantly.
- BYAML now supports reference nodes and works with 3DW byml files.
- BYAML can now load shift JIS encoding for japanese characters.
- YAML syntax for text editor improved with proper folding and highlighting for certain values.
2020-02-06 18:20:42 -05:00

423 lines
22 KiB
C#

namespace FirstPlugin
{
partial class ByamlEditor
{
/// <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.components = new System.ComponentModel.Container();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.CopyNode = new System.Windows.Forms.ToolStripMenuItem();
this.addNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editValueNodeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportJsonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.importFromXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.stPanel1 = new Toolbox.Library.Forms.STPanel();
this.stTabControl1 = new Toolbox.Library.Forms.STTabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.treeView1 = new System.Windows.Forms.TreeView();
this.listViewCustom1 = new Toolbox.Library.Forms.ListViewCustom();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tabPage2 = new System.Windows.Forms.TabPage();
this.stPanel4 = new Toolbox.Library.Forms.STPanel();
this.stPanel3 = new Toolbox.Library.Forms.STPanel();
this.stPanel2 = new Toolbox.Library.Forms.STPanel();
this.stContextMenuStrip1 = new Toolbox.Library.Forms.STContextMenuStrip(this.components);
this.addItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.copyDataAsTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.chkShiftJISEncoding = new Toolbox.Library.Forms.STCheckBox();
this.contextMenuStrip1.SuspendLayout();
this.stPanel1.SuspendLayout();
this.stTabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.stContextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CopyNode,
this.addNodeToolStripMenuItem,
this.editValueNodeMenuItem,
this.deleteNodeToolStripMenuItem,
this.exportJsonToolStripMenuItem,
this.importFromXmlToolStripMenuItem,
this.toolStripSeparator1,
this.saveAsToolStripMenuItem,
this.saveToolStripMenuItem,
this.toolStripSeparator2});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(170, 192);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuOpening);
//
// CopyNode
//
this.CopyNode.Name = "CopyNode";
this.CopyNode.Size = new System.Drawing.Size(169, 22);
this.CopyNode.Text = "Copy node as text";
this.CopyNode.Click += new System.EventHandler(this.CopyNode_Click);
//
// addNodeToolStripMenuItem
//
this.addNodeToolStripMenuItem.Name = "addNodeToolStripMenuItem";
this.addNodeToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.addNodeToolStripMenuItem.Text = "Add Node";
this.addNodeToolStripMenuItem.Click += new System.EventHandler(this.addNodeToolStripMenuItem_Click);
//
// editValueNodeMenuItem
//
this.editValueNodeMenuItem.Name = "editValueNodeMenuItem";
this.editValueNodeMenuItem.Size = new System.Drawing.Size(169, 22);
this.editValueNodeMenuItem.Text = "Edit value";
this.editValueNodeMenuItem.Click += new System.EventHandler(this.editValueNodeMenuItem_Click);
//
// deleteNodeToolStripMenuItem
//
this.deleteNodeToolStripMenuItem.Name = "deleteNodeToolStripMenuItem";
this.deleteNodeToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.deleteNodeToolStripMenuItem.Text = "Delete node";
this.deleteNodeToolStripMenuItem.Click += new System.EventHandler(this.deleteNodeToolStripMenuItem_Click);
//
// exportJsonToolStripMenuItem
//
this.exportJsonToolStripMenuItem.Name = "exportJsonToolStripMenuItem";
this.exportJsonToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.exportJsonToolStripMenuItem.Text = "Export";
this.exportJsonToolStripMenuItem.Click += new System.EventHandler(this.exportJsonToolStripMenuItem_Click);
//
// importFromXmlToolStripMenuItem
//
this.importFromXmlToolStripMenuItem.Name = "importFromXmlToolStripMenuItem";
this.importFromXmlToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.importFromXmlToolStripMenuItem.Text = "Import";
this.importFromXmlToolStripMenuItem.Click += new System.EventHandler(this.importFromXmlToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(166, 6);
//
// saveAsToolStripMenuItem
//
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.saveAsToolStripMenuItem.Text = "Save as..";
this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.saveToolStripMenuItem.Text = "Save";
this.saveToolStripMenuItem.Visible = false;
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(166, 6);
//
// stPanel1
//
this.stPanel1.Controls.Add(this.chkShiftJISEncoding);
this.stPanel1.Controls.Add(this.stTabControl1);
this.stPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.stPanel1.Location = new System.Drawing.Point(0, 0);
this.stPanel1.Name = "stPanel1";
this.stPanel1.Size = new System.Drawing.Size(549, 398);
this.stPanel1.TabIndex = 15;
//
// stTabControl1
//
this.stTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.stTabControl1.Controls.Add(this.tabPage1);
this.stTabControl1.Controls.Add(this.tabPage2);
this.stTabControl1.Location = new System.Drawing.Point(0, 20);
this.stTabControl1.myBackColor = System.Drawing.Color.Empty;
this.stTabControl1.Name = "stTabControl1";
this.stTabControl1.SelectedIndex = 0;
this.stTabControl1.Size = new System.Drawing.Size(549, 378);
this.stTabControl1.TabIndex = 15;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.splitContainer1);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(541, 349);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Editor";
this.tabPage1.UseVisualStyleBackColor = true;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(3, 3);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.listViewCustom1);
this.splitContainer1.Size = new System.Drawing.Size(535, 343);
this.splitContainer1.SplitterDistance = 178;
this.splitContainer1.TabIndex = 14;
//
// treeView1
//
this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.treeView1.ContextMenuStrip = this.contextMenuStrip1;
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Location = new System.Drawing.Point(0, 0);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(178, 343);
this.treeView1.TabIndex = 0;
this.treeView1.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.BeforeExpand);
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_MouseClick);
//
// listViewCustom1
//
this.listViewCustom1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.listViewCustom1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.listViewCustom1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listViewCustom1.FullRowSelect = true;
this.listViewCustom1.HideSelection = false;
this.listViewCustom1.Location = new System.Drawing.Point(0, 0);
this.listViewCustom1.Name = "listViewCustom1";
this.listViewCustom1.OwnerDraw = true;
this.listViewCustom1.Size = new System.Drawing.Size(353, 343);
this.listViewCustom1.TabIndex = 0;
this.listViewCustom1.UseCompatibleStateImageBehavior = false;
this.listViewCustom1.View = System.Windows.Forms.View.Details;
this.listViewCustom1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listViewCustom1_MouseClick);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 114;
//
// columnHeader2
//
this.columnHeader2.Text = "Type";
this.columnHeader2.Width = 93;
//
// columnHeader3
//
this.columnHeader3.Text = "Data";
this.columnHeader3.Width = 146;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.stPanel4);
this.tabPage2.Controls.Add(this.stPanel3);
this.tabPage2.Controls.Add(this.stPanel2);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(541, 369);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Text Editor";
this.tabPage2.UseVisualStyleBackColor = true;
//
// stPanel4
//
this.stPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.stPanel4.Location = new System.Drawing.Point(3, 3);
this.stPanel4.Name = "stPanel4";
this.stPanel4.Size = new System.Drawing.Size(535, 363);
this.stPanel4.TabIndex = 4;
//
// stPanel3
//
this.stPanel3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.stPanel3.Location = new System.Drawing.Point(15, 35);
this.stPanel3.Name = "stPanel3";
this.stPanel3.Size = new System.Drawing.Size(0, 0);
this.stPanel3.TabIndex = 3;
//
// stPanel2
//
this.stPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.stPanel2.Location = new System.Drawing.Point(6, 35);
this.stPanel2.Name = "stPanel2";
this.stPanel2.Size = new System.Drawing.Size(0, 0);
this.stPanel2.TabIndex = 1;
//
// stContextMenuStrip1
//
this.stContextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.addItemToolStripMenuItem,
this.editToolStripMenuItem,
this.renameToolStripMenuItem,
this.deleteToolStripMenuItem,
this.copyToolStripMenuItem,
this.copyDataAsTextToolStripMenuItem});
this.stContextMenuStrip1.Name = "stContextMenuStrip1";
this.stContextMenuStrip1.Size = new System.Drawing.Size(167, 136);
//
// addItemToolStripMenuItem
//
this.addItemToolStripMenuItem.Name = "addItemToolStripMenuItem";
this.addItemToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.addItemToolStripMenuItem.Text = "Add Item";
this.addItemToolStripMenuItem.Click += new System.EventHandler(this.addNodeToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.editToolStripMenuItem.Text = "Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editValueNodeMenuItem_Click);
//
// renameToolStripMenuItem
//
this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
this.renameToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.renameToolStripMenuItem.Text = "Rename";
this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.deleteToolStripMenuItem.Text = "Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.copyToolStripMenuItem.Text = "Copy item as text";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
// copyDataAsTextToolStripMenuItem
//
this.copyDataAsTextToolStripMenuItem.Name = "copyDataAsTextToolStripMenuItem";
this.copyDataAsTextToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
this.copyDataAsTextToolStripMenuItem.Text = "Copy data as text";
this.copyDataAsTextToolStripMenuItem.Click += new System.EventHandler(this.copyDataAsTextToolStripMenuItem_Click);
//
// chkShiftJISEncoding
//
this.chkShiftJISEncoding.AutoSize = true;
this.chkShiftJISEncoding.Location = new System.Drawing.Point(7, 3);
this.chkShiftJISEncoding.Name = "chkShiftJISEncoding";
this.chkShiftJISEncoding.Size = new System.Drawing.Size(135, 17);
this.chkShiftJISEncoding.TabIndex = 1;
this.chkShiftJISEncoding.Text = "Use Shift JIS Encoding";
this.chkShiftJISEncoding.UseVisualStyleBackColor = true;
this.chkShiftJISEncoding.CheckedChanged += new System.EventHandler(this.chkShiftJISEncoding_CheckedChanged);
//
// ByamlEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.stPanel1);
this.Name = "ByamlEditor";
this.Size = new System.Drawing.Size(549, 398);
this.Load += new System.EventHandler(this.ByamlViewer_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.stPanel1.ResumeLayout(false);
this.stPanel1.PerformLayout();
this.stTabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.stContextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem CopyNode;
private System.Windows.Forms.ToolStripMenuItem exportJsonToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem editValueNodeMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem addNodeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem deleteNodeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem importFromXmlToolStripMenuItem;
private Toolbox.Library.Forms.ListViewCustom listViewCustom1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.SplitContainer splitContainer1;
private Toolbox.Library.Forms.STPanel stPanel1;
private Toolbox.Library.Forms.STContextMenuStrip stContextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem renameToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem addItemToolStripMenuItem;
private Toolbox.Library.Forms.STTabControl stTabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private Toolbox.Library.Forms.STPanel stPanel2;
private System.Windows.Forms.ToolStripMenuItem copyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem copyDataAsTextToolStripMenuItem;
private Toolbox.Library.Forms.STPanel stPanel3;
private Toolbox.Library.Forms.STPanel stPanel4;
private Toolbox.Library.Forms.STCheckBox chkShiftJISEncoding;
}
}