[3260] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
[3277] | 22 | using System;
|
---|
| 23 | using System.Windows.Forms;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 |
|
---|
[3260] | 26 | namespace HeuristicLab.Optimization.Views {
|
---|
| 27 | partial class RunCollectionView {
|
---|
[3277] | 28 | /// <summary>
|
---|
[3260] | 29 | /// Required designer variable.
|
---|
| 30 | /// </summary>
|
---|
| 31 | private System.ComponentModel.IContainer components = null;
|
---|
| 32 |
|
---|
[3277] | 33 | /// <summary>
|
---|
[3260] | 34 | /// Clean up any resources being used.
|
---|
| 35 | /// </summary>
|
---|
| 36 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 37 | protected override void Dispose(bool disposing) {
|
---|
| 38 | if (disposing) {
|
---|
[3351] | 39 | foreach (ListViewItem item in itemsListView.Items) {
|
---|
| 40 | ((IRun)item.Tag).ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
|
---|
[3280] | 41 | ((IRun)item.Tag).ToStringChanged -= new EventHandler(Item_ToStringChanged);
|
---|
[3351] | 42 | }
|
---|
[3260] | 43 | if (components != null) components.Dispose();
|
---|
| 44 | }
|
---|
| 45 | base.Dispose(disposing);
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[3277] | 48 | #region Windows Form Designer generated code
|
---|
[3260] | 49 |
|
---|
[3277] | 50 | /// <summary>
|
---|
| 51 | /// Required method for Designer support - do not modify
|
---|
[3260] | 52 | /// the contents of this method with the code editor.
|
---|
| 53 | /// </summary>
|
---|
| 54 | private void InitializeComponent() {
|
---|
[3277] | 55 | this.components = new System.ComponentModel.Container();
|
---|
| 56 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[3614] | 57 | this.toolStrip = new System.Windows.Forms.ToolStrip();
|
---|
| 58 | this.analyzeRunsToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
|
---|
[3277] | 59 | this.itemsListView = new System.Windows.Forms.ListView();
|
---|
| 60 | this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
|
---|
| 61 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
| 62 | this.removeButton = new System.Windows.Forms.Button();
|
---|
| 63 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[3281] | 64 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[3277] | 65 | this.itemsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 66 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[3614] | 67 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 68 | this.runPage = new System.Windows.Forms.TabPage();
|
---|
| 69 | this.constraintPage = new System.Windows.Forms.TabPage();
|
---|
| 70 | this.runCollectionConstraintCollectionView = new HeuristicLab.Core.Views.RunCollectionConstraintCollectionView();
|
---|
[3716] | 71 | this.clearButton = new System.Windows.Forms.Button();
|
---|
[3277] | 72 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 73 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 74 | this.splitContainer.SuspendLayout();
|
---|
[3614] | 75 | this.toolStrip.SuspendLayout();
|
---|
[3277] | 76 | this.detailsGroupBox.SuspendLayout();
|
---|
| 77 | this.itemsGroupBox.SuspendLayout();
|
---|
[3614] | 78 | this.tabControl.SuspendLayout();
|
---|
| 79 | this.runPage.SuspendLayout();
|
---|
| 80 | this.constraintPage.SuspendLayout();
|
---|
[3277] | 81 | this.SuspendLayout();
|
---|
| 82 | //
|
---|
| 83 | // splitContainer
|
---|
| 84 | //
|
---|
| 85 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 86 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
| 87 | this.splitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
| 88 | this.splitContainer.Name = "splitContainer";
|
---|
| 89 | //
|
---|
| 90 | // splitContainer.Panel1
|
---|
| 91 | //
|
---|
[3716] | 92 | this.splitContainer.Panel1.Controls.Add(this.clearButton);
|
---|
[3507] | 93 | this.splitContainer.Panel1.Controls.Add(this.toolStrip);
|
---|
[3277] | 94 | this.splitContainer.Panel1.Controls.Add(this.itemsListView);
|
---|
| 95 | this.splitContainer.Panel1.Controls.Add(this.removeButton);
|
---|
| 96 | this.splitContainer.Panel1MinSize = 100;
|
---|
| 97 | //
|
---|
| 98 | // splitContainer.Panel2
|
---|
| 99 | //
|
---|
| 100 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
[3614] | 101 | this.splitContainer.Size = new System.Drawing.Size(512, 332);
|
---|
[3277] | 102 | this.splitContainer.SplitterDistance = 250;
|
---|
| 103 | this.splitContainer.TabIndex = 0;
|
---|
| 104 | //
|
---|
[3614] | 105 | // toolStrip
|
---|
| 106 | //
|
---|
| 107 | this.toolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 108 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 109 | this.toolStrip.AutoSize = false;
|
---|
| 110 | this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
|
---|
| 111 | this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
---|
| 112 | this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 113 | this.analyzeRunsToolStripDropDownButton});
|
---|
| 114 | this.toolStrip.Location = new System.Drawing.Point(30, 3);
|
---|
| 115 | this.toolStrip.Name = "toolStrip";
|
---|
[3716] | 116 | this.toolStrip.Size = new System.Drawing.Size(166, 24);
|
---|
[3614] | 117 | this.toolStrip.TabIndex = 1;
|
---|
| 118 | this.toolStrip.Text = "toolStrip1";
|
---|
| 119 | //
|
---|
| 120 | // analyzeRunsToolStripDropDownButton
|
---|
| 121 | //
|
---|
| 122 | this.analyzeRunsToolStripDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
---|
| 123 | this.analyzeRunsToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
---|
| 124 | this.analyzeRunsToolStripDropDownButton.Name = "analyzeRunsToolStripDropDownButton";
|
---|
| 125 | this.analyzeRunsToolStripDropDownButton.Size = new System.Drawing.Size(99, 21);
|
---|
| 126 | this.analyzeRunsToolStripDropDownButton.Text = "&Analyze Runs...";
|
---|
| 127 | this.analyzeRunsToolStripDropDownButton.ToolTipText = "Show Run Analysis Views";
|
---|
| 128 | //
|
---|
[3277] | 129 | // itemsListView
|
---|
| 130 | //
|
---|
| 131 | this.itemsListView.AllowDrop = true;
|
---|
| 132 | this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 133 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 134 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 135 | this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 136 | this.columnHeader1});
|
---|
| 137 | this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
| 138 | this.itemsListView.HideSelection = false;
|
---|
| 139 | this.itemsListView.Location = new System.Drawing.Point(3, 33);
|
---|
| 140 | this.itemsListView.Name = "itemsListView";
|
---|
| 141 | this.itemsListView.ShowItemToolTips = true;
|
---|
[3614] | 142 | this.itemsListView.Size = new System.Drawing.Size(244, 295);
|
---|
[3277] | 143 | this.itemsListView.SmallImageList = this.imageList;
|
---|
[3716] | 144 | this.itemsListView.TabIndex = 3;
|
---|
[3277] | 145 | this.itemsListView.UseCompatibleStateImageBehavior = false;
|
---|
| 146 | this.itemsListView.View = System.Windows.Forms.View.Details;
|
---|
| 147 | this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
|
---|
| 148 | this.itemsListView.SizeChanged += new System.EventHandler(this.itemsListView_SizeChanged);
|
---|
| 149 | this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
|
---|
| 150 | this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
|
---|
| 151 | this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
| 152 | this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
|
---|
| 153 | this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
|
---|
| 154 | this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
| 155 | //
|
---|
| 156 | // imageList
|
---|
| 157 | //
|
---|
| 158 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 159 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 160 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 161 | //
|
---|
| 162 | // removeButton
|
---|
| 163 | //
|
---|
| 164 | this.removeButton.Enabled = false;
|
---|
| 165 | this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
|
---|
| 166 | this.removeButton.Location = new System.Drawing.Point(3, 3);
|
---|
| 167 | this.removeButton.Name = "removeButton";
|
---|
| 168 | this.removeButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 169 | this.removeButton.TabIndex = 0;
|
---|
| 170 | this.toolTip.SetToolTip(this.removeButton, "Remove");
|
---|
| 171 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 172 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 173 | //
|
---|
| 174 | // detailsGroupBox
|
---|
| 175 | //
|
---|
| 176 | this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 177 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 178 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 179 | this.detailsGroupBox.Controls.Add(this.viewHost);
|
---|
| 180 | this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
|
---|
| 181 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
[3614] | 182 | this.detailsGroupBox.Size = new System.Drawing.Size(252, 303);
|
---|
[3277] | 183 | this.detailsGroupBox.TabIndex = 0;
|
---|
| 184 | this.detailsGroupBox.TabStop = false;
|
---|
| 185 | this.detailsGroupBox.Text = "Details";
|
---|
| 186 | //
|
---|
| 187 | // viewHost
|
---|
| 188 | //
|
---|
| 189 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 190 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 191 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[3507] | 192 | this.viewHost.Caption = null;
|
---|
[3277] | 193 | this.viewHost.Content = null;
|
---|
| 194 | this.viewHost.Location = new System.Drawing.Point(6, 19);
|
---|
| 195 | this.viewHost.Name = "viewHost";
|
---|
[3507] | 196 | this.viewHost.ReadOnly = false;
|
---|
[3614] | 197 | this.viewHost.Size = new System.Drawing.Size(240, 278);
|
---|
[3277] | 198 | this.viewHost.TabIndex = 0;
|
---|
| 199 | this.viewHost.ViewType = null;
|
---|
| 200 | //
|
---|
| 201 | // itemsGroupBox
|
---|
| 202 | //
|
---|
| 203 | this.itemsGroupBox.Controls.Add(this.splitContainer);
|
---|
| 204 | this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
[3614] | 205 | this.itemsGroupBox.Location = new System.Drawing.Point(3, 3);
|
---|
[3277] | 206 | this.itemsGroupBox.Name = "itemsGroupBox";
|
---|
[3614] | 207 | this.itemsGroupBox.Size = new System.Drawing.Size(518, 351);
|
---|
[3277] | 208 | this.itemsGroupBox.TabIndex = 0;
|
---|
| 209 | this.itemsGroupBox.TabStop = false;
|
---|
| 210 | this.itemsGroupBox.Text = "Items";
|
---|
| 211 | //
|
---|
[3614] | 212 | // tabControl
|
---|
[3507] | 213 | //
|
---|
[3614] | 214 | this.tabControl.Controls.Add(this.runPage);
|
---|
| 215 | this.tabControl.Controls.Add(this.constraintPage);
|
---|
| 216 | this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 217 | this.tabControl.Location = new System.Drawing.Point(0, 0);
|
---|
| 218 | this.tabControl.Name = "tabControl";
|
---|
| 219 | this.tabControl.SelectedIndex = 0;
|
---|
| 220 | this.tabControl.Size = new System.Drawing.Size(532, 383);
|
---|
[3716] | 221 | this.tabControl.TabIndex = 0;
|
---|
[3507] | 222 | //
|
---|
[3614] | 223 | // runPage
|
---|
[3507] | 224 | //
|
---|
[3614] | 225 | this.runPage.Controls.Add(this.itemsGroupBox);
|
---|
| 226 | this.runPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 227 | this.runPage.Name = "runPage";
|
---|
| 228 | this.runPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 229 | this.runPage.Size = new System.Drawing.Size(524, 357);
|
---|
| 230 | this.runPage.TabIndex = 0;
|
---|
| 231 | this.runPage.Text = "Runs";
|
---|
| 232 | this.runPage.UseVisualStyleBackColor = true;
|
---|
[3507] | 233 | //
|
---|
[3614] | 234 | // constraintPage
|
---|
| 235 | //
|
---|
| 236 | this.constraintPage.Controls.Add(this.runCollectionConstraintCollectionView);
|
---|
| 237 | this.constraintPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 238 | this.constraintPage.Name = "constraintPage";
|
---|
| 239 | this.constraintPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 240 | this.constraintPage.Size = new System.Drawing.Size(524, 357);
|
---|
| 241 | this.constraintPage.TabIndex = 1;
|
---|
| 242 | this.constraintPage.Text = "Filtering";
|
---|
| 243 | this.constraintPage.UseVisualStyleBackColor = true;
|
---|
| 244 | //
|
---|
| 245 | // runCollectionConstraintCollectionView
|
---|
| 246 | //
|
---|
| 247 | this.runCollectionConstraintCollectionView.Caption = "Filter";
|
---|
| 248 | this.runCollectionConstraintCollectionView.Content = null;
|
---|
| 249 | this.runCollectionConstraintCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 250 | this.runCollectionConstraintCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
| 251 | this.runCollectionConstraintCollectionView.Name = "runCollectionConstraintCollectionView";
|
---|
| 252 | this.runCollectionConstraintCollectionView.ReadOnly = false;
|
---|
| 253 | this.runCollectionConstraintCollectionView.Size = new System.Drawing.Size(518, 351);
|
---|
| 254 | this.runCollectionConstraintCollectionView.TabIndex = 0;
|
---|
| 255 | //
|
---|
[3716] | 256 | // clearButton
|
---|
| 257 | //
|
---|
| 258 | this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 259 | this.clearButton.Enabled = false;
|
---|
| 260 | this.clearButton.Location = new System.Drawing.Point(199, 3);
|
---|
| 261 | this.clearButton.Name = "clearButton";
|
---|
| 262 | this.clearButton.Size = new System.Drawing.Size(48, 24);
|
---|
| 263 | this.clearButton.TabIndex = 2;
|
---|
| 264 | this.clearButton.Text = "&Clear";
|
---|
| 265 | this.toolTip.SetToolTip(this.clearButton, "Remove All Runs");
|
---|
| 266 | this.clearButton.UseVisualStyleBackColor = true;
|
---|
| 267 | this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
|
---|
| 268 | //
|
---|
[3277] | 269 | // RunCollectionView
|
---|
| 270 | //
|
---|
| 271 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[3614] | 272 | this.Controls.Add(this.tabControl);
|
---|
[3277] | 273 | this.Name = "RunCollectionView";
|
---|
| 274 | this.Size = new System.Drawing.Size(532, 383);
|
---|
| 275 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 276 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 277 | this.splitContainer.ResumeLayout(false);
|
---|
[3614] | 278 | this.toolStrip.ResumeLayout(false);
|
---|
| 279 | this.toolStrip.PerformLayout();
|
---|
[3277] | 280 | this.detailsGroupBox.ResumeLayout(false);
|
---|
| 281 | this.itemsGroupBox.ResumeLayout(false);
|
---|
[3614] | 282 | this.tabControl.ResumeLayout(false);
|
---|
| 283 | this.runPage.ResumeLayout(false);
|
---|
| 284 | this.constraintPage.ResumeLayout(false);
|
---|
[3277] | 285 | this.ResumeLayout(false);
|
---|
| 286 |
|
---|
[3260] | 287 | }
|
---|
| 288 |
|
---|
| 289 | #endregion
|
---|
[3277] | 290 |
|
---|
| 291 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 292 | protected System.Windows.Forms.ColumnHeader columnHeader1;
|
---|
| 293 | protected GroupBox itemsGroupBox;
|
---|
| 294 | protected ListView itemsListView;
|
---|
| 295 | protected GroupBox detailsGroupBox;
|
---|
| 296 | protected Button removeButton;
|
---|
| 297 | protected ToolTip toolTip;
|
---|
| 298 | protected ImageList imageList;
|
---|
[3281] | 299 | protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
[3507] | 300 | protected ToolStrip toolStrip;
|
---|
| 301 | protected ToolStripDropDownButton analyzeRunsToolStripDropDownButton;
|
---|
[3716] | 302 | protected TabControl tabControl;
|
---|
| 303 | protected TabPage runPage;
|
---|
| 304 | protected TabPage constraintPage;
|
---|
| 305 | protected HeuristicLab.Core.Views.RunCollectionConstraintCollectionView runCollectionConstraintCollectionView;
|
---|
| 306 | protected Button clearButton;
|
---|
[3260] | 307 | }
|
---|
| 308 | }
|
---|