Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.Designer.cs @ 4049

Last change on this file since 4049 was 3829, checked in by swagner, 14 years ago

Implemented reviewers' comments (#893)

File size: 14.7 KB
Line 
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
22using System;
23using System.Windows.Forms;
24using System.ComponentModel;
25
26namespace HeuristicLab.Optimization.Views {
27  partial class RunCollectionView {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
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) {
39        foreach (ListViewItem item in itemsListView.Items) {
40          ((IRun)item.Tag).ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
41          ((IRun)item.Tag).ToStringChanged -= new EventHandler(Item_ToStringChanged);
42        }
43        if (components != null) components.Dispose();
44      }
45      base.Dispose(disposing);
46    }
47
48    #region Windows Form Designer generated code
49
50    /// <summary>
51    /// Required method for Designer support - do not modify
52    /// the contents of this method with the code editor.
53    /// </summary>
54    private void InitializeComponent() {
55      this.components = new System.ComponentModel.Container();
56      this.splitContainer = new System.Windows.Forms.SplitContainer();
57      this.toolStrip = new System.Windows.Forms.ToolStrip();
58      this.analyzeRunsToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
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();
64      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
65      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
66      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
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 RunCollectionConstraintCollectionView();
71      this.clearButton = new System.Windows.Forms.Button();
72      this.splitContainer.Panel1.SuspendLayout();
73      this.splitContainer.Panel2.SuspendLayout();
74      this.splitContainer.SuspendLayout();
75      this.toolStrip.SuspendLayout();
76      this.detailsGroupBox.SuspendLayout();
77      this.itemsGroupBox.SuspendLayout();
78      this.tabControl.SuspendLayout();
79      this.runPage.SuspendLayout();
80      this.constraintPage.SuspendLayout();
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      //
92      this.splitContainer.Panel1.Controls.Add(this.clearButton);
93      this.splitContainer.Panel1.Controls.Add(this.toolStrip);
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);
101      this.splitContainer.Size = new System.Drawing.Size(512, 332);
102      this.splitContainer.SplitterDistance = 250;
103      this.splitContainer.TabIndex = 0;
104      //
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";
116      this.toolStrip.Size = new System.Drawing.Size(166, 24);
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      //
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;
142      this.itemsListView.Size = new System.Drawing.Size(244, 295);
143      this.itemsListView.SmallImageList = this.imageList;
144      this.itemsListView.TabIndex = 3;
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.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
149      this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
150      this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
151      this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
152      this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
153      this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
154      //
155      // imageList
156      //
157      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
158      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
159      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
160      //
161      // removeButton
162      //
163      this.removeButton.Enabled = false;
164      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
165      this.removeButton.Location = new System.Drawing.Point(3, 3);
166      this.removeButton.Name = "removeButton";
167      this.removeButton.Size = new System.Drawing.Size(24, 24);
168      this.removeButton.TabIndex = 0;
169      this.toolTip.SetToolTip(this.removeButton, "Remove");
170      this.removeButton.UseVisualStyleBackColor = true;
171      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
172      //
173      // detailsGroupBox
174      //
175      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
176                  | System.Windows.Forms.AnchorStyles.Left)
177                  | System.Windows.Forms.AnchorStyles.Right)));
178      this.detailsGroupBox.Controls.Add(this.viewHost);
179      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
180      this.detailsGroupBox.Name = "detailsGroupBox";
181      this.detailsGroupBox.Size = new System.Drawing.Size(252, 303);
182      this.detailsGroupBox.TabIndex = 0;
183      this.detailsGroupBox.TabStop = false;
184      this.detailsGroupBox.Text = "Details";
185      //
186      // viewHost
187      //
188      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
189                  | System.Windows.Forms.AnchorStyles.Left)
190                  | System.Windows.Forms.AnchorStyles.Right)));
191      this.viewHost.Content = null;
192      this.viewHost.Location = new System.Drawing.Point(6, 19);
193      this.viewHost.Name = "viewHost";
194      this.viewHost.ReadOnly = false;
195      this.viewHost.Size = new System.Drawing.Size(240, 278);
196      this.viewHost.TabIndex = 0;
197      this.viewHost.ViewType = null;
198      //
199      // itemsGroupBox
200      //
201      this.itemsGroupBox.Controls.Add(this.splitContainer);
202      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
203      this.itemsGroupBox.Location = new System.Drawing.Point(3, 3);
204      this.itemsGroupBox.Name = "itemsGroupBox";
205      this.itemsGroupBox.Size = new System.Drawing.Size(518, 351);
206      this.itemsGroupBox.TabIndex = 0;
207      this.itemsGroupBox.TabStop = false;
208      this.itemsGroupBox.Text = "Items";
209      //
210      // tabControl
211      //
212      this.tabControl.Controls.Add(this.runPage);
213      this.tabControl.Controls.Add(this.constraintPage);
214      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
215      this.tabControl.Location = new System.Drawing.Point(0, 0);
216      this.tabControl.Name = "tabControl";
217      this.tabControl.SelectedIndex = 0;
218      this.tabControl.Size = new System.Drawing.Size(532, 383);
219      this.tabControl.TabIndex = 0;
220      //
221      // runPage
222      //
223      this.runPage.Controls.Add(this.itemsGroupBox);
224      this.runPage.Location = new System.Drawing.Point(4, 22);
225      this.runPage.Name = "runPage";
226      this.runPage.Padding = new System.Windows.Forms.Padding(3);
227      this.runPage.Size = new System.Drawing.Size(524, 357);
228      this.runPage.TabIndex = 0;
229      this.runPage.Text = "Runs";
230      this.runPage.UseVisualStyleBackColor = true;
231      //
232      // constraintPage
233      //
234      this.constraintPage.Controls.Add(this.runCollectionConstraintCollectionView);
235      this.constraintPage.Location = new System.Drawing.Point(4, 22);
236      this.constraintPage.Name = "constraintPage";
237      this.constraintPage.Padding = new System.Windows.Forms.Padding(3);
238      this.constraintPage.Size = new System.Drawing.Size(524, 357);
239      this.constraintPage.TabIndex = 1;
240      this.constraintPage.Text = "Filtering";
241      this.constraintPage.UseVisualStyleBackColor = true;
242      //
243      // runCollectionConstraintCollectionView
244      //
245      this.runCollectionConstraintCollectionView.Content = null;
246      this.runCollectionConstraintCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
247      this.runCollectionConstraintCollectionView.Location = new System.Drawing.Point(3, 3);
248      this.runCollectionConstraintCollectionView.Name = "runCollectionConstraintCollectionView";
249      this.runCollectionConstraintCollectionView.ReadOnly = false;
250      this.runCollectionConstraintCollectionView.Size = new System.Drawing.Size(518, 351);
251      this.runCollectionConstraintCollectionView.TabIndex = 0;
252      //
253      // clearButton
254      //
255      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
256      this.clearButton.Enabled = false;
257      this.clearButton.Location = new System.Drawing.Point(199, 3);
258      this.clearButton.Name = "clearButton";
259      this.clearButton.Size = new System.Drawing.Size(48, 24);
260      this.clearButton.TabIndex = 2;
261      this.clearButton.Text = "&Clear";
262      this.toolTip.SetToolTip(this.clearButton, "Remove All Runs");
263      this.clearButton.UseVisualStyleBackColor = true;
264      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
265      //
266      // RunCollectionView
267      //
268      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
269      this.Controls.Add(this.tabControl);
270      this.Name = "RunCollectionView";
271      this.Size = new System.Drawing.Size(532, 383);
272      this.splitContainer.Panel1.ResumeLayout(false);
273      this.splitContainer.Panel2.ResumeLayout(false);
274      this.splitContainer.ResumeLayout(false);
275      this.toolStrip.ResumeLayout(false);
276      this.toolStrip.PerformLayout();
277      this.detailsGroupBox.ResumeLayout(false);
278      this.itemsGroupBox.ResumeLayout(false);
279      this.tabControl.ResumeLayout(false);
280      this.runPage.ResumeLayout(false);
281      this.constraintPage.ResumeLayout(false);
282      this.ResumeLayout(false);
283
284    }
285
286    #endregion
287
288    protected System.Windows.Forms.SplitContainer splitContainer;
289    protected System.Windows.Forms.ColumnHeader columnHeader1;
290    protected GroupBox itemsGroupBox;
291    protected ListView itemsListView;
292    protected GroupBox detailsGroupBox;
293    protected Button removeButton;
294    protected ToolTip toolTip;
295    protected ImageList imageList;
296    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
297    protected ToolStrip toolStrip;
298    protected ToolStripDropDownButton analyzeRunsToolStripDropDownButton;
299    protected TabControl tabControl;
300    protected TabPage runPage;
301    protected TabPage constraintPage;
302    protected RunCollectionConstraintCollectionView runCollectionConstraintCollectionView;
303    protected Button clearButton;
304  }
305}
Note: See TracBrowser for help on using the repository browser.