Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/09 10:47:00 (15 years ago)
Author:
gkronber
Message:

GP Refactoring: #713

  • added project GP.Operators
  • moved operators from plugin GP to plugin GP.Operators
  • deleted unused constraints
  • removed dependency of GP plugins on Constraints plugin
  • moved StructID functions into directory Symbols
  • deleted unused class FunView
  • implemented add and remove functionality for the FunctionLibraryView
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP/3.3/FunctionTreeView.Designer.cs

    r2202 r2212  
    3636        components.Dispose();
    3737      }
    38       if(selectedVariable != null) {
    39         selectedVariable.Value.Changed -= new EventHandler(selectedVariable_ValueChanged);
    40       }
    4138      base.Dispose(disposing);
    4239    }
     
    4946    /// </summary>
    5047    private void InitializeComponent() {
    51       this.components = new System.ComponentModel.Container();
     48      this.treeNodeContextMenu = new System.Windows.Forms.ContextMenu();
    5249      this.funTreeView = new System.Windows.Forms.TreeView();
    53       this.splitContainer = new System.Windows.Forms.SplitContainer();
    54       this.variablesGroupBox = new System.Windows.Forms.GroupBox();
    55       this.variablesSplitContainer = new System.Windows.Forms.SplitContainer();
    56       this.variablesListBox = new System.Windows.Forms.ListBox();
    57       this.label1 = new System.Windows.Forms.Label();
    58       this.templateTextBox = new System.Windows.Forms.TextBox();
    59       this.editButton = new System.Windows.Forms.Button();
    60       this.treeNodeContextMenu = new System.Windows.Forms.ContextMenu();
    61       this.splitContainer.Panel1.SuspendLayout();
    62       this.splitContainer.Panel2.SuspendLayout();
    63       this.splitContainer.SuspendLayout();
    64       this.variablesGroupBox.SuspendLayout();
    65       this.variablesSplitContainer.Panel1.SuspendLayout();
    66       this.variablesSplitContainer.SuspendLayout();
    6750      this.SuspendLayout();
    6851      //
     
    7356      this.funTreeView.Location = new System.Drawing.Point(0, 0);
    7457      this.funTreeView.Name = "funTreeView";
    75       this.funTreeView.Size = new System.Drawing.Size(182, 532);
     58      this.funTreeView.Size = new System.Drawing.Size(432, 514);
    7659      this.funTreeView.TabIndex = 0;
    7760      this.funTreeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.funTreeView_MouseUp);
    78       this.funTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.functionTreeView_AfterSelect);
    79       //
    80       // splitContainer
    81       //
    82       this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
    83       this.splitContainer.Location = new System.Drawing.Point(0, 0);
    84       this.splitContainer.Name = "splitContainer";
    85       //
    86       // splitContainer.Panel1
    87       //
    88       this.splitContainer.Panel1.Controls.Add(this.funTreeView);
    89       //
    90       // splitContainer.Panel2
    91       //
    92       this.splitContainer.Panel2.Controls.Add(this.variablesGroupBox);
    93       this.splitContainer.Panel2.Controls.Add(this.label1);
    94       this.splitContainer.Panel2.Controls.Add(this.templateTextBox);
    95       this.splitContainer.Panel2.Controls.Add(this.editButton);
    96       this.splitContainer.Size = new System.Drawing.Size(735, 532);
    97       this.splitContainer.SplitterDistance = 182;
    98       this.splitContainer.TabIndex = 1;
    99       //
    100       // variablesGroupBox
    101       //
    102       this.variablesGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    103                   | System.Windows.Forms.AnchorStyles.Left)
    104                   | System.Windows.Forms.AnchorStyles.Right)));
    105       this.variablesGroupBox.Controls.Add(this.variablesSplitContainer);
    106       this.variablesGroupBox.Location = new System.Drawing.Point(3, 31);
    107       this.variablesGroupBox.Name = "variablesGroupBox";
    108       this.variablesGroupBox.Size = new System.Drawing.Size(543, 498);
    109       this.variablesGroupBox.TabIndex = 5;
    110       this.variablesGroupBox.TabStop = false;
    111       this.variablesGroupBox.Text = "Local variables";
    112       //
    113       // variablesSplitContainer
    114       //
    115       this.variablesSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
    116       this.variablesSplitContainer.Location = new System.Drawing.Point(3, 16);
    117       this.variablesSplitContainer.Name = "variablesSplitContainer";
    118       //
    119       // variablesSplitContainer.Panel1
    120       //
    121       this.variablesSplitContainer.Panel1.Controls.Add(this.variablesListBox);
    122       this.variablesSplitContainer.Size = new System.Drawing.Size(537, 479);
    123       this.variablesSplitContainer.SplitterDistance = 179;
    124       this.variablesSplitContainer.TabIndex = 0;
    125       //
    126       // variablesListBox
    127       //
    128       this.variablesListBox.Dock = System.Windows.Forms.DockStyle.Fill;
    129       this.variablesListBox.FormattingEnabled = true;
    130       this.variablesListBox.Location = new System.Drawing.Point(0, 0);
    131       this.variablesListBox.Name = "variablesListBox";
    132       this.variablesListBox.Size = new System.Drawing.Size(179, 472);
    133       this.variablesListBox.TabIndex = 0;
    134       this.variablesListBox.SelectedIndexChanged += new System.EventHandler(this.variablesListBox_SelectedIndexChanged);
    135       //
    136       // label1
    137       //
    138       this.label1.AutoSize = true;
    139       this.label1.Location = new System.Drawing.Point(3, 10);
    140       this.label1.Name = "label1";
    141       this.label1.Size = new System.Drawing.Size(96, 13);
    142       this.label1.TabIndex = 3;
    143       this.label1.Text = "Function definition:";
    144       //
    145       // templateTextBox
    146       //
    147       this.templateTextBox.Location = new System.Drawing.Point(105, 7);
    148       this.templateTextBox.Name = "templateTextBox";
    149       this.templateTextBox.ReadOnly = true;
    150       this.templateTextBox.Size = new System.Drawing.Size(190, 20);
    151       this.templateTextBox.TabIndex = 2;
    152       //
    153       // editButton
    154       //
    155       this.editButton.Enabled = false;
    156       this.editButton.Location = new System.Drawing.Point(301, 5);
    157       this.editButton.Name = "editButton";
    158       this.editButton.Size = new System.Drawing.Size(49, 23);
    159       this.editButton.TabIndex = 1;
    160       this.editButton.Text = "Edit...";
    161       this.editButton.UseVisualStyleBackColor = true;
    162       this.editButton.Click += new System.EventHandler(this.editButton_Click);
    163       //
    164       // treeNodeContextMenu
    165       //
    166       this.treeNodeContextMenu.Name = "treeNodeContextMenu";
    16761      //
    16862      // FunctionTreeView
     
    17064      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    17165      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    172       this.Controls.Add(this.splitContainer);
     66      this.Controls.Add(this.funTreeView);
    17367      this.Name = "FunctionTreeView";
    174       this.Size = new System.Drawing.Size(735, 532);
    175       this.splitContainer.Panel1.ResumeLayout(false);
    176       this.splitContainer.Panel2.ResumeLayout(false);
    177       this.splitContainer.Panel2.PerformLayout();
    178       this.splitContainer.ResumeLayout(false);
    179       this.variablesGroupBox.ResumeLayout(false);
    180       this.variablesSplitContainer.Panel1.ResumeLayout(false);
    181       this.variablesSplitContainer.ResumeLayout(false);
     68      this.Size = new System.Drawing.Size(432, 514);
    18269      this.ResumeLayout(false);
    18370
     
    18673    #endregion
    18774
     75    private System.Windows.Forms.ContextMenu treeNodeContextMenu;
    18876    private System.Windows.Forms.TreeView funTreeView;
    189     private System.Windows.Forms.SplitContainer splitContainer;
    190     private System.Windows.Forms.TextBox templateTextBox;
    191     private System.Windows.Forms.Button editButton;
    192     private System.Windows.Forms.GroupBox variablesGroupBox;
    193     private System.Windows.Forms.SplitContainer variablesSplitContainer;
    194     private System.Windows.Forms.ListBox variablesListBox;
    195     private System.Windows.Forms.Label label1;
    196     private System.Windows.Forms.ContextMenu treeNodeContextMenu;
    19777  }
    19878}
Note: See TracChangeset for help on using the changeset viewer.