Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.HLScript.Views/3.3/VariableStoreView.Designer.cs @ 10506

Last change on this file since 10506 was 10506, checked in by jkarder, 10 years ago

#2136: applied some of the changes suggested in comment:11:ticket:2136

  • change namespaces to HeuristicLab.Scripting.*
  • added extra compile button and registered F6 as a shortcut
  • changed the order of the output window and the error list
  • tabs (output window and error list) are selected automatically
  • thrown exceptions are shown using the PluginInfrastructure
  • removed namespace declaration in the script
  • names in the VariableStore are now conform to C# property names
File size: 9.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Windows.Forms;
23
24namespace HeuristicLab.Scripting.Views {
25  partial class VariableStoreView {
26    /// <summary>
27    /// Required designer variable.
28    /// </summary>
29    private System.ComponentModel.IContainer components = null;
30
31    #region Windows Form Designer generated code
32
33    /// <summary>
34    /// Required method for Designer support - do not modify
35    /// the contents of this method with the code editor.
36    /// </summary>
37    private void InitializeComponent() {
38      this.components = new System.ComponentModel.Container();
39      this.variableListView = new System.Windows.Forms.ListView();
40      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
41      this.valueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
42      this.typeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
43      this.imageList = new System.Windows.Forms.ImageList(this.components);
44      this.sortDescendingButton = new System.Windows.Forms.Button();
45      this.sortAscendingButton = new System.Windows.Forms.Button();
46      this.removeButton = new System.Windows.Forms.Button();
47      this.addButton = new System.Windows.Forms.Button();
48      this.variablesGroupBox = new System.Windows.Forms.GroupBox();
49      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
50      this.variablesGroupBox.SuspendLayout();
51      this.SuspendLayout();
52      //
53      // variableListView
54      //
55      this.variableListView.AllowDrop = true;
56      this.variableListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.variableListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
60            this.nameColumnHeader,
61            this.valueColumnHeader,
62            this.typeColumnHeader});
63      this.variableListView.FullRowSelect = true;
64      this.variableListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
65      this.variableListView.HideSelection = false;
66      this.variableListView.LabelEdit = true;
67      this.variableListView.Location = new System.Drawing.Point(6, 49);
68      this.variableListView.MultiSelect = false;
69      this.variableListView.Name = "variableListView";
70      this.variableListView.ShowItemToolTips = true;
71      this.variableListView.Size = new System.Drawing.Size(224, 395);
72      this.variableListView.SmallImageList = this.imageList;
73      this.variableListView.TabIndex = 5;
74      this.variableListView.UseCompatibleStateImageBehavior = false;
75      this.variableListView.View = System.Windows.Forms.View.Details;
76      this.variableListView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.variableListView_AfterLabelEdit);
77      this.variableListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.variableListView_ItemDrag);
78      this.variableListView.SelectedIndexChanged += new System.EventHandler(this.variableListView_SelectedIndexChanged);
79      this.variableListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.variableListView_DragDrop);
80      this.variableListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.variableListView_DragEnter);
81      this.variableListView.DragOver += new System.Windows.Forms.DragEventHandler(this.variableListView_DragOver);
82      this.variableListView.DoubleClick += new System.EventHandler(this.variableListView_DoubleClick);
83      this.variableListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variableListView_KeyDown);
84      //
85      // nameColumnHeader
86      //
87      this.nameColumnHeader.Text = "Name";
88      //
89      // valueColumnHeader
90      //
91      this.valueColumnHeader.Text = "Value";
92      //
93      // typeColumnHeader
94      //
95      this.typeColumnHeader.Text = "Type";
96      //
97      // imageList
98      //
99      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
100      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
101      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
102      //
103      // sortDescendingButton
104      //
105      this.sortDescendingButton.Enabled = false;
106      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
107      this.sortDescendingButton.Location = new System.Drawing.Point(36, 19);
108      this.sortDescendingButton.Name = "sortDescendingButton";
109      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
110      this.sortDescendingButton.TabIndex = 1;
111      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
112      this.sortDescendingButton.UseVisualStyleBackColor = true;
113      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
114      //
115      // sortAscendingButton
116      //
117      this.sortAscendingButton.Enabled = false;
118      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
119      this.sortAscendingButton.Location = new System.Drawing.Point(66, 19);
120      this.sortAscendingButton.Name = "sortAscendingButton";
121      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
122      this.sortAscendingButton.TabIndex = 2;
123      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
124      this.sortAscendingButton.UseVisualStyleBackColor = true;
125      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
126      //
127      // removeButton
128      //
129      this.removeButton.Enabled = false;
130      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
131      this.removeButton.Location = new System.Drawing.Point(96, 19);
132      this.removeButton.Name = "removeButton";
133      this.removeButton.Size = new System.Drawing.Size(24, 24);
134      this.removeButton.TabIndex = 3;
135      this.toolTip.SetToolTip(this.removeButton, "Remove");
136      this.removeButton.UseVisualStyleBackColor = true;
137      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
138      //
139      // addButton
140      //
141      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
142      this.addButton.Location = new System.Drawing.Point(6, 19);
143      this.addButton.Name = "addButton";
144      this.addButton.Size = new System.Drawing.Size(24, 24);
145      this.addButton.TabIndex = 0;
146      this.toolTip.SetToolTip(this.addButton, "Add");
147      this.addButton.UseVisualStyleBackColor = true;
148      this.addButton.Click += new System.EventHandler(this.addButton_Click);
149      //
150      // variablesGroupBox
151      //
152      this.variablesGroupBox.Controls.Add(this.variableListView);
153      this.variablesGroupBox.Controls.Add(this.addButton);
154      this.variablesGroupBox.Controls.Add(this.sortDescendingButton);
155      this.variablesGroupBox.Controls.Add(this.removeButton);
156      this.variablesGroupBox.Controls.Add(this.sortAscendingButton);
157      this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
158      this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
159      this.variablesGroupBox.Name = "variablesGroupBox";
160      this.variablesGroupBox.Size = new System.Drawing.Size(236, 450);
161      this.variablesGroupBox.TabIndex = 0;
162      this.variablesGroupBox.TabStop = false;
163      this.variablesGroupBox.Text = "Variables";
164      //
165      // VariableStoreView
166      //
167      this.Controls.Add(this.variablesGroupBox);
168      this.Name = "VariableStoreView";
169      this.Size = new System.Drawing.Size(236, 450);
170      this.variablesGroupBox.ResumeLayout(false);
171      this.ResumeLayout(false);
172
173    }
174
175    #endregion
176
177    protected System.Windows.Forms.ColumnHeader nameColumnHeader;
178    protected GroupBox variablesGroupBox;
179    protected ListView variableListView;
180    protected Button addButton;
181    protected Button removeButton;
182    protected ToolTip toolTip;
183    protected ImageList imageList;
184    protected Button sortAscendingButton;
185    protected Button sortDescendingButton;
186    private ColumnHeader valueColumnHeader;
187    private ColumnHeader typeColumnHeader;
188  }
189}
Note: See TracBrowser for help on using the repository browser.