[3824] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3824] | 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 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
|
---|
| 23 | partial class SymbolView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.initialFrequencyLabel = new System.Windows.Forms.Label();
|
---|
| 48 | this.initialFrequencyTextBox = new System.Windows.Forms.TextBox();
|
---|
[6803] | 49 | this.enabledCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 50 | this.minimumArityLabel = new System.Windows.Forms.Label();
|
---|
| 51 | this.maximumArityLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.minimumArityTextBox = new System.Windows.Forms.TextBox();
|
---|
| 53 | this.maximumArityTextBox = new System.Windows.Forms.TextBox();
|
---|
[3824] | 54 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // nameTextBox
|
---|
| 58 | //
|
---|
| 59 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 60 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[5832] | 61 | this.nameTextBox.Location = new System.Drawing.Point(93, 0);
|
---|
| 62 | this.nameTextBox.Size = new System.Drawing.Size(202, 20);
|
---|
[3824] | 63 | //
|
---|
[5832] | 64 | // infoLabel
|
---|
[3824] | 65 | //
|
---|
[5832] | 66 | this.infoLabel.Location = new System.Drawing.Point(301, 3);
|
---|
[3824] | 67 | //
|
---|
| 68 | // initialFrequencyLabel
|
---|
| 69 | //
|
---|
| 70 | this.initialFrequencyLabel.AutoSize = true;
|
---|
[5832] | 71 | this.initialFrequencyLabel.Location = new System.Drawing.Point(3, 29);
|
---|
[3824] | 72 | this.initialFrequencyLabel.Name = "initialFrequencyLabel";
|
---|
| 73 | this.initialFrequencyLabel.Size = new System.Drawing.Size(84, 13);
|
---|
[5832] | 74 | this.initialFrequencyLabel.TabIndex = 3;
|
---|
[3824] | 75 | this.initialFrequencyLabel.Text = "Initial frequency:";
|
---|
| 76 | this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
|
---|
| 77 | //
|
---|
| 78 | // initialFrequencyTextBox
|
---|
| 79 | //
|
---|
[6819] | 80 | this.initialFrequencyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[6803] | 81 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[3824] | 82 | this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
[5832] | 83 | this.initialFrequencyTextBox.Location = new System.Drawing.Point(93, 26);
|
---|
[3824] | 84 | this.initialFrequencyTextBox.Name = "initialFrequencyTextBox";
|
---|
[5832] | 85 | this.initialFrequencyTextBox.Size = new System.Drawing.Size(227, 20);
|
---|
| 86 | this.initialFrequencyTextBox.TabIndex = 4;
|
---|
[6109] | 87 | this.initialFrequencyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.initialFrequencyTextBox_KeyDown);
|
---|
| 88 | this.initialFrequencyTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.initialFrequencyTextBox_Validating);
|
---|
| 89 | this.initialFrequencyTextBox.Validated += new System.EventHandler(this.initialFrequencyTextBox_Validated);
|
---|
[3824] | 90 | //
|
---|
[6803] | 91 | // enabledCheckBox
|
---|
| 92 | //
|
---|
| 93 | this.enabledCheckBox.AutoSize = true;
|
---|
| 94 | this.enabledCheckBox.Location = new System.Drawing.Point(93, 104);
|
---|
| 95 | this.enabledCheckBox.Name = "enabledCheckBox";
|
---|
| 96 | this.enabledCheckBox.Size = new System.Drawing.Size(65, 17);
|
---|
| 97 | this.enabledCheckBox.TabIndex = 5;
|
---|
| 98 | this.enabledCheckBox.Text = "Enabled";
|
---|
| 99 | this.enabledCheckBox.UseVisualStyleBackColor = true;
|
---|
| 100 | this.enabledCheckBox.CheckedChanged += new System.EventHandler(this.checkBoxEnabled_CheckedChanged);
|
---|
| 101 | //
|
---|
| 102 | // minimumArityLabel
|
---|
| 103 | //
|
---|
| 104 | this.minimumArityLabel.AutoSize = true;
|
---|
| 105 | this.minimumArityLabel.Location = new System.Drawing.Point(3, 55);
|
---|
| 106 | this.minimumArityLabel.Name = "minimumArityLabel";
|
---|
| 107 | this.minimumArityLabel.Size = new System.Drawing.Size(74, 13);
|
---|
| 108 | this.minimumArityLabel.TabIndex = 8;
|
---|
| 109 | this.minimumArityLabel.Text = "Minimum Arity:";
|
---|
[6819] | 110 | this.toolTip.SetToolTip(this.minimumArityLabel, "The minimum arity of the symbol");
|
---|
[6803] | 111 | //
|
---|
| 112 | // maximumArityLabel
|
---|
| 113 | //
|
---|
| 114 | this.maximumArityLabel.AutoSize = true;
|
---|
| 115 | this.maximumArityLabel.Location = new System.Drawing.Point(3, 81);
|
---|
| 116 | this.maximumArityLabel.Name = "maximumArityLabel";
|
---|
| 117 | this.maximumArityLabel.Size = new System.Drawing.Size(74, 13);
|
---|
| 118 | this.maximumArityLabel.TabIndex = 6;
|
---|
| 119 | this.maximumArityLabel.Text = "Maximum Arity";
|
---|
[6819] | 120 | this.toolTip.SetToolTip(this.maximumArityLabel, "The maximum arity of the symbol");
|
---|
[6803] | 121 | //
|
---|
| 122 | // minimumArityTextBox
|
---|
| 123 | //
|
---|
[6819] | 124 | this.minimumArityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[6803] | 125 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 126 | this.errorProvider.SetIconAlignment(this.minimumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 127 | this.minimumArityTextBox.Location = new System.Drawing.Point(93, 52);
|
---|
| 128 | this.minimumArityTextBox.Name = "minimumArityTextBox";
|
---|
| 129 | this.minimumArityTextBox.ReadOnly = true;
|
---|
| 130 | this.minimumArityTextBox.Size = new System.Drawing.Size(227, 20);
|
---|
| 131 | this.minimumArityTextBox.TabIndex = 9;
|
---|
| 132 | //
|
---|
| 133 | // maximumArityTextBox
|
---|
| 134 | //
|
---|
[6819] | 135 | this.maximumArityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
[6803] | 136 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 137 | this.errorProvider.SetIconAlignment(this.maximumArityTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 138 | this.maximumArityTextBox.Location = new System.Drawing.Point(93, 78);
|
---|
| 139 | this.maximumArityTextBox.Name = "maximumArityTextBox";
|
---|
| 140 | this.maximumArityTextBox.ReadOnly = true;
|
---|
| 141 | this.maximumArityTextBox.Size = new System.Drawing.Size(227, 20);
|
---|
| 142 | this.maximumArityTextBox.TabIndex = 7;
|
---|
| 143 | //
|
---|
[3824] | 144 | // SymbolView
|
---|
| 145 | //
|
---|
| 146 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 147 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[6803] | 148 | this.Controls.Add(this.minimumArityTextBox);
|
---|
| 149 | this.Controls.Add(this.minimumArityLabel);
|
---|
| 150 | this.Controls.Add(this.maximumArityTextBox);
|
---|
| 151 | this.Controls.Add(this.maximumArityLabel);
|
---|
[5326] | 152 | this.Controls.Add(this.initialFrequencyTextBox);
|
---|
[3824] | 153 | this.Controls.Add(this.initialFrequencyLabel);
|
---|
[6803] | 154 | this.Controls.Add(this.enabledCheckBox);
|
---|
[3824] | 155 | this.Name = "SymbolView";
|
---|
[6803] | 156 | this.Size = new System.Drawing.Size(320, 123);
|
---|
| 157 | this.Controls.SetChildIndex(this.enabledCheckBox, 0);
|
---|
[5326] | 158 | this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
|
---|
[3824] | 159 | this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
|
---|
[6803] | 160 | this.Controls.SetChildIndex(this.maximumArityLabel, 0);
|
---|
| 161 | this.Controls.SetChildIndex(this.maximumArityTextBox, 0);
|
---|
| 162 | this.Controls.SetChildIndex(this.minimumArityLabel, 0);
|
---|
| 163 | this.Controls.SetChildIndex(this.minimumArityTextBox, 0);
|
---|
[5832] | 164 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
[3824] | 165 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 166 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 167 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 168 | this.ResumeLayout(false);
|
---|
| 169 | this.PerformLayout();
|
---|
| 170 |
|
---|
| 171 | }
|
---|
| 172 |
|
---|
| 173 | #endregion
|
---|
| 174 |
|
---|
| 175 | protected System.Windows.Forms.Label initialFrequencyLabel;
|
---|
| 176 | protected System.Windows.Forms.TextBox initialFrequencyTextBox;
|
---|
[8476] | 177 | protected System.Windows.Forms.CheckBox enabledCheckBox;
|
---|
[6803] | 178 | protected System.Windows.Forms.Label minimumArityLabel;
|
---|
| 179 | protected System.Windows.Forms.Label maximumArityLabel;
|
---|
| 180 | protected System.Windows.Forms.TextBox minimumArityTextBox;
|
---|
| 181 | protected System.Windows.Forms.TextBox maximumArityTextBox;
|
---|
[3824] | 182 |
|
---|
| 183 | }
|
---|
| 184 | }
|
---|