[11235] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11235] | 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.Orienteering.Views {
|
---|
| 23 | partial class OrienteeringSolutionView {
|
---|
| 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.pictureBox = new System.Windows.Forms.PictureBox();
|
---|
| 48 | this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
|
---|
| 49 | this.visualizationTabPage = new System.Windows.Forms.TabPage();
|
---|
| 50 | this.valueTabPage = new System.Windows.Forms.TabPage();
|
---|
| 51 | this.tourGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 52 | this.tourViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 53 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[12721] | 54 | this.qualityValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
| 55 | this.distanceValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
| 56 | this.penaltyValueView = new HeuristicLab.Data.Views.StringConvertibleValueView();
|
---|
| 57 | this.qualityLabel = new System.Windows.Forms.Label();
|
---|
| 58 | this.distanceLabel = new System.Windows.Forms.Label();
|
---|
| 59 | this.penaltyLabel = new System.Windows.Forms.Label();
|
---|
[11235] | 60 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
| 61 | this.tabControl.SuspendLayout();
|
---|
| 62 | this.visualizationTabPage.SuspendLayout();
|
---|
| 63 | this.valueTabPage.SuspendLayout();
|
---|
| 64 | this.tourGroupBox.SuspendLayout();
|
---|
[11240] | 65 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
[11235] | 66 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 67 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 68 | this.splitContainer.SuspendLayout();
|
---|
| 69 | this.SuspendLayout();
|
---|
| 70 | //
|
---|
| 71 | // pictureBox
|
---|
| 72 | //
|
---|
[16506] | 73 | this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 74 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11240] | 75 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[11235] | 76 | this.pictureBox.BackColor = System.Drawing.Color.White;
|
---|
| 77 | this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
| 78 | this.pictureBox.Location = new System.Drawing.Point(6, 6);
|
---|
| 79 | this.pictureBox.Name = "pictureBox";
|
---|
[12721] | 80 | this.pictureBox.Size = new System.Drawing.Size(403, 271);
|
---|
[11235] | 81 | this.pictureBox.TabIndex = 0;
|
---|
| 82 | this.pictureBox.TabStop = false;
|
---|
| 83 | this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
|
---|
| 84 | //
|
---|
| 85 | // tabControl
|
---|
| 86 | //
|
---|
[11240] | 87 | this.tabControl.AllowDrop = true;
|
---|
[16506] | 88 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 89 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11240] | 90 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[11235] | 91 | this.tabControl.Controls.Add(this.visualizationTabPage);
|
---|
| 92 | this.tabControl.Controls.Add(this.valueTabPage);
|
---|
| 93 | this.tabControl.Location = new System.Drawing.Point(0, 3);
|
---|
| 94 | this.tabControl.Name = "tabControl";
|
---|
| 95 | this.tabControl.SelectedIndex = 0;
|
---|
[12721] | 96 | this.tabControl.Size = new System.Drawing.Size(423, 305);
|
---|
[11235] | 97 | this.tabControl.TabIndex = 0;
|
---|
| 98 | //
|
---|
| 99 | // visualizationTabPage
|
---|
| 100 | //
|
---|
[16506] | 101 | this.visualizationTabPage.BackColor = System.Drawing.SystemColors.Window;
|
---|
[11235] | 102 | this.visualizationTabPage.Controls.Add(this.pictureBox);
|
---|
| 103 | this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 104 | this.visualizationTabPage.Name = "visualizationTabPage";
|
---|
| 105 | this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[12721] | 106 | this.visualizationTabPage.Size = new System.Drawing.Size(415, 279);
|
---|
[11235] | 107 | this.visualizationTabPage.TabIndex = 0;
|
---|
| 108 | this.visualizationTabPage.Text = "Visualization";
|
---|
| 109 | //
|
---|
| 110 | // valueTabPage
|
---|
| 111 | //
|
---|
[16506] | 112 | this.valueTabPage.BackColor = System.Drawing.SystemColors.Window;
|
---|
[11235] | 113 | this.valueTabPage.Controls.Add(this.tourGroupBox);
|
---|
| 114 | this.valueTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 115 | this.valueTabPage.Name = "valueTabPage";
|
---|
| 116 | this.valueTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[11329] | 117 | this.valueTabPage.Size = new System.Drawing.Size(211, 370);
|
---|
[11235] | 118 | this.valueTabPage.TabIndex = 1;
|
---|
| 119 | this.valueTabPage.Text = "Value";
|
---|
| 120 | //
|
---|
| 121 | // tourGroupBox
|
---|
| 122 | //
|
---|
[16506] | 123 | this.tourGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 124 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11240] | 125 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[11235] | 126 | this.tourGroupBox.Controls.Add(this.tourViewHost);
|
---|
| 127 | this.tourGroupBox.Location = new System.Drawing.Point(6, 6);
|
---|
| 128 | this.tourGroupBox.Name = "tourGroupBox";
|
---|
[11329] | 129 | this.tourGroupBox.Size = new System.Drawing.Size(199, 358);
|
---|
[11235] | 130 | this.tourGroupBox.TabIndex = 0;
|
---|
| 131 | this.tourGroupBox.TabStop = false;
|
---|
| 132 | this.tourGroupBox.Text = "Tour";
|
---|
| 133 | //
|
---|
| 134 | // tourViewHost
|
---|
| 135 | //
|
---|
[16506] | 136 | this.tourViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 137 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11240] | 138 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 139 | this.tourViewHost.Caption = "View";
|
---|
[11235] | 140 | this.tourViewHost.Content = null;
|
---|
[11240] | 141 | this.tourViewHost.Enabled = false;
|
---|
[11235] | 142 | this.tourViewHost.Location = new System.Drawing.Point(6, 19);
|
---|
| 143 | this.tourViewHost.Name = "tourViewHost";
|
---|
| 144 | this.tourViewHost.ReadOnly = false;
|
---|
[11329] | 145 | this.tourViewHost.Size = new System.Drawing.Size(187, 333);
|
---|
[11235] | 146 | this.tourViewHost.TabIndex = 0;
|
---|
[11240] | 147 | this.tourViewHost.ViewsLabelVisible = true;
|
---|
[11235] | 148 | this.tourViewHost.ViewType = null;
|
---|
| 149 | //
|
---|
| 150 | // splitContainer
|
---|
| 151 | //
|
---|
| 152 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
[11327] | 153 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
[11235] | 154 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 155 | this.splitContainer.Name = "splitContainer";
|
---|
[12721] | 156 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
[11235] | 157 | //
|
---|
| 158 | // splitContainer.Panel1
|
---|
| 159 | //
|
---|
[12721] | 160 | this.splitContainer.Panel1.Controls.Add(this.penaltyLabel);
|
---|
| 161 | this.splitContainer.Panel1.Controls.Add(this.distanceLabel);
|
---|
| 162 | this.splitContainer.Panel1.Controls.Add(this.qualityLabel);
|
---|
| 163 | this.splitContainer.Panel1.Controls.Add(this.qualityValueView);
|
---|
| 164 | this.splitContainer.Panel1.Controls.Add(this.distanceValueView);
|
---|
| 165 | this.splitContainer.Panel1.Controls.Add(this.penaltyValueView);
|
---|
[11327] | 166 | this.splitContainer.Panel1.Margin = new System.Windows.Forms.Padding(0, 0, 5, 0);
|
---|
| 167 | this.splitContainer.Panel1MinSize = 0;
|
---|
[11235] | 168 | //
|
---|
| 169 | // splitContainer.Panel2
|
---|
| 170 | //
|
---|
| 171 | this.splitContainer.Panel2.Controls.Add(this.tabControl);
|
---|
| 172 | this.splitContainer.Size = new System.Drawing.Size(423, 402);
|
---|
[12721] | 173 | this.splitContainer.SplitterDistance = 87;
|
---|
[11235] | 174 | this.splitContainer.TabIndex = 0;
|
---|
| 175 | //
|
---|
[12721] | 176 | // qualityValueView
|
---|
[11235] | 177 | //
|
---|
[16506] | 178 | this.qualityValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11240] | 179 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[12721] | 180 | this.qualityValueView.Caption = "StringConvertibleValue View";
|
---|
| 181 | this.qualityValueView.Content = null;
|
---|
| 182 | this.qualityValueView.LabelVisible = false;
|
---|
| 183 | this.qualityValueView.Location = new System.Drawing.Point(65, 7);
|
---|
| 184 | this.qualityValueView.Name = "qualityValueView";
|
---|
| 185 | this.qualityValueView.ReadOnly = false;
|
---|
| 186 | this.qualityValueView.Size = new System.Drawing.Size(354, 21);
|
---|
| 187 | this.qualityValueView.TabIndex = 0;
|
---|
[11235] | 188 | //
|
---|
[12721] | 189 | // distanceValueView
|
---|
[11235] | 190 | //
|
---|
[16506] | 191 | this.distanceValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[12721] | 192 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 193 | this.distanceValueView.Caption = "StringConvertibleValue View";
|
---|
| 194 | this.distanceValueView.Content = null;
|
---|
| 195 | this.distanceValueView.LabelVisible = false;
|
---|
| 196 | this.distanceValueView.Location = new System.Drawing.Point(65, 34);
|
---|
| 197 | this.distanceValueView.Name = "distanceValueView";
|
---|
| 198 | this.distanceValueView.ReadOnly = false;
|
---|
| 199 | this.distanceValueView.Size = new System.Drawing.Size(354, 21);
|
---|
| 200 | this.distanceValueView.TabIndex = 0;
|
---|
[11235] | 201 | //
|
---|
[12721] | 202 | // penaltyValueView
|
---|
[11327] | 203 | //
|
---|
[16506] | 204 | this.penaltyValueView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[11327] | 205 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[12721] | 206 | this.penaltyValueView.Caption = "StringConvertibleValue View";
|
---|
| 207 | this.penaltyValueView.Content = null;
|
---|
| 208 | this.penaltyValueView.LabelVisible = false;
|
---|
| 209 | this.penaltyValueView.Location = new System.Drawing.Point(65, 61);
|
---|
| 210 | this.penaltyValueView.Name = "penaltyValueView";
|
---|
| 211 | this.penaltyValueView.ReadOnly = false;
|
---|
| 212 | this.penaltyValueView.Size = new System.Drawing.Size(354, 21);
|
---|
| 213 | this.penaltyValueView.TabIndex = 0;
|
---|
[11327] | 214 | //
|
---|
[12721] | 215 | // qualityLabel
|
---|
[11327] | 216 | //
|
---|
[12721] | 217 | this.qualityLabel.AutoSize = true;
|
---|
| 218 | this.qualityLabel.Location = new System.Drawing.Point(7, 11);
|
---|
| 219 | this.qualityLabel.Name = "qualityLabel";
|
---|
| 220 | this.qualityLabel.Size = new System.Drawing.Size(42, 13);
|
---|
| 221 | this.qualityLabel.TabIndex = 1;
|
---|
| 222 | this.qualityLabel.Text = "Quality:";
|
---|
[11327] | 223 | //
|
---|
[12721] | 224 | // distanceLabel
|
---|
[11327] | 225 | //
|
---|
[12721] | 226 | this.distanceLabel.AutoSize = true;
|
---|
| 227 | this.distanceLabel.Location = new System.Drawing.Point(7, 38);
|
---|
| 228 | this.distanceLabel.Name = "distanceLabel";
|
---|
| 229 | this.distanceLabel.Size = new System.Drawing.Size(52, 13);
|
---|
| 230 | this.distanceLabel.TabIndex = 1;
|
---|
| 231 | this.distanceLabel.Text = "Distance:";
|
---|
[11327] | 232 | //
|
---|
[12721] | 233 | // penaltyLabel
|
---|
[11327] | 234 | //
|
---|
[12721] | 235 | this.penaltyLabel.AutoSize = true;
|
---|
| 236 | this.penaltyLabel.Location = new System.Drawing.Point(7, 64);
|
---|
| 237 | this.penaltyLabel.Name = "penaltyLabel";
|
---|
| 238 | this.penaltyLabel.Size = new System.Drawing.Size(45, 13);
|
---|
| 239 | this.penaltyLabel.TabIndex = 1;
|
---|
| 240 | this.penaltyLabel.Text = "Penalty:";
|
---|
[11327] | 241 | //
|
---|
[11235] | 242 | // OrienteeringSolutionView
|
---|
| 243 | //
|
---|
| 244 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
| 245 | this.Controls.Add(this.splitContainer);
|
---|
| 246 | this.Name = "OrienteeringSolutionView";
|
---|
| 247 | this.Size = new System.Drawing.Size(423, 402);
|
---|
| 248 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
| 249 | this.tabControl.ResumeLayout(false);
|
---|
| 250 | this.visualizationTabPage.ResumeLayout(false);
|
---|
| 251 | this.valueTabPage.ResumeLayout(false);
|
---|
| 252 | this.tourGroupBox.ResumeLayout(false);
|
---|
| 253 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
[12721] | 254 | this.splitContainer.Panel1.PerformLayout();
|
---|
[11235] | 255 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
[11240] | 256 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
[11235] | 257 | this.splitContainer.ResumeLayout(false);
|
---|
| 258 | this.ResumeLayout(false);
|
---|
[11240] | 259 |
|
---|
[11235] | 260 | }
|
---|
| 261 |
|
---|
| 262 | #endregion
|
---|
| 263 |
|
---|
| 264 | private System.Windows.Forms.PictureBox pictureBox;
|
---|
| 265 | private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
|
---|
| 266 | private System.Windows.Forms.TabPage visualizationTabPage;
|
---|
| 267 | private System.Windows.Forms.TabPage valueTabPage;
|
---|
| 268 | private System.Windows.Forms.GroupBox tourGroupBox;
|
---|
| 269 | private HeuristicLab.MainForm.WindowsForms.ViewHost tourViewHost;
|
---|
| 270 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
[12721] | 271 | private System.Windows.Forms.Label penaltyLabel;
|
---|
| 272 | private System.Windows.Forms.Label distanceLabel;
|
---|
| 273 | private System.Windows.Forms.Label qualityLabel;
|
---|
| 274 | private Data.Views.StringConvertibleValueView qualityValueView;
|
---|
| 275 | private Data.Views.StringConvertibleValueView distanceValueView;
|
---|
| 276 | private Data.Views.StringConvertibleValueView penaltyValueView;
|
---|
[11235] | 277 | }
|
---|
| 278 | }
|
---|