Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4883 was 4883, checked in by mkommend, 13 years ago

Improved performance of all RunCollectionViews (ticket #1284).

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