Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionSimpleRLDView.Designer.cs @ 16733

Last change on this file since 16733 was 16733, checked in by abeham, 5 years ago

#1614: added simpler variant of RLD view

File size: 21.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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
21namespace HeuristicLab.Optimization.Views {
22  partial class RunCollectionSimpleRLDView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.components = new System.ComponentModel.Container();
47      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
49      this.dataTableComboBox = new System.Windows.Forms.ComboBox();
50      this.dataTableLabel = new System.Windows.Forms.Label();
51      this.groupLabel = new System.Windows.Forms.Label();
52      this.groupComboBox = new System.Windows.Forms.ComboBox();
53      this.targetLogScalingCheckBox = new System.Windows.Forms.CheckBox();
54      this.targetsTextBox = new System.Windows.Forms.TextBox();
55      this.targetsLabel = new System.Windows.Forms.Label();
56      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
57      this.addTargetsAsResultButton = new System.Windows.Forms.Button();
58      this.generateTargetsButton = new System.Windows.Forms.Button();
59      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
60      this.aggregateTargetsCheckBox = new System.Windows.Forms.CheckBox();
61      this.tabControl = new System.Windows.Forms.TabControl();
62      this.byTargetTabPage = new System.Windows.Forms.TabPage();
63      this.relativeOrAbsoluteComboBox = new System.Windows.Forms.ComboBox();
64      this.targetChart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
65      this.showLabelsCheckBox = new System.Windows.Forms.CheckBox();
66      this.markerCheckBox = new System.Windows.Forms.CheckBox();
67      this.byTableTabPage = new System.Windows.Forms.TabPage();
68      this.problemComboBox = new System.Windows.Forms.ComboBox();
69      this.problemLabel = new System.Windows.Forms.Label();
70      this.ertTextBox = new System.Windows.Forms.TextBox();
71      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
72      this.tabControl.SuspendLayout();
73      this.byTargetTabPage.SuspendLayout();
74      ((System.ComponentModel.ISupportInitialize)(this.targetChart)).BeginInit();
75      this.byTableTabPage.SuspendLayout();
76      this.SuspendLayout();
77      //
78      // dataTableComboBox
79      //
80      this.dataTableComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
81            | System.Windows.Forms.AnchorStyles.Right)));
82      this.dataTableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
83      this.dataTableComboBox.FormattingEnabled = true;
84      this.dataTableComboBox.Location = new System.Drawing.Point(69, 57);
85      this.dataTableComboBox.Name = "dataTableComboBox";
86      this.dataTableComboBox.Size = new System.Drawing.Size(582, 21);
87      this.dataTableComboBox.TabIndex = 5;
88      this.dataTableComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTableComboBox_SelectedIndexChanged);
89      //
90      // dataTableLabel
91      //
92      this.dataTableLabel.AutoSize = true;
93      this.dataTableLabel.Location = new System.Drawing.Point(3, 60);
94      this.dataTableLabel.Name = "dataTableLabel";
95      this.dataTableLabel.Size = new System.Drawing.Size(60, 13);
96      this.dataTableLabel.TabIndex = 4;
97      this.dataTableLabel.Text = "DataTable:";
98      //
99      // groupLabel
100      //
101      this.groupLabel.AutoSize = true;
102      this.groupLabel.Location = new System.Drawing.Point(3, 6);
103      this.groupLabel.Name = "groupLabel";
104      this.groupLabel.Size = new System.Drawing.Size(39, 13);
105      this.groupLabel.TabIndex = 0;
106      this.groupLabel.Text = "Group:";
107      //
108      // groupComboBox
109      //
110      this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
111            | System.Windows.Forms.AnchorStyles.Right)));
112      this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
113      this.groupComboBox.FormattingEnabled = true;
114      this.groupComboBox.Location = new System.Drawing.Point(69, 3);
115      this.groupComboBox.Name = "groupComboBox";
116      this.groupComboBox.Size = new System.Drawing.Size(582, 21);
117      this.groupComboBox.TabIndex = 1;
118      this.groupComboBox.SelectedIndexChanged += new System.EventHandler(this.groupComboBox_SelectedIndexChanged);
119      //
120      // targetLogScalingCheckBox
121      //
122      this.targetLogScalingCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
123      this.targetLogScalingCheckBox.AutoSize = true;
124      this.targetLogScalingCheckBox.Location = new System.Drawing.Point(9, 364);
125      this.targetLogScalingCheckBox.Name = "targetLogScalingCheckBox";
126      this.targetLogScalingCheckBox.Size = new System.Drawing.Size(112, 17);
127      this.targetLogScalingCheckBox.TabIndex = 6;
128      this.targetLogScalingCheckBox.Text = "logarithmic scaling";
129      this.targetLogScalingCheckBox.UseVisualStyleBackColor = true;
130      this.targetLogScalingCheckBox.CheckedChanged += new System.EventHandler(this.logScalingCheckBox_CheckedChanged);
131      //
132      // targetsTextBox
133      //
134      this.targetsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
135            | System.Windows.Forms.AnchorStyles.Right)));
136      this.targetsTextBox.Location = new System.Drawing.Point(59, 8);
137      this.targetsTextBox.Name = "targetsTextBox";
138      this.targetsTextBox.Size = new System.Drawing.Size(204, 20);
139      this.targetsTextBox.TabIndex = 1;
140      this.toolTip.SetToolTip(this.targetsTextBox, "The order of the targets is important, first to-hit targets\r\nshould be given firs" +
141        "t. The sequence should be monotonous.\r\n\r\nTargets should be separated by semicolo" +
142        "n, tab or space.");
143      this.targetsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.targetsTextBox_Validating);
144      //
145      // targetsLabel
146      //
147      this.targetsLabel.AutoSize = true;
148      this.targetsLabel.Location = new System.Drawing.Point(6, 11);
149      this.targetsLabel.Name = "targetsLabel";
150      this.targetsLabel.Size = new System.Drawing.Size(46, 13);
151      this.targetsLabel.TabIndex = 0;
152      this.targetsLabel.Text = "Targets:";
153      //
154      // errorProvider
155      //
156      this.errorProvider.ContainerControl = this;
157      //
158      // addTargetsAsResultButton
159      //
160      this.addTargetsAsResultButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
161      this.addTargetsAsResultButton.Location = new System.Drawing.Point(551, 6);
162      this.addTargetsAsResultButton.Name = "addTargetsAsResultButton";
163      this.addTargetsAsResultButton.Size = new System.Drawing.Size(89, 23);
164      this.addTargetsAsResultButton.TabIndex = 4;
165      this.addTargetsAsResultButton.Text = "Add as Result";
166      this.addTargetsAsResultButton.UseVisualStyleBackColor = true;
167      this.addTargetsAsResultButton.Click += new System.EventHandler(this.addTargetsAsResultButton_Click);
168      //
169      // generateTargetsButton
170      //
171      this.generateTargetsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
172      this.generateTargetsButton.Location = new System.Drawing.Point(456, 6);
173      this.generateTargetsButton.Name = "generateTargetsButton";
174      this.generateTargetsButton.Size = new System.Drawing.Size(89, 23);
175      this.generateTargetsButton.TabIndex = 3;
176      this.generateTargetsButton.Text = "Generate...";
177      this.generateTargetsButton.UseVisualStyleBackColor = true;
178      this.generateTargetsButton.Click += new System.EventHandler(this.generateTargetsButton_Click);
179      //
180      // aggregateTargetsCheckBox
181      //
182      this.aggregateTargetsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
183      this.aggregateTargetsCheckBox.AutoSize = true;
184      this.aggregateTargetsCheckBox.Checked = true;
185      this.aggregateTargetsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
186      this.aggregateTargetsCheckBox.Location = new System.Drawing.Point(374, 10);
187      this.aggregateTargetsCheckBox.Name = "aggregateTargetsCheckBox";
188      this.aggregateTargetsCheckBox.Size = new System.Drawing.Size(74, 17);
189      this.aggregateTargetsCheckBox.TabIndex = 2;
190      this.aggregateTargetsCheckBox.Text = "aggregate";
191      this.aggregateTargetsCheckBox.UseVisualStyleBackColor = true;
192      this.aggregateTargetsCheckBox.CheckedChanged += new System.EventHandler(this.aggregateTargetsCheckBox_CheckedChanged);
193      //
194      // tabControl
195      //
196      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
197            | System.Windows.Forms.AnchorStyles.Left)
198            | System.Windows.Forms.AnchorStyles.Right)));
199      this.tabControl.Controls.Add(this.byTargetTabPage);
200      this.tabControl.Controls.Add(this.byTableTabPage);
201      this.tabControl.Location = new System.Drawing.Point(0, 84);
202      this.tabControl.Name = "tabControl";
203      this.tabControl.SelectedIndex = 0;
204      this.tabControl.Size = new System.Drawing.Size(654, 413);
205      this.tabControl.TabIndex = 6;
206      //
207      // byTargetTabPage
208      //
209      this.byTargetTabPage.Controls.Add(this.relativeOrAbsoluteComboBox);
210      this.byTargetTabPage.Controls.Add(this.targetChart);
211      this.byTargetTabPage.Controls.Add(this.showLabelsCheckBox);
212      this.byTargetTabPage.Controls.Add(this.markerCheckBox);
213      this.byTargetTabPage.Controls.Add(this.targetLogScalingCheckBox);
214      this.byTargetTabPage.Controls.Add(this.targetsLabel);
215      this.byTargetTabPage.Controls.Add(this.aggregateTargetsCheckBox);
216      this.byTargetTabPage.Controls.Add(this.targetsTextBox);
217      this.byTargetTabPage.Controls.Add(this.generateTargetsButton);
218      this.byTargetTabPage.Controls.Add(this.addTargetsAsResultButton);
219      this.byTargetTabPage.Location = new System.Drawing.Point(4, 22);
220      this.byTargetTabPage.Name = "byTargetTabPage";
221      this.byTargetTabPage.Padding = new System.Windows.Forms.Padding(3);
222      this.byTargetTabPage.Size = new System.Drawing.Size(646, 387);
223      this.byTargetTabPage.TabIndex = 0;
224      this.byTargetTabPage.Text = "Performance by Target";
225      this.byTargetTabPage.UseVisualStyleBackColor = true;
226      //
227      // relativeOrAbsoluteComboBox
228      //
229      this.relativeOrAbsoluteComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
230      this.relativeOrAbsoluteComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
231      this.relativeOrAbsoluteComboBox.FormattingEnabled = true;
232      this.relativeOrAbsoluteComboBox.Items.AddRange(new object[] {
233            "relative",
234            "absolute"});
235      this.relativeOrAbsoluteComboBox.Location = new System.Drawing.Point(269, 8);
236      this.relativeOrAbsoluteComboBox.Name = "relativeOrAbsoluteComboBox";
237      this.relativeOrAbsoluteComboBox.Size = new System.Drawing.Size(99, 21);
238      this.relativeOrAbsoluteComboBox.TabIndex = 8;
239      this.relativeOrAbsoluteComboBox.SelectedIndexChanged += new System.EventHandler(this.relativeOrAbsoluteComboBox_SelectedIndexChanged);
240      //
241      // targetChart
242      //
243      this.targetChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
244            | System.Windows.Forms.AnchorStyles.Left)
245            | System.Windows.Forms.AnchorStyles.Right)));
246      chartArea2.AxisX.IsStartedFromZero = false;
247      chartArea2.AxisX.MinorGrid.Enabled = true;
248      chartArea2.AxisX.MinorGrid.LineColor = System.Drawing.Color.WhiteSmoke;
249      chartArea2.AxisX.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
250      chartArea2.AxisY.Maximum = 1D;
251      chartArea2.AxisY.Minimum = 0D;
252      chartArea2.AxisY.MinorGrid.Enabled = true;
253      chartArea2.AxisY.MinorGrid.LineColor = System.Drawing.Color.WhiteSmoke;
254      chartArea2.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
255      chartArea2.Name = "ChartArea1";
256      this.targetChart.ChartAreas.Add(chartArea2);
257      legend2.Alignment = System.Drawing.StringAlignment.Center;
258      legend2.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
259      legend2.Name = "Legend1";
260      this.targetChart.Legends.Add(legend2);
261      this.targetChart.Location = new System.Drawing.Point(6, 34);
262      this.targetChart.Name = "targetChart";
263      this.targetChart.Size = new System.Drawing.Size(634, 324);
264      this.targetChart.SuppressExceptions = true;
265      this.targetChart.TabIndex = 7;
266      this.targetChart.Text = "enhancedChart1";
267      this.targetChart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
268      this.targetChart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
269      this.targetChart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
270      //
271      // showLabelsCheckBox
272      //
273      this.showLabelsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
274      this.showLabelsCheckBox.AutoSize = true;
275      this.showLabelsCheckBox.Checked = true;
276      this.showLabelsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
277      this.showLabelsCheckBox.Location = new System.Drawing.Point(227, 364);
278      this.showLabelsCheckBox.Name = "showLabelsCheckBox";
279      this.showLabelsCheckBox.Size = new System.Drawing.Size(81, 17);
280      this.showLabelsCheckBox.TabIndex = 6;
281      this.showLabelsCheckBox.Text = "show labels";
282      this.showLabelsCheckBox.UseVisualStyleBackColor = true;
283      this.showLabelsCheckBox.CheckedChanged += new System.EventHandler(this.showLabelsCheckBox_CheckedChanged);
284      //
285      // markerCheckBox
286      //
287      this.markerCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
288      this.markerCheckBox.AutoSize = true;
289      this.markerCheckBox.Location = new System.Drawing.Point(127, 364);
290      this.markerCheckBox.Name = "markerCheckBox";
291      this.markerCheckBox.Size = new System.Drawing.Size(91, 17);
292      this.markerCheckBox.TabIndex = 6;
293      this.markerCheckBox.Text = "show markers";
294      this.markerCheckBox.UseVisualStyleBackColor = true;
295      this.markerCheckBox.CheckedChanged += new System.EventHandler(this.markerCheckBox_CheckedChanged);
296      //
297      // byTableTabPage
298      //
299      this.byTableTabPage.Controls.Add(this.ertTextBox);
300      this.byTableTabPage.Location = new System.Drawing.Point(4, 22);
301      this.byTableTabPage.Name = "byTableTabPage";
302      this.byTableTabPage.Padding = new System.Windows.Forms.Padding(3);
303      this.byTableTabPage.Size = new System.Drawing.Size(646, 387);
304      this.byTableTabPage.TabIndex = 2;
305      this.byTableTabPage.Text = "Expected Runtime Tables";
306      this.byTableTabPage.UseVisualStyleBackColor = true;
307      //
308      // problemComboBox
309      //
310      this.problemComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
311            | System.Windows.Forms.AnchorStyles.Right)));
312      this.problemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
313      this.problemComboBox.FormattingEnabled = true;
314      this.problemComboBox.Location = new System.Drawing.Point(69, 30);
315      this.problemComboBox.Name = "problemComboBox";
316      this.problemComboBox.Size = new System.Drawing.Size(582, 21);
317      this.problemComboBox.TabIndex = 3;
318      this.problemComboBox.SelectedIndexChanged += new System.EventHandler(this.problemComboBox_SelectedIndexChanged);
319      //
320      // problemLabel
321      //
322      this.problemLabel.AutoSize = true;
323      this.problemLabel.Location = new System.Drawing.Point(3, 33);
324      this.problemLabel.Name = "problemLabel";
325      this.problemLabel.Size = new System.Drawing.Size(48, 13);
326      this.problemLabel.TabIndex = 2;
327      this.problemLabel.Text = "Problem:";
328      //
329      // ertTextBox
330      //
331      this.ertTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
332      this.ertTextBox.Font = new System.Drawing.Font("Courier New", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
333      this.ertTextBox.Location = new System.Drawing.Point(3, 3);
334      this.ertTextBox.Multiline = true;
335      this.ertTextBox.Name = "ertTextBox";
336      this.ertTextBox.ReadOnly = true;
337      this.ertTextBox.Size = new System.Drawing.Size(640, 381);
338      this.ertTextBox.TabIndex = 0;
339      this.ertTextBox.WordWrap = false;
340      //
341      // RunCollectionSimpleRLDView
342      //
343      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
344      this.Controls.Add(this.tabControl);
345      this.Controls.Add(this.groupComboBox);
346      this.Controls.Add(this.groupLabel);
347      this.Controls.Add(this.problemLabel);
348      this.Controls.Add(this.dataTableLabel);
349      this.Controls.Add(this.problemComboBox);
350      this.Controls.Add(this.dataTableComboBox);
351      this.Name = "RunCollectionSimpleRLDView";
352      this.Size = new System.Drawing.Size(654, 497);
353      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
354      this.tabControl.ResumeLayout(false);
355      this.byTargetTabPage.ResumeLayout(false);
356      this.byTargetTabPage.PerformLayout();
357      ((System.ComponentModel.ISupportInitialize)(this.targetChart)).EndInit();
358      this.byTableTabPage.ResumeLayout(false);
359      this.byTableTabPage.PerformLayout();
360      this.ResumeLayout(false);
361      this.PerformLayout();
362
363    }
364
365    #endregion
366
367    private System.Windows.Forms.ComboBox dataTableComboBox;
368    private System.Windows.Forms.Label dataTableLabel;
369    private System.Windows.Forms.Label groupLabel;
370    private System.Windows.Forms.ComboBox groupComboBox;
371    private System.Windows.Forms.CheckBox targetLogScalingCheckBox;
372    private System.Windows.Forms.TextBox targetsTextBox;
373    private System.Windows.Forms.Label targetsLabel;
374    protected System.Windows.Forms.ErrorProvider errorProvider;
375    private System.Windows.Forms.Button addTargetsAsResultButton;
376    private System.Windows.Forms.Button generateTargetsButton;
377    private System.Windows.Forms.ToolTip toolTip;
378    private System.Windows.Forms.CheckBox aggregateTargetsCheckBox;
379    private System.Windows.Forms.TabControl tabControl;
380    private System.Windows.Forms.TabPage byTargetTabPage;
381    private System.Windows.Forms.TabPage byTableTabPage;
382    private System.Windows.Forms.Label problemLabel;
383    private System.Windows.Forms.ComboBox problemComboBox;
384    private Visualization.ChartControlsExtensions.EnhancedChart targetChart;
385    private System.Windows.Forms.CheckBox markerCheckBox;
386    private System.Windows.Forms.ComboBox relativeOrAbsoluteComboBox;
387    private System.Windows.Forms.CheckBox showLabelsCheckBox;
388    private System.Windows.Forms.TextBox ertTextBox;
389  }
390}
Note: See TracBrowser for help on using the repository browser.