#region License Information /* HeuristicLab * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Clients.Hive.Slave.Views { partial class SlaveView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.txtLog = new System.Windows.Forms.TextBox(); this.btnSoftPause = new System.Windows.Forms.Button(); this.btnHardPause = new System.Windows.Forms.Button(); this.btnRestart = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(40, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(85, 13); this.label1.TabIndex = 0; this.label1.Text = "Hive Slave View"; // // txtLog // this.txtLog.BackColor = System.Drawing.Color.White; this.txtLog.Location = new System.Drawing.Point(20, 172); this.txtLog.Multiline = true; this.txtLog.Name = "txtLog"; this.txtLog.ReadOnly = true; this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtLog.Size = new System.Drawing.Size(546, 244); this.txtLog.TabIndex = 1; // // btnSoftPause // this.btnSoftPause.Location = new System.Drawing.Point(390, 46); this.btnSoftPause.Name = "btnSoftPause"; this.btnSoftPause.Size = new System.Drawing.Size(111, 23); this.btnSoftPause.TabIndex = 2; this.btnSoftPause.Text = "Soft Pause Core"; this.btnSoftPause.UseVisualStyleBackColor = true; this.btnSoftPause.Click += new System.EventHandler(this.btnSoftPause_Click); // // btnHardPause // this.btnHardPause.Location = new System.Drawing.Point(390, 87); this.btnHardPause.Name = "btnHardPause"; this.btnHardPause.Size = new System.Drawing.Size(111, 23); this.btnHardPause.TabIndex = 3; this.btnHardPause.Text = "Hard Pause Core"; this.btnHardPause.UseVisualStyleBackColor = true; this.btnHardPause.Click += new System.EventHandler(this.btnHardPause_Click); // // btnRestart // this.btnRestart.Location = new System.Drawing.Point(390, 127); this.btnRestart.Name = "btnRestart"; this.btnRestart.Size = new System.Drawing.Size(111, 23); this.btnRestart.TabIndex = 4; this.btnRestart.Text = "Restart Core"; this.btnRestart.UseVisualStyleBackColor = true; this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click); // // SlaveView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.btnRestart); this.Controls.Add(this.btnHardPause); this.Controls.Add(this.btnSoftPause); this.Controls.Add(this.txtLog); this.Controls.Add(this.label1); this.Name = "SlaveView"; this.Size = new System.Drawing.Size(667, 435); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtLog; private System.Windows.Forms.Button btnSoftPause; private System.Windows.Forms.Button btnHardPause; private System.Windows.Forms.Button btnRestart; } }