Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.Designer.cs @ 8980

Last change on this file since 8980 was 8980, checked in by bburlacu, 11 years ago

#1763: Refactored the tree simplifier. Improved tree/node edit operations.

File size: 9.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
23  partial class InteractiveSymbolicDataAnalysisSolutionSimplifierView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
49      this.splitContainer = new System.Windows.Forms.SplitContainer();
50      this.grpSimplify = new System.Windows.Forms.GroupBox();
51      this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
52      this.btnSimplify = new System.Windows.Forms.Button();
53      this.btnOptimizeConstants = new System.Windows.Forms.Button();
54      this.treeChart = new HeuristicLab.Problems.DataAnalysis.Symbolic.Views.InteractiveSymbolicExpressionTreeChart();
55      this.grpViewHost = new System.Windows.Forms.GroupBox();
56      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
57      this.splitContainer.Panel1.SuspendLayout();
58      this.splitContainer.Panel2.SuspendLayout();
59      this.splitContainer.SuspendLayout();
60      this.grpSimplify.SuspendLayout();
61      this.flowLayoutPanel.SuspendLayout();
62      this.grpViewHost.SuspendLayout();
63      this.SuspendLayout();
64      //
65      // viewHost
66      //
67      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
68            | System.Windows.Forms.AnchorStyles.Left)
69            | System.Windows.Forms.AnchorStyles.Right)));
70      this.viewHost.Caption = "View";
71      this.viewHost.Content = null;
72      this.viewHost.Enabled = false;
73      this.viewHost.Location = new System.Drawing.Point(6, 16);
74      this.viewHost.Name = "viewHost";
75      this.viewHost.ReadOnly = false;
76      this.viewHost.Size = new System.Drawing.Size(335, 326);
77      this.viewHost.TabIndex = 0;
78      this.viewHost.ViewsLabelVisible = true;
79      this.viewHost.ViewType = null;
80      //
81      // splitContainer
82      //
83      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
84      this.splitContainer.Location = new System.Drawing.Point(0, 0);
85      this.splitContainer.Name = "splitContainer";
86      //
87      // splitContainer.Panel1
88      //
89      this.splitContainer.Panel1.Controls.Add(this.grpSimplify);
90      //
91      // splitContainer.Panel2
92      //
93      this.splitContainer.Panel2.Controls.Add(this.grpViewHost);
94      this.splitContainer.Size = new System.Drawing.Size(564, 348);
95      this.splitContainer.SplitterDistance = 213;
96      this.splitContainer.TabIndex = 1;
97      //
98      // grpSimplify
99      //
100      this.grpSimplify.AutoSize = true;
101      this.grpSimplify.Controls.Add(this.flowLayoutPanel);
102      this.grpSimplify.Controls.Add(this.treeChart);
103      this.grpSimplify.Dock = System.Windows.Forms.DockStyle.Fill;
104      this.grpSimplify.Location = new System.Drawing.Point(0, 0);
105      this.grpSimplify.Name = "grpSimplify";
106      this.grpSimplify.Size = new System.Drawing.Size(213, 348);
107      this.grpSimplify.TabIndex = 1;
108      this.grpSimplify.TabStop = false;
109      this.grpSimplify.Text = "Simplify";
110      //
111      // flowLayoutPanel
112      //
113      this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
114            | System.Windows.Forms.AnchorStyles.Right)));
115      this.flowLayoutPanel.Controls.Add(this.btnSimplify);
116      this.flowLayoutPanel.Controls.Add(this.btnOptimizeConstants);
117      this.flowLayoutPanel.Location = new System.Drawing.Point(6, 313);
118      this.flowLayoutPanel.Name = "flowLayoutPanel";
119      this.flowLayoutPanel.Size = new System.Drawing.Size(204, 29);
120      this.flowLayoutPanel.TabIndex = 2;
121      this.flowLayoutPanel.WrapContents = false;
122      //
123      // btnSimplify
124      //
125      this.btnSimplify.Location = new System.Drawing.Point(3, 3);
126      this.btnSimplify.Name = "btnSimplify";
127      this.btnSimplify.Size = new System.Drawing.Size(95, 23);
128      this.btnSimplify.TabIndex = 1;
129      this.btnSimplify.Text = "Simplify";
130      this.btnSimplify.UseVisualStyleBackColor = true;
131      this.btnSimplify.Click += new System.EventHandler(this.btnSimplify_Click);
132      //
133      // btnOptimizeConstants
134      //
135      this.btnOptimizeConstants.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
136      this.btnOptimizeConstants.Enabled = false;
137      this.btnOptimizeConstants.Location = new System.Drawing.Point(104, 3);
138      this.btnOptimizeConstants.Name = "btnOptimizeConstants";
139      this.btnOptimizeConstants.Size = new System.Drawing.Size(97, 23);
140      this.btnOptimizeConstants.TabIndex = 2;
141      this.btnOptimizeConstants.Text = "Optimize";
142      this.btnOptimizeConstants.UseVisualStyleBackColor = true;
143      this.btnOptimizeConstants.Click += new System.EventHandler(this.btnOptimizeConstants_Click);
144      //
145      // treeChart
146      //
147      this.treeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
148            | System.Windows.Forms.AnchorStyles.Left)
149            | System.Windows.Forms.AnchorStyles.Right)));
150      this.treeChart.BackgroundColor = System.Drawing.Color.White;
151      this.treeChart.LineColor = System.Drawing.Color.Black;
152      this.treeChart.Location = new System.Drawing.Point(6, 16);
153      this.treeChart.Name = "treeChart";
154      this.treeChart.Size = new System.Drawing.Size(201, 291);
155      this.treeChart.Spacing = 5;
156      this.treeChart.SuspendRepaint = false;
157      this.treeChart.TabIndex = 0;
158      this.treeChart.TextFont = new System.Drawing.Font("Times New Roman", 8F);
159      this.treeChart.Tree = null;
160      this.treeChart.SymbolicExpressionTreeChanged += new System.EventHandler(this.treeChart_SymbolicExpressionTreeChanged);
161      this.treeChart.SymbolicExpressionTreeNodeDoubleClicked += new System.Windows.Forms.MouseEventHandler(this.treeChart_SymbolicExpressionTreeNodeDoubleClicked);
162      //
163      // grpViewHost
164      //
165      this.grpViewHost.Controls.Add(this.viewHost);
166      this.grpViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
167      this.grpViewHost.Location = new System.Drawing.Point(0, 0);
168      this.grpViewHost.Name = "grpViewHost";
169      this.grpViewHost.Size = new System.Drawing.Size(347, 348);
170      this.grpViewHost.TabIndex = 1;
171      this.grpViewHost.TabStop = false;
172      this.grpViewHost.Text = "Details";
173      //
174      // InteractiveSymbolicDataAnalysisSolutionSimplifierView
175      //
176      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
177      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
178      this.Controls.Add(this.splitContainer);
179      this.DoubleBuffered = true;
180      this.Name = "InteractiveSymbolicDataAnalysisSolutionSimplifierView";
181      this.Size = new System.Drawing.Size(564, 348);
182      this.splitContainer.Panel1.ResumeLayout(false);
183      this.splitContainer.Panel1.PerformLayout();
184      this.splitContainer.Panel2.ResumeLayout(false);
185      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
186      this.splitContainer.ResumeLayout(false);
187      this.grpSimplify.ResumeLayout(false);
188      this.flowLayoutPanel.ResumeLayout(false);
189      this.grpViewHost.ResumeLayout(false);
190      this.ResumeLayout(false);
191    }
192
193    #endregion
194
195    private InteractiveSymbolicExpressionTreeChart treeChart;
196    private System.Windows.Forms.SplitContainer splitContainer;
197    private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
198    private System.Windows.Forms.GroupBox grpSimplify;
199    private System.Windows.Forms.GroupBox grpViewHost;
200    private System.Windows.Forms.Button btnSimplify;
201    private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
202    protected System.Windows.Forms.Button btnOptimizeConstants;
203  }
204}
Note: See TracBrowser for help on using the repository browser.