[5314] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[5599] | 22 | namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
|
---|
[5314] | 23 | partial class SlaveView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 48 | this.txtLog = new System.Windows.Forms.TextBox();
|
---|
[5451] | 49 | this.btnPauseAll = new System.Windows.Forms.Button();
|
---|
| 50 | this.btnStopAll = new System.Windows.Forms.Button();
|
---|
[5315] | 51 | this.btnRestart = new System.Windows.Forms.Button();
|
---|
[5451] | 52 | this.btnSleep = new System.Windows.Forms.Button();
|
---|
[5602] | 53 | this.btnAbout = new System.Windows.Forms.Button();
|
---|
[5314] | 54 | this.SuspendLayout();
|
---|
| 55 | //
|
---|
| 56 | // label1
|
---|
| 57 | //
|
---|
| 58 | this.label1.AutoSize = true;
|
---|
[5602] | 59 | this.label1.Location = new System.Drawing.Point(17, 24);
|
---|
[5314] | 60 | this.label1.Name = "label1";
|
---|
| 61 | this.label1.Size = new System.Drawing.Size(85, 13);
|
---|
| 62 | this.label1.TabIndex = 0;
|
---|
| 63 | this.label1.Text = "Hive Slave View";
|
---|
| 64 | //
|
---|
| 65 | // txtLog
|
---|
| 66 | //
|
---|
[5320] | 67 | this.txtLog.BackColor = System.Drawing.Color.White;
|
---|
[5314] | 68 | this.txtLog.Location = new System.Drawing.Point(20, 172);
|
---|
| 69 | this.txtLog.Multiline = true;
|
---|
| 70 | this.txtLog.Name = "txtLog";
|
---|
| 71 | this.txtLog.ReadOnly = true;
|
---|
| 72 | this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
| 73 | this.txtLog.Size = new System.Drawing.Size(546, 244);
|
---|
| 74 | this.txtLog.TabIndex = 1;
|
---|
| 75 | //
|
---|
[5451] | 76 | // btnPauseAll
|
---|
[5315] | 77 | //
|
---|
[5602] | 78 | this.btnPauseAll.Location = new System.Drawing.Point(455, 24);
|
---|
[5451] | 79 | this.btnPauseAll.Name = "btnPauseAll";
|
---|
| 80 | this.btnPauseAll.Size = new System.Drawing.Size(111, 23);
|
---|
| 81 | this.btnPauseAll.TabIndex = 2;
|
---|
| 82 | this.btnPauseAll.Text = "Pause all jobs";
|
---|
| 83 | this.btnPauseAll.UseVisualStyleBackColor = true;
|
---|
| 84 | this.btnPauseAll.Click += new System.EventHandler(this.btnSoftPause_Click);
|
---|
[5315] | 85 | //
|
---|
[5451] | 86 | // btnStopAll
|
---|
[5315] | 87 | //
|
---|
[5602] | 88 | this.btnStopAll.Location = new System.Drawing.Point(455, 53);
|
---|
[5451] | 89 | this.btnStopAll.Name = "btnStopAll";
|
---|
| 90 | this.btnStopAll.Size = new System.Drawing.Size(111, 23);
|
---|
| 91 | this.btnStopAll.TabIndex = 3;
|
---|
| 92 | this.btnStopAll.Text = "Stop all jobs";
|
---|
| 93 | this.btnStopAll.UseVisualStyleBackColor = true;
|
---|
| 94 | this.btnStopAll.Click += new System.EventHandler(this.btnHardPause_Click);
|
---|
[5315] | 95 | //
|
---|
| 96 | // btnRestart
|
---|
| 97 | //
|
---|
[5602] | 98 | this.btnRestart.Location = new System.Drawing.Point(455, 111);
|
---|
[5315] | 99 | this.btnRestart.Name = "btnRestart";
|
---|
| 100 | this.btnRestart.Size = new System.Drawing.Size(111, 23);
|
---|
| 101 | this.btnRestart.TabIndex = 4;
|
---|
| 102 | this.btnRestart.Text = "Restart Core";
|
---|
| 103 | this.btnRestart.UseVisualStyleBackColor = true;
|
---|
| 104 | this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click);
|
---|
| 105 | //
|
---|
[5451] | 106 | // btnSleep
|
---|
| 107 | //
|
---|
[5602] | 108 | this.btnSleep.Location = new System.Drawing.Point(455, 82);
|
---|
[5451] | 109 | this.btnSleep.Name = "btnSleep";
|
---|
| 110 | this.btnSleep.Size = new System.Drawing.Size(111, 23);
|
---|
| 111 | this.btnSleep.TabIndex = 5;
|
---|
| 112 | this.btnSleep.Text = "Send slave to sleep";
|
---|
| 113 | this.btnSleep.UseVisualStyleBackColor = true;
|
---|
| 114 | this.btnSleep.Click += new System.EventHandler(this.btnSleep_Click);
|
---|
| 115 | //
|
---|
[5602] | 116 | // btnAbout
|
---|
| 117 | //
|
---|
| 118 | this.btnAbout.Location = new System.Drawing.Point(455, 140);
|
---|
| 119 | this.btnAbout.Name = "btnAbout";
|
---|
| 120 | this.btnAbout.Size = new System.Drawing.Size(111, 23);
|
---|
| 121 | this.btnAbout.TabIndex = 6;
|
---|
| 122 | this.btnAbout.Text = "About Hive";
|
---|
| 123 | this.btnAbout.UseVisualStyleBackColor = true;
|
---|
| 124 | this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
|
---|
| 125 | //
|
---|
[5314] | 126 | // SlaveView
|
---|
| 127 | //
|
---|
| 128 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 129 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[5602] | 130 | this.Controls.Add(this.btnAbout);
|
---|
[5451] | 131 | this.Controls.Add(this.btnSleep);
|
---|
[5315] | 132 | this.Controls.Add(this.btnRestart);
|
---|
[5451] | 133 | this.Controls.Add(this.btnStopAll);
|
---|
| 134 | this.Controls.Add(this.btnPauseAll);
|
---|
[5314] | 135 | this.Controls.Add(this.txtLog);
|
---|
| 136 | this.Controls.Add(this.label1);
|
---|
| 137 | this.Name = "SlaveView";
|
---|
[5363] | 138 | this.Size = new System.Drawing.Size(590, 435);
|
---|
[5314] | 139 | this.ResumeLayout(false);
|
---|
| 140 | this.PerformLayout();
|
---|
| 141 |
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | #endregion
|
---|
| 145 |
|
---|
| 146 | private System.Windows.Forms.Label label1;
|
---|
| 147 | private System.Windows.Forms.TextBox txtLog;
|
---|
[5451] | 148 | private System.Windows.Forms.Button btnPauseAll;
|
---|
| 149 | private System.Windows.Forms.Button btnStopAll;
|
---|
[5315] | 150 | private System.Windows.Forms.Button btnRestart;
|
---|
[5451] | 151 | private System.Windows.Forms.Button btnSleep;
|
---|
[5602] | 152 | private System.Windows.Forms.Button btnAbout;
|
---|
[5314] | 153 | }
|
---|
| 154 | }
|
---|