[10302] | 1 |
|
---|
[10271] | 2 | namespace HeuristicLab.EvolutionTracking.Views {
|
---|
[11817] | 3 | partial class GenealogyGraphView<T> {
|
---|
[10264] | 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() {
|
---|
[10302] | 27 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[11817] | 28 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 29 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
[12208] | 30 | this.openNew_CheckBox = new System.Windows.Forms.CheckBox();
|
---|
[11817] | 31 | this.lockGraph_checkBox = new System.Windows.Forms.CheckBox();
|
---|
| 32 | this.simpleLineages_checkBox = new System.Windows.Forms.CheckBox();
|
---|
| 33 | this.trace_checkBox = new System.Windows.Forms.CheckBox();
|
---|
[12208] | 34 | this.genealogyGraphChart = new HeuristicLab.EvolutionTracking.Views.GenealogyGraphChart();
|
---|
[10302] | 35 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
| 36 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 37 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 38 | this.splitContainer.SuspendLayout();
|
---|
[11817] | 39 | this.groupBox.SuspendLayout();
|
---|
[10264] | 40 | this.SuspendLayout();
|
---|
| 41 | //
|
---|
[10302] | 42 | // splitContainer
|
---|
| 43 | //
|
---|
[11817] | 44 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 45 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 46 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 47 | this.splitContainer.Location = new System.Drawing.Point(3, 55);
|
---|
[10302] | 48 | this.splitContainer.Name = "splitContainer";
|
---|
| 49 | //
|
---|
| 50 | // splitContainer.Panel1
|
---|
| 51 | //
|
---|
[11506] | 52 | this.splitContainer.Panel1.Controls.Add(this.genealogyGraphChart);
|
---|
[10302] | 53 | //
|
---|
| 54 | // splitContainer.Panel2
|
---|
| 55 | //
|
---|
[11506] | 56 | this.splitContainer.Panel2.Controls.Add(this.viewHost);
|
---|
[11817] | 57 | this.splitContainer.Size = new System.Drawing.Size(1394, 742);
|
---|
| 58 | this.splitContainer.SplitterDistance = 694;
|
---|
[10302] | 59 | this.splitContainer.TabIndex = 0;
|
---|
| 60 | //
|
---|
| 61 | // viewHost
|
---|
| 62 | //
|
---|
[11817] | 63 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 64 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 65 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 66 | this.viewHost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
[10302] | 67 | this.viewHost.Caption = "View";
|
---|
| 68 | this.viewHost.Content = null;
|
---|
| 69 | this.viewHost.Enabled = false;
|
---|
| 70 | this.viewHost.Location = new System.Drawing.Point(0, 0);
|
---|
| 71 | this.viewHost.Name = "viewHost";
|
---|
| 72 | this.viewHost.ReadOnly = false;
|
---|
[11817] | 73 | this.viewHost.Size = new System.Drawing.Size(697, 743);
|
---|
[10302] | 74 | this.viewHost.TabIndex = 0;
|
---|
| 75 | this.viewHost.ViewsLabelVisible = true;
|
---|
| 76 | this.viewHost.ViewType = null;
|
---|
| 77 | //
|
---|
[11817] | 78 | // groupBox
|
---|
| 79 | //
|
---|
[11852] | 80 | this.groupBox.Controls.Add(this.openNew_CheckBox);
|
---|
[11817] | 81 | this.groupBox.Controls.Add(this.lockGraph_checkBox);
|
---|
| 82 | this.groupBox.Controls.Add(this.simpleLineages_checkBox);
|
---|
| 83 | this.groupBox.Controls.Add(this.trace_checkBox);
|
---|
| 84 | this.groupBox.Location = new System.Drawing.Point(3, 4);
|
---|
| 85 | this.groupBox.Name = "groupBox";
|
---|
[12208] | 86 | this.groupBox.Size = new System.Drawing.Size(602, 44);
|
---|
[11817] | 87 | this.groupBox.TabIndex = 1;
|
---|
| 88 | this.groupBox.TabStop = false;
|
---|
| 89 | this.groupBox.Text = "Genealogy Options";
|
---|
| 90 | //
|
---|
[12208] | 91 | // openNew_CheckBox
|
---|
| 92 | //
|
---|
| 93 | this.openNew_CheckBox.AutoSize = true;
|
---|
| 94 | this.openNew_CheckBox.Location = new System.Drawing.Point(485, 19);
|
---|
| 95 | this.openNew_CheckBox.Name = "openNew_CheckBox";
|
---|
| 96 | this.openNew_CheckBox.Size = new System.Drawing.Size(111, 17);
|
---|
| 97 | this.openNew_CheckBox.TabIndex = 1;
|
---|
| 98 | this.openNew_CheckBox.Text = "Open in new view";
|
---|
| 99 | this.openNew_CheckBox.UseVisualStyleBackColor = true;
|
---|
| 100 | //
|
---|
[11817] | 101 | // lockGraph_checkBox
|
---|
| 102 | //
|
---|
| 103 | this.lockGraph_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
| 104 | this.lockGraph_checkBox.AutoSize = true;
|
---|
| 105 | this.lockGraph_checkBox.Location = new System.Drawing.Point(157, 15);
|
---|
| 106 | this.lockGraph_checkBox.Name = "lockGraph_checkBox";
|
---|
| 107 | this.lockGraph_checkBox.Size = new System.Drawing.Size(73, 23);
|
---|
| 108 | this.lockGraph_checkBox.TabIndex = 0;
|
---|
| 109 | this.lockGraph_checkBox.Text = "Lock Graph";
|
---|
| 110 | this.lockGraph_checkBox.UseVisualStyleBackColor = true;
|
---|
| 111 | this.lockGraph_checkBox.CheckedChanged += new System.EventHandler(this.lockGraph_checkBox_CheckedChanged);
|
---|
| 112 | //
|
---|
| 113 | // simpleLineages_checkBox
|
---|
| 114 | //
|
---|
| 115 | this.simpleLineages_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
| 116 | this.simpleLineages_checkBox.AutoSize = true;
|
---|
| 117 | this.simpleLineages_checkBox.Location = new System.Drawing.Point(57, 15);
|
---|
| 118 | this.simpleLineages_checkBox.Name = "simpleLineages_checkBox";
|
---|
| 119 | this.simpleLineages_checkBox.Size = new System.Drawing.Size(94, 23);
|
---|
| 120 | this.simpleLineages_checkBox.TabIndex = 0;
|
---|
| 121 | this.simpleLineages_checkBox.Text = "Simple Lineages";
|
---|
| 122 | this.simpleLineages_checkBox.UseVisualStyleBackColor = true;
|
---|
| 123 | this.simpleLineages_checkBox.CheckedChanged += new System.EventHandler(this.simpleLineages_checkBox_CheckedChanged);
|
---|
| 124 | //
|
---|
| 125 | // trace_checkBox
|
---|
| 126 | //
|
---|
| 127 | this.trace_checkBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
| 128 | this.trace_checkBox.AutoSize = true;
|
---|
| 129 | this.trace_checkBox.Location = new System.Drawing.Point(6, 15);
|
---|
| 130 | this.trace_checkBox.Name = "trace_checkBox";
|
---|
| 131 | this.trace_checkBox.Size = new System.Drawing.Size(45, 23);
|
---|
| 132 | this.trace_checkBox.TabIndex = 0;
|
---|
| 133 | this.trace_checkBox.Text = "Trace";
|
---|
| 134 | this.trace_checkBox.UseVisualStyleBackColor = true;
|
---|
| 135 | this.trace_checkBox.CheckedChanged += new System.EventHandler(this.trace_checkBox_CheckedChanged);
|
---|
| 136 | //
|
---|
[12208] | 137 | // genealogyGraphChart
|
---|
[11817] | 138 | //
|
---|
[12208] | 139 | this.genealogyGraphChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 140 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 141 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 142 | this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;
|
---|
| 143 | this.genealogyGraphChart.GenealogyGraph = null;
|
---|
| 144 | this.genealogyGraphChart.Location = new System.Drawing.Point(0, 0);
|
---|
| 145 | this.genealogyGraphChart.LockGenealogy = false;
|
---|
| 146 | this.genealogyGraphChart.Name = "genealogyGraphChart";
|
---|
| 147 | this.genealogyGraphChart.ScaleOnResize = true;
|
---|
| 148 | this.genealogyGraphChart.SelectedGraphNode = null;
|
---|
| 149 | this.genealogyGraphChart.SimpleLineages = false;
|
---|
| 150 | this.genealogyGraphChart.Size = new System.Drawing.Size(689, 738);
|
---|
| 151 | this.genealogyGraphChart.TabIndex = 0;
|
---|
| 152 | this.genealogyGraphChart.TraceFragments = false;
|
---|
| 153 | this.genealogyGraphChart.UpdateEnabled = true;
|
---|
[11817] | 154 | //
|
---|
[10302] | 155 | // GenealogyGraphView
|
---|
[10264] | 156 | //
|
---|
| 157 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 158 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[11817] | 159 | this.Controls.Add(this.groupBox);
|
---|
[10302] | 160 | this.Controls.Add(this.splitContainer);
|
---|
| 161 | this.Name = "GenealogyGraphView";
|
---|
[11817] | 162 | this.Size = new System.Drawing.Size(1400, 800);
|
---|
[10302] | 163 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 164 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 165 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
| 166 | this.splitContainer.ResumeLayout(false);
|
---|
[11817] | 167 | this.groupBox.ResumeLayout(false);
|
---|
| 168 | this.groupBox.PerformLayout();
|
---|
[10264] | 169 | this.ResumeLayout(false);
|
---|
| 170 |
|
---|
| 171 | }
|
---|
| 172 |
|
---|
| 173 | #endregion
|
---|
| 174 |
|
---|
[10347] | 175 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 176 | protected MainForm.WindowsForms.ViewHost viewHost;
|
---|
| 177 | protected GenealogyGraphChart genealogyGraphChart;
|
---|
[11817] | 178 | private System.Windows.Forms.GroupBox groupBox;
|
---|
| 179 | protected System.Windows.Forms.CheckBox trace_checkBox;
|
---|
| 180 | protected System.Windows.Forms.CheckBox simpleLineages_checkBox;
|
---|
| 181 | protected System.Windows.Forms.CheckBox lockGraph_checkBox;
|
---|
[11852] | 182 | protected System.Windows.Forms.CheckBox openNew_CheckBox;
|
---|
[10302] | 183 |
|
---|
[10264] | 184 | }
|
---|
| 185 | }
|
---|