Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveView.Designer.cs @ 6225

Last change on this file since 6225 was 6225, checked in by ascheibe, 13 years ago

#1233

  • Slave UI now uses tab pages
  • balloon tips are displayed on receiving new jobs
File size: 7.2 KB
Line 
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
22namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
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      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea6 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
48      System.Windows.Forms.DataVisualization.Charting.Legend legend6 = new System.Windows.Forms.DataVisualization.Charting.Legend();
49      System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
50      this.btnPauseAll = new System.Windows.Forms.Button();
51      this.btnStopAll = new System.Windows.Forms.Button();
52      this.btnRestart = new System.Windows.Forms.Button();
53      this.btnSleep = new System.Windows.Forms.Button();
54      this.jobChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
55      this.btnRestartService = new System.Windows.Forms.Button();
56      ((System.ComponentModel.ISupportInitialize)(this.jobChart)).BeginInit();
57      this.SuspendLayout();
58      //
59      // btnPauseAll
60      //
61      this.btnPauseAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
62      this.btnPauseAll.Location = new System.Drawing.Point(476, 3);
63      this.btnPauseAll.Name = "btnPauseAll";
64      this.btnPauseAll.Size = new System.Drawing.Size(111, 28);
65      this.btnPauseAll.TabIndex = 2;
66      this.btnPauseAll.Text = "Pause all jobs";
67      this.btnPauseAll.UseVisualStyleBackColor = true;
68      this.btnPauseAll.Click += new System.EventHandler(this.btnSoftPause_Click);
69      //
70      // btnStopAll
71      //
72      this.btnStopAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
73      this.btnStopAll.Location = new System.Drawing.Point(476, 32);
74      this.btnStopAll.Name = "btnStopAll";
75      this.btnStopAll.Size = new System.Drawing.Size(111, 28);
76      this.btnStopAll.TabIndex = 3;
77      this.btnStopAll.Text = "Stop all jobs";
78      this.btnStopAll.UseVisualStyleBackColor = true;
79      this.btnStopAll.Click += new System.EventHandler(this.btnHardPause_Click);
80      //
81      // btnRestart
82      //
83      this.btnRestart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
84      this.btnRestart.Location = new System.Drawing.Point(476, 90);
85      this.btnRestart.Name = "btnRestart";
86      this.btnRestart.Size = new System.Drawing.Size(111, 28);
87      this.btnRestart.TabIndex = 4;
88      this.btnRestart.Text = "Restart Core";
89      this.btnRestart.UseVisualStyleBackColor = true;
90      this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click);
91      //
92      // btnSleep
93      //
94      this.btnSleep.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
95      this.btnSleep.Location = new System.Drawing.Point(476, 61);
96      this.btnSleep.Name = "btnSleep";
97      this.btnSleep.Size = new System.Drawing.Size(111, 28);
98      this.btnSleep.TabIndex = 5;
99      this.btnSleep.Text = "Send slave to sleep";
100      this.btnSleep.UseVisualStyleBackColor = true;
101      this.btnSleep.Click += new System.EventHandler(this.btnSleep_Click);
102      //
103      // jobChart
104      //
105      chartArea6.Name = "ChartArea1";
106      this.jobChart.ChartAreas.Add(chartArea6);
107      legend6.Name = "Legend1";
108      this.jobChart.Legends.Add(legend6);
109      this.jobChart.Location = new System.Drawing.Point(3, 3);
110      this.jobChart.Name = "jobChart";
111      series6.ChartArea = "ChartArea1";
112      series6.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Doughnut;
113      series6.Legend = "Legend1";
114      series6.Name = "Series1";
115      this.jobChart.Series.Add(series6);
116      this.jobChart.Size = new System.Drawing.Size(293, 174);
117      this.jobChart.TabIndex = 7;
118      //
119      // btnRestartService
120      //
121      this.btnRestartService.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
122      this.btnRestartService.Location = new System.Drawing.Point(476, 119);
123      this.btnRestartService.Name = "btnRestartService";
124      this.btnRestartService.Size = new System.Drawing.Size(111, 28);
125      this.btnRestartService.TabIndex = 8;
126      this.btnRestartService.Text = "RestartService";
127      this.btnRestartService.UseVisualStyleBackColor = true;
128      this.btnRestartService.Click += new System.EventHandler(this.btnRestartService_Click);
129      //
130      // SlaveView
131      //
132      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
133      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
134      this.Controls.Add(this.btnRestartService);
135      this.Controls.Add(this.jobChart);
136      this.Controls.Add(this.btnSleep);
137      this.Controls.Add(this.btnRestart);
138      this.Controls.Add(this.btnStopAll);
139      this.Controls.Add(this.btnPauseAll);
140      this.Name = "SlaveView";
141      this.Size = new System.Drawing.Size(590, 426);
142      ((System.ComponentModel.ISupportInitialize)(this.jobChart)).EndInit();
143      this.ResumeLayout(false);
144
145    }
146
147    #endregion
148
149    private System.Windows.Forms.Button btnPauseAll;
150    private System.Windows.Forms.Button btnStopAll;
151    private System.Windows.Forms.Button btnRestart;
152    private System.Windows.Forms.Button btnSleep;
153    private System.Windows.Forms.DataVisualization.Charting.Chart jobChart;
154    private System.Windows.Forms.Button btnRestartService;
155  }
156}
Note: See TracBrowser for help on using the repository browser.