Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 14:34:40 (14 years ago)
Author:
cneumuel
Message:

improved HiveExperiment GUI (HL3.3 look&feel, RunCollectionView, JobItem.ToString) (#1115)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.Designer.cs

    r4133 r4144  
    4848      this.tabControl = new System.Windows.Forms.TabControl();
    4949      this.experimentTabPage = new System.Windows.Forms.TabPage();
     50      this.openExperimentButton = new System.Windows.Forms.Button();
     51      this.newExperimentButton = new System.Windows.Forms.Button();
    5052      this.experimentNamedItemView = new HeuristicLab.Core.Views.NamedItemView();
    51       this.newExperimentButton = new System.Windows.Forms.Button();
    52       this.openExperimentButton = new System.Windows.Forms.Button();
    53       this.loadExperimentButton = new System.Windows.Forms.Button();
     53      this.viewExperimentButton = new System.Windows.Forms.Button();
    5454      this.hiveStatusTabPage = new System.Windows.Forms.TabPage();
    5555      this.jobListView = new HeuristicLab.Hive.Experiment.Views.JobItemListView();
     
    6868      this.disconnectButton = new System.Windows.Forms.Button();
    6969      this.reconnectButton = new System.Windows.Forms.Button();
     70      this.runsTabPage = new System.Windows.Forms.TabPage();
     71      this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
    7072      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    7173      this.tabControl.SuspendLayout();
     
    7375      this.hiveStatusTabPage.SuspendLayout();
    7476      this.logTabPage.SuspendLayout();
     77      this.runsTabPage.SuspendLayout();
    7578      this.SuspendLayout();
    7679      //
     
    9295      this.tabControl.Controls.Add(this.experimentTabPage);
    9396      this.tabControl.Controls.Add(this.hiveStatusTabPage);
     97      this.tabControl.Controls.Add(this.runsTabPage);
    9498      this.tabControl.Controls.Add(this.logTabPage);
    9599      this.tabControl.Location = new System.Drawing.Point(0, 99);
     
    101105      // experimentTabPage
    102106      //
     107      this.experimentTabPage.Controls.Add(this.openExperimentButton);
     108      this.experimentTabPage.Controls.Add(this.newExperimentButton);
    103109      this.experimentTabPage.Controls.Add(this.experimentNamedItemView);
    104       this.experimentTabPage.Controls.Add(this.newExperimentButton);
    105       this.experimentTabPage.Controls.Add(this.openExperimentButton);
    106       this.experimentTabPage.Controls.Add(this.loadExperimentButton);
     110      this.experimentTabPage.Controls.Add(this.viewExperimentButton);
    107111      this.experimentTabPage.Location = new System.Drawing.Point(4, 22);
    108112      this.experimentTabPage.Name = "experimentTabPage";
     
    113117      this.experimentTabPage.UseVisualStyleBackColor = true;
    114118      //
     119      // openExperimentButton
     120      //
     121      this.openExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("openExperimentButton.Image")));
     122      this.openExperimentButton.Location = new System.Drawing.Point(36, 6);
     123      this.openExperimentButton.Name = "openExperimentButton";
     124      this.openExperimentButton.Size = new System.Drawing.Size(24, 24);
     125      this.openExperimentButton.TabIndex = 5;
     126      this.toolTip.SetToolTip(this.openExperimentButton, "Open Experiment");
     127      this.openExperimentButton.UseVisualStyleBackColor = true;
     128      this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click);
     129      //
     130      // newExperimentButton
     131      //
     132      this.newExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("newExperimentButton.Image")));
     133      this.newExperimentButton.Location = new System.Drawing.Point(6, 6);
     134      this.newExperimentButton.Name = "newExperimentButton";
     135      this.newExperimentButton.Size = new System.Drawing.Size(24, 24);
     136      this.newExperimentButton.TabIndex = 4;
     137      this.toolTip.SetToolTip(this.newExperimentButton, "New Experiment");
     138      this.newExperimentButton.UseVisualStyleBackColor = true;
     139      this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click);
     140      //
    115141      // experimentNamedItemView
    116142      //
     
    119145      this.experimentNamedItemView.Caption = "NamedItem View";
    120146      this.experimentNamedItemView.Content = null;
    121       this.experimentNamedItemView.Location = new System.Drawing.Point(144, 7);
     147      this.experimentNamedItemView.Location = new System.Drawing.Point(3, 36);
    122148      this.experimentNamedItemView.Name = "experimentNamedItemView";
    123149      this.experimentNamedItemView.ReadOnly = false;
    124       this.experimentNamedItemView.Size = new System.Drawing.Size(577, 52);
     150      this.experimentNamedItemView.Size = new System.Drawing.Size(721, 52);
    125151      this.experimentNamedItemView.TabIndex = 3;
    126152      //
    127       // newExperimentButton
    128       //
    129       this.newExperimentButton.Location = new System.Drawing.Point(6, 6);
    130       this.newExperimentButton.Name = "newExperimentButton";
    131       this.newExperimentButton.Size = new System.Drawing.Size(131, 32);
    132       this.newExperimentButton.TabIndex = 2;
    133       this.newExperimentButton.Text = "New Experiment";
    134       this.newExperimentButton.UseVisualStyleBackColor = true;
    135       this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click);
    136       //
    137       // openExperimentButton
    138       //
    139       this.openExperimentButton.Location = new System.Drawing.Point(6, 82);
    140       this.openExperimentButton.Name = "openExperimentButton";
    141       this.openExperimentButton.Size = new System.Drawing.Size(131, 32);
    142       this.openExperimentButton.TabIndex = 1;
    143       this.openExperimentButton.Text = "Open Experiment";
    144       this.openExperimentButton.UseVisualStyleBackColor = true;
    145       this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click);
    146       //
    147       // loadExperimentButton
    148       //
    149       this.loadExperimentButton.Location = new System.Drawing.Point(6, 44);
    150       this.loadExperimentButton.Name = "loadExperimentButton";
    151       this.loadExperimentButton.Size = new System.Drawing.Size(131, 32);
    152       this.loadExperimentButton.TabIndex = 0;
    153       this.loadExperimentButton.Text = "Load Experiment";
    154       this.loadExperimentButton.UseVisualStyleBackColor = true;
    155       this.loadExperimentButton.Click += new System.EventHandler(this.loadExperimentButton_Click);
     153      // viewExperimentButton
     154      //
     155      this.viewExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     156                  | System.Windows.Forms.AnchorStyles.Right)));
     157      this.viewExperimentButton.Location = new System.Drawing.Point(0, 94);
     158      this.viewExperimentButton.Name = "viewExperimentButton";
     159      this.viewExperimentButton.Size = new System.Drawing.Size(727, 23);
     160      this.viewExperimentButton.TabIndex = 1;
     161      this.viewExperimentButton.Text = "&Show Experiment";
     162      this.viewExperimentButton.UseVisualStyleBackColor = true;
     163      this.viewExperimentButton.Click += new System.EventHandler(this.showExperimentButton_Click);
    156164      //
    157165      // hiveStatusTabPage
     
    335343      this.reconnectButton.UseVisualStyleBackColor = true;
    336344      this.reconnectButton.Click += new System.EventHandler(this.reconnectButton_Click);
     345      //
     346      // runsTabPage
     347      //
     348      this.runsTabPage.Controls.Add(this.runCollectionView);
     349      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
     350      this.runsTabPage.Name = "runsTabPage";
     351      this.runsTabPage.Size = new System.Drawing.Size(727, 369);
     352      this.runsTabPage.TabIndex = 4;
     353      this.runsTabPage.Text = "Runs";
     354      this.runsTabPage.UseVisualStyleBackColor = true;
     355      //
     356      // runCollectionView
     357      //
     358      this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     359                  | System.Windows.Forms.AnchorStyles.Left)
     360                  | System.Windows.Forms.AnchorStyles.Right)));
     361      this.runCollectionView.Caption = "RunCollection View";
     362      this.runCollectionView.Content = null;
     363      this.runCollectionView.Location = new System.Drawing.Point(0, 3);
     364      this.runCollectionView.Name = "runCollectionView";
     365      this.runCollectionView.ReadOnly = false;
     366      this.runCollectionView.Size = new System.Drawing.Size(727, 366);
     367      this.runCollectionView.TabIndex = 0;
    337368      //
    338369      // HiveExperimentView
     
    363394      this.Controls.SetChildIndex(this.startButton, 0);
    364395      this.Controls.SetChildIndex(this.tabControl, 0);
    365       this.Controls.SetChildIndex(this.nameLabel, 0);
    366       this.Controls.SetChildIndex(this.descriptionLabel, 0);
    367       this.Controls.SetChildIndex(this.nameTextBox, 0);
    368       this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    369396      this.Controls.SetChildIndex(this.resourceIdsLabel, 0);
    370397      this.Controls.SetChildIndex(this.serverUrlTextBox, 0);
     
    372399      this.Controls.SetChildIndex(this.disconnectButton, 0);
    373400      this.Controls.SetChildIndex(this.reconnectButton, 0);
     401      this.Controls.SetChildIndex(this.nameLabel, 0);
     402      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     403      this.Controls.SetChildIndex(this.nameTextBox, 0);
     404      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    374405      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    375406      this.tabControl.ResumeLayout(false);
     
    377408      this.hiveStatusTabPage.ResumeLayout(false);
    378409      this.logTabPage.ResumeLayout(false);
     410      this.runsTabPage.ResumeLayout(false);
    379411      this.ResumeLayout(false);
    380412      this.PerformLayout();
     
    396428    private System.Windows.Forms.TextBox serverUrlTextBox;
    397429    private System.Windows.Forms.TextBox resourceIdsTextBox;
    398     private System.Windows.Forms.Button newExperimentButton;
    399     private System.Windows.Forms.Button openExperimentButton;
    400     private System.Windows.Forms.Button loadExperimentButton;
     430    private System.Windows.Forms.Button viewExperimentButton;
    401431    private Core.Views.NamedItemView experimentNamedItemView;
    402432    private System.Windows.Forms.TabPage logTabPage;
     
    405435    private System.Windows.Forms.Button disconnectButton;
    406436    private System.Windows.Forms.Button reconnectButton;
     437    protected System.Windows.Forms.Button openExperimentButton;
     438    protected System.Windows.Forms.Button newExperimentButton;
     439    private System.Windows.Forms.TabPage runsTabPage;
     440    private Optimization.Views.RunCollectionView runCollectionView;
    407441
    408442  }
Note: See TracChangeset for help on using the changeset viewer.