[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();
|
---|
| 57 | this.itemsListView = new System.Windows.Forms.ListView();
|
---|
| 58 | this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
|
---|
| 59 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
| 60 | this.removeButton = new System.Windows.Forms.Button();
|
---|
| 61 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[3281] | 62 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[3277] | 63 | this.itemsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 64 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[3507] | 65 | this.toolStrip = new System.Windows.Forms.ToolStrip();
|
---|
| 66 | this.analyzeRunsToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
|
---|
[3277] | 67 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 68 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 69 | this.splitContainer.SuspendLayout();
|
---|
| 70 | this.detailsGroupBox.SuspendLayout();
|
---|
| 71 | this.itemsGroupBox.SuspendLayout();
|
---|
[3507] | 72 | this.toolStrip.SuspendLayout();
|
---|
[3277] | 73 | this.SuspendLayout();
|
---|
| 74 | //
|
---|
| 75 | // splitContainer
|
---|
| 76 | //
|
---|
| 77 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 78 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
| 79 | this.splitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
| 80 | this.splitContainer.Name = "splitContainer";
|
---|
| 81 | //
|
---|
| 82 | // splitContainer.Panel1
|
---|
| 83 | //
|
---|
[3507] | 84 | this.splitContainer.Panel1.Controls.Add(this.toolStrip);
|
---|
[3277] | 85 | this.splitContainer.Panel1.Controls.Add(this.itemsListView);
|
---|
| 86 | this.splitContainer.Panel1.Controls.Add(this.removeButton);
|
---|
| 87 | this.splitContainer.Panel1MinSize = 100;
|
---|
| 88 | //
|
---|
| 89 | // splitContainer.Panel2
|
---|
| 90 | //
|
---|
| 91 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
| 92 | this.splitContainer.Size = new System.Drawing.Size(526, 364);
|
---|
| 93 | this.splitContainer.SplitterDistance = 250;
|
---|
| 94 | this.splitContainer.TabIndex = 0;
|
---|
| 95 | //
|
---|
| 96 | // itemsListView
|
---|
| 97 | //
|
---|
| 98 | this.itemsListView.AllowDrop = true;
|
---|
| 99 | this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 100 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 101 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 102 | this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 103 | this.columnHeader1});
|
---|
| 104 | this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
| 105 | this.itemsListView.HideSelection = false;
|
---|
| 106 | this.itemsListView.Location = new System.Drawing.Point(3, 33);
|
---|
| 107 | this.itemsListView.Name = "itemsListView";
|
---|
| 108 | this.itemsListView.ShowItemToolTips = true;
|
---|
| 109 | this.itemsListView.Size = new System.Drawing.Size(244, 327);
|
---|
| 110 | this.itemsListView.SmallImageList = this.imageList;
|
---|
| 111 | this.itemsListView.TabIndex = 1;
|
---|
| 112 | this.itemsListView.UseCompatibleStateImageBehavior = false;
|
---|
| 113 | this.itemsListView.View = System.Windows.Forms.View.Details;
|
---|
| 114 | this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
|
---|
| 115 | this.itemsListView.SizeChanged += new System.EventHandler(this.itemsListView_SizeChanged);
|
---|
| 116 | this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
|
---|
| 117 | this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
|
---|
| 118 | this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
| 119 | this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
|
---|
| 120 | this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
|
---|
| 121 | this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
|
---|
| 122 | //
|
---|
| 123 | // imageList
|
---|
| 124 | //
|
---|
| 125 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 126 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 127 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 128 | //
|
---|
| 129 | // removeButton
|
---|
| 130 | //
|
---|
| 131 | this.removeButton.Enabled = false;
|
---|
| 132 | this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
|
---|
| 133 | this.removeButton.Location = new System.Drawing.Point(3, 3);
|
---|
| 134 | this.removeButton.Name = "removeButton";
|
---|
| 135 | this.removeButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 136 | this.removeButton.TabIndex = 0;
|
---|
| 137 | this.toolTip.SetToolTip(this.removeButton, "Remove");
|
---|
| 138 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 139 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 140 | //
|
---|
| 141 | // detailsGroupBox
|
---|
| 142 | //
|
---|
| 143 | this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 144 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 145 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 146 | this.detailsGroupBox.Controls.Add(this.viewHost);
|
---|
| 147 | this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
|
---|
| 148 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
| 149 | this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
|
---|
| 150 | this.detailsGroupBox.TabIndex = 0;
|
---|
| 151 | this.detailsGroupBox.TabStop = false;
|
---|
| 152 | this.detailsGroupBox.Text = "Details";
|
---|
| 153 | //
|
---|
| 154 | // viewHost
|
---|
| 155 | //
|
---|
| 156 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 157 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 158 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[3507] | 159 | this.viewHost.Caption = null;
|
---|
[3277] | 160 | this.viewHost.Content = null;
|
---|
| 161 | this.viewHost.Location = new System.Drawing.Point(6, 19);
|
---|
| 162 | this.viewHost.Name = "viewHost";
|
---|
[3507] | 163 | this.viewHost.ReadOnly = false;
|
---|
[3277] | 164 | this.viewHost.Size = new System.Drawing.Size(254, 310);
|
---|
| 165 | this.viewHost.TabIndex = 0;
|
---|
| 166 | this.viewHost.ViewType = null;
|
---|
| 167 | //
|
---|
| 168 | // itemsGroupBox
|
---|
| 169 | //
|
---|
| 170 | this.itemsGroupBox.Controls.Add(this.splitContainer);
|
---|
| 171 | this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 172 | this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 173 | this.itemsGroupBox.Name = "itemsGroupBox";
|
---|
| 174 | this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
|
---|
| 175 | this.itemsGroupBox.TabIndex = 0;
|
---|
| 176 | this.itemsGroupBox.TabStop = false;
|
---|
| 177 | this.itemsGroupBox.Text = "Items";
|
---|
| 178 | //
|
---|
[3507] | 179 | // toolStrip
|
---|
| 180 | //
|
---|
| 181 | this.toolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 182 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 183 | this.toolStrip.AutoSize = false;
|
---|
| 184 | this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
|
---|
| 185 | this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
---|
| 186 | this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 187 | this.analyzeRunsToolStripDropDownButton});
|
---|
| 188 | this.toolStrip.Location = new System.Drawing.Point(30, 3);
|
---|
| 189 | this.toolStrip.Name = "toolStrip";
|
---|
| 190 | this.toolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
|
---|
| 191 | this.toolStrip.Size = new System.Drawing.Size(217, 24);
|
---|
| 192 | this.toolStrip.TabIndex = 1;
|
---|
| 193 | this.toolStrip.Text = "toolStrip1";
|
---|
| 194 | //
|
---|
| 195 | // analyzeRunsToolStripDropDownButton
|
---|
| 196 | //
|
---|
| 197 | this.analyzeRunsToolStripDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
---|
| 198 | this.analyzeRunsToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
---|
| 199 | this.analyzeRunsToolStripDropDownButton.Name = "analyzeRunsToolStripDropDownButton";
|
---|
| 200 | this.analyzeRunsToolStripDropDownButton.Size = new System.Drawing.Size(45, 21);
|
---|
| 201 | this.analyzeRunsToolStripDropDownButton.Text = "&Analyze Runs...";
|
---|
| 202 | this.analyzeRunsToolStripDropDownButton.ToolTipText = "Show Run Analysis Views";
|
---|
| 203 | //
|
---|
[3277] | 204 | // RunCollectionView
|
---|
| 205 | //
|
---|
| 206 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 207 | this.Controls.Add(this.itemsGroupBox);
|
---|
| 208 | this.Name = "RunCollectionView";
|
---|
| 209 | this.Size = new System.Drawing.Size(532, 383);
|
---|
| 210 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 211 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 212 | this.splitContainer.ResumeLayout(false);
|
---|
| 213 | this.detailsGroupBox.ResumeLayout(false);
|
---|
| 214 | this.itemsGroupBox.ResumeLayout(false);
|
---|
[3507] | 215 | this.toolStrip.ResumeLayout(false);
|
---|
| 216 | this.toolStrip.PerformLayout();
|
---|
[3277] | 217 | this.ResumeLayout(false);
|
---|
| 218 |
|
---|
[3260] | 219 | }
|
---|
| 220 |
|
---|
| 221 | #endregion
|
---|
[3277] | 222 |
|
---|
| 223 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 224 | protected System.Windows.Forms.ColumnHeader columnHeader1;
|
---|
| 225 | protected GroupBox itemsGroupBox;
|
---|
| 226 | protected ListView itemsListView;
|
---|
| 227 | protected GroupBox detailsGroupBox;
|
---|
| 228 | protected Button removeButton;
|
---|
| 229 | protected ToolTip toolTip;
|
---|
| 230 | protected ImageList imageList;
|
---|
[3281] | 231 | protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
[3507] | 232 | protected ToolStrip toolStrip;
|
---|
| 233 | protected ToolStripDropDownButton analyzeRunsToolStripDropDownButton;
|
---|
[3260] | 234 | }
|
---|
| 235 | }
|
---|