215 lines
11 KiB
C#
215 lines
11 KiB
C#
namespace Engine
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.mainLayout = new System.Windows.Forms.TableLayoutPanel();
|
|
this.ExpressionBreakdownListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.StepsListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.SymbolsListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.ActionsListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.mainLayout.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(921, 33);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(447, 26);
|
|
this.textBox1.TabIndex = 0;
|
|
this.textBox1.Text = "2 * 5 / 2(1 + 2)";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(921, 758);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(155, 92);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.Text = "button1";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.Button1_Click);
|
|
//
|
|
// mainLayout
|
|
//
|
|
this.mainLayout.ColumnCount = 3;
|
|
this.mainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
|
this.mainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34F));
|
|
this.mainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
|
this.mainLayout.Controls.Add(this.button1, 2, 3);
|
|
this.mainLayout.Controls.Add(this.textBox1, 2, 1);
|
|
this.mainLayout.Controls.Add(this.ExpressionBreakdownListView, 0, 1);
|
|
this.mainLayout.Controls.Add(this.StepsListView, 1, 1);
|
|
this.mainLayout.Controls.Add(this.SymbolsListView, 0, 3);
|
|
this.mainLayout.Controls.Add(this.ActionsListView, 1, 3);
|
|
this.mainLayout.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.mainLayout.Location = new System.Drawing.Point(0, 0);
|
|
this.mainLayout.Name = "mainLayout";
|
|
this.mainLayout.RowCount = 4;
|
|
this.mainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
|
|
this.mainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
|
this.mainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 34F));
|
|
this.mainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
|
this.mainLayout.Size = new System.Drawing.Size(1371, 1113);
|
|
this.mainLayout.TabIndex = 3;
|
|
//
|
|
// ExpressionBreakdownListView
|
|
//
|
|
this.ExpressionBreakdownListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1,
|
|
this.columnHeader2});
|
|
this.ExpressionBreakdownListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.ExpressionBreakdownListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
this.ExpressionBreakdownListView.HideSelection = false;
|
|
this.ExpressionBreakdownListView.Location = new System.Drawing.Point(3, 33);
|
|
this.ExpressionBreakdownListView.Name = "ExpressionBreakdownListView";
|
|
this.mainLayout.SetRowSpan(this.ExpressionBreakdownListView, 2);
|
|
this.ExpressionBreakdownListView.Size = new System.Drawing.Size(446, 719);
|
|
this.ExpressionBreakdownListView.TabIndex = 3;
|
|
this.ExpressionBreakdownListView.UseCompatibleStateImageBehavior = false;
|
|
this.ExpressionBreakdownListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "Value";
|
|
this.columnHeader1.Width = 100;
|
|
//
|
|
// columnHeader2
|
|
//
|
|
this.columnHeader2.Text = "Token Type";
|
|
this.columnHeader2.Width = 150;
|
|
//
|
|
// StepsListView
|
|
//
|
|
this.StepsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader3,
|
|
this.columnHeader4});
|
|
this.StepsListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.StepsListView.HideSelection = false;
|
|
this.StepsListView.Location = new System.Drawing.Point(455, 33);
|
|
this.StepsListView.Name = "StepsListView";
|
|
this.mainLayout.SetRowSpan(this.StepsListView, 2);
|
|
this.StepsListView.Size = new System.Drawing.Size(460, 719);
|
|
this.StepsListView.TabIndex = 4;
|
|
this.StepsListView.UseCompatibleStateImageBehavior = false;
|
|
this.StepsListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader3
|
|
//
|
|
this.columnHeader3.Text = "Step";
|
|
this.columnHeader3.Width = 100;
|
|
//
|
|
// columnHeader4
|
|
//
|
|
this.columnHeader4.Text = "Expression";
|
|
this.columnHeader4.Width = 300;
|
|
//
|
|
// SymbolsListView
|
|
//
|
|
this.SymbolsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader5,
|
|
this.columnHeader6});
|
|
this.SymbolsListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.SymbolsListView.HideSelection = false;
|
|
this.SymbolsListView.Location = new System.Drawing.Point(3, 758);
|
|
this.SymbolsListView.Name = "SymbolsListView";
|
|
this.SymbolsListView.Size = new System.Drawing.Size(446, 352);
|
|
this.SymbolsListView.TabIndex = 5;
|
|
this.SymbolsListView.UseCompatibleStateImageBehavior = false;
|
|
this.SymbolsListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader5
|
|
//
|
|
this.columnHeader5.Text = "Symbol";
|
|
this.columnHeader5.Width = 150;
|
|
//
|
|
// columnHeader6
|
|
//
|
|
this.columnHeader6.Text = "Ref Count";
|
|
this.columnHeader6.Width = 150;
|
|
//
|
|
// ActionsListView
|
|
//
|
|
this.ActionsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader7});
|
|
this.ActionsListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.ActionsListView.HideSelection = false;
|
|
this.ActionsListView.Location = new System.Drawing.Point(455, 758);
|
|
this.ActionsListView.Name = "ActionsListView";
|
|
this.ActionsListView.Size = new System.Drawing.Size(460, 352);
|
|
this.ActionsListView.TabIndex = 6;
|
|
this.ActionsListView.UseCompatibleStateImageBehavior = false;
|
|
this.ActionsListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader7
|
|
//
|
|
this.columnHeader7.Text = "Action";
|
|
this.columnHeader7.Width = 250;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1371, 1113);
|
|
this.Controls.Add(this.mainLayout);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.mainLayout.ResumeLayout(false);
|
|
this.mainLayout.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TableLayoutPanel mainLayout;
|
|
private System.Windows.Forms.ListView ExpressionBreakdownListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
private System.Windows.Forms.ListView StepsListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
|
private System.Windows.Forms.ColumnHeader columnHeader4;
|
|
private System.Windows.Forms.ListView SymbolsListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader5;
|
|
private System.Windows.Forms.ColumnHeader columnHeader6;
|
|
private System.Windows.Forms.ListView ActionsListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader7;
|
|
}
|
|
}
|
|
|