Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/VariableView.Designer.cs @ 5955

Last change on this file since 5955 was 5832, checked in by swagner, 14 years ago

Moved description from textbox to icon in NamedItemView and adapted all derived views (#1416)

File size: 13.3 KB
RevLine 
[3824]1#region License Information
2/* HeuristicLab
[5445]3 * Copyright (C) 2002-2011 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
[3915]22namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols {
[3824]23  partial class VariableView {
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() {
[4989]47      this.weightMuLabel = new System.Windows.Forms.Label();
[5326]48      this.weightInitializationMuTextBox = new System.Windows.Forms.TextBox();
[3824]49      this.initializationGroupBox = new System.Windows.Forms.GroupBox();
50      this.weightSigmaLabel = new System.Windows.Forms.Label();
[5326]51      this.weightInitializationSigmaTextBox = new System.Windows.Forms.TextBox();
[3824]52      this.mutationGroupBox = new System.Windows.Forms.GroupBox();
[5326]53      this.multiplicativeWeightChangeLabel = new System.Windows.Forms.Label();
54      this.multiplicativeWeightChangeSigmaTextBox = new System.Windows.Forms.TextBox();
55      this.additiveWeightChangeLabel = new System.Windows.Forms.Label();
56      this.additiveWeightChangeSigmaTextBox = new System.Windows.Forms.TextBox();
[3824]57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
58      this.initializationGroupBox.SuspendLayout();
59      this.mutationGroupBox.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // initialFrequencyLabel
63      //
64      this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
65      //
66      // initialFrequencyTextBox
67      //
[4989]68      this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
[5832]69      this.initialFrequencyTextBox.Size = new System.Drawing.Size(233, 20);
[3824]70      //
71      // nameTextBox
72      //
73      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
74      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[5832]75      this.nameTextBox.Size = new System.Drawing.Size(208, 20);
[3824]76      //
[5832]77      // infoLabel
[3824]78      //
[5832]79      this.infoLabel.Location = new System.Drawing.Point(307, 3);
[3824]80      //
[4989]81      // weightMuLabel
[3824]82      //
[4989]83      this.weightMuLabel.AutoSize = true;
84      this.weightMuLabel.Location = new System.Drawing.Point(6, 22);
85      this.weightMuLabel.Name = "weightMuLabel";
86      this.weightMuLabel.Size = new System.Drawing.Size(67, 13);
[5832]87      this.weightMuLabel.TabIndex = 0;
[4989]88      this.weightMuLabel.Text = "Weight (mu):";
89      this.toolTip.SetToolTip(this.weightMuLabel, "The mu (mean) parameter of the normal distribution to use for initial weights.");
[3824]90      //
[5326]91      // weightInitializationMuTextBox
[3824]92      //
[5326]93      this.weightInitializationMuTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[3824]94                  | System.Windows.Forms.AnchorStyles.Right)));
[5326]95      this.weightInitializationMuTextBox.Location = new System.Drawing.Point(92, 19);
96      this.weightInitializationMuTextBox.Name = "weightInitializationMuTextBox";
[5832]97      this.weightInitializationMuTextBox.Size = new System.Drawing.Size(228, 20);
98      this.weightInitializationMuTextBox.TabIndex = 1;
[5326]99      this.toolTip.SetToolTip(this.weightInitializationMuTextBox, "The mu (mean) parameter of the normal distribution from which to sample the initi" +
[3824]100              "al weights.");
[5326]101      this.weightInitializationMuTextBox.TextChanged += new System.EventHandler(this.weightMuTextBox_TextChanged);
[3824]102      //
103      // initializationGroupBox
104      //
105      this.initializationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
106                  | System.Windows.Forms.AnchorStyles.Right)));
107      this.initializationGroupBox.Controls.Add(this.weightSigmaLabel);
[5326]108      this.initializationGroupBox.Controls.Add(this.weightInitializationSigmaTextBox);
[4989]109      this.initializationGroupBox.Controls.Add(this.weightMuLabel);
[5326]110      this.initializationGroupBox.Controls.Add(this.weightInitializationMuTextBox);
[5832]111      this.initializationGroupBox.Location = new System.Drawing.Point(0, 52);
[3824]112      this.initializationGroupBox.Name = "initializationGroupBox";
[5832]113      this.initializationGroupBox.Size = new System.Drawing.Size(326, 73);
114      this.initializationGroupBox.TabIndex = 5;
[3824]115      this.initializationGroupBox.TabStop = false;
116      this.initializationGroupBox.Text = "Initialization";
117      //
118      // weightSigmaLabel
119      //
120      this.weightSigmaLabel.AutoSize = true;
121      this.weightSigmaLabel.Location = new System.Drawing.Point(6, 48);
122      this.weightSigmaLabel.Name = "weightSigmaLabel";
123      this.weightSigmaLabel.Size = new System.Drawing.Size(80, 13);
[5832]124      this.weightSigmaLabel.TabIndex = 2;
[3824]125      this.weightSigmaLabel.Text = "Weight (sigma):";
126      this.toolTip.SetToolTip(this.weightSigmaLabel, "The sigma parameter for the normal distribution to use for the initial weights.");
127      //
[5326]128      // weightInitializationSigmaTextBox
[3824]129      //
[5326]130      this.weightInitializationSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[3824]131                  | System.Windows.Forms.AnchorStyles.Right)));
[5326]132      this.weightInitializationSigmaTextBox.Location = new System.Drawing.Point(92, 45);
133      this.weightInitializationSigmaTextBox.Name = "weightInitializationSigmaTextBox";
[5832]134      this.weightInitializationSigmaTextBox.Size = new System.Drawing.Size(228, 20);
135      this.weightInitializationSigmaTextBox.TabIndex = 3;
[5326]136      this.toolTip.SetToolTip(this.weightInitializationSigmaTextBox, "The sigma parameter for the normal distribution from which to sample the initial " +
[3824]137              "weights.");
[5326]138      this.weightInitializationSigmaTextBox.TextChanged += new System.EventHandler(this.weightSigmaTextBox_TextChanged);
[3824]139      //
140      // mutationGroupBox
141      //
142      this.mutationGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
143                  | System.Windows.Forms.AnchorStyles.Right)));
[5326]144      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeLabel);
145      this.mutationGroupBox.Controls.Add(this.multiplicativeWeightChangeSigmaTextBox);
146      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeLabel);
147      this.mutationGroupBox.Controls.Add(this.additiveWeightChangeSigmaTextBox);
[5832]148      this.mutationGroupBox.Location = new System.Drawing.Point(0, 131);
[3824]149      this.mutationGroupBox.Name = "mutationGroupBox";
[5832]150      this.mutationGroupBox.Size = new System.Drawing.Size(326, 73);
151      this.mutationGroupBox.TabIndex = 6;
[3824]152      this.mutationGroupBox.TabStop = false;
153      this.mutationGroupBox.Text = "Mutation";
154      //
[5326]155      // multiplicativeWeightChangeLabel
[3824]156      //
[5326]157      this.multiplicativeWeightChangeLabel.AutoSize = true;
158      this.multiplicativeWeightChangeLabel.Location = new System.Drawing.Point(6, 48);
159      this.multiplicativeWeightChangeLabel.Name = "multiplicativeWeightChangeLabel";
160      this.multiplicativeWeightChangeLabel.Size = new System.Drawing.Size(180, 13);
[5832]161      this.multiplicativeWeightChangeLabel.TabIndex = 2;
[5326]162      this.multiplicativeWeightChangeLabel.Text = "Multiplicative weight change (sigma):";
163      this.toolTip.SetToolTip(this.multiplicativeWeightChangeLabel, "The sigma parameter for the normal distribution to use to sample a multiplicative" +
164              " change in weight.");
[3824]165      //
[5326]166      // multiplicativeWeightChangeSigmaTextBox
[3824]167      //
[5326]168      this.multiplicativeWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[3824]169                  | System.Windows.Forms.AnchorStyles.Right)));
[5326]170      this.multiplicativeWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 45);
171      this.multiplicativeWeightChangeSigmaTextBox.Name = "multiplicativeWeightChangeSigmaTextBox";
[5832]172      this.multiplicativeWeightChangeSigmaTextBox.Size = new System.Drawing.Size(119, 20);
173      this.multiplicativeWeightChangeSigmaTextBox.TabIndex = 3;
[5326]174      this.toolTip.SetToolTip(this.multiplicativeWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample a multiplica" +
175              "tive change in weight.");
176      this.multiplicativeWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.multiplicativeWeightChangeSigmaTextBox_TextChanged);
[3824]177      //
[5326]178      // additiveWeightChangeLabel
[3824]179      //
[5326]180      this.additiveWeightChangeLabel.AutoSize = true;
181      this.additiveWeightChangeLabel.Location = new System.Drawing.Point(6, 22);
182      this.additiveWeightChangeLabel.Name = "additiveWeightChangeLabel";
183      this.additiveWeightChangeLabel.Size = new System.Drawing.Size(157, 13);
[5832]184      this.additiveWeightChangeLabel.TabIndex = 0;
[5326]185      this.additiveWeightChangeLabel.Text = "Additive weight change (sigma):";
186      this.toolTip.SetToolTip(this.additiveWeightChangeLabel, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
187              "change in weight.");
[3824]188      //
[5326]189      // additiveWeightChangeSigmaTextBox
[3824]190      //
[5326]191      this.additiveWeightChangeSigmaTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[3824]192                  | System.Windows.Forms.AnchorStyles.Right)));
[5326]193      this.additiveWeightChangeSigmaTextBox.Location = new System.Drawing.Point(201, 19);
194      this.additiveWeightChangeSigmaTextBox.Name = "additiveWeightChangeSigmaTextBox";
[5832]195      this.additiveWeightChangeSigmaTextBox.Size = new System.Drawing.Size(119, 20);
196      this.additiveWeightChangeSigmaTextBox.TabIndex = 1;
[5326]197      this.toolTip.SetToolTip(this.additiveWeightChangeSigmaTextBox, "The sigma (std.dev.) parameter for the normal distribution to sample an additive " +
198              "change in weight.");
199      this.additiveWeightChangeSigmaTextBox.TextChanged += new System.EventHandler(this.additiveWeightChangeSigmaTextBox_TextChanged);
[3824]200      //
201      // VariableView
202      //
203      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
204      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
205      this.Controls.Add(this.mutationGroupBox);
206      this.Controls.Add(this.initializationGroupBox);
207      this.Name = "VariableView";
[5832]208      this.Size = new System.Drawing.Size(326, 208);
209      this.Controls.SetChildIndex(this.infoLabel, 0);
[3824]210      this.Controls.SetChildIndex(this.initializationGroupBox, 0);
211      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
212      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
213      this.Controls.SetChildIndex(this.nameLabel, 0);
214      this.Controls.SetChildIndex(this.nameTextBox, 0);
215      this.Controls.SetChildIndex(this.mutationGroupBox, 0);
216      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
217      this.initializationGroupBox.ResumeLayout(false);
218      this.initializationGroupBox.PerformLayout();
219      this.mutationGroupBox.ResumeLayout(false);
220      this.mutationGroupBox.PerformLayout();
221      this.ResumeLayout(false);
222      this.PerformLayout();
223
224    }
225
226    #endregion
227
[5832]228    protected System.Windows.Forms.Label weightMuLabel;
229    protected System.Windows.Forms.TextBox weightInitializationMuTextBox;
[3824]230    protected System.Windows.Forms.GroupBox initializationGroupBox;
[5832]231    protected System.Windows.Forms.Label weightSigmaLabel;
232    protected System.Windows.Forms.TextBox weightInitializationSigmaTextBox;
[3824]233    protected System.Windows.Forms.GroupBox mutationGroupBox;
[5832]234    protected System.Windows.Forms.Label multiplicativeWeightChangeLabel;
235    protected System.Windows.Forms.TextBox multiplicativeWeightChangeSigmaTextBox;
236    protected System.Windows.Forms.Label additiveWeightChangeLabel;
237    protected System.Windows.Forms.TextBox additiveWeightChangeSigmaTextBox;
[3824]238
239  }
240}
Note: See TracBrowser for help on using the repository browser.