[2805] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2805] | 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 |
|
---|
[3158] | 22 | namespace HeuristicLab.Problems.TravelingSalesman.Views {
|
---|
[3159] | 23 | partial class TravelingSalesmanProblemView {
|
---|
[2805] | 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | #region Component Designer generated code
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Required method for Designer support - do not modify
|
---|
| 33 | /// the contents of this method with the code editor.
|
---|
| 34 | /// </summary>
|
---|
| 35 | private void InitializeComponent() {
|
---|
| 36 | this.importButton = new System.Windows.Forms.Button();
|
---|
[5466] | 37 | this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
|
---|
[3153] | 38 | this.parametersTabPage = new System.Windows.Forms.TabPage();
|
---|
| 39 | this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
| 40 | this.visualizationTabPage = new System.Windows.Forms.TabPage();
|
---|
[3158] | 41 | this.pathTSPTourView = new HeuristicLab.Problems.TravelingSalesman.Views.PathTSPTourView();
|
---|
[2805] | 42 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
[3153] | 43 | this.tabControl.SuspendLayout();
|
---|
| 44 | this.parametersTabPage.SuspendLayout();
|
---|
| 45 | this.visualizationTabPage.SuspendLayout();
|
---|
[2805] | 46 | this.SuspendLayout();
|
---|
| 47 | //
|
---|
| 48 | // nameTextBox
|
---|
| 49 | //
|
---|
| 50 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 51 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[5832] | 52 | this.nameTextBox.Location = new System.Drawing.Point(58, 0);
|
---|
| 53 | this.nameTextBox.Size = new System.Drawing.Size(446, 20);
|
---|
[2805] | 54 | //
|
---|
[5832] | 55 | // infoLabel
|
---|
[2882] | 56 | //
|
---|
[5832] | 57 | this.infoLabel.Location = new System.Drawing.Point(510, 3);
|
---|
[2882] | 58 | //
|
---|
[2805] | 59 | // importButton
|
---|
| 60 | //
|
---|
[3505] | 61 | this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[2805] | 62 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5832] | 63 | this.importButton.Location = new System.Drawing.Point(0, 26);
|
---|
[2805] | 64 | this.importButton.Name = "importButton";
|
---|
[2882] | 65 | this.importButton.Size = new System.Drawing.Size(529, 23);
|
---|
[5832] | 66 | this.importButton.TabIndex = 3;
|
---|
[2805] | 67 | this.importButton.Text = "&Import from TSPLIB";
|
---|
| 68 | this.importButton.UseVisualStyleBackColor = true;
|
---|
| 69 | this.importButton.Click += new System.EventHandler(this.importButton_Click);
|
---|
| 70 | //
|
---|
[3153] | 71 | // tabControl
|
---|
| 72 | //
|
---|
[5832] | 73 | this.tabControl.AllowDrop = true;
|
---|
[3153] | 74 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 75 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 77 | this.tabControl.Controls.Add(this.parametersTabPage);
|
---|
| 78 | this.tabControl.Controls.Add(this.visualizationTabPage);
|
---|
[5832] | 79 | this.tabControl.Location = new System.Drawing.Point(0, 55);
|
---|
[3153] | 80 | this.tabControl.Name = "tabControl";
|
---|
| 81 | this.tabControl.SelectedIndex = 0;
|
---|
[5832] | 82 | this.tabControl.Size = new System.Drawing.Size(529, 367);
|
---|
| 83 | this.tabControl.TabIndex = 4;
|
---|
[3153] | 84 | //
|
---|
| 85 | // parametersTabPage
|
---|
| 86 | //
|
---|
| 87 | this.parametersTabPage.Controls.Add(this.parameterCollectionView);
|
---|
| 88 | this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 89 | this.parametersTabPage.Name = "parametersTabPage";
|
---|
| 90 | this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 91 | this.parametersTabPage.Size = new System.Drawing.Size(521, 315);
|
---|
| 92 | this.parametersTabPage.TabIndex = 0;
|
---|
| 93 | this.parametersTabPage.Text = "Parameters";
|
---|
| 94 | this.parametersTabPage.UseVisualStyleBackColor = true;
|
---|
| 95 | //
|
---|
| 96 | // parameterCollectionView
|
---|
| 97 | //
|
---|
| 98 | this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 99 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 100 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5832] | 101 | this.parameterCollectionView.Caption = "ParameterCollection View";
|
---|
[3153] | 102 | this.parameterCollectionView.Content = null;
|
---|
| 103 | this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 104 | this.parameterCollectionView.Name = "parameterCollectionView";
|
---|
[3505] | 105 | this.parameterCollectionView.ReadOnly = false;
|
---|
[3153] | 106 | this.parameterCollectionView.Size = new System.Drawing.Size(509, 303);
|
---|
| 107 | this.parameterCollectionView.TabIndex = 0;
|
---|
| 108 | //
|
---|
| 109 | // visualizationTabPage
|
---|
| 110 | //
|
---|
| 111 | this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
|
---|
| 112 | this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 113 | this.visualizationTabPage.Name = "visualizationTabPage";
|
---|
| 114 | this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[5832] | 115 | this.visualizationTabPage.Size = new System.Drawing.Size(521, 341);
|
---|
[3153] | 116 | this.visualizationTabPage.TabIndex = 1;
|
---|
| 117 | this.visualizationTabPage.Text = "Visualization";
|
---|
| 118 | this.visualizationTabPage.UseVisualStyleBackColor = true;
|
---|
| 119 | //
|
---|
| 120 | // pathTSPTourView
|
---|
| 121 | //
|
---|
| 122 | this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 123 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 124 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5832] | 125 | this.pathTSPTourView.Caption = "PathTSPTour View";
|
---|
[3153] | 126 | this.pathTSPTourView.Content = null;
|
---|
| 127 | this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
|
---|
| 128 | this.pathTSPTourView.Name = "pathTSPTourView";
|
---|
[3505] | 129 | this.pathTSPTourView.ReadOnly = false;
|
---|
[5832] | 130 | this.pathTSPTourView.Size = new System.Drawing.Size(509, 329);
|
---|
[3153] | 131 | this.pathTSPTourView.TabIndex = 0;
|
---|
| 132 | //
|
---|
[3159] | 133 | // TravelingSalesmanProblemView
|
---|
[2805] | 134 | //
|
---|
| 135 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 136 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[3153] | 137 | this.Controls.Add(this.tabControl);
|
---|
[2805] | 138 | this.Controls.Add(this.importButton);
|
---|
[3159] | 139 | this.Name = "TravelingSalesmanProblemView";
|
---|
[2882] | 140 | this.Size = new System.Drawing.Size(529, 422);
|
---|
[5832] | 141 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
[2805] | 142 | this.Controls.SetChildIndex(this.importButton, 0);
|
---|
[5832] | 143 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
[3153] | 144 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
[2805] | 145 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 146 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[3153] | 147 | this.tabControl.ResumeLayout(false);
|
---|
| 148 | this.parametersTabPage.ResumeLayout(false);
|
---|
| 149 | this.visualizationTabPage.ResumeLayout(false);
|
---|
[2805] | 150 | this.ResumeLayout(false);
|
---|
| 151 | this.PerformLayout();
|
---|
| 152 |
|
---|
| 153 | }
|
---|
| 154 |
|
---|
| 155 | #endregion
|
---|
| 156 |
|
---|
| 157 | private System.Windows.Forms.Button importButton;
|
---|
[5466] | 158 | private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
|
---|
[3153] | 159 | private System.Windows.Forms.TabPage parametersTabPage;
|
---|
| 160 | private System.Windows.Forms.TabPage visualizationTabPage;
|
---|
| 161 | private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
|
---|
| 162 | private PathTSPTourView pathTSPTourView;
|
---|
[2805] | 163 |
|
---|
| 164 | }
|
---|
| 165 | }
|
---|