[2655] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2655] | 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 |
|
---|
[2714] | 22 | namespace HeuristicLab.Parameters.Views {
|
---|
[2756] | 23 | partial class ValueLookupParameterView<T> {
|
---|
[2655] | 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | #region Component Designer generated code
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Required method for Designer support - do not modify
|
---|
| 33 | /// the contents of this method with the code editor.
|
---|
| 34 | /// </summary>
|
---|
| 35 | private void InitializeComponent() {
|
---|
[2756] | 36 | this.valueGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[4332] | 37 | this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
|
---|
[4011] | 38 | this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[2756] | 39 | this.clearValueButton = new System.Windows.Forms.Button();
|
---|
| 40 | this.setValueButton = new System.Windows.Forms.Button();
|
---|
[2655] | 41 | this.actualNameTextBox = new System.Windows.Forms.TextBox();
|
---|
| 42 | this.actualNameLabel = new System.Windows.Forms.Label();
|
---|
[2676] | 43 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
[2756] | 44 | this.valueGroupBox.SuspendLayout();
|
---|
[2655] | 45 | this.SuspendLayout();
|
---|
| 46 | //
|
---|
| 47 | // dataTypeLabel
|
---|
| 48 | //
|
---|
[6051] | 49 | this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
|
---|
[5832] | 50 | this.dataTypeLabel.TabIndex = 5;
|
---|
[2655] | 51 | //
|
---|
| 52 | // dataTypeTextBox
|
---|
| 53 | //
|
---|
[5832] | 54 | this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52);
|
---|
[2655] | 55 | this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
[5832] | 56 | this.dataTypeTextBox.TabIndex = 6;
|
---|
[2655] | 57 | //
|
---|
| 58 | // nameTextBox
|
---|
| 59 | //
|
---|
[2676] | 60 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 61 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 62 | this.nameTextBox.Location = new System.Drawing.Point(80, 0);
|
---|
[5832] | 63 | this.nameTextBox.Size = new System.Drawing.Size(281, 20);
|
---|
[2655] | 64 | //
|
---|
[5832] | 65 | // infoLabel
|
---|
[2655] | 66 | //
|
---|
[5832] | 67 | this.infoLabel.Location = new System.Drawing.Point(367, 3);
|
---|
[2655] | 68 | //
|
---|
[2756] | 69 | // valueGroupBox
|
---|
[2655] | 70 | //
|
---|
[4522] | 71 | this.valueGroupBox.AllowDrop = true;
|
---|
[2756] | 72 | this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[2655] | 73 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 74 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 75 | this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
|
---|
[4011] | 76 | this.valueGroupBox.Controls.Add(this.valueViewHost);
|
---|
[2756] | 77 | this.valueGroupBox.Controls.Add(this.clearValueButton);
|
---|
| 78 | this.valueGroupBox.Controls.Add(this.setValueButton);
|
---|
[5832] | 79 | this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
|
---|
[2756] | 80 | this.valueGroupBox.Name = "valueGroupBox";
|
---|
[5832] | 81 | this.valueGroupBox.Size = new System.Drawing.Size(386, 237);
|
---|
| 82 | this.valueGroupBox.TabIndex = 7;
|
---|
[2756] | 83 | this.valueGroupBox.TabStop = false;
|
---|
[2924] | 84 | this.valueGroupBox.Text = "Value";
|
---|
[4522] | 85 | this.valueGroupBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragDrop);
|
---|
| 86 | this.valueGroupBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
|
---|
| 87 | this.valueGroupBox.DragOver += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
|
---|
[2655] | 88 | //
|
---|
[4332] | 89 | // showInRunCheckBox
|
---|
[2655] | 90 | //
|
---|
[4332] | 91 | this.showInRunCheckBox.AutoSize = true;
|
---|
| 92 | this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 93 | this.showInRunCheckBox.Checked = true;
|
---|
| 94 | this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 95 | this.showInRunCheckBox.Location = new System.Drawing.Point(66, 24);
|
---|
| 96 | this.showInRunCheckBox.Name = "showInRunCheckBox";
|
---|
| 97 | this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
|
---|
| 98 | this.showInRunCheckBox.TabIndex = 2;
|
---|
| 99 | this.showInRunCheckBox.Text = "&Show in Run:";
|
---|
| 100 | this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
|
---|
| 101 | this.showInRunCheckBox.UseVisualStyleBackColor = true;
|
---|
| 102 | this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
|
---|
| 103 | //
|
---|
| 104 | // valueViewHost
|
---|
| 105 | //
|
---|
[4011] | 106 | this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[2676] | 107 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 108 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 109 | this.valueViewHost.Caption = "View";
|
---|
| 110 | this.valueViewHost.Content = null;
|
---|
[5832] | 111 | this.valueViewHost.Enabled = false;
|
---|
[4011] | 112 | this.valueViewHost.Location = new System.Drawing.Point(6, 49);
|
---|
| 113 | this.valueViewHost.Name = "valueViewHost";
|
---|
[4332] | 114 | this.valueViewHost.ReadOnly = false;
|
---|
[5832] | 115 | this.valueViewHost.Size = new System.Drawing.Size(374, 182);
|
---|
[4332] | 116 | this.valueViewHost.TabIndex = 3;
|
---|
[5832] | 117 | this.valueViewHost.ViewsLabelVisible = true;
|
---|
[4011] | 118 | this.valueViewHost.ViewType = null;
|
---|
[2655] | 119 | //
|
---|
[2756] | 120 | // clearValueButton
|
---|
[2676] | 121 | //
|
---|
[2756] | 122 | this.clearValueButton.Enabled = false;
|
---|
[5287] | 123 | this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
[2796] | 124 | this.clearValueButton.Location = new System.Drawing.Point(36, 19);
|
---|
[2756] | 125 | this.clearValueButton.Name = "clearValueButton";
|
---|
[2796] | 126 | this.clearValueButton.Size = new System.Drawing.Size(24, 24);
|
---|
[2756] | 127 | this.clearValueButton.TabIndex = 1;
|
---|
| 128 | this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
|
---|
| 129 | this.clearValueButton.UseVisualStyleBackColor = true;
|
---|
| 130 | this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
|
---|
[2676] | 131 | //
|
---|
[2756] | 132 | // setValueButton
|
---|
[2676] | 133 | //
|
---|
[5287] | 134 | this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
|
---|
[2756] | 135 | this.setValueButton.Location = new System.Drawing.Point(6, 19);
|
---|
| 136 | this.setValueButton.Name = "setValueButton";
|
---|
[2796] | 137 | this.setValueButton.Size = new System.Drawing.Size(24, 24);
|
---|
[2756] | 138 | this.setValueButton.TabIndex = 0;
|
---|
| 139 | this.toolTip.SetToolTip(this.setValueButton, "Set Value");
|
---|
| 140 | this.setValueButton.UseVisualStyleBackColor = true;
|
---|
| 141 | this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
|
---|
[2676] | 142 | //
|
---|
[2655] | 143 | // actualNameTextBox
|
---|
| 144 | //
|
---|
| 145 | this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 146 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 147 | this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
|
---|
| 148 | this.actualNameTextBox.Name = "actualNameTextBox";
|
---|
| 149 | this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
[5832] | 150 | this.actualNameTextBox.TabIndex = 4;
|
---|
[2655] | 151 | this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
|
---|
| 152 | //
|
---|
| 153 | // actualNameLabel
|
---|
| 154 | //
|
---|
| 155 | this.actualNameLabel.AutoSize = true;
|
---|
| 156 | this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
|
---|
| 157 | this.actualNameLabel.Name = "actualNameLabel";
|
---|
| 158 | this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
|
---|
[5832] | 159 | this.actualNameLabel.TabIndex = 3;
|
---|
[2655] | 160 | this.actualNameLabel.Text = "&Actual Name:";
|
---|
| 161 | //
|
---|
[2756] | 162 | // ValueLookupParameterView
|
---|
[2655] | 163 | //
|
---|
| 164 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 165 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[2676] | 166 | this.Controls.Add(this.actualNameTextBox);
|
---|
[2655] | 167 | this.Controls.Add(this.actualNameLabel);
|
---|
[2756] | 168 | this.Controls.Add(this.valueGroupBox);
|
---|
| 169 | this.Name = "ValueLookupParameterView";
|
---|
[2655] | 170 | this.Size = new System.Drawing.Size(386, 315);
|
---|
[5832] | 171 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
[2676] | 172 | this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
|
---|
| 173 | this.Controls.SetChildIndex(this.dataTypeLabel, 0);
|
---|
| 174 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
[2756] | 175 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 176 | this.Controls.SetChildIndex(this.valueGroupBox, 0);
|
---|
| 177 | this.Controls.SetChildIndex(this.actualNameLabel, 0);
|
---|
[2655] | 178 | this.Controls.SetChildIndex(this.actualNameTextBox, 0);
|
---|
[2676] | 179 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[2756] | 180 | this.valueGroupBox.ResumeLayout(false);
|
---|
[4332] | 181 | this.valueGroupBox.PerformLayout();
|
---|
[2655] | 182 | this.ResumeLayout(false);
|
---|
| 183 | this.PerformLayout();
|
---|
| 184 |
|
---|
| 185 | }
|
---|
| 186 |
|
---|
| 187 | #endregion
|
---|
| 188 |
|
---|
[2756] | 189 | protected System.Windows.Forms.GroupBox valueGroupBox;
|
---|
[4011] | 190 | protected HeuristicLab.MainForm.WindowsForms.ViewHost valueViewHost;
|
---|
[2756] | 191 | protected System.Windows.Forms.Button setValueButton;
|
---|
| 192 | protected System.Windows.Forms.Button clearValueButton;
|
---|
[2676] | 193 | protected System.Windows.Forms.TextBox actualNameTextBox;
|
---|
| 194 | protected System.Windows.Forms.Label actualNameLabel;
|
---|
[4332] | 195 | protected System.Windows.Forms.CheckBox showInRunCheckBox;
|
---|
[2655] | 196 | }
|
---|
| 197 | }
|
---|