Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifierView/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.Designer.cs @ 7411

Last change on this file since 7411 was 7411, checked in by bburlacu, 12 years ago

#1763: Improved ValueChangeDialog and overall behavior. Implemented pruning operation on background thread. TODO: Test, improve. This is a work-in-progress.

File size: 10.6 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.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
48      this.splitContainer = new System.Windows.Forms.SplitContainer();
49      this.grpSimplify = new System.Windows.Forms.GroupBox();
50      this.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
51      this.btnSimplify = new System.Windows.Forms.Button();
52      this.btnOptimizeConstants = new System.Windows.Forms.Button();
53      this.treeChart = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart();
54      this.grpViewHost = new System.Windows.Forms.GroupBox();
55      this.btnPrune = new System.Windows.Forms.Button();
56      this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
57      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
58      this.splitContainer.Panel1.SuspendLayout();
59      this.splitContainer.Panel2.SuspendLayout();
60      this.splitContainer.SuspendLayout();
61      this.grpSimplify.SuspendLayout();
62      this.flowLayoutPanel.SuspendLayout();
63      this.grpViewHost.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // viewHost
67      //
68      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.viewHost.Caption = "View";
72      this.viewHost.Content = null;
73      this.viewHost.Enabled = false;
74      this.viewHost.Location = new System.Drawing.Point(6, 16);
75      this.viewHost.Name = "viewHost";
76      this.viewHost.ReadOnly = false;
77      this.viewHost.Size = new System.Drawing.Size(335, 326);
78      this.viewHost.TabIndex = 0;
79      this.viewHost.ViewsLabelVisible = true;
80      this.viewHost.ViewType = null;
81      //
82      // splitContainer
83      //
84      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.splitContainer.Location = new System.Drawing.Point(0, 0);
86      this.splitContainer.Name = "splitContainer";
87      //
88      // splitContainer.Panel1
89      //
90      this.splitContainer.Panel1.Controls.Add(this.grpSimplify);
91      //
92      // splitContainer.Panel2
93      //
94      this.splitContainer.Panel2.Controls.Add(this.grpViewHost);
95      this.splitContainer.Size = new System.Drawing.Size(564, 348);
96      this.splitContainer.SplitterDistance = 213;
97      this.splitContainer.TabIndex = 1;
98      //
99      // grpSimplify
100      //
101      this.grpSimplify.AutoSize = true;
102      this.grpSimplify.Controls.Add(this.flowLayoutPanel);
103      this.grpSimplify.Controls.Add(this.treeChart);
104      this.grpSimplify.Dock = System.Windows.Forms.DockStyle.Fill;
105      this.grpSimplify.Location = new System.Drawing.Point(0, 0);
106      this.grpSimplify.Name = "grpSimplify";
107      this.grpSimplify.Size = new System.Drawing.Size(213, 348);
108      this.grpSimplify.TabIndex = 1;
109      this.grpSimplify.TabStop = false;
110      this.grpSimplify.Text = "Simplify";
111      //
112      // flowLayoutPanel
113      //
114      this.flowLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
115            | System.Windows.Forms.AnchorStyles.Right)));
116      this.flowLayoutPanel.Controls.Add(this.btnSimplify);
117      this.flowLayoutPanel.Controls.Add(this.btnPrune);
118      this.flowLayoutPanel.Controls.Add(this.btnOptimizeConstants);
119      this.flowLayoutPanel.Location = new System.Drawing.Point(6, 313);
120      this.flowLayoutPanel.Name = "flowLayoutPanel";
121      this.flowLayoutPanel.Size = new System.Drawing.Size(204, 29);
122      this.flowLayoutPanel.TabIndex = 2;
123      this.flowLayoutPanel.WrapContents = false;
124      //
125      // btnSimplify
126      //
127      this.btnSimplify.Location = new System.Drawing.Point(3, 3);
128      this.btnSimplify.Name = "btnSimplify";
129      this.btnSimplify.Size = new System.Drawing.Size(95, 23);
130      this.btnSimplify.TabIndex = 1;
131      this.btnSimplify.Text = "Simplify";
132      this.btnSimplify.UseVisualStyleBackColor = true;
133      this.btnSimplify.Click += new System.EventHandler(this.btnSimplify_Click);
134      //
135      // btnOptimizeConstants
136      //
137      this.btnOptimizeConstants.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
138      this.btnOptimizeConstants.Enabled = false;
139      this.btnOptimizeConstants.Location = new System.Drawing.Point(205, 3);
140      this.btnOptimizeConstants.Name = "btnOptimizeConstants";
141      this.btnOptimizeConstants.Size = new System.Drawing.Size(97, 23);
142      this.btnOptimizeConstants.TabIndex = 2;
143      this.btnOptimizeConstants.Text = "Optimize";
144      this.btnOptimizeConstants.UseVisualStyleBackColor = true;
145      this.btnOptimizeConstants.Click += new System.EventHandler(this.btnOptimizeConstants_Click);
146      //
147      // treeChart
148      //
149      this.treeChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
150            | System.Windows.Forms.AnchorStyles.Left)
151            | System.Windows.Forms.AnchorStyles.Right)));
152      this.treeChart.BackgroundColor = System.Drawing.Color.White;
153      this.treeChart.LineColor = System.Drawing.Color.Black;
154      this.treeChart.Location = new System.Drawing.Point(6, 16);
155      this.treeChart.Name = "treeChart";
156      this.treeChart.Size = new System.Drawing.Size(201, 291);
157      this.treeChart.Spacing = 5;
158      this.treeChart.SuspendRepaint = false;
159      this.treeChart.TabIndex = 0;
160      this.treeChart.TextFont = new System.Drawing.Font("Times New Roman", 8F);
161      this.treeChart.Tree = null;
162      this.treeChart.SymbolicExpressionTreeNodeChanged += new System.EventHandler(this.treeChart_SymbolicExpressionTreeNodeChanged);
163      this.treeChart.SymbolicExpressionTreeNodeClicked += new System.Windows.Forms.MouseEventHandler(this.treeChart_SymbolicExpressionTreeNodeClicked);
164      this.treeChart.SymbolicExpressionTreeNodeDoubleClicked += new System.Windows.Forms.MouseEventHandler(this.treeChart_SymbolicExpressionTreeNodeDoubleClicked);
165      //
166      // grpViewHost
167      //
168      this.grpViewHost.Controls.Add(this.viewHost);
169      this.grpViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
170      this.grpViewHost.Location = new System.Drawing.Point(0, 0);
171      this.grpViewHost.Name = "grpViewHost";
172      this.grpViewHost.Size = new System.Drawing.Size(347, 348);
173      this.grpViewHost.TabIndex = 1;
174      this.grpViewHost.TabStop = false;
175      this.grpViewHost.Text = "Details";
176      //
177      // btnPrune
178      //
179      this.btnPrune.Location = new System.Drawing.Point(104, 3);
180      this.btnPrune.Name = "btnPrune";
181      this.btnPrune.Size = new System.Drawing.Size(95, 23);
182      this.btnPrune.TabIndex = 3;
183      this.btnPrune.Text = "Prune";
184      this.btnPrune.UseVisualStyleBackColor = true;
185      this.btnPrune.Click += new System.EventHandler(this.btnPrune_Click);
186      //
187      // backgroundWorker1
188      //
189      this.backgroundWorker1.WorkerSupportsCancellation = true;
190      this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
191      this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
192      //
193      // InteractiveSymbolicDataAnalysisSolutionSimplifierView
194      //
195      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
196      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
197      this.Controls.Add(this.splitContainer);
198      this.Name = "InteractiveSymbolicDataAnalysisSolutionSimplifierView";
199      this.Size = new System.Drawing.Size(564, 348);
200      this.splitContainer.Panel1.ResumeLayout(false);
201      this.splitContainer.Panel1.PerformLayout();
202      this.splitContainer.Panel2.ResumeLayout(false);
203      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
204      this.splitContainer.ResumeLayout(false);
205      this.grpSimplify.ResumeLayout(false);
206      this.flowLayoutPanel.ResumeLayout(false);
207      this.grpViewHost.ResumeLayout(false);
208      this.ResumeLayout(false);
209
210    }
211
212    #endregion
213
214    private HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart treeChart;
215    private System.Windows.Forms.SplitContainer splitContainer;
216    private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
217    private System.Windows.Forms.GroupBox grpSimplify;
218    private System.Windows.Forms.GroupBox grpViewHost;
219    private System.Windows.Forms.Button btnSimplify;
220    private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel;
221    protected System.Windows.Forms.Button btnOptimizeConstants;
222    private System.Windows.Forms.Button btnPrune;
223    private System.ComponentModel.BackgroundWorker backgroundWorker1;
224  }
225}
Note: See TracBrowser for help on using the repository browser.