Changeset 9084 for branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.EvolutionaryTracking.Views/3.4/GenealogyGraphView.Designer.cs
- Timestamp:
- 12/20/12 16:27:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.EvolutionaryTracking.Views/3.4/GenealogyGraphView.Designer.cs
r8556 r9084 25 25 /// </summary> 26 26 private void InitializeComponent() { 27 this.components = new System.ComponentModel.Container(); 27 28 this.mainTableLayout = new System.Windows.Forms.TableLayoutPanel(); 28 29 this.splitContainer = new System.Windows.Forms.SplitContainer(); 29 30 this.genealogyTableLayout = new System.Windows.Forms.TableLayoutPanel(); 31 this.genealogyGraphChart = new HeuristicLab.EvolutionaryTracking.Views.GenealogyGraphChart(); 30 32 this.symbolicExpressionTreeChart = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart(); 31 33 this.topControlBox = new System.Windows.Forms.GroupBox(); 34 this.matchVariableNamesCheckBox = new System.Windows.Forms.CheckBox(); 35 this.matchVariableWeightsCheckBox = new System.Windows.Forms.CheckBox(); 36 this.matchConstantsCheckBox = new System.Windows.Forms.CheckBox(); 37 this.similarityLabel = new System.Windows.Forms.Label(); 32 38 this.graphControlsPanel = new System.Windows.Forms.Panel(); 33 this.similarityModeLabel = new System.Windows.Forms.Label();34 this.similarityModeSelector = new System.Windows.Forms.ComboBox();35 39 this.selectModeButton = new System.Windows.Forms.RadioButton(); 36 40 this.moveModeButton = new System.Windows.Forms.RadioButton(); 37 41 this.zoomModeButton = new System.Windows.Forms.RadioButton(); 38 this.genealogyGraphChart = new HeuristicLab.EvolutionaryTracking.Views.GenealogyGraphChart();39 42 this.mainTableLayout.SuspendLayout(); 40 43 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); … … 97 100 this.genealogyTableLayout.TabIndex = 4; 98 101 // 102 // genealogyGraphChart 103 // 104 this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control; 105 this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill; 106 this.genealogyGraphChart.Location = new System.Drawing.Point(3, 3); 107 this.genealogyGraphChart.Name = "genealogyGraphChart"; 108 this.genealogyGraphChart.ScaleOnResize = true; 109 this.genealogyGraphChart.Size = new System.Drawing.Size(352, 520); 110 this.genealogyGraphChart.TabIndex = 2; 111 // 99 112 // symbolicExpressionTreeChart 100 113 // … … 113 126 // topControlBox 114 127 // 128 this.topControlBox.Controls.Add(this.matchVariableNamesCheckBox); 129 this.topControlBox.Controls.Add(this.matchVariableWeightsCheckBox); 130 this.topControlBox.Controls.Add(this.matchConstantsCheckBox); 131 this.topControlBox.Controls.Add(this.similarityLabel); 115 132 this.topControlBox.Controls.Add(this.graphControlsPanel); 116 this.topControlBox.Controls.Add(this.similarityModeLabel);117 this.topControlBox.Controls.Add(this.similarityModeSelector);118 133 this.topControlBox.Dock = System.Windows.Forms.DockStyle.Fill; 119 134 this.topControlBox.Location = new System.Drawing.Point(3, 3); … … 124 139 this.topControlBox.Text = "Controls"; 125 140 // 141 // matchVariableNamesCheckBox 142 // 143 this.matchVariableNamesCheckBox.AutoSize = true; 144 this.matchVariableNamesCheckBox.Checked = true; 145 this.matchVariableNamesCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; 146 this.matchVariableNamesCheckBox.Location = new System.Drawing.Point(436, 23); 147 this.matchVariableNamesCheckBox.Name = "matchVariableNamesCheckBox"; 148 this.matchVariableNamesCheckBox.Size = new System.Drawing.Size(98, 17); 149 this.matchVariableNamesCheckBox.TabIndex = 7; 150 this.matchVariableNamesCheckBox.Text = "Variable names"; 151 this.matchVariableNamesCheckBox.UseVisualStyleBackColor = true; 152 this.matchVariableNamesCheckBox.CheckedChanged += new System.EventHandler(this.matchVariableNamesCheckBox_CheckedChanged); 153 // 154 // matchVariableWeightsCheckBox 155 // 156 this.matchVariableWeightsCheckBox.AutoSize = true; 157 this.matchVariableWeightsCheckBox.Checked = true; 158 this.matchVariableWeightsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; 159 this.matchVariableWeightsCheckBox.Location = new System.Drawing.Point(327, 23); 160 this.matchVariableWeightsCheckBox.Name = "matchVariableWeightsCheckBox"; 161 this.matchVariableWeightsCheckBox.Size = new System.Drawing.Size(103, 17); 162 this.matchVariableWeightsCheckBox.TabIndex = 6; 163 this.matchVariableWeightsCheckBox.Text = "Variable weights"; 164 this.matchVariableWeightsCheckBox.UseVisualStyleBackColor = true; 165 this.matchVariableWeightsCheckBox.CheckedChanged += new System.EventHandler(this.matchVariableWeightsCheckBox_CheckedChanged); 166 // 167 // matchConstantsCheckBox 168 // 169 this.matchConstantsCheckBox.AutoSize = true; 170 this.matchConstantsCheckBox.Checked = true; 171 this.matchConstantsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked; 172 this.matchConstantsCheckBox.Location = new System.Drawing.Point(219, 23); 173 this.matchConstantsCheckBox.Name = "matchConstantsCheckBox"; 174 this.matchConstantsCheckBox.Size = new System.Drawing.Size(102, 17); 175 this.matchConstantsCheckBox.TabIndex = 5; 176 this.matchConstantsCheckBox.Text = "Constant values"; 177 this.matchConstantsCheckBox.UseVisualStyleBackColor = true; 178 this.matchConstantsCheckBox.CheckedChanged += new System.EventHandler(this.matchConstantsCheckBox_CheckedChanged); 179 // 180 // similarityLabel 181 // 182 this.similarityLabel.AutoSize = true; 183 this.similarityLabel.Location = new System.Drawing.Point(105, 24); 184 this.similarityLabel.Name = "similarityLabel"; 185 this.similarityLabel.Size = new System.Drawing.Size(108, 13); 186 this.similarityLabel.TabIndex = 3; 187 this.similarityLabel.Text = "Matching constraints:"; 188 // 126 189 // graphControlsPanel 127 190 // … … 129 192 this.graphControlsPanel.Controls.Add(this.moveModeButton); 130 193 this.graphControlsPanel.Controls.Add(this.zoomModeButton); 131 this.graphControlsPanel.Location = new System.Drawing.Point( 246, 14);194 this.graphControlsPanel.Location = new System.Drawing.Point(6, 14); 132 195 this.graphControlsPanel.Name = "graphControlsPanel"; 133 196 this.graphControlsPanel.Size = new System.Drawing.Size(93, 30); 134 197 this.graphControlsPanel.TabIndex = 2; 135 //136 // similarityModeLabel137 //138 this.similarityModeLabel.AutoSize = true;139 this.similarityModeLabel.Location = new System.Drawing.Point(6, 20);140 this.similarityModeLabel.Name = "similarityModeLabel";141 this.similarityModeLabel.Size = new System.Drawing.Size(80, 13);142 this.similarityModeLabel.TabIndex = 1;143 this.similarityModeLabel.Text = "Similarity Mode:";144 //145 // similarityModeSelector146 //147 this.similarityModeSelector.FormattingEnabled = true;148 this.similarityModeSelector.Items.AddRange(new object[] {149 "Exact",150 "High",151 "Relaxed"});152 this.similarityModeSelector.Location = new System.Drawing.Point(92, 17);153 this.similarityModeSelector.Name = "similarityModeSelector";154 this.similarityModeSelector.Size = new System.Drawing.Size(148, 21);155 this.similarityModeSelector.TabIndex = 0;156 this.similarityModeSelector.SelectedIndexChanged += new System.EventHandler(this.similarityModeSelector_SelectedIndexChanged);157 198 // 158 199 // selectModeButton … … 188 229 this.zoomModeButton.UseVisualStyleBackColor = true; 189 230 this.zoomModeButton.CheckedChanged += new System.EventHandler(this.zoomModeButton_CheckedChanged); 190 //191 // genealogyGraphChart192 //193 this.genealogyGraphChart.BackColor = System.Drawing.SystemColors.Control;194 this.genealogyGraphChart.Dock = System.Windows.Forms.DockStyle.Fill;195 this.genealogyGraphChart.Location = new System.Drawing.Point(3, 3);196 this.genealogyGraphChart.Name = "genealogyGraphChart";197 this.genealogyGraphChart.ScaleOnResize = true;198 this.genealogyGraphChart.Size = new System.Drawing.Size(352, 520);199 this.genealogyGraphChart.TabIndex = 2;200 231 // 201 232 // GenealogyGraphView … … 224 255 private System.Windows.Forms.SplitContainer splitContainer; 225 256 private System.Windows.Forms.GroupBox topControlBox; 226 private System.Windows.Forms.Label similarityModeLabel;227 private System.Windows.Forms.ComboBox similarityModeSelector;228 257 private Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart symbolicExpressionTreeChart; 229 258 private System.Windows.Forms.TableLayoutPanel genealogyTableLayout; … … 233 262 private System.Windows.Forms.RadioButton moveModeButton; 234 263 private System.Windows.Forms.RadioButton zoomModeButton; 264 private System.Windows.Forms.Label similarityLabel; 265 private System.Windows.Forms.CheckBox matchVariableNamesCheckBox; 266 private System.Windows.Forms.CheckBox matchVariableWeightsCheckBox; 267 private System.Windows.Forms.CheckBox matchConstantsCheckBox; 235 268 236 269 }
Note: See TracChangeset
for help on using the changeset viewer.