[10332] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[10332] | 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 |
|
---|
| 22 | using System.Windows.Forms;
|
---|
| 23 |
|
---|
[10506] | 24 | namespace HeuristicLab.Scripting.Views {
|
---|
[10332] | 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});
|
---|
[10358] | 63 | this.variableListView.FullRowSelect = true;
|
---|
[10332] | 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.Name = "variableListView";
|
---|
| 69 | this.variableListView.ShowItemToolTips = true;
|
---|
| 70 | this.variableListView.Size = new System.Drawing.Size(224, 395);
|
---|
| 71 | this.variableListView.SmallImageList = this.imageList;
|
---|
| 72 | this.variableListView.TabIndex = 5;
|
---|
| 73 | this.variableListView.UseCompatibleStateImageBehavior = false;
|
---|
| 74 | this.variableListView.View = System.Windows.Forms.View.Details;
|
---|
| 75 | this.variableListView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.variableListView_AfterLabelEdit);
|
---|
| 76 | this.variableListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.variableListView_ItemDrag);
|
---|
| 77 | this.variableListView.SelectedIndexChanged += new System.EventHandler(this.variableListView_SelectedIndexChanged);
|
---|
| 78 | this.variableListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.variableListView_DragDrop);
|
---|
| 79 | this.variableListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.variableListView_DragEnter);
|
---|
| 80 | this.variableListView.DragOver += new System.Windows.Forms.DragEventHandler(this.variableListView_DragOver);
|
---|
| 81 | this.variableListView.DoubleClick += new System.EventHandler(this.variableListView_DoubleClick);
|
---|
| 82 | this.variableListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variableListView_KeyDown);
|
---|
| 83 | //
|
---|
| 84 | // nameColumnHeader
|
---|
| 85 | //
|
---|
| 86 | this.nameColumnHeader.Text = "Name";
|
---|
| 87 | //
|
---|
| 88 | // valueColumnHeader
|
---|
| 89 | //
|
---|
| 90 | this.valueColumnHeader.Text = "Value";
|
---|
| 91 | //
|
---|
| 92 | // typeColumnHeader
|
---|
| 93 | //
|
---|
| 94 | this.typeColumnHeader.Text = "Type";
|
---|
| 95 | //
|
---|
| 96 | // imageList
|
---|
| 97 | //
|
---|
| 98 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 99 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 100 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 101 | //
|
---|
| 102 | // sortDescendingButton
|
---|
| 103 | //
|
---|
| 104 | this.sortDescendingButton.Enabled = false;
|
---|
| 105 | this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
|
---|
| 106 | this.sortDescendingButton.Location = new System.Drawing.Point(36, 19);
|
---|
| 107 | this.sortDescendingButton.Name = "sortDescendingButton";
|
---|
| 108 | this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 109 | this.sortDescendingButton.TabIndex = 1;
|
---|
| 110 | this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
|
---|
| 111 | this.sortDescendingButton.UseVisualStyleBackColor = true;
|
---|
| 112 | this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
|
---|
| 113 | //
|
---|
| 114 | // sortAscendingButton
|
---|
| 115 | //
|
---|
| 116 | this.sortAscendingButton.Enabled = false;
|
---|
| 117 | this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
|
---|
| 118 | this.sortAscendingButton.Location = new System.Drawing.Point(66, 19);
|
---|
| 119 | this.sortAscendingButton.Name = "sortAscendingButton";
|
---|
| 120 | this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 121 | this.sortAscendingButton.TabIndex = 2;
|
---|
| 122 | this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
|
---|
| 123 | this.sortAscendingButton.UseVisualStyleBackColor = true;
|
---|
| 124 | this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
|
---|
| 125 | //
|
---|
| 126 | // removeButton
|
---|
| 127 | //
|
---|
| 128 | this.removeButton.Enabled = false;
|
---|
| 129 | this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
| 130 | this.removeButton.Location = new System.Drawing.Point(96, 19);
|
---|
| 131 | this.removeButton.Name = "removeButton";
|
---|
| 132 | this.removeButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 133 | this.removeButton.TabIndex = 3;
|
---|
| 134 | this.toolTip.SetToolTip(this.removeButton, "Remove");
|
---|
| 135 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 136 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 137 | //
|
---|
| 138 | // addButton
|
---|
| 139 | //
|
---|
| 140 | this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
|
---|
| 141 | this.addButton.Location = new System.Drawing.Point(6, 19);
|
---|
| 142 | this.addButton.Name = "addButton";
|
---|
| 143 | this.addButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 144 | this.addButton.TabIndex = 0;
|
---|
| 145 | this.toolTip.SetToolTip(this.addButton, "Add");
|
---|
| 146 | this.addButton.UseVisualStyleBackColor = true;
|
---|
| 147 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
| 148 | //
|
---|
| 149 | // variablesGroupBox
|
---|
| 150 | //
|
---|
| 151 | this.variablesGroupBox.Controls.Add(this.variableListView);
|
---|
| 152 | this.variablesGroupBox.Controls.Add(this.addButton);
|
---|
| 153 | this.variablesGroupBox.Controls.Add(this.sortDescendingButton);
|
---|
| 154 | this.variablesGroupBox.Controls.Add(this.removeButton);
|
---|
| 155 | this.variablesGroupBox.Controls.Add(this.sortAscendingButton);
|
---|
| 156 | this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 157 | this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 158 | this.variablesGroupBox.Name = "variablesGroupBox";
|
---|
| 159 | this.variablesGroupBox.Size = new System.Drawing.Size(236, 450);
|
---|
| 160 | this.variablesGroupBox.TabIndex = 0;
|
---|
| 161 | this.variablesGroupBox.TabStop = false;
|
---|
| 162 | this.variablesGroupBox.Text = "Variables";
|
---|
| 163 | //
|
---|
| 164 | // VariableStoreView
|
---|
| 165 | //
|
---|
| 166 | this.Controls.Add(this.variablesGroupBox);
|
---|
| 167 | this.Name = "VariableStoreView";
|
---|
| 168 | this.Size = new System.Drawing.Size(236, 450);
|
---|
| 169 | this.variablesGroupBox.ResumeLayout(false);
|
---|
| 170 | this.ResumeLayout(false);
|
---|
| 171 |
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | #endregion
|
---|
| 175 |
|
---|
| 176 | protected System.Windows.Forms.ColumnHeader nameColumnHeader;
|
---|
| 177 | protected GroupBox variablesGroupBox;
|
---|
| 178 | protected ListView variableListView;
|
---|
| 179 | protected Button addButton;
|
---|
| 180 | protected Button removeButton;
|
---|
| 181 | protected ToolTip toolTip;
|
---|
| 182 | protected ImageList imageList;
|
---|
| 183 | protected Button sortAscendingButton;
|
---|
| 184 | protected Button sortDescendingButton;
|
---|
| 185 | private ColumnHeader valueColumnHeader;
|
---|
| 186 | private ColumnHeader typeColumnHeader;
|
---|
| 187 | }
|
---|
| 188 | }
|
---|