Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymboldDataAnalysisGenealogyView.Designer.cs @ 10888

Last change on this file since 10888 was 10888, checked in by bburlacu, 10 years ago

#1772: Introduced separate class for FragmentNodes and adjusted tracing code. Fixed small bug creating the genealogy graph.

File size: 9.0 KB
RevLine 
[10650]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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
[10833]22using System.Drawing;
23
[10650]24namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
25  partial class SymboldDataAnalysisGenealogyView {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    /// <summary>
32    /// Clean up any resources being used.
33    /// </summary>
34    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
35    protected override void Dispose(bool disposing) {
36      if (disposing && (components != null)) {
37        components.Dispose();
38      }
39      base.Dispose(disposing);
40    }
41
42    #region Component Designer generated code
43
44    /// <summary>
45    /// Required method for Designer support - do not modify
46    /// the contents of this method with the code editor.
47    /// </summary>
48    private void InitializeComponent() {
49      this.components = new System.ComponentModel.Container();
50      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
51      this.genealogyGraphChart = new HeuristicLab.Problems.DataAnalysis.Symbolic.Views.SymbolicDataAnalysisExpressionGenealogyGraphChart();
52      this.symbolicExpressionTreeChart = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart();
[10888]53      this.groupBox1 = new System.Windows.Forms.GroupBox();
54      this.simpleLineages_checkBox = new System.Windows.Forms.CheckBox();
55      this.lockGraph_checkBox = new System.Windows.Forms.CheckBox();
[10650]56      this.trace_checkBox = new System.Windows.Forms.CheckBox();
[10888]57      this.hotPaths_button = new System.Windows.Forms.Button();
[10650]58      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
59      this.splitContainer1.Panel1.SuspendLayout();
60      this.splitContainer1.Panel2.SuspendLayout();
61      this.splitContainer1.SuspendLayout();
[10888]62      this.groupBox1.SuspendLayout();
[10650]63      this.SuspendLayout();
64      //
65      // splitContainer1
66      //
[10888]67      this.splitContainer1.Location = new System.Drawing.Point(0, 57);
[10650]68      this.splitContainer1.Name = "splitContainer1";
69      //
70      // splitContainer1.Panel1
71      //
72      this.splitContainer1.Panel1.Controls.Add(this.genealogyGraphChart);
73      //
74      // splitContainer1.Panel2
75      //
76      this.splitContainer1.Panel2.Controls.Add(this.symbolicExpressionTreeChart);
[10888]77      this.splitContainer1.Size = new System.Drawing.Size(1247, 698);
[10650]78      this.splitContainer1.SplitterDistance = 607;
79      this.splitContainer1.TabIndex = 0;
80      //
81      // genealogyGraphChart
82      //
83      this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;
84      this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.genealogyGraphChart.GenealogyGraph = null;
86      this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0);
87      this.genealogyGraphChart.LockGenealogy = false;
88      this.genealogyGraphChart.Name = "genealogyGraphChart";
89      this.genealogyGraphChart.ScaleOnResize = true;
90      this.genealogyGraphChart.SimpleLineages = false;
[10888]91      this.genealogyGraphChart.Size = new System.Drawing.Size(607, 698);
[10650]92      this.genealogyGraphChart.TabIndex = 0;
93      this.genealogyGraphChart.TraceFragments = false;
94      //
95      // symbolicExpressionTreeChart
96      //
97      this.symbolicExpressionTreeChart.BackgroundColor = System.Drawing.Color.White;
98      this.symbolicExpressionTreeChart.Dock = System.Windows.Forms.DockStyle.Fill;
99      this.symbolicExpressionTreeChart.LineColor = System.Drawing.Color.Black;
100      this.symbolicExpressionTreeChart.Location = new System.Drawing.Point(0, 0);
101      this.symbolicExpressionTreeChart.Name = "symbolicExpressionTreeChart";
[10888]102      this.symbolicExpressionTreeChart.Size = new System.Drawing.Size(636, 698);
[10650]103      this.symbolicExpressionTreeChart.Spacing = 5;
104      this.symbolicExpressionTreeChart.SuspendRepaint = false;
105      this.symbolicExpressionTreeChart.TabIndex = 0;
[10888]106      this.symbolicExpressionTreeChart.TextFont = new System.Drawing.Font("Microsoft Sans Serif", 10F);
[10650]107      this.symbolicExpressionTreeChart.Tree = null;
108      //
[10888]109      // groupBox1
[10650]110      //
[10888]111      this.groupBox1.Controls.Add(this.hotPaths_button);
112      this.groupBox1.Controls.Add(this.simpleLineages_checkBox);
113      this.groupBox1.Controls.Add(this.lockGraph_checkBox);
114      this.groupBox1.Controls.Add(this.trace_checkBox);
115      this.groupBox1.Location = new System.Drawing.Point(3, 3);
116      this.groupBox1.Name = "groupBox1";
117      this.groupBox1.Size = new System.Drawing.Size(1195, 48);
118      this.groupBox1.TabIndex = 4;
119      this.groupBox1.TabStop = false;
120      this.groupBox1.Text = "Controls";
[10650]121      //
[10888]122      // simpleLineages_checkBox
123      //
124      this.simpleLineages_checkBox.AutoSize = true;
125      this.simpleLineages_checkBox.Location = new System.Drawing.Point(94, 19);
126      this.simpleLineages_checkBox.Name = "simpleLineages_checkBox";
127      this.simpleLineages_checkBox.Size = new System.Drawing.Size(103, 17);
128      this.simpleLineages_checkBox.TabIndex = 6;
129      this.simpleLineages_checkBox.Text = "Simple Lineages";
130      this.simpleLineages_checkBox.UseVisualStyleBackColor = true;
131      this.simpleLineages_checkBox.CheckedChanged += new System.EventHandler(this.simpleLineages_checkBox_CheckedChanged);
132      //
[10650]133      // lockGraph_checkBox
134      //
135      this.lockGraph_checkBox.AutoSize = true;
[10888]136      this.lockGraph_checkBox.Location = new System.Drawing.Point(6, 19);
[10650]137      this.lockGraph_checkBox.Name = "lockGraph_checkBox";
138      this.lockGraph_checkBox.Size = new System.Drawing.Size(82, 17);
[10888]139      this.lockGraph_checkBox.TabIndex = 5;
[10650]140      this.lockGraph_checkBox.Text = "Lock Graph";
141      this.lockGraph_checkBox.UseVisualStyleBackColor = true;
142      this.lockGraph_checkBox.CheckedChanged += new System.EventHandler(this.lockGraph_checkBox_CheckedChanged);
143      //
[10888]144      // trace_checkBox
[10650]145      //
[10888]146      this.trace_checkBox.AutoSize = true;
147      this.trace_checkBox.Location = new System.Drawing.Point(203, 19);
148      this.trace_checkBox.Name = "trace_checkBox";
149      this.trace_checkBox.Size = new System.Drawing.Size(54, 17);
150      this.trace_checkBox.TabIndex = 4;
151      this.trace_checkBox.Text = "Trace";
152      this.trace_checkBox.UseVisualStyleBackColor = true;
153      this.trace_checkBox.CheckedChanged += new System.EventHandler(this.trace_checkBox_CheckedChanged);
[10650]154      //
[10888]155      // hotPaths_button
156      //
157      this.hotPaths_button.Location = new System.Drawing.Point(263, 15);
158      this.hotPaths_button.Name = "hotPaths_button";
159      this.hotPaths_button.Size = new System.Drawing.Size(75, 23);
160      this.hotPaths_button.TabIndex = 7;
161      this.hotPaths_button.Text = "Hot paths";
162      this.hotPaths_button.UseVisualStyleBackColor = true;
163      this.hotPaths_button.Click += new System.EventHandler(this.hotPaths_button_Click);
164      //
[10650]165      // SymboldDataAnalysisGenealogyView
166      //
167      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
168      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[10888]169      this.Controls.Add(this.groupBox1);
[10650]170      this.Controls.Add(this.splitContainer1);
171      this.Name = "SymboldDataAnalysisGenealogyView";
172      this.Size = new System.Drawing.Size(1247, 755);
173      this.splitContainer1.Panel1.ResumeLayout(false);
174      this.splitContainer1.Panel2.ResumeLayout(false);
175      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
176      this.splitContainer1.ResumeLayout(false);
[10888]177      this.groupBox1.ResumeLayout(false);
178      this.groupBox1.PerformLayout();
[10650]179      this.ResumeLayout(false);
180
181    }
182
183    #endregion
184
185    private System.Windows.Forms.SplitContainer splitContainer1;
186    private SymbolicDataAnalysisExpressionGenealogyGraphChart genealogyGraphChart;
187    private Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart symbolicExpressionTreeChart;
[10888]188    private System.Windows.Forms.GroupBox groupBox1;
189    private System.Windows.Forms.CheckBox simpleLineages_checkBox;
190    private System.Windows.Forms.CheckBox lockGraph_checkBox;
[10650]191    private System.Windows.Forms.CheckBox trace_checkBox;
[10888]192    private System.Windows.Forms.Button hotPaths_button;
[10650]193
194  }
195}
Note: See TracBrowser for help on using the repository browser.