[2655] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 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 | //
|
---|
[2917] | 49 | this.dataTypeLabel.Location = new System.Drawing.Point(3, 81);
|
---|
[2655] | 50 | this.dataTypeLabel.TabIndex = 6;
|
---|
| 51 | //
|
---|
| 52 | // dataTypeTextBox
|
---|
| 53 | //
|
---|
[2917] | 54 | this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78);
|
---|
[2655] | 55 | this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
| 56 | this.dataTypeTextBox.TabIndex = 7;
|
---|
| 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);
|
---|
[2655] | 63 | this.nameTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
| 64 | //
|
---|
| 65 | // descriptionLabel
|
---|
| 66 | //
|
---|
| 67 | this.descriptionLabel.Location = new System.Drawing.Point(3, 55);
|
---|
| 68 | this.descriptionLabel.TabIndex = 4;
|
---|
| 69 | //
|
---|
| 70 | // descriptionTextBox
|
---|
| 71 | //
|
---|
| 72 | this.descriptionTextBox.Location = new System.Drawing.Point(80, 52);
|
---|
[2917] | 73 | this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
[2655] | 74 | this.descriptionTextBox.TabIndex = 5;
|
---|
| 75 | //
|
---|
[2756] | 76 | // valueGroupBox
|
---|
[2655] | 77 | //
|
---|
[4522] | 78 | this.valueGroupBox.AllowDrop = true;
|
---|
[2756] | 79 | this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[2655] | 80 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 81 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 82 | this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
|
---|
[4011] | 83 | this.valueGroupBox.Controls.Add(this.valueViewHost);
|
---|
[2756] | 84 | this.valueGroupBox.Controls.Add(this.clearValueButton);
|
---|
| 85 | this.valueGroupBox.Controls.Add(this.setValueButton);
|
---|
[2917] | 86 | this.valueGroupBox.Location = new System.Drawing.Point(0, 104);
|
---|
[2756] | 87 | this.valueGroupBox.Name = "valueGroupBox";
|
---|
[2917] | 88 | this.valueGroupBox.Size = new System.Drawing.Size(386, 211);
|
---|
[2756] | 89 | this.valueGroupBox.TabIndex = 8;
|
---|
| 90 | this.valueGroupBox.TabStop = false;
|
---|
[2924] | 91 | this.valueGroupBox.Text = "Value";
|
---|
[4522] | 92 | this.valueGroupBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragDrop);
|
---|
| 93 | this.valueGroupBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
|
---|
| 94 | this.valueGroupBox.DragOver += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
|
---|
[2655] | 95 | //
|
---|
[4332] | 96 | // showInRunCheckBox
|
---|
[2655] | 97 | //
|
---|
[4332] | 98 | this.showInRunCheckBox.AutoSize = true;
|
---|
| 99 | this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 100 | this.showInRunCheckBox.Checked = true;
|
---|
| 101 | this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 102 | this.showInRunCheckBox.Location = new System.Drawing.Point(66, 24);
|
---|
| 103 | this.showInRunCheckBox.Name = "showInRunCheckBox";
|
---|
| 104 | this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
|
---|
| 105 | this.showInRunCheckBox.TabIndex = 2;
|
---|
| 106 | this.showInRunCheckBox.Text = "&Show in Run:";
|
---|
| 107 | this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
|
---|
| 108 | this.showInRunCheckBox.UseVisualStyleBackColor = true;
|
---|
| 109 | this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
|
---|
| 110 | //
|
---|
| 111 | // valueViewHost
|
---|
| 112 | //
|
---|
[4011] | 113 | this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[2676] | 114 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 115 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 116 | this.valueViewHost.Caption = "View";
|
---|
| 117 | this.valueViewHost.Content = null;
|
---|
[4011] | 118 | this.valueViewHost.Location = new System.Drawing.Point(6, 49);
|
---|
| 119 | this.valueViewHost.Name = "valueViewHost";
|
---|
[4332] | 120 | this.valueViewHost.ReadOnly = false;
|
---|
[4011] | 121 | this.valueViewHost.Size = new System.Drawing.Size(374, 156);
|
---|
[4332] | 122 | this.valueViewHost.TabIndex = 3;
|
---|
[4011] | 123 | this.valueViewHost.ViewType = null;
|
---|
[4522] | 124 |
|
---|
[2655] | 125 | //
|
---|
[2756] | 126 | // clearValueButton
|
---|
[2676] | 127 | //
|
---|
[2756] | 128 | this.clearValueButton.Enabled = false;
|
---|
[5287] | 129 | this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
[2796] | 130 | this.clearValueButton.Location = new System.Drawing.Point(36, 19);
|
---|
[2756] | 131 | this.clearValueButton.Name = "clearValueButton";
|
---|
[2796] | 132 | this.clearValueButton.Size = new System.Drawing.Size(24, 24);
|
---|
[2756] | 133 | this.clearValueButton.TabIndex = 1;
|
---|
| 134 | this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
|
---|
| 135 | this.clearValueButton.UseVisualStyleBackColor = true;
|
---|
| 136 | this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
|
---|
[2676] | 137 | //
|
---|
[2756] | 138 | // setValueButton
|
---|
[2676] | 139 | //
|
---|
[5287] | 140 | this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
|
---|
[2756] | 141 | this.setValueButton.Location = new System.Drawing.Point(6, 19);
|
---|
| 142 | this.setValueButton.Name = "setValueButton";
|
---|
[2796] | 143 | this.setValueButton.Size = new System.Drawing.Size(24, 24);
|
---|
[2756] | 144 | this.setValueButton.TabIndex = 0;
|
---|
| 145 | this.toolTip.SetToolTip(this.setValueButton, "Set Value");
|
---|
| 146 | this.setValueButton.UseVisualStyleBackColor = true;
|
---|
| 147 | this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
|
---|
[2676] | 148 | //
|
---|
[2655] | 149 | // actualNameTextBox
|
---|
| 150 | //
|
---|
| 151 | this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 152 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 153 | this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
|
---|
| 154 | this.actualNameTextBox.Name = "actualNameTextBox";
|
---|
| 155 | this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
| 156 | this.actualNameTextBox.TabIndex = 3;
|
---|
| 157 | this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
|
---|
| 158 | //
|
---|
| 159 | // actualNameLabel
|
---|
| 160 | //
|
---|
| 161 | this.actualNameLabel.AutoSize = true;
|
---|
| 162 | this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
|
---|
| 163 | this.actualNameLabel.Name = "actualNameLabel";
|
---|
| 164 | this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
|
---|
| 165 | this.actualNameLabel.TabIndex = 2;
|
---|
| 166 | this.actualNameLabel.Text = "&Actual Name:";
|
---|
| 167 | //
|
---|
[2756] | 168 | // ValueLookupParameterView
|
---|
[2655] | 169 | //
|
---|
| 170 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 171 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[2676] | 172 | this.Controls.Add(this.actualNameTextBox);
|
---|
[2655] | 173 | this.Controls.Add(this.actualNameLabel);
|
---|
[2756] | 174 | this.Controls.Add(this.valueGroupBox);
|
---|
| 175 | this.Name = "ValueLookupParameterView";
|
---|
[2655] | 176 | this.Size = new System.Drawing.Size(386, 315);
|
---|
| 177 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 178 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
[2676] | 179 | this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
|
---|
| 180 | this.Controls.SetChildIndex(this.dataTypeLabel, 0);
|
---|
| 181 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
[2756] | 182 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 183 | this.Controls.SetChildIndex(this.valueGroupBox, 0);
|
---|
| 184 | this.Controls.SetChildIndex(this.actualNameLabel, 0);
|
---|
[2655] | 185 | this.Controls.SetChildIndex(this.actualNameTextBox, 0);
|
---|
[2676] | 186 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[2756] | 187 | this.valueGroupBox.ResumeLayout(false);
|
---|
[4332] | 188 | this.valueGroupBox.PerformLayout();
|
---|
[2655] | 189 | this.ResumeLayout(false);
|
---|
| 190 | this.PerformLayout();
|
---|
| 191 |
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 | #endregion
|
---|
| 195 |
|
---|
[2756] | 196 | protected System.Windows.Forms.GroupBox valueGroupBox;
|
---|
[4011] | 197 | protected HeuristicLab.MainForm.WindowsForms.ViewHost valueViewHost;
|
---|
[2756] | 198 | protected System.Windows.Forms.Button setValueButton;
|
---|
| 199 | protected System.Windows.Forms.Button clearValueButton;
|
---|
[2676] | 200 | protected System.Windows.Forms.TextBox actualNameTextBox;
|
---|
| 201 | protected System.Windows.Forms.Label actualNameLabel;
|
---|
[4332] | 202 | protected System.Windows.Forms.CheckBox showInRunCheckBox;
|
---|
[2655] | 203 | }
|
---|
| 204 | }
|
---|