Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/24/09 17:27:17 (15 years ago)
Author:
gkronber
Message:

Added views for the executer and the dispatcher and the server (which contains the executer and dispatcher views). #676 (Cockpit for the CEDMA Server to control algorithm settings)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/ServerForm.designer.cs

    r2075 r2088  
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.components = new System.ComponentModel.Container();
    4847      this.addressTextBox = new System.Windows.Forms.TextBox();
    4948      this.externalAddressLabel = new System.Windows.Forms.Label();
     
    5150      this.address = new System.Windows.Forms.TextBox();
    5251      this.connectButton = new System.Windows.Forms.Button();
    53       this.listBox = new System.Windows.Forms.ListBox();
    54       this.refreshTimer = new System.Windows.Forms.Timer(this.components);
    55       this.maxActiveJobsUpDown = new System.Windows.Forms.NumericUpDown();
    56       this.activeJobsLabel = new System.Windows.Forms.Label();
    57       ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobsUpDown)).BeginInit();
     52      this.tabControl = new System.Windows.Forms.TabControl();
     53      this.executerTabPage = new System.Windows.Forms.TabPage();
     54      this.dispatcherTabPage = new System.Windows.Forms.TabPage();
     55      this.tabControl.SuspendLayout();
    5856      this.SuspendLayout();
    5957      //
     
    10199      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
    102100      //
    103       // listBox
     101      // tabControl
    104102      //
    105       this.listBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     103      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    106104                  | System.Windows.Forms.AnchorStyles.Left)
    107105                  | System.Windows.Forms.AnchorStyles.Right)));
    108       this.listBox.FormattingEnabled = true;
    109       this.listBox.Location = new System.Drawing.Point(12, 84);
    110       this.listBox.Name = "listBox";
    111       this.listBox.Size = new System.Drawing.Size(350, 251);
    112       this.listBox.TabIndex = 11;
     106      this.tabControl.Controls.Add(this.executerTabPage);
     107      this.tabControl.Controls.Add(this.dispatcherTabPage);
     108      this.tabControl.Location = new System.Drawing.Point(3, 58);
     109      this.tabControl.Name = "tabControl";
     110      this.tabControl.SelectedIndex = 0;
     111      this.tabControl.Size = new System.Drawing.Size(573, 543);
     112      this.tabControl.TabIndex = 14;
    113113      //
    114       // refreshTimer
     114      // executerTabPage
    115115      //
    116       this.refreshTimer.Interval = 1000;
    117       this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
     116      this.executerTabPage.Location = new System.Drawing.Point(4, 22);
     117      this.executerTabPage.Name = "executerTabPage";
     118      this.executerTabPage.Padding = new System.Windows.Forms.Padding(3);
     119      this.executerTabPage.Size = new System.Drawing.Size(565, 517);
     120      this.executerTabPage.TabIndex = 0;
     121      this.executerTabPage.Text = "Executer";
     122      this.executerTabPage.UseVisualStyleBackColor = true;
    118123      //
    119       // maxActiveJobsUpDown
     124      // dispatcherTabPage
    120125      //
    121       this.maxActiveJobsUpDown.Enabled = false;
    122       this.maxActiveJobsUpDown.Location = new System.Drawing.Point(106, 59);
    123       this.maxActiveJobsUpDown.Maximum = new decimal(new int[] {
    124             64,
    125             0,
    126             0,
    127             0});
    128       this.maxActiveJobsUpDown.Name = "maxActiveJobsUpDown";
    129       this.maxActiveJobsUpDown.Size = new System.Drawing.Size(120, 20);
    130       this.maxActiveJobsUpDown.TabIndex = 12;
    131       this.maxActiveJobsUpDown.ValueChanged += new System.EventHandler(this.maxActiveJobsUpDown_ValueChanged);
    132       //
    133       // activeJobsLabel
    134       //
    135       this.activeJobsLabel.AutoSize = true;
    136       this.activeJobsLabel.Enabled = false;
    137       this.activeJobsLabel.Location = new System.Drawing.Point(12, 61);
    138       this.activeJobsLabel.Name = "activeJobsLabel";
    139       this.activeJobsLabel.Size = new System.Drawing.Size(84, 13);
    140       this.activeJobsLabel.TabIndex = 13;
    141       this.activeJobsLabel.Text = "&Max active jobs:";
     126      this.dispatcherTabPage.Location = new System.Drawing.Point(4, 22);
     127      this.dispatcherTabPage.Name = "dispatcherTabPage";
     128      this.dispatcherTabPage.Padding = new System.Windows.Forms.Padding(3);
     129      this.dispatcherTabPage.Size = new System.Drawing.Size(565, 517);
     130      this.dispatcherTabPage.TabIndex = 1;
     131      this.dispatcherTabPage.Text = "Dispatcher";
     132      this.dispatcherTabPage.UseVisualStyleBackColor = true;
    142133      //
    143134      // ServerForm
     
    145136      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    146137      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    147       this.ClientSize = new System.Drawing.Size(374, 342);
    148       this.Controls.Add(this.activeJobsLabel);
    149       this.Controls.Add(this.maxActiveJobsUpDown);
    150       this.Controls.Add(this.listBox);
     138      this.Controls.Add(this.tabControl);
    151139      this.Controls.Add(this.connectButton);
    152140      this.Controls.Add(this.gridAddressLabel);
     
    155143      this.Controls.Add(this.addressTextBox);
    156144      this.Name = "ServerForm";
    157       this.Text = "CEDMA Server";
    158       ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobsUpDown)).EndInit();
     145      this.Size = new System.Drawing.Size(579, 604);
     146      this.tabControl.ResumeLayout(false);
    159147      this.ResumeLayout(false);
    160148      this.PerformLayout();
     
    169157    private System.Windows.Forms.TextBox address;
    170158    private System.Windows.Forms.Button connectButton;
    171     private System.Windows.Forms.ListBox listBox;
    172     private System.Windows.Forms.Timer refreshTimer;
    173     private System.Windows.Forms.NumericUpDown maxActiveJobsUpDown;
    174     private System.Windows.Forms.Label activeJobsLabel;
     159    private System.Windows.Forms.TabControl tabControl;
     160    private System.Windows.Forms.TabPage executerTabPage;
     161    private System.Windows.Forms.TabPage dispatcherTabPage;
    175162  }
    176163}
Note: See TracChangeset for help on using the changeset viewer.