Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.Orienteering.Views/3.3/OrienteeringProblemDataView.Designer.cs @ 17529

Last change on this file since 17529 was 17529, checked in by abeham, 4 years ago

#2521: some fixes and reusing handling of distance measure as defined in TSP

File size: 13.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Problems.Orienteering.Views {
23  partial class OrienteeringProblemDataView {
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.tabControl = new System.Windows.Forms.TabControl();
48      this.routingDataTabPage = new System.Windows.Forms.TabPage();
49      this.routingDataViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      this.OrienteeringDataTabPage = new System.Windows.Forms.TabPage();
51      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
52      this.scoresArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
53      this.scoresLabel = new System.Windows.Forms.Label();
54      this.pointVisitingCostsTextBox = new System.Windows.Forms.TextBox();
55      this.pointVisitingCostsLabel = new System.Windows.Forms.Label();
56      this.maximumTravelCostsTextBox = new System.Windows.Forms.TextBox();
57      this.maximumTravelCostsLabel = new System.Windows.Forms.Label();
58      this.terminalPointTextBox = new System.Windows.Forms.TextBox();
59      this.terminalPointLabel = new System.Windows.Forms.Label();
60      this.startingPointTextBox = new System.Windows.Forms.TextBox();
61      this.startingPointLabel = new System.Windows.Forms.Label();
62      this.tabControl.SuspendLayout();
63      this.routingDataTabPage.SuspendLayout();
64      this.OrienteeringDataTabPage.SuspendLayout();
65      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
66      this.splitContainer1.Panel1.SuspendLayout();
67      this.splitContainer1.Panel2.SuspendLayout();
68      this.splitContainer1.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // tabControl
72      //
73      this.tabControl.Controls.Add(this.routingDataTabPage);
74      this.tabControl.Controls.Add(this.OrienteeringDataTabPage);
75      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
76      this.tabControl.Location = new System.Drawing.Point(0, 0);
77      this.tabControl.Name = "tabControl";
78      this.tabControl.SelectedIndex = 0;
79      this.tabControl.Size = new System.Drawing.Size(541, 427);
80      this.tabControl.TabIndex = 0;
81      //
82      // routingDataTabPage
83      //
84      this.routingDataTabPage.Controls.Add(this.routingDataViewHost);
85      this.routingDataTabPage.Location = new System.Drawing.Point(4, 22);
86      this.routingDataTabPage.Name = "routingDataTabPage";
87      this.routingDataTabPage.Padding = new System.Windows.Forms.Padding(3);
88      this.routingDataTabPage.Size = new System.Drawing.Size(533, 401);
89      this.routingDataTabPage.TabIndex = 0;
90      this.routingDataTabPage.Text = "Routing Data";
91      this.routingDataTabPage.UseVisualStyleBackColor = true;
92      //
93      // routingDataViewHost
94      //
95      this.routingDataViewHost.Caption = "View";
96      this.routingDataViewHost.Content = null;
97      this.routingDataViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.routingDataViewHost.Enabled = false;
99      this.routingDataViewHost.Location = new System.Drawing.Point(3, 3);
100      this.routingDataViewHost.Name = "routingDataViewHost";
101      this.routingDataViewHost.ReadOnly = false;
102      this.routingDataViewHost.Size = new System.Drawing.Size(527, 395);
103      this.routingDataViewHost.TabIndex = 0;
104      this.routingDataViewHost.ViewsLabelVisible = true;
105      this.routingDataViewHost.ViewType = null;
106      //
107      // OrienteeringDataTabPage
108      //
109      this.OrienteeringDataTabPage.Controls.Add(this.splitContainer1);
110      this.OrienteeringDataTabPage.Location = new System.Drawing.Point(4, 22);
111      this.OrienteeringDataTabPage.Name = "OrienteeringDataTabPage";
112      this.OrienteeringDataTabPage.Padding = new System.Windows.Forms.Padding(3);
113      this.OrienteeringDataTabPage.Size = new System.Drawing.Size(533, 401);
114      this.OrienteeringDataTabPage.TabIndex = 1;
115      this.OrienteeringDataTabPage.Text = "Orienteering Data";
116      this.OrienteeringDataTabPage.UseVisualStyleBackColor = true;
117      //
118      // splitContainer1
119      //
120      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
121      this.splitContainer1.Location = new System.Drawing.Point(3, 3);
122      this.splitContainer1.Name = "splitContainer1";
123      //
124      // splitContainer1.Panel1
125      //
126      this.splitContainer1.Panel1.Controls.Add(this.scoresArrayView);
127      this.splitContainer1.Panel1.Controls.Add(this.scoresLabel);
128      //
129      // splitContainer1.Panel2
130      //
131      this.splitContainer1.Panel2.Controls.Add(this.pointVisitingCostsTextBox);
132      this.splitContainer1.Panel2.Controls.Add(this.pointVisitingCostsLabel);
133      this.splitContainer1.Panel2.Controls.Add(this.maximumTravelCostsTextBox);
134      this.splitContainer1.Panel2.Controls.Add(this.maximumTravelCostsLabel);
135      this.splitContainer1.Panel2.Controls.Add(this.terminalPointTextBox);
136      this.splitContainer1.Panel2.Controls.Add(this.terminalPointLabel);
137      this.splitContainer1.Panel2.Controls.Add(this.startingPointTextBox);
138      this.splitContainer1.Panel2.Controls.Add(this.startingPointLabel);
139      this.splitContainer1.Size = new System.Drawing.Size(527, 395);
140      this.splitContainer1.SplitterDistance = 175;
141      this.splitContainer1.TabIndex = 0;
142      //
143      // scoresArrayView
144      //
145      this.scoresArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
146            | System.Windows.Forms.AnchorStyles.Left)
147            | System.Windows.Forms.AnchorStyles.Right)));
148      this.scoresArrayView.Caption = "StringConvertibleArray View";
149      this.scoresArrayView.Content = null;
150      this.scoresArrayView.Location = new System.Drawing.Point(3, 25);
151      this.scoresArrayView.Name = "scoresArrayView";
152      this.scoresArrayView.ReadOnly = false;
153      this.scoresArrayView.Size = new System.Drawing.Size(169, 367);
154      this.scoresArrayView.TabIndex = 1;
155      //
156      // scoresLabel
157      //
158      this.scoresLabel.AutoSize = true;
159      this.scoresLabel.Location = new System.Drawing.Point(5, 9);
160      this.scoresLabel.Name = "scoresLabel";
161      this.scoresLabel.Size = new System.Drawing.Size(43, 13);
162      this.scoresLabel.TabIndex = 0;
163      this.scoresLabel.Text = "Scores:";
164      //
165      // pointVisitingCostsTextBox
166      //
167      this.pointVisitingCostsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
168            | System.Windows.Forms.AnchorStyles.Right)));
169      this.pointVisitingCostsTextBox.Location = new System.Drawing.Point(126, 58);
170      this.pointVisitingCostsTextBox.Name = "pointVisitingCostsTextBox";
171      this.pointVisitingCostsTextBox.ReadOnly = true;
172      this.pointVisitingCostsTextBox.Size = new System.Drawing.Size(219, 20);
173      this.pointVisitingCostsTextBox.TabIndex = 1;
174      //
175      // pointVisitingCostsLabel
176      //
177      this.pointVisitingCostsLabel.AutoSize = true;
178      this.pointVisitingCostsLabel.Location = new System.Drawing.Point(4, 61);
179      this.pointVisitingCostsLabel.Name = "pointVisitingCostsLabel";
180      this.pointVisitingCostsLabel.Size = new System.Drawing.Size(99, 13);
181      this.pointVisitingCostsLabel.TabIndex = 0;
182      this.pointVisitingCostsLabel.Text = "Point Visiting Costs:";
183      //
184      // maximumTravelCostsTextBox
185      //
186      this.maximumTravelCostsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
187            | System.Windows.Forms.AnchorStyles.Right)));
188      this.maximumTravelCostsTextBox.Location = new System.Drawing.Point(126, 84);
189      this.maximumTravelCostsTextBox.Name = "maximumTravelCostsTextBox";
190      this.maximumTravelCostsTextBox.ReadOnly = true;
191      this.maximumTravelCostsTextBox.Size = new System.Drawing.Size(219, 20);
192      this.maximumTravelCostsTextBox.TabIndex = 1;
193      //
194      // maximumTravelCostsLabel
195      //
196      this.maximumTravelCostsLabel.AutoSize = true;
197      this.maximumTravelCostsLabel.Location = new System.Drawing.Point(4, 87);
198      this.maximumTravelCostsLabel.Name = "maximumTravelCostsLabel";
199      this.maximumTravelCostsLabel.Size = new System.Drawing.Size(116, 13);
200      this.maximumTravelCostsLabel.TabIndex = 0;
201      this.maximumTravelCostsLabel.Text = "Maximum Travel Costs:";
202      //
203      // terminalPointTextBox
204      //
205      this.terminalPointTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
206            | System.Windows.Forms.AnchorStyles.Right)));
207      this.terminalPointTextBox.Location = new System.Drawing.Point(126, 32);
208      this.terminalPointTextBox.Name = "terminalPointTextBox";
209      this.terminalPointTextBox.ReadOnly = true;
210      this.terminalPointTextBox.Size = new System.Drawing.Size(219, 20);
211      this.terminalPointTextBox.TabIndex = 1;
212      //
213      // terminalPointLabel
214      //
215      this.terminalPointLabel.AutoSize = true;
216      this.terminalPointLabel.Location = new System.Drawing.Point(4, 35);
217      this.terminalPointLabel.Name = "terminalPointLabel";
218      this.terminalPointLabel.Size = new System.Drawing.Size(77, 13);
219      this.terminalPointLabel.TabIndex = 0;
220      this.terminalPointLabel.Text = "Terminal Point:";
221      //
222      // startingPointTextBox
223      //
224      this.startingPointTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
225            | System.Windows.Forms.AnchorStyles.Right)));
226      this.startingPointTextBox.Location = new System.Drawing.Point(126, 6);
227      this.startingPointTextBox.Name = "startingPointTextBox";
228      this.startingPointTextBox.ReadOnly = true;
229      this.startingPointTextBox.Size = new System.Drawing.Size(219, 20);
230      this.startingPointTextBox.TabIndex = 1;
231      //
232      // startingPointLabel
233      //
234      this.startingPointLabel.AutoSize = true;
235      this.startingPointLabel.Location = new System.Drawing.Point(4, 9);
236      this.startingPointLabel.Name = "startingPointLabel";
237      this.startingPointLabel.Size = new System.Drawing.Size(73, 13);
238      this.startingPointLabel.TabIndex = 0;
239      this.startingPointLabel.Text = "Starting Point:";
240      //
241      // OrienteeringProblemDataView
242      //
243      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
244      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
245      this.Controls.Add(this.tabControl);
246      this.Name = "OrienteeringProblemDataView";
247      this.Size = new System.Drawing.Size(541, 427);
248      this.tabControl.ResumeLayout(false);
249      this.routingDataTabPage.ResumeLayout(false);
250      this.OrienteeringDataTabPage.ResumeLayout(false);
251      this.splitContainer1.Panel1.ResumeLayout(false);
252      this.splitContainer1.Panel1.PerformLayout();
253      this.splitContainer1.Panel2.ResumeLayout(false);
254      this.splitContainer1.Panel2.PerformLayout();
255      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
256      this.splitContainer1.ResumeLayout(false);
257      this.ResumeLayout(false);
258
259    }
260
261    #endregion
262
263    private System.Windows.Forms.TabControl tabControl;
264    private System.Windows.Forms.TabPage routingDataTabPage;
265    private MainForm.WindowsForms.ViewHost routingDataViewHost;
266    private System.Windows.Forms.TabPage OrienteeringDataTabPage;
267    private System.Windows.Forms.SplitContainer splitContainer1;
268    private Data.Views.StringConvertibleArrayView scoresArrayView;
269    private System.Windows.Forms.Label scoresLabel;
270    private System.Windows.Forms.TextBox startingPointTextBox;
271    private System.Windows.Forms.Label startingPointLabel;
272    private System.Windows.Forms.TextBox pointVisitingCostsTextBox;
273    private System.Windows.Forms.Label pointVisitingCostsLabel;
274    private System.Windows.Forms.TextBox maximumTravelCostsTextBox;
275    private System.Windows.Forms.Label maximumTravelCostsLabel;
276    private System.Windows.Forms.TextBox terminalPointTextBox;
277    private System.Windows.Forms.Label terminalPointLabel;
278  }
279}
Note: See TracBrowser for help on using the repository browser.