1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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 |
|
---|
22 | namespace HeuristicLab.Problems.VehicleRouting.Views {
|
---|
23 | partial class VRPImportDialog {
|
---|
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
|
---|
48 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
49 | this.openVRPFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
50 | this.tspFileLabel = new System.Windows.Forms.Label();
|
---|
51 | this.openVRPFileButton = new System.Windows.Forms.Button();
|
---|
52 | this.tspFileTextBox = new System.Windows.Forms.TextBox();
|
---|
53 | this.tourFileLabel = new System.Windows.Forms.Label();
|
---|
54 | this.openTourFileButton = new System.Windows.Forms.Button();
|
---|
55 | this.tourFileTextBox = new System.Windows.Forms.TextBox();
|
---|
56 | this.openTourFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
57 | this.clearTourFileButton = new System.Windows.Forms.Button();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // okButton
|
---|
61 | //
|
---|
62 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
63 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
64 | this.okButton.Enabled = false;
|
---|
65 | this.okButton.Location = new System.Drawing.Point(422, 69);
|
---|
66 | this.okButton.Name = "okButton";
|
---|
67 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
68 | this.okButton.TabIndex = 9;
|
---|
69 | this.okButton.Text = "&OK";
|
---|
70 | this.okButton.UseVisualStyleBackColor = true;
|
---|
71 | //
|
---|
72 | // cancelButton
|
---|
73 | //
|
---|
74 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
75 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
76 | this.cancelButton.Location = new System.Drawing.Point(499, 69);
|
---|
77 | this.cancelButton.Name = "cancelButton";
|
---|
78 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
79 | this.cancelButton.TabIndex = 10;
|
---|
80 | this.cancelButton.Text = "&Cancel";
|
---|
81 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
82 | //
|
---|
83 | // openVRPFileDialog
|
---|
84 | //
|
---|
85 | this.openVRPFileDialog.DefaultExt = "vrp";
|
---|
86 | this.openVRPFileDialog.FileName = "vrp";
|
---|
87 | this.openVRPFileDialog.Filter = "TSPLib Format|*.vrp|Solomon Format|*.txt|ORLib Format|*.txt";
|
---|
88 | this.openVRPFileDialog.Title = "Open TSP File";
|
---|
89 | //
|
---|
90 | // tspFileLabel
|
---|
91 | //
|
---|
92 | this.tspFileLabel.AutoSize = true;
|
---|
93 | this.tspFileLabel.Location = new System.Drawing.Point(12, 15);
|
---|
94 | this.tspFileLabel.Name = "tspFileLabel";
|
---|
95 | this.tspFileLabel.Size = new System.Drawing.Size(51, 13);
|
---|
96 | this.tspFileLabel.TabIndex = 0;
|
---|
97 | this.tspFileLabel.Text = "&VRP File:";
|
---|
98 | //
|
---|
99 | // openVRPFileButton
|
---|
100 | //
|
---|
101 | this.openVRPFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
102 | this.openVRPFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
103 | this.openVRPFileButton.Location = new System.Drawing.Point(520, 10);
|
---|
104 | this.openVRPFileButton.Name = "openVRPFileButton";
|
---|
105 | this.openVRPFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
106 | this.openVRPFileButton.TabIndex = 2;
|
---|
107 | this.openVRPFileButton.UseVisualStyleBackColor = true;
|
---|
108 | this.openVRPFileButton.Click += new System.EventHandler(this.openVRPFileButton_Click);
|
---|
109 | //
|
---|
110 | // tspFileTextBox
|
---|
111 | //
|
---|
112 | this.tspFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
113 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
114 | this.tspFileTextBox.Enabled = false;
|
---|
115 | this.tspFileTextBox.Location = new System.Drawing.Point(136, 12);
|
---|
116 | this.tspFileTextBox.Name = "tspFileTextBox";
|
---|
117 | this.tspFileTextBox.ReadOnly = true;
|
---|
118 | this.tspFileTextBox.Size = new System.Drawing.Size(378, 20);
|
---|
119 | this.tspFileTextBox.TabIndex = 1;
|
---|
120 | //
|
---|
121 | // tourFileLabel
|
---|
122 | //
|
---|
123 | this.tourFileLabel.AutoSize = true;
|
---|
124 | this.tourFileLabel.Location = new System.Drawing.Point(12, 41);
|
---|
125 | this.tourFileLabel.Name = "tourFileLabel";
|
---|
126 | this.tourFileLabel.Size = new System.Drawing.Size(119, 13);
|
---|
127 | this.tourFileLabel.TabIndex = 5;
|
---|
128 | this.tourFileLabel.Text = "&Optimal VRP Tours File:";
|
---|
129 | //
|
---|
130 | // openTourFileButton
|
---|
131 | //
|
---|
132 | this.openTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
133 | this.openTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
134 | this.openTourFileButton.Location = new System.Drawing.Point(520, 35);
|
---|
135 | this.openTourFileButton.Name = "openTourFileButton";
|
---|
136 | this.openTourFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
137 | this.openTourFileButton.TabIndex = 7;
|
---|
138 | this.openTourFileButton.UseVisualStyleBackColor = true;
|
---|
139 | this.openTourFileButton.Click += new System.EventHandler(this.openTourFileButton_Click);
|
---|
140 | //
|
---|
141 | // tourFileTextBox
|
---|
142 | //
|
---|
143 | this.tourFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
144 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
145 | this.tourFileTextBox.Enabled = false;
|
---|
146 | this.tourFileTextBox.Location = new System.Drawing.Point(136, 38);
|
---|
147 | this.tourFileTextBox.Name = "tourFileTextBox";
|
---|
148 | this.tourFileTextBox.ReadOnly = true;
|
---|
149 | this.tourFileTextBox.Size = new System.Drawing.Size(378, 20);
|
---|
150 | this.tourFileTextBox.TabIndex = 6;
|
---|
151 | //
|
---|
152 | // openTourFileDialog
|
---|
153 | //
|
---|
154 | this.openTourFileDialog.DefaultExt = "opt";
|
---|
155 | this.openTourFileDialog.FileName = "tour";
|
---|
156 | this.openTourFileDialog.Filter = "Optimal VRP Tour Files|*.opt";
|
---|
157 | this.openTourFileDialog.SupportMultiDottedExtensions = true;
|
---|
158 | this.openTourFileDialog.Title = "Open Optimal TSP Tour File";
|
---|
159 | //
|
---|
160 | // clearTourFileButton
|
---|
161 | //
|
---|
162 | this.clearTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
163 | this.clearTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
164 | this.clearTourFileButton.Location = new System.Drawing.Point(550, 35);
|
---|
165 | this.clearTourFileButton.Name = "clearTourFileButton";
|
---|
166 | this.clearTourFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
167 | this.clearTourFileButton.TabIndex = 8;
|
---|
168 | this.clearTourFileButton.UseVisualStyleBackColor = true;
|
---|
169 | this.clearTourFileButton.Click += new System.EventHandler(this.clearTourFileButton_Click);
|
---|
170 | //
|
---|
171 | // VRPImportDialog
|
---|
172 | //
|
---|
173 | this.AcceptButton = this.okButton;
|
---|
174 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
175 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
176 | this.CancelButton = this.cancelButton;
|
---|
177 | this.ClientSize = new System.Drawing.Size(586, 104);
|
---|
178 | this.Controls.Add(this.tourFileTextBox);
|
---|
179 | this.Controls.Add(this.tspFileTextBox);
|
---|
180 | this.Controls.Add(this.clearTourFileButton);
|
---|
181 | this.Controls.Add(this.openTourFileButton);
|
---|
182 | this.Controls.Add(this.openVRPFileButton);
|
---|
183 | this.Controls.Add(this.tourFileLabel);
|
---|
184 | this.Controls.Add(this.tspFileLabel);
|
---|
185 | this.Controls.Add(this.cancelButton);
|
---|
186 | this.Controls.Add(this.okButton);
|
---|
187 | this.HelpButton = true;
|
---|
188 | this.MaximizeBox = false;
|
---|
189 | this.MinimizeBox = false;
|
---|
190 | this.Name = "VRPImportDialog";
|
---|
191 | this.ShowIcon = false;
|
---|
192 | this.ShowInTaskbar = false;
|
---|
193 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
194 | this.Text = "Import VRP";
|
---|
195 | this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.VRPImportDialog_HelpButtonClicked);
|
---|
196 | this.ResumeLayout(false);
|
---|
197 | this.PerformLayout();
|
---|
198 |
|
---|
199 | }
|
---|
200 |
|
---|
201 | #endregion
|
---|
202 |
|
---|
203 | private System.Windows.Forms.Button okButton;
|
---|
204 | private System.Windows.Forms.Button cancelButton;
|
---|
205 | private System.Windows.Forms.OpenFileDialog openVRPFileDialog;
|
---|
206 | private System.Windows.Forms.Label tspFileLabel;
|
---|
207 | private System.Windows.Forms.Button openVRPFileButton;
|
---|
208 | private System.Windows.Forms.TextBox tspFileTextBox;
|
---|
209 | private System.Windows.Forms.Label tourFileLabel;
|
---|
210 | private System.Windows.Forms.Button openTourFileButton;
|
---|
211 | private System.Windows.Forms.TextBox tourFileTextBox;
|
---|
212 | private System.Windows.Forms.OpenFileDialog openTourFileDialog;
|
---|
213 | private System.Windows.Forms.Button clearTourFileButton;
|
---|
214 | }
|
---|
215 | } |
---|