Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.Designer.cs @ 6730

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

#1233 added Hive Slave HL App client

File size: 11.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 SlaveMainViewBase {
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.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SlaveMainViewBase));
49      this.mainTabControl = new System.Windows.Forms.TabControl();
50      this.tabSlaveView = new System.Windows.Forms.TabPage();
51      this.tabJobs = new System.Windows.Forms.TabPage();
52      this.jobsView = new HeuristicLab.Clients.Hive.SlaveCore.Views.JobsView();
53      this.tabLog = new System.Windows.Forms.TabPage();
54      this.logView = new HeuristicLab.Clients.Hive.SlaveCore.Views.LogView();
55      this.tabAbout = new System.Windows.Forms.TabPage();
56      this.aboutView = new HeuristicLab.Clients.Hive.SlaveCore.Views.AboutView();
57      this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58      this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
59      this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
60      this.contextMenuNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
61      this.homepageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
62      this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
63      this.mainTabControl.SuspendLayout();
64      this.tabJobs.SuspendLayout();
65      this.tabLog.SuspendLayout();
66      this.tabAbout.SuspendLayout();
67      this.contextMenuNotifyIcon.SuspendLayout();
68      this.SuspendLayout();
69      //
70      // mainTabControl
71      //
72      this.mainTabControl.Controls.Add(this.tabSlaveView);
73      this.mainTabControl.Controls.Add(this.tabJobs);
74      this.mainTabControl.Controls.Add(this.tabLog);
75      this.mainTabControl.Controls.Add(this.tabAbout);
76      this.mainTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
77      this.mainTabControl.Location = new System.Drawing.Point(0, 0);
78      this.mainTabControl.Margin = new System.Windows.Forms.Padding(1);
79      this.mainTabControl.Name = "mainTabControl";
80      this.mainTabControl.SelectedIndex = 0;
81      this.mainTabControl.Size = new System.Drawing.Size(653, 501);
82      this.mainTabControl.TabIndex = 2;
83      //
84      // tabSlaveView
85      //
86      this.tabSlaveView.Location = new System.Drawing.Point(4, 22);
87      this.tabSlaveView.Name = "tabSlaveView";
88      this.tabSlaveView.Padding = new System.Windows.Forms.Padding(3);
89      this.tabSlaveView.Size = new System.Drawing.Size(645, 475);
90      this.tabSlaveView.TabIndex = 0;
91      this.tabSlaveView.Text = "Overview";
92      this.tabSlaveView.UseVisualStyleBackColor = true;
93      //
94      // tabJobs
95      //
96      this.tabJobs.Controls.Add(this.jobsView);
97      this.tabJobs.Location = new System.Drawing.Point(4, 22);
98      this.tabJobs.Name = "tabJobs";
99      this.tabJobs.Size = new System.Drawing.Size(639, 421);
100      this.tabJobs.TabIndex = 3;
101      this.tabJobs.Text = "Jobs";
102      this.tabJobs.UseVisualStyleBackColor = true;
103      //
104      // jobsView
105      //
106      this.jobsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
107                  | System.Windows.Forms.AnchorStyles.Left)
108                  | System.Windows.Forms.AnchorStyles.Right)));
109      this.jobsView.Caption = "JobsView";
110      this.jobsView.Content = null;
111      this.jobsView.Location = new System.Drawing.Point(4, 4);
112      this.jobsView.Name = "jobsView";
113      this.jobsView.ReadOnly = false;
114      this.jobsView.Size = new System.Drawing.Size(632, 414);
115      this.jobsView.TabIndex = 0;
116      //
117      // tabLog
118      //
119      this.tabLog.Controls.Add(this.logView);
120      this.tabLog.Location = new System.Drawing.Point(4, 22);
121      this.tabLog.Name = "tabLog";
122      this.tabLog.Padding = new System.Windows.Forms.Padding(3);
123      this.tabLog.Size = new System.Drawing.Size(639, 421);
124      this.tabLog.TabIndex = 1;
125      this.tabLog.Text = "Log";
126      this.tabLog.UseVisualStyleBackColor = true;
127      //
128      // logView
129      //
130      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
131                  | System.Windows.Forms.AnchorStyles.Left)
132                  | System.Windows.Forms.AnchorStyles.Right)));
133      this.logView.Caption = "LogView: Displays logged messages from the slave core.";
134      this.logView.Content = null;
135      this.logView.Location = new System.Drawing.Point(7, 7);
136      this.logView.Name = "logView";
137      this.logView.ReadOnly = false;
138      this.logView.Size = new System.Drawing.Size(626, 406);
139      this.logView.TabIndex = 0;
140      //
141      // tabAbout
142      //
143      this.tabAbout.Controls.Add(this.aboutView);
144      this.tabAbout.Location = new System.Drawing.Point(4, 22);
145      this.tabAbout.Name = "tabAbout";
146      this.tabAbout.Size = new System.Drawing.Size(639, 421);
147      this.tabAbout.TabIndex = 2;
148      this.tabAbout.Text = "About HeuristicLab Hive";
149      this.tabAbout.UseVisualStyleBackColor = true;
150      //
151      // aboutView
152      //
153      this.aboutView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
154                  | System.Windows.Forms.AnchorStyles.Left)
155                  | System.Windows.Forms.AnchorStyles.Right)));
156      this.aboutView.Caption = "AboutView: Shows some information about HeuristicLab Hive";
157      this.aboutView.Content = null;
158      this.aboutView.Location = new System.Drawing.Point(3, 3);
159      this.aboutView.Name = "aboutView";
160      this.aboutView.ReadOnly = false;
161      this.aboutView.Size = new System.Drawing.Size(613, 329);
162      this.aboutView.TabIndex = 0;
163      //
164      // closeToolStripMenuItem
165      //
166      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
167      this.closeToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
168      this.closeToolStripMenuItem.Text = "Close";
169      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
170      //
171      // showToolStripMenuItem
172      //
173      this.showToolStripMenuItem.Name = "showToolStripMenuItem";
174      this.showToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
175      this.showToolStripMenuItem.Text = "Show";
176      this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
177      //
178      // notifyIcon
179      //
180      this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
181      this.notifyIcon.BalloonTipText = "A client for computing jobs sent from HeuristicLab Hive";
182      this.notifyIcon.BalloonTipTitle = "HeuristicLab Hive Slave";
183      this.notifyIcon.ContextMenuStrip = this.contextMenuNotifyIcon;
184      this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
185      this.notifyIcon.Text = "HeuristicLab Hive Slave";
186      this.notifyIcon.Visible = true;
187      this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
188      //
189      // contextMenuNotifyIcon
190      //
191      this.contextMenuNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
192            this.homepageToolStripMenuItem,
193            this.toolStripSeparator,
194            this.showToolStripMenuItem,
195            this.closeToolStripMenuItem});
196      this.contextMenuNotifyIcon.Name = "contextMenuNotifyIcon";
197      this.contextMenuNotifyIcon.Size = new System.Drawing.Size(210, 76);
198      //
199      // homepageToolStripMenuItem
200      //
201      this.homepageToolStripMenuItem.ForeColor = System.Drawing.Color.Blue;
202      this.homepageToolStripMenuItem.Name = "homepageToolStripMenuItem";
203      this.homepageToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
204      this.homepageToolStripMenuItem.Text = "Visit dev.heuristiclab.com";
205      this.homepageToolStripMenuItem.Click += new System.EventHandler(this.homepageToolStripMenuItem_Click);
206      //
207      // toolStripSeparator
208      //
209      this.toolStripSeparator.Name = "toolStripSeparator";
210      this.toolStripSeparator.Size = new System.Drawing.Size(206, 6);
211      //
212      // SlaveMainViewBase
213      //
214      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
215      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
216      this.Controls.Add(this.mainTabControl);
217      this.Name = "SlaveMainViewBase";
218      this.Size = new System.Drawing.Size(653, 501);
219      this.mainTabControl.ResumeLayout(false);
220      this.tabJobs.ResumeLayout(false);
221      this.tabLog.ResumeLayout(false);
222      this.tabAbout.ResumeLayout(false);
223      this.contextMenuNotifyIcon.ResumeLayout(false);
224      this.ResumeLayout(false);
225
226    }
227
228    #endregion
229
230    private System.Windows.Forms.TabPage tabJobs;
231    private JobsView jobsView;
232    private System.Windows.Forms.TabPage tabLog;
233    private LogView logView;
234    private System.Windows.Forms.TabPage tabAbout;
235    private AboutView aboutView;
236    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
237    private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
238    private System.Windows.Forms.NotifyIcon notifyIcon;
239    private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon;
240    private System.Windows.Forms.ToolStripMenuItem homepageToolStripMenuItem;
241    private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
242    protected System.Windows.Forms.TabPage tabSlaveView;
243    protected System.Windows.Forms.TabControl mainTabControl;
244
245
246  }
247}
Note: See TracBrowser for help on using the repository browser.