#region License Information /* HeuristicLab * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Drawing; namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views { partial class SymboldDataAnalysisGenealogyView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.genealogyGraphChart = new HeuristicLab.Problems.DataAnalysis.Symbolic.Views.SymbolicDataAnalysisExpressionGenealogyGraphChart(); this.symbolicExpressionTreeChart = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.simpleLineages_checkBox = new System.Windows.Forms.CheckBox(); this.lockGraph_checkBox = new System.Windows.Forms.CheckBox(); this.trace_checkBox = new System.Windows.Forms.CheckBox(); this.hotPaths_button = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Location = new System.Drawing.Point(0, 57); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.genealogyGraphChart); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.symbolicExpressionTreeChart); this.splitContainer1.Size = new System.Drawing.Size(1247, 698); this.splitContainer1.SplitterDistance = 607; this.splitContainer1.TabIndex = 0; // // genealogyGraphChart // this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control; this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill; this.genealogyGraphChart.GenealogyGraph = null; this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0); this.genealogyGraphChart.LockGenealogy = false; this.genealogyGraphChart.Name = "genealogyGraphChart"; this.genealogyGraphChart.ScaleOnResize = true; this.genealogyGraphChart.SimpleLineages = false; this.genealogyGraphChart.Size = new System.Drawing.Size(607, 698); this.genealogyGraphChart.TabIndex = 0; this.genealogyGraphChart.TraceFragments = false; // // symbolicExpressionTreeChart // this.symbolicExpressionTreeChart.BackgroundColor = System.Drawing.Color.White; this.symbolicExpressionTreeChart.Dock = System.Windows.Forms.DockStyle.Fill; this.symbolicExpressionTreeChart.LineColor = System.Drawing.Color.Black; this.symbolicExpressionTreeChart.Location = new System.Drawing.Point(0, 0); this.symbolicExpressionTreeChart.Name = "symbolicExpressionTreeChart"; this.symbolicExpressionTreeChart.Size = new System.Drawing.Size(636, 698); this.symbolicExpressionTreeChart.Spacing = 5; this.symbolicExpressionTreeChart.SuspendRepaint = false; this.symbolicExpressionTreeChart.TabIndex = 0; this.symbolicExpressionTreeChart.TextFont = new System.Drawing.Font("Microsoft Sans Serif", 10F); this.symbolicExpressionTreeChart.Tree = null; // // groupBox1 // this.groupBox1.Controls.Add(this.hotPaths_button); this.groupBox1.Controls.Add(this.simpleLineages_checkBox); this.groupBox1.Controls.Add(this.lockGraph_checkBox); this.groupBox1.Controls.Add(this.trace_checkBox); this.groupBox1.Location = new System.Drawing.Point(3, 3); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(1195, 48); this.groupBox1.TabIndex = 4; this.groupBox1.TabStop = false; this.groupBox1.Text = "Controls"; // // simpleLineages_checkBox // this.simpleLineages_checkBox.AutoSize = true; this.simpleLineages_checkBox.Location = new System.Drawing.Point(94, 19); this.simpleLineages_checkBox.Name = "simpleLineages_checkBox"; this.simpleLineages_checkBox.Size = new System.Drawing.Size(103, 17); this.simpleLineages_checkBox.TabIndex = 6; this.simpleLineages_checkBox.Text = "Simple Lineages"; this.simpleLineages_checkBox.UseVisualStyleBackColor = true; this.simpleLineages_checkBox.CheckedChanged += new System.EventHandler(this.simpleLineages_checkBox_CheckedChanged); // // lockGraph_checkBox // this.lockGraph_checkBox.AutoSize = true; this.lockGraph_checkBox.Location = new System.Drawing.Point(6, 19); this.lockGraph_checkBox.Name = "lockGraph_checkBox"; this.lockGraph_checkBox.Size = new System.Drawing.Size(82, 17); this.lockGraph_checkBox.TabIndex = 5; this.lockGraph_checkBox.Text = "Lock Graph"; this.lockGraph_checkBox.UseVisualStyleBackColor = true; this.lockGraph_checkBox.CheckedChanged += new System.EventHandler(this.lockGraph_checkBox_CheckedChanged); // // trace_checkBox // this.trace_checkBox.AutoSize = true; this.trace_checkBox.Location = new System.Drawing.Point(203, 19); this.trace_checkBox.Name = "trace_checkBox"; this.trace_checkBox.Size = new System.Drawing.Size(54, 17); this.trace_checkBox.TabIndex = 4; this.trace_checkBox.Text = "Trace"; this.trace_checkBox.UseVisualStyleBackColor = true; this.trace_checkBox.CheckedChanged += new System.EventHandler(this.trace_checkBox_CheckedChanged); // // hotPaths_button // this.hotPaths_button.Location = new System.Drawing.Point(263, 15); this.hotPaths_button.Name = "hotPaths_button"; this.hotPaths_button.Size = new System.Drawing.Size(75, 23); this.hotPaths_button.TabIndex = 7; this.hotPaths_button.Text = "Hot paths"; this.hotPaths_button.UseVisualStyleBackColor = true; this.hotPaths_button.Click += new System.EventHandler(this.hotPaths_button_Click); // // SymboldDataAnalysisGenealogyView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.groupBox1); this.Controls.Add(this.splitContainer1); this.Name = "SymboldDataAnalysisGenealogyView"; this.Size = new System.Drawing.Size(1247, 755); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; private SymbolicDataAnalysisExpressionGenealogyGraphChart genealogyGraphChart; private Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart symbolicExpressionTreeChart; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.CheckBox simpleLineages_checkBox; private System.Windows.Forms.CheckBox lockGraph_checkBox; private System.Windows.Forms.CheckBox trace_checkBox; private System.Windows.Forms.Button hotPaths_button; } }