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/VariableView.Designer.cs

    r2520 r2655  
    3232    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3333    protected override void Dispose(bool disposing) {
    34       if (chooseItemDialog != null) chooseItemDialog.Dispose();
    35       if (disposing && (components != null)) {
    36         components.Dispose();
     34      if (disposing) {
     35        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
     36        if (components != null) components.Dispose();
    3737      }
    3838      base.Dispose(disposing);
     
    4646    /// </summary>
    4747    private void InitializeComponent() {
    48       this.nameLabel = new System.Windows.Forms.Label();
    49       this.nameTextBox = new System.Windows.Forms.TextBox();
    50       this.valueLabel = new System.Windows.Forms.Label();
    51       this.valueTextBox = new System.Windows.Forms.TextBox();
    52       this.editorGroupBox = new System.Windows.Forms.GroupBox();
    53       this.setVariableValueButton = new System.Windows.Forms.Button();
     48      this.components = new System.ComponentModel.Container();
     49      this.dataTypeLabel = new System.Windows.Forms.Label();
     50      this.dataTypeTextBox = new System.Windows.Forms.TextBox();
     51      this.valueGroupBox = new System.Windows.Forms.GroupBox();
     52      this.valuePanel = new System.Windows.Forms.Panel();
     53      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     54      this.clearValueButton = new System.Windows.Forms.Button();
     55      this.setValueButton = new System.Windows.Forms.Button();
     56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     57      this.valueGroupBox.SuspendLayout();
     58      this.valuePanel.SuspendLayout();
    5459      this.SuspendLayout();
    55       //
    56       // nameLabel
    57       //
    58       this.nameLabel.AutoSize = true;
    59       this.nameLabel.Location = new System.Drawing.Point(3, 3);
    60       this.nameLabel.Name = "nameLabel";
    61       this.nameLabel.Size = new System.Drawing.Size(38, 13);
    62       this.nameLabel.TabIndex = 0;
    63       this.nameLabel.Text = "&Name:";
    6460      //
    6561      // nameTextBox
    6662      //
    67       this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     63      this.nameTextBox.Size = new System.Drawing.Size(285, 20);
     64      //
     65      // descriptionTextBox
     66      //
     67      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    6868                  | System.Windows.Forms.AnchorStyles.Right)));
    69       this.nameTextBox.Location = new System.Drawing.Point(50, 0);
    70       this.nameTextBox.Name = "nameTextBox";
    71       this.nameTextBox.Size = new System.Drawing.Size(153, 20);
    72       this.nameTextBox.TabIndex = 1;
    73       this.nameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameTextBox_Validating);
     69      this.descriptionTextBox.Size = new System.Drawing.Size(285, 62);
    7470      //
    75       // valueLabel
     71      // dataTypeLabel
    7672      //
    77       this.valueLabel.AutoSize = true;
    78       this.valueLabel.Location = new System.Drawing.Point(3, 29);
    79       this.valueLabel.Name = "valueLabel";
    80       this.valueLabel.Size = new System.Drawing.Size(37, 13);
    81       this.valueLabel.TabIndex = 2;
    82       this.valueLabel.Text = "&Value:";
     73      this.dataTypeLabel.AutoSize = true;
     74      this.dataTypeLabel.Location = new System.Drawing.Point(3, 98);
     75      this.dataTypeLabel.Name = "dataTypeLabel";
     76      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
     77      this.dataTypeLabel.TabIndex = 4;
     78      this.dataTypeLabel.Text = "Data &Type:";
    8379      //
    84       // valueTextBox
     80      // dataTypeTextBox
    8581      //
    86       this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     82      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    8783                  | System.Windows.Forms.AnchorStyles.Right)));
    88       this.valueTextBox.Location = new System.Drawing.Point(50, 26);
    89       this.valueTextBox.Name = "valueTextBox";
    90       this.valueTextBox.ReadOnly = true;
    91       this.valueTextBox.Size = new System.Drawing.Size(99, 20);
    92       this.valueTextBox.TabIndex = 3;
     84      this.dataTypeTextBox.Location = new System.Drawing.Point(72, 94);
     85      this.dataTypeTextBox.Name = "dataTypeTextBox";
     86      this.dataTypeTextBox.ReadOnly = true;
     87      this.dataTypeTextBox.Size = new System.Drawing.Size(285, 20);
     88      this.dataTypeTextBox.TabIndex = 5;
    9389      //
    94       // editorGroupBox
     90      // valueGroupBox
    9591      //
    96       this.editorGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     92      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    9793                  | System.Windows.Forms.AnchorStyles.Left)
    9894                  | System.Windows.Forms.AnchorStyles.Right)));
    99       this.editorGroupBox.Location = new System.Drawing.Point(0, 52);
    100       this.editorGroupBox.Name = "editorGroupBox";
    101       this.editorGroupBox.Size = new System.Drawing.Size(203, 102);
    102       this.editorGroupBox.TabIndex = 5;
    103       this.editorGroupBox.TabStop = false;
    104       this.editorGroupBox.Text = "&Editor:";
     95      this.valueGroupBox.Controls.Add(this.valuePanel);
     96      this.valueGroupBox.Controls.Add(this.clearValueButton);
     97      this.valueGroupBox.Controls.Add(this.setValueButton);
     98      this.valueGroupBox.Location = new System.Drawing.Point(0, 120);
     99      this.valueGroupBox.Name = "valueGroupBox";
     100      this.valueGroupBox.Size = new System.Drawing.Size(359, 154);
     101      this.valueGroupBox.TabIndex = 7;
     102      this.valueGroupBox.TabStop = false;
     103      this.valueGroupBox.Text = "&Value:";
    105104      //
    106       // setVariableValueButton
     105      // valuePanel
    107106      //
    108       this.setVariableValueButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    109       this.setVariableValueButton.Location = new System.Drawing.Point(155, 26);
    110       this.setVariableValueButton.Name = "setVariableValueButton";
    111       this.setVariableValueButton.Size = new System.Drawing.Size(45, 20);
    112       this.setVariableValueButton.TabIndex = 4;
    113       this.setVariableValueButton.Text = "Set...";
    114       this.setVariableValueButton.UseVisualStyleBackColor = true;
    115       this.setVariableValueButton.Click += new System.EventHandler(this.setVariableValueButton_Click);
     107      this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     108                  | System.Windows.Forms.AnchorStyles.Left)
     109                  | System.Windows.Forms.AnchorStyles.Right)));
     110      this.valuePanel.Controls.Add(this.viewHost);
     111      this.valuePanel.Location = new System.Drawing.Point(3, 48);
     112      this.valuePanel.Name = "valuePanel";
     113      this.valuePanel.Size = new System.Drawing.Size(353, 103);
     114      this.valuePanel.TabIndex = 2;
     115      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
     116      this.valuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragDrop);
     117      this.valuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
     118      //
     119      // viewHost
     120      //
     121      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
     122      this.viewHost.Location = new System.Drawing.Point(0, 0);
     123      this.viewHost.Name = "viewHost";
     124      this.viewHost.Object = null;
     125      this.viewHost.Size = new System.Drawing.Size(353, 103);
     126      this.viewHost.TabIndex = 0;
     127      //
     128      // clearValueButton
     129      //
     130      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     131      this.clearValueButton.Location = new System.Drawing.Point(35, 19);
     132      this.clearValueButton.Name = "clearValueButton";
     133      this.clearValueButton.Size = new System.Drawing.Size(23, 23);
     134      this.clearValueButton.TabIndex = 1;
     135      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
     136      this.clearValueButton.UseVisualStyleBackColor = true;
     137      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
     138      //
     139      // setValueButton
     140      //
     141      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     142      this.setValueButton.Location = new System.Drawing.Point(6, 19);
     143      this.setValueButton.Name = "setValueButton";
     144      this.setValueButton.Size = new System.Drawing.Size(23, 23);
     145      this.setValueButton.TabIndex = 1;
     146      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
     147      this.setValueButton.UseVisualStyleBackColor = true;
     148      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
    116149      //
    117150      // VariableView
     
    119152      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    120153      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    121       this.Controls.Add(this.setVariableValueButton);
    122       this.Controls.Add(this.editorGroupBox);
    123       this.Controls.Add(this.valueTextBox);
    124       this.Controls.Add(this.nameTextBox);
    125       this.Controls.Add(this.valueLabel);
    126       this.Controls.Add(this.nameLabel);
     154      this.Controls.Add(this.valueGroupBox);
     155      this.Controls.Add(this.dataTypeTextBox);
     156      this.Controls.Add(this.dataTypeLabel);
    127157      this.Name = "VariableView";
    128       this.Size = new System.Drawing.Size(203, 154);
     158      this.Size = new System.Drawing.Size(359, 274);
     159      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
     160      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
     161      this.Controls.SetChildIndex(this.valueGroupBox, 0);
     162      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
     163      this.Controls.SetChildIndex(this.nameLabel, 0);
     164      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     165      this.Controls.SetChildIndex(this.nameTextBox, 0);
     166      this.valueGroupBox.ResumeLayout(false);
     167      this.valuePanel.ResumeLayout(false);
    129168      this.ResumeLayout(false);
    130169      this.PerformLayout();
     
    134173    #endregion
    135174
    136     private System.Windows.Forms.Label nameLabel;
    137     private System.Windows.Forms.TextBox nameTextBox;
    138     private System.Windows.Forms.Label valueLabel;
    139     private System.Windows.Forms.TextBox valueTextBox;
    140     private System.Windows.Forms.GroupBox editorGroupBox;
    141     private System.Windows.Forms.Button setVariableValueButton;
     175    private System.Windows.Forms.Label dataTypeLabel;
     176    private System.Windows.Forms.TextBox dataTypeTextBox;
     177    private System.Windows.Forms.GroupBox valueGroupBox;
     178    private ViewHost viewHost;
     179    private System.Windows.Forms.Button clearValueButton;
     180    private System.Windows.Forms.ToolTip toolTip;
     181    private System.Windows.Forms.Button setValueButton;
     182    private System.Windows.Forms.Panel valuePanel;
    142183  }
    143184}
Note: See TracChangeset for help on using the changeset viewer.