Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/09/11 16:36:07 (13 years ago)
Author:
mkommend
Message:

#1479: Allowed modificiation of the subtree count in grammars and adapted SymbolicExpressionTreeChart to handle different styles for connection lines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolView.Designer.cs

    r6299 r6403  
    4747      this.initialFrequencyLabel = new System.Windows.Forms.Label();
    4848      this.initialFrequencyTextBox = new System.Windows.Forms.TextBox();
    49       this.checkBoxEnabled = new System.Windows.Forms.CheckBox();
     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();
    5054      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5155      this.SuspendLayout();
     
    8589      this.initialFrequencyTextBox.Validated += new System.EventHandler(this.initialFrequencyTextBox_Validated);
    8690      //
    87       // checkBoxEnabled
     91      // enabledCheckBox
    8892      //
    89       this.checkBoxEnabled.AutoSize = true;
    90       this.checkBoxEnabled.Location = new System.Drawing.Point(93, 52);
    91       this.checkBoxEnabled.Name = "checkBoxEnabled";
    92       this.checkBoxEnabled.Size = new System.Drawing.Size(65, 17);
    93       this.checkBoxEnabled.TabIndex = 5;
    94       this.checkBoxEnabled.Text = "Enabled";
    95       this.checkBoxEnabled.UseVisualStyleBackColor = true;
    96       this.checkBoxEnabled.CheckedChanged += new System.EventHandler(this.checkBoxEnabled_CheckedChanged);
     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:";
     110      this.toolTip.SetToolTip(this.minimumArityLabel, "Relative frequency of the symbol in randomly created trees");
     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";
     120      this.toolTip.SetToolTip(this.maximumArityLabel, "Relative frequency of the symbol in randomly created trees");
     121      //
     122      // minimumArityTextBox
     123      //
     124      this.minimumArityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     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      //
     135      this.maximumArityTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     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;
    97143      //
    98144      // SymbolView
     
    100146      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    101147      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     148      this.Controls.Add(this.minimumArityTextBox);
     149      this.Controls.Add(this.minimumArityLabel);
     150      this.Controls.Add(this.maximumArityTextBox);
     151      this.Controls.Add(this.maximumArityLabel);
    102152      this.Controls.Add(this.initialFrequencyTextBox);
    103153      this.Controls.Add(this.initialFrequencyLabel);
    104       this.Controls.Add(this.checkBoxEnabled);
     154      this.Controls.Add(this.enabledCheckBox);
    105155      this.Name = "SymbolView";
    106       this.Size = new System.Drawing.Size(320, 75);
    107       this.Controls.SetChildIndex(this.checkBoxEnabled, 0);
     156      this.Size = new System.Drawing.Size(320, 123);
     157      this.Controls.SetChildIndex(this.enabledCheckBox, 0);
    108158      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
    109159      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
     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);
    110164      this.Controls.SetChildIndex(this.infoLabel, 0);
    111165      this.Controls.SetChildIndex(this.nameLabel, 0);
     
    121175    protected System.Windows.Forms.Label initialFrequencyLabel;
    122176    protected System.Windows.Forms.TextBox initialFrequencyTextBox;
    123     private System.Windows.Forms.CheckBox checkBoxEnabled;
     177    private System.Windows.Forms.CheckBox enabledCheckBox;
     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;
    124182
    125183  }
Note: See TracChangeset for help on using the changeset viewer.