Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Routing.TSP/3.3/TSPInjectorView.Designer.cs @ 2520

Last change on this file since 2520 was 2520, checked in by swagner, 14 years ago

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File size: 12.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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
22namespace HeuristicLab.Routing.TSP {
23  partial class TSPInjectorView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
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.citiesLabel = new System.Windows.Forms.Label();
48      this.bestKnownQualityTextBox = new System.Windows.Forms.TextBox();
49      this.bestKnownQualityAvailableCheckBox = new System.Windows.Forms.CheckBox();
50      this.citiesTextBox = new System.Windows.Forms.TextBox();
51      this.importInstanceButton = new System.Windows.Forms.Button();
52      this.bestKnownQualityLabel = new System.Windows.Forms.Label();
53      this.bestKnownQualityAvailableLabel = new System.Windows.Forms.Label();
54      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
55      this.tabControl = new System.Windows.Forms.TabControl();
56      this.dataTabPage = new System.Windows.Forms.TabPage();
57      this.variableInfosTabPage = new System.Windows.Forms.TabPage();
58      this.operatorBaseVariableInfosView = new HeuristicLab.Core.Views.OperatorBaseVariableInfosView();
59      this.descriptionTabPage = new System.Windows.Forms.TabPage();
60      this.operatorBaseDescriptionView = new HeuristicLab.Core.Views.OperatorBaseDescriptionView();
61      this.tabControl.SuspendLayout();
62      this.dataTabPage.SuspendLayout();
63      this.variableInfosTabPage.SuspendLayout();
64      this.descriptionTabPage.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // citiesLabel
68      //
69      this.citiesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
70      this.citiesLabel.AutoSize = true;
71      this.citiesLabel.Location = new System.Drawing.Point(6, 36);
72      this.citiesLabel.Name = "citiesLabel";
73      this.citiesLabel.Size = new System.Drawing.Size(35, 13);
74      this.citiesLabel.TabIndex = 0;
75      this.citiesLabel.Text = "&Cities:";
76      //
77      // bestKnownQualityTextBox
78      //
79      this.bestKnownQualityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
80      this.bestKnownQualityTextBox.Location = new System.Drawing.Point(166, 79);
81      this.bestKnownQualityTextBox.Name = "bestKnownQualityTextBox";
82      this.bestKnownQualityTextBox.Size = new System.Drawing.Size(96, 20);
83      this.bestKnownQualityTextBox.TabIndex = 5;
84      this.bestKnownQualityTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.bestKnownQualityTextBox_Validating);
85      //
86      // bestKnownQualityAvailableCheckBox
87      //
88      this.bestKnownQualityAvailableCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
89      this.bestKnownQualityAvailableCheckBox.AutoSize = true;
90      this.bestKnownQualityAvailableCheckBox.Location = new System.Drawing.Point(166, 59);
91      this.bestKnownQualityAvailableCheckBox.Name = "bestKnownQualityAvailableCheckBox";
92      this.bestKnownQualityAvailableCheckBox.Size = new System.Drawing.Size(15, 14);
93      this.bestKnownQualityAvailableCheckBox.TabIndex = 3;
94      this.bestKnownQualityAvailableCheckBox.UseVisualStyleBackColor = true;
95      this.bestKnownQualityAvailableCheckBox.CheckedChanged += new System.EventHandler(this.bestKnownQualityAvailableCheckBox_CheckedChanged);
96      //
97      // citiesTextBox
98      //
99      this.citiesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
100      this.citiesTextBox.Location = new System.Drawing.Point(166, 33);
101      this.citiesTextBox.Name = "citiesTextBox";
102      this.citiesTextBox.ReadOnly = true;
103      this.citiesTextBox.Size = new System.Drawing.Size(96, 20);
104      this.citiesTextBox.TabIndex = 1;
105      //
106      // importInstanceButton
107      //
108      this.importInstanceButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
109      this.importInstanceButton.Location = new System.Drawing.Point(6, 105);
110      this.importInstanceButton.Name = "importInstanceButton";
111      this.importInstanceButton.Size = new System.Drawing.Size(256, 21);
112      this.importInstanceButton.TabIndex = 6;
113      this.importInstanceButton.Text = "&Import Instance from TSPLib";
114      this.importInstanceButton.UseVisualStyleBackColor = true;
115      this.importInstanceButton.Click += new System.EventHandler(this.importInstanceButton_Click);
116      //
117      // bestKnownQualityLabel
118      //
119      this.bestKnownQualityLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
120      this.bestKnownQualityLabel.AutoSize = true;
121      this.bestKnownQualityLabel.Location = new System.Drawing.Point(6, 82);
122      this.bestKnownQualityLabel.Name = "bestKnownQualityLabel";
123      this.bestKnownQualityLabel.Size = new System.Drawing.Size(102, 13);
124      this.bestKnownQualityLabel.TabIndex = 4;
125      this.bestKnownQualityLabel.Text = "&Best Known Quality:";
126      //
127      // bestKnownQualityAvailableLabel
128      //
129      this.bestKnownQualityAvailableLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
130      this.bestKnownQualityAvailableLabel.AutoSize = true;
131      this.bestKnownQualityAvailableLabel.Location = new System.Drawing.Point(6, 59);
132      this.bestKnownQualityAvailableLabel.Name = "bestKnownQualityAvailableLabel";
133      this.bestKnownQualityAvailableLabel.Size = new System.Drawing.Size(148, 13);
134      this.bestKnownQualityAvailableLabel.TabIndex = 2;
135      this.bestKnownQualityAvailableLabel.Text = "Best Known Quality &Available:";
136      //
137      // openFileDialog
138      //
139      this.openFileDialog.DefaultExt = "tsp";
140      this.openFileDialog.FileName = "tsp";
141      this.openFileDialog.Filter = "TSPLib files|*.tsp|All files|*.*";
142      this.openFileDialog.Title = "Import TSPLib File";
143      //
144      // tabControl
145      //
146      this.tabControl.Controls.Add(this.dataTabPage);
147      this.tabControl.Controls.Add(this.variableInfosTabPage);
148      this.tabControl.Controls.Add(this.descriptionTabPage);
149      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
150      this.tabControl.Location = new System.Drawing.Point(0, 0);
151      this.tabControl.Name = "tabControl";
152      this.tabControl.SelectedIndex = 0;
153      this.tabControl.Size = new System.Drawing.Size(276, 184);
154      this.tabControl.TabIndex = 0;
155      //
156      // dataTabPage
157      //
158      this.dataTabPage.Controls.Add(this.citiesLabel);
159      this.dataTabPage.Controls.Add(this.bestKnownQualityAvailableLabel);
160      this.dataTabPage.Controls.Add(this.bestKnownQualityTextBox);
161      this.dataTabPage.Controls.Add(this.bestKnownQualityLabel);
162      this.dataTabPage.Controls.Add(this.bestKnownQualityAvailableCheckBox);
163      this.dataTabPage.Controls.Add(this.importInstanceButton);
164      this.dataTabPage.Controls.Add(this.citiesTextBox);
165      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
166      this.dataTabPage.Name = "dataTabPage";
167      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
168      this.dataTabPage.Size = new System.Drawing.Size(268, 158);
169      this.dataTabPage.TabIndex = 0;
170      this.dataTabPage.Text = "TSP Data";
171      this.dataTabPage.UseVisualStyleBackColor = true;
172      //
173      // variableInfosTabPage
174      //
175      this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
176      this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
177      this.variableInfosTabPage.Name = "variableInfosTabPage";
178      this.variableInfosTabPage.Padding = new System.Windows.Forms.Padding(3);
179      this.variableInfosTabPage.Size = new System.Drawing.Size(268, 158);
180      this.variableInfosTabPage.TabIndex = 1;
181      this.variableInfosTabPage.Text = "Variable Infos";
182      this.variableInfosTabPage.UseVisualStyleBackColor = true;
183      //
184      // operatorBaseVariableInfosView
185      //
186      this.operatorBaseVariableInfosView.Caption = "Operator";
187      this.operatorBaseVariableInfosView.Dock = System.Windows.Forms.DockStyle.Fill;
188      this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
189      this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
190      this.operatorBaseVariableInfosView.Operator = null;
191      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(262, 152);
192      this.operatorBaseVariableInfosView.TabIndex = 0;
193      //
194      // descriptionTabPage
195      //
196      this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
197      this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
198      this.descriptionTabPage.Name = "descriptionTabPage";
199      this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
200      this.descriptionTabPage.Size = new System.Drawing.Size(268, 158);
201      this.descriptionTabPage.TabIndex = 2;
202      this.descriptionTabPage.Text = "Description";
203      this.descriptionTabPage.UseVisualStyleBackColor = true;
204      //
205      // operatorBaseDescriptionView
206      //
207      this.operatorBaseDescriptionView.Caption = "Operator";
208      this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
209      this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
210      this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
211      this.operatorBaseDescriptionView.Operator = null;
212      this.operatorBaseDescriptionView.Size = new System.Drawing.Size(262, 152);
213      this.operatorBaseDescriptionView.TabIndex = 0;
214      //
215      // TSPInjectorView
216      //
217      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
218      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
219      this.Controls.Add(this.tabControl);
220      this.Name = "TSPInjectorView";
221      this.Size = new System.Drawing.Size(276, 184);
222      this.tabControl.ResumeLayout(false);
223      this.dataTabPage.ResumeLayout(false);
224      this.dataTabPage.PerformLayout();
225      this.variableInfosTabPage.ResumeLayout(false);
226      this.descriptionTabPage.ResumeLayout(false);
227      this.ResumeLayout(false);
228
229    }
230
231    #endregion
232
233    private System.Windows.Forms.Label citiesLabel;
234    private System.Windows.Forms.TextBox bestKnownQualityTextBox;
235    private System.Windows.Forms.CheckBox bestKnownQualityAvailableCheckBox;
236    private System.Windows.Forms.TextBox citiesTextBox;
237    private System.Windows.Forms.Button importInstanceButton;
238    private System.Windows.Forms.Label bestKnownQualityLabel;
239    private System.Windows.Forms.Label bestKnownQualityAvailableLabel;
240    private System.Windows.Forms.OpenFileDialog openFileDialog;
241    private System.Windows.Forms.TabControl tabControl;
242    private System.Windows.Forms.TabPage dataTabPage;
243    private System.Windows.Forms.TabPage variableInfosTabPage;
244    private HeuristicLab.Core.Views.OperatorBaseVariableInfosView operatorBaseVariableInfosView;
245    private System.Windows.Forms.TabPage descriptionTabPage;
246    private HeuristicLab.Core.Views.OperatorBaseDescriptionView operatorBaseDescriptionView;
247  }
248}
Note: See TracBrowser for help on using the repository browser.