Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/20/10 05:04:31 (14 years ago)
Author:
swagner
Message:

Committing first results of the refactoring of HeuristicLab.Core and related plugins (#95)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorBaseView.Designer.cs

    r2524 r2655  
    2020#endregion
    2121
    22 using System;
    23 using System.Windows.Forms;
    24 
    2522namespace HeuristicLab.Core.Views {
    2623  partial class OperatorBaseView {
     
    3532    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3633    protected override void Dispose(bool disposing) {
    37       if (disposing && (components != null)) {
    38         components.Dispose();
     34      if (disposing) {
     35        if (components != null) components.Dispose();
    3936      }
    4037      base.Dispose(disposing);
     
    4845    /// </summary>
    4946    private void InitializeComponent() {
    50       this.tabControl = new System.Windows.Forms.TabControl();
    51       this.variableInfosTabPage = new System.Windows.Forms.TabPage();
    52       this.operatorBaseVariableInfosView = new HeuristicLab.Core.Views.OperatorBaseVariableInfosView();
    53       this.variablesTabPage = new System.Windows.Forms.TabPage();
    54       this.operatorBaseVariablesView = new HeuristicLab.Core.Views.OperatorBaseVariablesView();
    55       this.descriptionTabPage = new System.Windows.Forms.TabPage();
    56       this.operatorBaseDescriptionView = new HeuristicLab.Core.Views.OperatorBaseDescriptionView();
    57       this.tabControl.SuspendLayout();
    58       this.variableInfosTabPage.SuspendLayout();
    59       this.variablesTabPage.SuspendLayout();
    60       this.descriptionTabPage.SuspendLayout();
     47      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
    6148      this.SuspendLayout();
    6249      //
    63       // tabControl
     50      // nameTextBox
    6451      //
    65       this.tabControl.Controls.Add(this.variableInfosTabPage);
    66       this.tabControl.Controls.Add(this.variablesTabPage);
    67       this.tabControl.Controls.Add(this.descriptionTabPage);
    68       this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
    69       this.tabControl.Location = new System.Drawing.Point(0, 0);
    70       this.tabControl.Name = "tabControl";
    71       this.tabControl.SelectedIndex = 0;
    72       this.tabControl.Size = new System.Drawing.Size(423, 333);
    73       this.tabControl.TabIndex = 0;
     52      this.nameTextBox.Size = new System.Drawing.Size(418, 20);
    7453      //
    75       // variableInfosTabPage
     54      // descriptionTextBox
    7655      //
    77       this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
    78       this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
    79       this.variableInfosTabPage.Name = "variableInfosTabPage";
    80       this.variableInfosTabPage.Padding = new System.Windows.Forms.Padding(3);
    81       this.variableInfosTabPage.Size = new System.Drawing.Size(415, 307);
    82       this.variableInfosTabPage.TabIndex = 0;
    83       this.variableInfosTabPage.Text = "Variable Infos";
    84       this.variableInfosTabPage.UseVisualStyleBackColor = true;
     56      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     57                  | System.Windows.Forms.AnchorStyles.Right)));
     58      this.descriptionTextBox.Size = new System.Drawing.Size(418, 90);
    8559      //
    86       // operatorBaseVariableInfosView
     60      // parameterCollectionView
    8761      //
    88       this.operatorBaseVariableInfosView.Caption = "Operator";
    89       this.operatorBaseVariableInfosView.Dock = System.Windows.Forms.DockStyle.Fill;
    90       this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
    91       this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
    92       this.operatorBaseVariableInfosView.Operator = null;
    93       this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(409, 301);
    94       this.operatorBaseVariableInfosView.TabIndex = 0;
    95       //
    96       // variablesTabPage
    97       //
    98       this.variablesTabPage.Controls.Add(this.operatorBaseVariablesView);
    99       this.variablesTabPage.Location = new System.Drawing.Point(4, 22);
    100       this.variablesTabPage.Name = "variablesTabPage";
    101       this.variablesTabPage.Padding = new System.Windows.Forms.Padding(3);
    102       this.variablesTabPage.Size = new System.Drawing.Size(415, 307);
    103       this.variablesTabPage.TabIndex = 1;
    104       this.variablesTabPage.Text = "Local Variables";
    105       this.variablesTabPage.UseVisualStyleBackColor = true;
    106       //
    107       // operatorBaseVariablesView
    108       //
    109       this.operatorBaseVariablesView.Caption = "Operator";
    110       this.operatorBaseVariablesView.Dock = System.Windows.Forms.DockStyle.Fill;
    111       this.operatorBaseVariablesView.Location = new System.Drawing.Point(3, 3);
    112       this.operatorBaseVariablesView.Name = "operatorBaseVariablesView";
    113       this.operatorBaseVariablesView.Operator = null;
    114       this.operatorBaseVariablesView.Size = new System.Drawing.Size(409, 301);
    115       this.operatorBaseVariablesView.TabIndex = 0;
    116       //
    117       // descriptionTabPage
    118       //
    119       this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
    120       this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
    121       this.descriptionTabPage.Name = "descriptionTabPage";
    122       this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
    123       this.descriptionTabPage.Size = new System.Drawing.Size(415, 307);
    124       this.descriptionTabPage.TabIndex = 3;
    125       this.descriptionTabPage.Text = "Description";
    126       this.descriptionTabPage.UseVisualStyleBackColor = true;
    127       //
    128       // operatorBaseDescriptionView
    129       //
    130       this.operatorBaseDescriptionView.Caption = "Operator";
    131       this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
    132       this.operatorBaseDescriptionView.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    133       this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
    134       this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
    135       this.operatorBaseDescriptionView.Operator = null;
    136       this.operatorBaseDescriptionView.Size = new System.Drawing.Size(409, 301);
    137       this.operatorBaseDescriptionView.TabIndex = 0;
     62      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     63                  | System.Windows.Forms.AnchorStyles.Left)
     64                  | System.Windows.Forms.AnchorStyles.Right)));
     65      this.parameterCollectionView.Caption = "ParameterCollection";
     66      this.parameterCollectionView.ItemCollection = null;
     67      this.parameterCollectionView.Location = new System.Drawing.Point(0, 122);
     68      this.parameterCollectionView.Name = "parameterCollectionView";
     69      this.parameterCollectionView.NamedItemCollection = null;
     70      this.parameterCollectionView.Size = new System.Drawing.Size(490, 231);
     71      this.parameterCollectionView.TabIndex = 4;
    13872      //
    13973      // OperatorBaseView
     
    14175      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    14276      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    143       this.Controls.Add(this.tabControl);
     77      this.Controls.Add(this.parameterCollectionView);
    14478      this.Name = "OperatorBaseView";
    145       this.Size = new System.Drawing.Size(423, 333);
    146       this.tabControl.ResumeLayout(false);
    147       this.variableInfosTabPage.ResumeLayout(false);
    148       this.variablesTabPage.ResumeLayout(false);
    149       this.descriptionTabPage.ResumeLayout(false);
     79      this.Size = new System.Drawing.Size(490, 353);
     80      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
     81      this.Controls.SetChildIndex(this.nameLabel, 0);
     82      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     83      this.Controls.SetChildIndex(this.nameTextBox, 0);
     84      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    15085      this.ResumeLayout(false);
     86      this.PerformLayout();
    15187
    15288    }
     
    15490    #endregion
    15591
    156     protected TabControl tabControl;
    157     protected TabPage variableInfosTabPage;
    158     protected TabPage variablesTabPage;
    159     protected OperatorBaseVariableInfosView operatorBaseVariableInfosView;
    160     protected OperatorBaseVariablesView operatorBaseVariablesView;
    161     private TabPage descriptionTabPage;
    162     private OperatorBaseDescriptionView operatorBaseDescriptionView;
     92    protected ParameterCollectionView parameterCollectionView;
    16393
    16494
Note: See TracChangeset for help on using the changeset viewer.