Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 01:39:32 (14 years ago)
Author:
mkommend
Message:

added operator graph tab page to EngineAlgorithmView (ticket #973)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.Designer.cs

    r3306 r3361  
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
    48       this.saveOperatorGraphButton = new System.Windows.Forms.Button();
    49       this.openOperatorGraphButton = new System.Windows.Forms.Button();
    50       this.newOperatorGraphButton = new System.Windows.Forms.Button();
    51       this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5247      this.globalScopeTabPage = new System.Windows.Forms.TabPage();
    5348      this.globalScopeView = new HeuristicLab.Core.Views.ScopeView();
     
    6055      this.problemPanel.SuspendLayout();
    6156      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    62       this.operatorGraphTabPage.SuspendLayout();
    6357      this.globalScopeTabPage.SuspendLayout();
    6458      this.SuspendLayout();
     
    7266      // tabControl
    7367      //
    74       this.tabControl.Controls.Add(this.operatorGraphTabPage);
    7568      this.tabControl.Controls.Add(this.globalScopeTabPage);
    7669      this.tabControl.Controls.SetChildIndex(this.globalScopeTabPage, 0);
     
    115108      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    116109      //
    117       // operatorGraphTabPage
    118       //
    119       this.operatorGraphTabPage.Controls.Add(this.saveOperatorGraphButton);
    120       this.operatorGraphTabPage.Controls.Add(this.openOperatorGraphButton);
    121       this.operatorGraphTabPage.Controls.Add(this.newOperatorGraphButton);
    122       this.operatorGraphTabPage.Controls.Add(this.operatorGraphViewHost);
    123       this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
    124       this.operatorGraphTabPage.Name = "operatorGraphTabPage";
    125       this.operatorGraphTabPage.Size = new System.Drawing.Size(705, 441);
    126       this.operatorGraphTabPage.TabIndex = 2;
    127       this.operatorGraphTabPage.Text = "Operator Graph";
    128       this.operatorGraphTabPage.UseVisualStyleBackColor = true;
    129       //
    130       // saveOperatorGraphButton
    131       //
    132       this.saveOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
    133       this.saveOperatorGraphButton.Location = new System.Drawing.Point(63, 3);
    134       this.saveOperatorGraphButton.Name = "saveOperatorGraphButton";
    135       this.saveOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
    136       this.saveOperatorGraphButton.TabIndex = 1;
    137       this.toolTip.SetToolTip(this.saveOperatorGraphButton, "Save Operator Graph");
    138       this.saveOperatorGraphButton.UseVisualStyleBackColor = true;
    139       this.saveOperatorGraphButton.Click += new System.EventHandler(this.saveOperatorGraphButton_Click);
    140       //
    141       // openOperatorGraphButton
    142       //
    143       this.openOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
    144       this.openOperatorGraphButton.Location = new System.Drawing.Point(33, 3);
    145       this.openOperatorGraphButton.Name = "openOperatorGraphButton";
    146       this.openOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
    147       this.openOperatorGraphButton.TabIndex = 1;
    148       this.toolTip.SetToolTip(this.openOperatorGraphButton, "Open Operator Graph");
    149       this.openOperatorGraphButton.UseVisualStyleBackColor = true;
    150       this.openOperatorGraphButton.Click += new System.EventHandler(this.openOperatorGraphButton_Click);
    151       //
    152       // newOperatorGraphButton
    153       //
    154       this.newOperatorGraphButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
    155       this.newOperatorGraphButton.Location = new System.Drawing.Point(3, 3);
    156       this.newOperatorGraphButton.Name = "newOperatorGraphButton";
    157       this.newOperatorGraphButton.Size = new System.Drawing.Size(24, 24);
    158       this.newOperatorGraphButton.TabIndex = 1;
    159       this.toolTip.SetToolTip(this.newOperatorGraphButton, "New Operator Graph");
    160       this.newOperatorGraphButton.UseVisualStyleBackColor = true;
    161       this.newOperatorGraphButton.Click += new System.EventHandler(this.newOperatorGraphButton_Click);
    162       //
    163       // operatorGraphViewHost
    164       //
    165       this.operatorGraphViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    166                   | System.Windows.Forms.AnchorStyles.Left)
    167                   | System.Windows.Forms.AnchorStyles.Right)));
    168       this.operatorGraphViewHost.Content = null;
    169       this.operatorGraphViewHost.Location = new System.Drawing.Point(3, 33);
    170       this.operatorGraphViewHost.Name = "operatorGraphViewHost";
    171       this.operatorGraphViewHost.Size = new System.Drawing.Size(699, 405);
    172       this.operatorGraphViewHost.TabIndex = 0;
    173       this.operatorGraphViewHost.ViewType = null;
    174       //
    175110      // globalScopeTabPage
    176111      //
     
    192127      this.globalScopeView.Location = new System.Drawing.Point(3, 3);
    193128      this.globalScopeView.Name = "globalScopeView";
     129      this.globalScopeView.ReadOnly = false;
    194130      this.globalScopeView.Size = new System.Drawing.Size(699, 435);
    195131      this.globalScopeView.TabIndex = 0;
     
    209145      this.problemPanel.ResumeLayout(false);
    210146      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    211       this.operatorGraphTabPage.ResumeLayout(false);
    212147      this.globalScopeTabPage.ResumeLayout(false);
    213148      this.ResumeLayout(false);
     
    218153    #endregion
    219154
    220     private System.Windows.Forms.TabPage operatorGraphTabPage;
    221155    private System.Windows.Forms.TabPage globalScopeTabPage;
    222156    private HeuristicLab.Core.Views.ScopeView globalScopeView;
    223     private System.Windows.Forms.Button saveOperatorGraphButton;
    224     private System.Windows.Forms.Button openOperatorGraphButton;
    225     private System.Windows.Forms.Button newOperatorGraphButton;
    226     private HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost;
    227157
    228158  }
Note: See TracChangeset for help on using the changeset viewer.