Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.Designer.cs @ 11817

Last change on this file since 11817 was 11817, checked in by bburlacu, 9 years ago

#1772: Refactored genealogy graph views. Added an additional class specializing GenealogyGraphView<ISymbolicExpressionTree> for the sole purpose of making the SymbolicDataAnalysisGenealogyGraphView work with the designer. Added property to expose the SymbolicExpressionTreeChart in the GraphicalSymbolicExpressionTreeView in order to be able to wire mouse click events.

File size: 7.8 KB
Line 
1
2namespace HeuristicLab.EvolutionTracking.Views {
3  partial class GenealogyGraphView<T> {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Component Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.splitContainer = new System.Windows.Forms.SplitContainer();
28      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
29      this.groupBox = new System.Windows.Forms.GroupBox();
30      this.lockGraph_checkBox = new System.Windows.Forms.CheckBox();
31      this.simpleLineages_checkBox = new System.Windows.Forms.CheckBox();
32      this.trace_checkBox = new System.Windows.Forms.CheckBox();
33      this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart();
34      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
35      this.splitContainer.Panel1.SuspendLayout();
36      this.splitContainer.Panel2.SuspendLayout();
37      this.splitContainer.SuspendLayout();
38      this.groupBox.SuspendLayout();
39      this.SuspendLayout();
40      //
41      // splitContainer
42      //
43      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
44            | System.Windows.Forms.AnchorStyles.Left)
45            | System.Windows.Forms.AnchorStyles.Right)));
46      this.splitContainer.Location = new System.Drawing.Point(3, 55);
47      this.splitContainer.Name = "splitContainer";
48      //
49      // splitContainer.Panel1
50      //
51      this.splitContainer.Panel1.Controls.Add(this.genealogyGraphChart);
52      //
53      // splitContainer.Panel2
54      //
55      this.splitContainer.Panel2.Controls.Add(this.viewHost);
56      this.splitContainer.Size = new System.Drawing.Size(1394, 742);
57      this.splitContainer.SplitterDistance = 694;
58      this.splitContainer.TabIndex = 0;
59      //
60      // viewHost
61      //
62      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
63            | System.Windows.Forms.AnchorStyles.Left)
64            | System.Windows.Forms.AnchorStyles.Right)));
65      this.viewHost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
66      this.viewHost.Caption = "View";
67      this.viewHost.Content = null;
68      this.viewHost.Enabled = false;
69      this.viewHost.Location = new System.Drawing.Point(0, 0);
70      this.viewHost.Name = "viewHost";
71      this.viewHost.ReadOnly = false;
72      this.viewHost.Size = new System.Drawing.Size(697, 743);
73      this.viewHost.TabIndex = 0;
74      this.viewHost.ViewsLabelVisible = true;
75      this.viewHost.ViewType = null;
76      //
77      // groupBox
78      //
79      this.groupBox.Controls.Add(this.lockGraph_checkBox);
80      this.groupBox.Controls.Add(this.simpleLineages_checkBox);
81      this.groupBox.Controls.Add(this.trace_checkBox);
82      this.groupBox.Location = new System.Drawing.Point(3, 4);
83      this.groupBox.Name = "groupBox";
84      this.groupBox.Size = new System.Drawing.Size(411, 44);
85      this.groupBox.TabIndex = 1;
86      this.groupBox.TabStop = false;
87      this.groupBox.Text = "Genealogy Options";
88      //
89      // lockGraph_checkBox
90      //
91      this.lockGraph_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
92      this.lockGraph_checkBox.AutoSize = true;
93      this.lockGraph_checkBox.Location = new System.Drawing.Point(157, 15);
94      this.lockGraph_checkBox.Name = "lockGraph_checkBox";
95      this.lockGraph_checkBox.Size = new System.Drawing.Size(73, 23);
96      this.lockGraph_checkBox.TabIndex = 0;
97      this.lockGraph_checkBox.Text = "Lock Graph";
98      this.lockGraph_checkBox.UseVisualStyleBackColor = true;
99      this.lockGraph_checkBox.CheckedChanged += new System.EventHandler(this.lockGraph_checkBox_CheckedChanged);
100      //
101      // simpleLineages_checkBox
102      //
103      this.simpleLineages_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
104      this.simpleLineages_checkBox.AutoSize = true;
105      this.simpleLineages_checkBox.Location = new System.Drawing.Point(57, 15);
106      this.simpleLineages_checkBox.Name = "simpleLineages_checkBox";
107      this.simpleLineages_checkBox.Size = new System.Drawing.Size(94, 23);
108      this.simpleLineages_checkBox.TabIndex = 0;
109      this.simpleLineages_checkBox.Text = "Simple Lineages";
110      this.simpleLineages_checkBox.UseVisualStyleBackColor = true;
111      this.simpleLineages_checkBox.CheckedChanged += new System.EventHandler(this.simpleLineages_checkBox_CheckedChanged);
112      //
113      // trace_checkBox
114      //
115      this.trace_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
116      this.trace_checkBox.AutoSize = true;
117      this.trace_checkBox.Location = new System.Drawing.Point(6, 15);
118      this.trace_checkBox.Name = "trace_checkBox";
119      this.trace_checkBox.Size = new System.Drawing.Size(45, 23);
120      this.trace_checkBox.TabIndex = 0;
121      this.trace_checkBox.Text = "Trace";
122      this.trace_checkBox.UseVisualStyleBackColor = true;
123      this.trace_checkBox.CheckedChanged += new System.EventHandler(this.trace_checkBox_CheckedChanged);
124      //
125      // genealogyGraphChart
126      //
127      this.genealogyGraphChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
128            | System.Windows.Forms.AnchorStyles.Left)
129            | System.Windows.Forms.AnchorStyles.Right)));
130      this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;
131      this.genealogyGraphChart.GenealogyGraph = null;
132      this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0);
133      this.genealogyGraphChart.LockGenealogy = false;
134      this.genealogyGraphChart.Name = "genealogyGraphChart";
135      this.genealogyGraphChart.ScaleOnResize = true;
136      this.genealogyGraphChart.SimpleLineages = false;
137      this.genealogyGraphChart.Size = new System.Drawing.Size(689, 738);
138      this.genealogyGraphChart.TabIndex = 0;
139      this.genealogyGraphChart.TraceFragments = false;
140      //
141      // GenealogyGraphView
142      //
143      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
144      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
145      this.Controls.Add(this.groupBox);
146      this.Controls.Add(this.splitContainer);
147      this.Name = "GenealogyGraphView";
148      this.Size = new System.Drawing.Size(1400, 800);
149      this.splitContainer.Panel1.ResumeLayout(false);
150      this.splitContainer.Panel2.ResumeLayout(false);
151      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
152      this.splitContainer.ResumeLayout(false);
153      this.groupBox.ResumeLayout(false);
154      this.groupBox.PerformLayout();
155      this.ResumeLayout(false);
156
157    }
158
159    #endregion
160
161    protected System.Windows.Forms.SplitContainer splitContainer;
162    protected MainForm.WindowsForms.ViewHost viewHost;
163    protected GenealogyGraphChart genealogyGraphChart;
164    private System.Windows.Forms.GroupBox groupBox;
165    protected System.Windows.Forms.CheckBox trace_checkBox;
166    protected System.Windows.Forms.CheckBox simpleLineages_checkBox;
167    protected System.Windows.Forms.CheckBox lockGraph_checkBox;
168
169  }
170}
Note: See TracBrowser for help on using the repository browser.