Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 16130 was 15561, checked in by bburlacu, 6 years ago

#1772: Refactor SymbolicDataAnalysisGenealogyGraphView

File size: 9.9 KB
Line 
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
22
23namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
24  partial class SymbolicDataAnalysisGenealogyGraphView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
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.selectedNodeStatusStrip = new System.Windows.Forms.StatusStrip();
48      this.colorModeLabel = new System.Windows.Forms.Label();
49      this.nodeColorsComboBox = new System.Windows.Forms.ComboBox();
50      this.traceCheckBox = new System.Windows.Forms.CheckBox();
51      this.createNewViewCheckBox = new System.Windows.Forms.CheckBox();
52      this.navigateRightButton = new System.Windows.Forms.Button();
53      this.navigateLeftButton = new System.Windows.Forms.Button();
54      this.lockCheckBox = new System.Windows.Forms.CheckBox();
55      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
56      this.splitContainer.Panel1.SuspendLayout();
57      this.splitContainer.Panel2.SuspendLayout();
58      this.splitContainer.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // splitContainer
62      //
63      this.splitContainer.Location = new System.Drawing.Point(3, 31);
64      //
65      // splitContainer.Panel1
66      //
67      this.splitContainer.Panel1.Controls.Add(this.selectedNodeStatusStrip);
68      this.splitContainer.Size = new System.Drawing.Size(1241, 721);
69      this.splitContainer.SplitterDistance = 617;
70      //
71      // viewHost
72      //
73      this.viewHost.Size = new System.Drawing.Size(617, 770);
74      //
75      // genealogyGraphChart
76      //
77      this.genealogyGraphChart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
78      this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill;
79      this.genealogyGraphChart.Size = new System.Drawing.Size(617, 699);
80      //
81      // selectedNodeStatusStrip
82      //
83      this.selectedNodeStatusStrip.Location = new System.Drawing.Point(0, 699);
84      this.selectedNodeStatusStrip.Name = "selectedNodeStatusStrip";
85      this.selectedNodeStatusStrip.Size = new System.Drawing.Size(617, 22);
86      this.selectedNodeStatusStrip.TabIndex = 1;
87      this.selectedNodeStatusStrip.Text = "statusStrip1";
88      //
89      // colorModeLabel
90      //
91      this.colorModeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
92      this.colorModeLabel.AutoSize = true;
93      this.colorModeLabel.Location = new System.Drawing.Point(453, 9);
94      this.colorModeLabel.Name = "colorModeLabel";
95      this.colorModeLabel.Size = new System.Drawing.Size(39, 13);
96      this.colorModeLabel.TabIndex = 1;
97      this.colorModeLabel.Text = "Colors:";
98      //
99      // nodeColorsComboBox
100      //
101      this.nodeColorsComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
102      this.nodeColorsComboBox.FormattingEnabled = true;
103      this.nodeColorsComboBox.Items.AddRange(new object[] {
104            "Quality",
105            "Weight"});
106      this.nodeColorsComboBox.Location = new System.Drawing.Point(498, 6);
107      this.nodeColorsComboBox.Name = "nodeColorsComboBox";
108      this.nodeColorsComboBox.Size = new System.Drawing.Size(62, 21);
109      this.nodeColorsComboBox.TabIndex = 2;
110      this.nodeColorsComboBox.Text = "Quality";
111      this.nodeColorsComboBox.SelectedIndexChanged += new System.EventHandler(this.nodeColorsComboBox_SelectedIndexChanged);
112      //
113      // traceCheckBox
114      //
115      this.traceCheckBox.AutoSize = true;
116      this.traceCheckBox.Location = new System.Drawing.Point(3, 8);
117      this.traceCheckBox.Name = "traceCheckBox";
118      this.traceCheckBox.Size = new System.Drawing.Size(54, 17);
119      this.traceCheckBox.TabIndex = 3;
120      this.traceCheckBox.Text = "Trace";
121      this.traceCheckBox.UseVisualStyleBackColor = true;
122      //
123      // createNewViewCheckBox
124      //
125      this.createNewViewCheckBox.AutoSize = true;
126      this.createNewViewCheckBox.Location = new System.Drawing.Point(63, 8);
127      this.createNewViewCheckBox.Name = "createNewViewCheckBox";
128      this.createNewViewCheckBox.Size = new System.Drawing.Size(105, 17);
129      this.createNewViewCheckBox.TabIndex = 4;
130      this.createNewViewCheckBox.Text = "Create new view";
131      this.createNewViewCheckBox.UseVisualStyleBackColor = true;
132      //
133      // navigateRightButton
134      //
135      this.navigateRightButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
136      this.navigateRightButton.Image = global::HeuristicLab.Problems.DataAnalysis.Symbolic.Views.Properties.Resources.LargeLeftDiagonal_235;
137      this.navigateRightButton.Location = new System.Drawing.Point(595, 4);
138      this.navigateRightButton.Name = "navigateRightButton";
139      this.navigateRightButton.Size = new System.Drawing.Size(23, 23);
140      this.navigateRightButton.TabIndex = 5;
141      this.navigateRightButton.UseVisualStyleBackColor = true;
142      this.navigateRightButton.Click += new System.EventHandler(this.navigateRightButton_Click);
143      //
144      // navigateLeftButton
145      //
146      this.navigateLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
147      this.navigateLeftButton.Image = global::HeuristicLab.Problems.DataAnalysis.Symbolic.Views.Properties.Resources.LargeRightDiagonal_238;
148      this.navigateLeftButton.Location = new System.Drawing.Point(566, 4);
149      this.navigateLeftButton.Name = "navigateLeftButton";
150      this.navigateLeftButton.Size = new System.Drawing.Size(23, 23);
151      this.navigateLeftButton.TabIndex = 6;
152      this.navigateLeftButton.UseVisualStyleBackColor = true;
153      this.navigateLeftButton.Click += new System.EventHandler(this.navigateLeftButton_Click);
154      //
155      // lockCheckBox
156      //
157      this.lockCheckBox.AutoSize = true;
158      this.lockCheckBox.Location = new System.Drawing.Point(174, 8);
159      this.lockCheckBox.Name = "lockCheckBox";
160      this.lockCheckBox.Size = new System.Drawing.Size(50, 17);
161      this.lockCheckBox.TabIndex = 7;
162      this.lockCheckBox.Text = "Lock";
163      this.lockCheckBox.UseVisualStyleBackColor = true;
164      this.lockCheckBox.CheckedChanged += new System.EventHandler(this.lockCheckBox_CheckedChanged);
165      //
166      // SymbolicDataAnalysisGenealogyGraphView
167      //
168      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
169      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
170      this.Controls.Add(this.lockCheckBox);
171      this.Controls.Add(this.navigateLeftButton);
172      this.Controls.Add(this.navigateRightButton);
173      this.Controls.Add(this.createNewViewCheckBox);
174      this.Controls.Add(this.traceCheckBox);
175      this.Controls.Add(this.nodeColorsComboBox);
176      this.Controls.Add(this.colorModeLabel);
177      this.Name = "SymbolicDataAnalysisGenealogyGraphView";
178      this.Size = new System.Drawing.Size(1247, 755);
179      this.Controls.SetChildIndex(this.splitContainer, 0);
180      this.Controls.SetChildIndex(this.colorModeLabel, 0);
181      this.Controls.SetChildIndex(this.nodeColorsComboBox, 0);
182      this.Controls.SetChildIndex(this.traceCheckBox, 0);
183      this.Controls.SetChildIndex(this.createNewViewCheckBox, 0);
184      this.Controls.SetChildIndex(this.navigateRightButton, 0);
185      this.Controls.SetChildIndex(this.navigateLeftButton, 0);
186      this.Controls.SetChildIndex(this.lockCheckBox, 0);
187      this.splitContainer.Panel1.ResumeLayout(false);
188      this.splitContainer.Panel1.PerformLayout();
189      this.splitContainer.Panel2.ResumeLayout(false);
190      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
191      this.splitContainer.ResumeLayout(false);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198    private System.Windows.Forms.StatusStrip selectedNodeStatusStrip;
199    private System.Windows.Forms.Label colorModeLabel;
200    private System.Windows.Forms.ComboBox nodeColorsComboBox;
201    private System.Windows.Forms.CheckBox traceCheckBox;
202    private System.Windows.Forms.CheckBox createNewViewCheckBox;
203    private System.Windows.Forms.Button navigateRightButton;
204    private System.Windows.Forms.Button navigateLeftButton;
205    private System.Windows.Forms.CheckBox lockCheckBox;
206  }
207}
Note: See TracBrowser for help on using the repository browser.