[7558] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12018] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7558] | 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.Instances.TSPLIB.Views {
|
---|
| 23 | partial class TSPLIBImportDialog {
|
---|
| 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.components = new System.ComponentModel.Container();
|
---|
| 48 | this.okButton = new System.Windows.Forms.Button();
|
---|
| 49 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.openTSPFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
| 51 | this.tspFileLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.openTSPFileButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.tspFileTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.tourFileLabel = new System.Windows.Forms.Label();
|
---|
| 55 | this.openTourFileButton = new System.Windows.Forms.Button();
|
---|
| 56 | this.tourFileTextBox = new System.Windows.Forms.TextBox();
|
---|
| 57 | this.qualityLabel = new System.Windows.Forms.Label();
|
---|
| 58 | this.qualityTextBox = new System.Windows.Forms.TextBox();
|
---|
| 59 | this.openTourFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
| 60 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
| 61 | this.clearTourFileButton = new System.Windows.Forms.Button();
|
---|
| 62 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 63 | this.SuspendLayout();
|
---|
| 64 | //
|
---|
| 65 | // okButton
|
---|
| 66 | //
|
---|
| 67 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 68 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
| 69 | this.okButton.Enabled = false;
|
---|
| 70 | this.okButton.Location = new System.Drawing.Point(418, 97);
|
---|
| 71 | this.okButton.Name = "okButton";
|
---|
| 72 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 73 | this.okButton.TabIndex = 9;
|
---|
| 74 | this.okButton.Text = "&OK";
|
---|
| 75 | this.okButton.UseVisualStyleBackColor = true;
|
---|
| 76 | //
|
---|
| 77 | // cancelButton
|
---|
| 78 | //
|
---|
| 79 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 80 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
| 81 | this.cancelButton.Location = new System.Drawing.Point(499, 97);
|
---|
| 82 | this.cancelButton.Name = "cancelButton";
|
---|
| 83 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 84 | this.cancelButton.TabIndex = 10;
|
---|
| 85 | this.cancelButton.Text = "&Cancel";
|
---|
| 86 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
| 87 | //
|
---|
| 88 | // openTSPFileDialog
|
---|
| 89 | //
|
---|
| 90 | this.openTSPFileDialog.DefaultExt = "tsp";
|
---|
| 91 | this.openTSPFileDialog.FileName = "tsp";
|
---|
| 92 | this.openTSPFileDialog.Filter = "TSP Files|*.tsp|All Files|*.*";
|
---|
| 93 | this.openTSPFileDialog.Title = "Open TSP File";
|
---|
| 94 | //
|
---|
| 95 | // tspFileLabel
|
---|
| 96 | //
|
---|
| 97 | this.tspFileLabel.AutoSize = true;
|
---|
| 98 | this.tspFileLabel.Location = new System.Drawing.Point(12, 15);
|
---|
| 99 | this.tspFileLabel.Name = "tspFileLabel";
|
---|
| 100 | this.tspFileLabel.Size = new System.Drawing.Size(50, 13);
|
---|
| 101 | this.tspFileLabel.TabIndex = 0;
|
---|
| 102 | this.tspFileLabel.Text = "&TSP File:";
|
---|
| 103 | //
|
---|
| 104 | // openTSPFileButton
|
---|
| 105 | //
|
---|
| 106 | this.openTSPFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 107 | this.openTSPFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
| 108 | this.openTSPFileButton.Location = new System.Drawing.Point(520, 10);
|
---|
| 109 | this.openTSPFileButton.Name = "openTSPFileButton";
|
---|
| 110 | this.openTSPFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 111 | this.openTSPFileButton.TabIndex = 2;
|
---|
| 112 | this.openTSPFileButton.UseVisualStyleBackColor = true;
|
---|
| 113 | this.openTSPFileButton.Click += new System.EventHandler(this.openTSPFileButton_Click);
|
---|
| 114 | //
|
---|
| 115 | // tspFileTextBox
|
---|
| 116 | //
|
---|
| 117 | this.tspFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 118 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 119 | this.tspFileTextBox.Enabled = false;
|
---|
| 120 | this.tspFileTextBox.Location = new System.Drawing.Point(136, 12);
|
---|
| 121 | this.tspFileTextBox.Name = "tspFileTextBox";
|
---|
| 122 | this.tspFileTextBox.ReadOnly = true;
|
---|
| 123 | this.tspFileTextBox.Size = new System.Drawing.Size(378, 20);
|
---|
| 124 | this.tspFileTextBox.TabIndex = 1;
|
---|
| 125 | //
|
---|
| 126 | // tourFileLabel
|
---|
| 127 | //
|
---|
| 128 | this.tourFileLabel.AutoSize = true;
|
---|
| 129 | this.tourFileLabel.Location = new System.Drawing.Point(12, 67);
|
---|
| 130 | this.tourFileLabel.Name = "tourFileLabel";
|
---|
| 131 | this.tourFileLabel.Size = new System.Drawing.Size(113, 13);
|
---|
| 132 | this.tourFileLabel.TabIndex = 5;
|
---|
| 133 | this.tourFileLabel.Text = "&Optimal TSP Tour File:";
|
---|
| 134 | //
|
---|
| 135 | // openTourFileButton
|
---|
| 136 | //
|
---|
| 137 | this.openTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 138 | this.openTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
| 139 | this.openTourFileButton.Location = new System.Drawing.Point(520, 62);
|
---|
| 140 | this.openTourFileButton.Name = "openTourFileButton";
|
---|
| 141 | this.openTourFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 142 | this.openTourFileButton.TabIndex = 7;
|
---|
| 143 | this.openTourFileButton.UseVisualStyleBackColor = true;
|
---|
| 144 | this.openTourFileButton.Click += new System.EventHandler(this.openTourFileButton_Click);
|
---|
| 145 | //
|
---|
| 146 | // tourFileTextBox
|
---|
| 147 | //
|
---|
| 148 | this.tourFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 149 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 150 | this.tourFileTextBox.Enabled = false;
|
---|
| 151 | this.tourFileTextBox.Location = new System.Drawing.Point(136, 64);
|
---|
| 152 | this.tourFileTextBox.Name = "tourFileTextBox";
|
---|
| 153 | this.tourFileTextBox.ReadOnly = true;
|
---|
| 154 | this.tourFileTextBox.Size = new System.Drawing.Size(378, 20);
|
---|
| 155 | this.tourFileTextBox.TabIndex = 6;
|
---|
| 156 | //
|
---|
| 157 | // qualityLabel
|
---|
| 158 | //
|
---|
| 159 | this.qualityLabel.AutoSize = true;
|
---|
| 160 | this.qualityLabel.Location = new System.Drawing.Point(12, 41);
|
---|
| 161 | this.qualityLabel.Name = "qualityLabel";
|
---|
| 162 | this.qualityLabel.Size = new System.Drawing.Size(102, 13);
|
---|
| 163 | this.qualityLabel.TabIndex = 3;
|
---|
| 164 | this.qualityLabel.Text = "&Best Known Quality:";
|
---|
| 165 | //
|
---|
| 166 | // qualityTextBox
|
---|
| 167 | //
|
---|
| 168 | this.qualityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 169 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 170 | this.qualityTextBox.Location = new System.Drawing.Point(136, 38);
|
---|
| 171 | this.qualityTextBox.Name = "qualityTextBox";
|
---|
| 172 | this.qualityTextBox.Size = new System.Drawing.Size(378, 20);
|
---|
| 173 | this.qualityTextBox.TabIndex = 4;
|
---|
| 174 | this.qualityTextBox.Validated += new System.EventHandler(this.qualityTextBox_Validated);
|
---|
| 175 | this.qualityTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.qualityTextBox_KeyDown);
|
---|
| 176 | this.qualityTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.qualityTextBox_Validating);
|
---|
| 177 | //
|
---|
| 178 | // openTourFileDialog
|
---|
| 179 | //
|
---|
| 180 | this.openTourFileDialog.DefaultExt = "opt.tour";
|
---|
| 181 | this.openTourFileDialog.FileName = "tour";
|
---|
| 182 | this.openTourFileDialog.Filter = "Optimal TSP Tour Files|*.opt.tour|All Files|*.*";
|
---|
| 183 | this.openTourFileDialog.SupportMultiDottedExtensions = true;
|
---|
| 184 | this.openTourFileDialog.Title = "Open Optimal TSP Tour File";
|
---|
| 185 | //
|
---|
| 186 | // errorProvider
|
---|
| 187 | //
|
---|
| 188 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
| 189 | this.errorProvider.ContainerControl = this;
|
---|
| 190 | //
|
---|
| 191 | // clearTourFileButton
|
---|
| 192 | //
|
---|
| 193 | this.clearTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 194 | this.clearTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
| 195 | this.clearTourFileButton.Location = new System.Drawing.Point(550, 62);
|
---|
| 196 | this.clearTourFileButton.Name = "clearTourFileButton";
|
---|
| 197 | this.clearTourFileButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 198 | this.clearTourFileButton.TabIndex = 8;
|
---|
| 199 | this.clearTourFileButton.UseVisualStyleBackColor = true;
|
---|
| 200 | this.clearTourFileButton.Click += new System.EventHandler(this.clearTourFileButton_Click);
|
---|
| 201 | //
|
---|
| 202 | // TSPLIBImportDialog
|
---|
| 203 | //
|
---|
| 204 | this.AcceptButton = this.okButton;
|
---|
| 205 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 206 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[7558] | 207 | this.CancelButton = this.cancelButton;
|
---|
| 208 | this.ClientSize = new System.Drawing.Size(586, 132);
|
---|
| 209 | this.Controls.Add(this.qualityTextBox);
|
---|
| 210 | this.Controls.Add(this.tourFileTextBox);
|
---|
| 211 | this.Controls.Add(this.tspFileTextBox);
|
---|
| 212 | this.Controls.Add(this.clearTourFileButton);
|
---|
| 213 | this.Controls.Add(this.openTourFileButton);
|
---|
| 214 | this.Controls.Add(this.openTSPFileButton);
|
---|
| 215 | this.Controls.Add(this.qualityLabel);
|
---|
| 216 | this.Controls.Add(this.tourFileLabel);
|
---|
| 217 | this.Controls.Add(this.tspFileLabel);
|
---|
| 218 | this.Controls.Add(this.cancelButton);
|
---|
| 219 | this.Controls.Add(this.okButton);
|
---|
| 220 | this.MaximizeBox = false;
|
---|
| 221 | this.MinimizeBox = false;
|
---|
| 222 | this.Name = "TSPLIBImportDialog";
|
---|
| 223 | this.ShowIcon = false;
|
---|
| 224 | this.ShowInTaskbar = false;
|
---|
| 225 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
| 226 | this.Text = "Import TSP from TSPLIB";
|
---|
| 227 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 228 | this.ResumeLayout(false);
|
---|
| 229 | this.PerformLayout();
|
---|
| 230 |
|
---|
| 231 | }
|
---|
| 232 |
|
---|
| 233 | #endregion
|
---|
| 234 |
|
---|
| 235 | private System.Windows.Forms.Button okButton;
|
---|
| 236 | private System.Windows.Forms.Button cancelButton;
|
---|
| 237 | private System.Windows.Forms.OpenFileDialog openTSPFileDialog;
|
---|
| 238 | private System.Windows.Forms.Label tspFileLabel;
|
---|
| 239 | private System.Windows.Forms.Button openTSPFileButton;
|
---|
| 240 | private System.Windows.Forms.TextBox tspFileTextBox;
|
---|
| 241 | private System.Windows.Forms.Label tourFileLabel;
|
---|
| 242 | private System.Windows.Forms.Button openTourFileButton;
|
---|
| 243 | private System.Windows.Forms.TextBox tourFileTextBox;
|
---|
| 244 | private System.Windows.Forms.Label qualityLabel;
|
---|
| 245 | private System.Windows.Forms.TextBox qualityTextBox;
|
---|
| 246 | private System.Windows.Forms.OpenFileDialog openTourFileDialog;
|
---|
| 247 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
| 248 | private System.Windows.Forms.Button clearTourFileButton;
|
---|
| 249 | }
|
---|
| 250 | } |
---|