1 |
|
---|
2 | using System.Drawing;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
5 | partial class StructureTemplateView {
|
---|
6 | /// <summary>
|
---|
7 | /// Required designer variable.
|
---|
8 | /// </summary>
|
---|
9 | private System.ComponentModel.IContainer components = null;
|
---|
10 |
|
---|
11 | /// <summary>
|
---|
12 | /// Clean up any resources being used.
|
---|
13 | /// </summary>
|
---|
14 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
15 | protected override void Dispose(bool disposing) {
|
---|
16 | if (disposing && (components != null)) {
|
---|
17 | components.Dispose();
|
---|
18 | }
|
---|
19 | base.Dispose(disposing);
|
---|
20 | }
|
---|
21 |
|
---|
22 | #region Component Designer generated code
|
---|
23 |
|
---|
24 | /// <summary>
|
---|
25 | /// Required method for Designer support - do not modify
|
---|
26 | /// the contents of this method with the code editor.
|
---|
27 | /// </summary>
|
---|
28 | private void InitializeComponent() {
|
---|
29 | this.components = new System.ComponentModel.Container();
|
---|
30 | this.expressionInput = new System.Windows.Forms.TextBox();
|
---|
31 | this.parseButton = new System.Windows.Forms.Button();
|
---|
32 | this.infoLabel = new System.Windows.Forms.Label();
|
---|
33 | this.templateStructureGroupBox = new System.Windows.Forms.GroupBox();
|
---|
34 | this.linearScalingCheckBox = new System.Windows.Forms.CheckBox();
|
---|
35 | this.treeChart = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart();
|
---|
36 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
37 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
38 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
39 | this.templateStructureGroupBox.SuspendLayout();
|
---|
40 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
41 | this.splitContainer.Panel1.SuspendLayout();
|
---|
42 | this.splitContainer.Panel2.SuspendLayout();
|
---|
43 | this.splitContainer.SuspendLayout();
|
---|
44 | this.detailsGroupBox.SuspendLayout();
|
---|
45 | this.SuspendLayout();
|
---|
46 | //
|
---|
47 | // expressionInput
|
---|
48 | //
|
---|
49 | this.expressionInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
50 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
51 | this.expressionInput.Location = new System.Drawing.Point(3, 19);
|
---|
52 | this.expressionInput.Name = "expressionInput";
|
---|
53 | this.expressionInput.Size = new System.Drawing.Size(291, 20);
|
---|
54 | this.expressionInput.TabIndex = 1;
|
---|
55 | this.expressionInput.TextChanged += new System.EventHandler(this.ExpressionInputTextChanged);
|
---|
56 | this.expressionInput.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ExpressionInputKeyUp);
|
---|
57 | //
|
---|
58 | // parseButton
|
---|
59 | //
|
---|
60 | this.parseButton.Location = new System.Drawing.Point(3, 45);
|
---|
61 | this.parseButton.Name = "parseButton";
|
---|
62 | this.parseButton.Size = new System.Drawing.Size(140, 23);
|
---|
63 | this.parseButton.TabIndex = 3;
|
---|
64 | this.parseButton.Text = "Parse";
|
---|
65 | this.parseButton.UseVisualStyleBackColor = true;
|
---|
66 | this.parseButton.Click += new System.EventHandler(this.ParseButtonClick);
|
---|
67 | //
|
---|
68 | // infoLabel
|
---|
69 | //
|
---|
70 | this.infoLabel.AutoSize = true;
|
---|
71 | this.infoLabel.BackColor = System.Drawing.Color.White;
|
---|
72 | this.infoLabel.Location = new System.Drawing.Point(3, 74);
|
---|
73 | this.infoLabel.Name = "infoLabel";
|
---|
74 | this.infoLabel.Size = new System.Drawing.Size(54, 13);
|
---|
75 | this.infoLabel.TabIndex = 4;
|
---|
76 | this.infoLabel.Text = "errorLabel";
|
---|
77 | //
|
---|
78 | // templateStructureGroupBox
|
---|
79 | //
|
---|
80 | this.templateStructureGroupBox.Controls.Add(this.linearScalingCheckBox);
|
---|
81 | this.templateStructureGroupBox.Controls.Add(this.infoLabel);
|
---|
82 | this.templateStructureGroupBox.Controls.Add(this.treeChart);
|
---|
83 | this.templateStructureGroupBox.Controls.Add(this.parseButton);
|
---|
84 | this.templateStructureGroupBox.Controls.Add(this.expressionInput);
|
---|
85 | this.templateStructureGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
86 | this.templateStructureGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
87 | this.templateStructureGroupBox.Name = "templateStructureGroupBox";
|
---|
88 | this.templateStructureGroupBox.Size = new System.Drawing.Size(300, 400);
|
---|
89 | this.templateStructureGroupBox.TabIndex = 8;
|
---|
90 | this.templateStructureGroupBox.TabStop = false;
|
---|
91 | this.templateStructureGroupBox.Text = "Template Structure";
|
---|
92 | //
|
---|
93 | // linearScalingCheckBox
|
---|
94 | //
|
---|
95 | this.linearScalingCheckBox.AutoSize = true;
|
---|
96 | this.linearScalingCheckBox.Location = new System.Drawing.Point(149, 49);
|
---|
97 | this.linearScalingCheckBox.Name = "linearScalingCheckBox";
|
---|
98 | this.linearScalingCheckBox.Size = new System.Drawing.Size(122, 17);
|
---|
99 | this.linearScalingCheckBox.TabIndex = 8;
|
---|
100 | this.linearScalingCheckBox.Text = "Apply Linear Scaling";
|
---|
101 | this.linearScalingCheckBox.UseVisualStyleBackColor = true;
|
---|
102 | this.linearScalingCheckBox.CheckStateChanged += new System.EventHandler(this.LinearScalingCheckBoxCheckStateChanged);
|
---|
103 | //
|
---|
104 | // treeChart
|
---|
105 | //
|
---|
106 | this.treeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
107 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
108 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
109 | this.treeChart.BackgroundColor = System.Drawing.Color.White;
|
---|
110 | this.treeChart.LineColor = System.Drawing.Color.Black;
|
---|
111 | this.treeChart.Location = new System.Drawing.Point(3, 74);
|
---|
112 | this.treeChart.MinimumHorizontalDistance = 30;
|
---|
113 | this.treeChart.MinimumHorizontalPadding = 20;
|
---|
114 | this.treeChart.MinimumVerticalDistance = 30;
|
---|
115 | this.treeChart.MinimumVerticalPadding = 20;
|
---|
116 | this.treeChart.Name = "treeChart";
|
---|
117 | this.treeChart.PreferredNodeHeight = 46;
|
---|
118 | this.treeChart.PreferredNodeWidth = 70;
|
---|
119 | this.treeChart.Size = new System.Drawing.Size(291, 320);
|
---|
120 | this.treeChart.SuspendRepaint = false;
|
---|
121 | this.treeChart.TabIndex = 7;
|
---|
122 | this.treeChart.TextFont = new System.Drawing.Font("Times New Roman", 8F);
|
---|
123 | this.treeChart.Tree = null;
|
---|
124 | //
|
---|
125 | // splitContainer
|
---|
126 | //
|
---|
127 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
128 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
129 | this.splitContainer.Margin = new System.Windows.Forms.Padding(0);
|
---|
130 | this.splitContainer.Name = "splitContainer";
|
---|
131 | //
|
---|
132 | // splitContainer.Panel1
|
---|
133 | //
|
---|
134 | this.splitContainer.Panel1.Controls.Add(this.templateStructureGroupBox);
|
---|
135 | this.splitContainer.Panel1MinSize = 5;
|
---|
136 | //
|
---|
137 | // splitContainer.Panel2
|
---|
138 | //
|
---|
139 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
140 | this.splitContainer.Panel2MinSize = 5;
|
---|
141 | this.splitContainer.Size = new System.Drawing.Size(600, 400);
|
---|
142 | this.splitContainer.SplitterDistance = 300;
|
---|
143 | this.splitContainer.TabIndex = 10;
|
---|
144 | //
|
---|
145 | // detailsGroupBox
|
---|
146 | //
|
---|
147 | this.detailsGroupBox.Controls.Add(this.viewHost);
|
---|
148 | this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
149 | this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
150 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
151 | this.detailsGroupBox.Size = new System.Drawing.Size(296, 400);
|
---|
152 | this.detailsGroupBox.TabIndex = 9;
|
---|
153 | this.detailsGroupBox.TabStop = false;
|
---|
154 | this.detailsGroupBox.Text = "Details";
|
---|
155 | //
|
---|
156 | // viewHost
|
---|
157 | //
|
---|
158 | this.viewHost.Caption = "View";
|
---|
159 | this.viewHost.Content = null;
|
---|
160 | this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
161 | this.viewHost.Enabled = false;
|
---|
162 | this.viewHost.Location = new System.Drawing.Point(3, 16);
|
---|
163 | this.viewHost.Name = "viewHost";
|
---|
164 | this.viewHost.ReadOnly = false;
|
---|
165 | this.viewHost.Size = new System.Drawing.Size(290, 381);
|
---|
166 | this.viewHost.TabIndex = 8;
|
---|
167 | this.viewHost.ViewsLabelVisible = true;
|
---|
168 | this.viewHost.ViewType = null;
|
---|
169 | //
|
---|
170 | // StructureTemplateView
|
---|
171 | //
|
---|
172 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
173 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
174 | this.Controls.Add(this.splitContainer);
|
---|
175 | this.Name = "StructureTemplateView";
|
---|
176 | this.Size = new System.Drawing.Size(600, 400);
|
---|
177 | this.templateStructureGroupBox.ResumeLayout(false);
|
---|
178 | this.templateStructureGroupBox.PerformLayout();
|
---|
179 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
180 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
181 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
182 | this.splitContainer.ResumeLayout(false);
|
---|
183 | this.detailsGroupBox.ResumeLayout(false);
|
---|
184 | this.ResumeLayout(false);
|
---|
185 |
|
---|
186 | }
|
---|
187 |
|
---|
188 | #endregion
|
---|
189 | private System.Windows.Forms.TextBox expressionInput;
|
---|
190 | private System.Windows.Forms.Button parseButton;
|
---|
191 | private System.Windows.Forms.Label infoLabel;
|
---|
192 | private System.Windows.Forms.GroupBox templateStructureGroupBox;
|
---|
193 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
194 | private Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart treeChart;
|
---|
195 | private MainForm.WindowsForms.ViewHost viewHost;
|
---|
196 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
197 | private System.Windows.Forms.CheckBox linearScalingCheckBox;
|
---|
198 | }
|
---|
199 | }
|
---|