Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.Designer.cs @ 17246

Last change on this file since 17246 was 17246, checked in by gkronber, 5 years ago

#2925: merged r17037:17242 from trunk to branch

File size: 11.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
50      this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
51      this.contextMenuNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
52      this.homepageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
54      this.splitContainer = new System.Windows.Forms.SplitContainer();
55      this.mainTabControl = new System.Windows.Forms.TabControl();
56      this.tabSlaveView = new System.Windows.Forms.TabPage();
57      this.tabLog = new System.Windows.Forms.TabPage();
58      this.btnAbout = new System.Windows.Forms.Button();
59      this.slaveView = new HeuristicLab.Clients.Hive.SlaveCore.Views.SlaveView();
60      this.logView = new HeuristicLab.Clients.Hive.SlaveCore.Views.LogView();
61      this.contextMenuNotifyIcon.SuspendLayout();
62      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
63      this.splitContainer.Panel1.SuspendLayout();
64      this.splitContainer.Panel2.SuspendLayout();
65      this.splitContainer.SuspendLayout();
66      this.mainTabControl.SuspendLayout();
67      this.tabSlaveView.SuspendLayout();
68      this.tabLog.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // closeToolStripMenuItem
72      //
73      this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
74      this.closeToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
75      this.closeToolStripMenuItem.Text = "Close";
76      this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
77      //
78      // notifyIcon
79      //
80      this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
81      this.notifyIcon.BalloonTipText = "A client for computing jobs sent from HeuristicLab Hive";
82      this.notifyIcon.BalloonTipTitle = "HeuristicLab Hive Slave";
83      this.notifyIcon.ContextMenuStrip = this.contextMenuNotifyIcon;
84      this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
85      this.notifyIcon.Text = "HeuristicLab Hive Slave";
86      this.notifyIcon.Visible = true;
87      this.notifyIcon.BalloonTipClicked += new System.EventHandler(this.notifyIcon_BalloonTipClicked);
88      this.notifyIcon.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_Click);
89      //
90      // contextMenuNotifyIcon
91      //
92      this.contextMenuNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
93            this.homepageToolStripMenuItem,
94            this.toolStripSeparator,
95            this.closeToolStripMenuItem});
96      this.contextMenuNotifyIcon.Name = "contextMenuNotifyIcon";
97      this.contextMenuNotifyIcon.Size = new System.Drawing.Size(210, 54);
98      //
99      // homepageToolStripMenuItem
100      //
101      this.homepageToolStripMenuItem.ForeColor = System.Drawing.Color.Blue;
102      this.homepageToolStripMenuItem.Name = "homepageToolStripMenuItem";
103      this.homepageToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
104      this.homepageToolStripMenuItem.Text = "Visit dev.heuristiclab.com";
105      this.homepageToolStripMenuItem.Click += new System.EventHandler(this.homepageToolStripMenuItem_Click);
106      //
107      // toolStripSeparator
108      //
109      this.toolStripSeparator.Name = "toolStripSeparator";
110      this.toolStripSeparator.Size = new System.Drawing.Size(206, 6);
111      //
112      // splitContainer
113      //
114      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
115                  | System.Windows.Forms.AnchorStyles.Left)
116                  | System.Windows.Forms.AnchorStyles.Right)));
117      this.splitContainer.Location = new System.Drawing.Point(3, 3);
118      this.splitContainer.Name = "splitContainer";
119      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
120      //
121      // splitContainer.Panel1
122      //
123      this.splitContainer.Panel1.Controls.Add(this.mainTabControl);
124      //
125      // splitContainer.Panel2
126      //
127      this.splitContainer.Panel2.Controls.Add(this.btnAbout);
128      this.splitContainer.Size = new System.Drawing.Size(647, 438);
129      this.splitContainer.SplitterDistance = 392;
130      this.splitContainer.TabIndex = 3;
131      //
132      // mainTabControl
133      //
134      this.mainTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
135                  | System.Windows.Forms.AnchorStyles.Left)
136                  | System.Windows.Forms.AnchorStyles.Right)));
137      this.mainTabControl.Controls.Add(this.tabSlaveView);
138      this.mainTabControl.Controls.Add(this.tabLog);
139      this.mainTabControl.Location = new System.Drawing.Point(1, 1);
140      this.mainTabControl.Margin = new System.Windows.Forms.Padding(1);
141      this.mainTabControl.Name = "mainTabControl";
142      this.mainTabControl.SelectedIndex = 0;
143      this.mainTabControl.Size = new System.Drawing.Size(645, 390);
144      this.mainTabControl.TabIndex = 2;
145      //
146      // tabSlaveView
147      //
148      this.tabSlaveView.Controls.Add(this.slaveView);
149      this.tabSlaveView.Location = new System.Drawing.Point(4, 22);
150      this.tabSlaveView.Name = "tabSlaveView";
151      this.tabSlaveView.Padding = new System.Windows.Forms.Padding(3);
152      this.tabSlaveView.Size = new System.Drawing.Size(637, 364);
153      this.tabSlaveView.TabIndex = 0;
154      this.tabSlaveView.Text = "Summary";
155      this.tabSlaveView.UseVisualStyleBackColor = true;
156      //
157      // tabLog
158      //
159      this.tabLog.Controls.Add(this.logView);
160      this.tabLog.Location = new System.Drawing.Point(4, 22);
161      this.tabLog.Name = "tabLog";
162      this.tabLog.Padding = new System.Windows.Forms.Padding(3);
163      this.tabLog.Size = new System.Drawing.Size(637, 364);
164      this.tabLog.TabIndex = 1;
165      this.tabLog.Text = "Log";
166      this.tabLog.UseVisualStyleBackColor = true;
167      //
168      // btnAbout
169      //
170      this.btnAbout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
171      this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
172      this.btnAbout.Location = new System.Drawing.Point(618, 15);
173      this.btnAbout.Name = "btnAbout";
174      this.btnAbout.Size = new System.Drawing.Size(24, 24);
175      this.btnAbout.TabIndex = 0;
176      this.btnAbout.UseVisualStyleBackColor = true;
177      this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
178      //
179      // slaveView
180      //
181      this.slaveView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
182                  | System.Windows.Forms.AnchorStyles.Left)
183                  | System.Windows.Forms.AnchorStyles.Right)));
184      this.slaveView.Caption = "HeuristicLab Slave View";
185      this.slaveView.Content = null;
186      this.slaveView.Location = new System.Drawing.Point(6, 6);
187      this.slaveView.Name = "slaveView";
188      this.slaveView.ReadOnly = false;
189      this.slaveView.Size = new System.Drawing.Size(625, 352);
190      this.slaveView.TabIndex = 0;
191      //
192      // logView
193      //
194      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
195                  | System.Windows.Forms.AnchorStyles.Left)
196                  | System.Windows.Forms.AnchorStyles.Right)));
197      this.logView.Caption = "LogView: Displays logged messages from the slave core.";
198      this.logView.Content = null;
199      this.logView.Location = new System.Drawing.Point(7, 7);
200      this.logView.Name = "logView";
201      this.logView.ReadOnly = false;
202      this.logView.Size = new System.Drawing.Size(624, 351);
203      this.logView.TabIndex = 0;
204      //
205      // SlaveMainViewBase
206      //
207      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
208      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
209      this.Controls.Add(this.splitContainer);
210      this.Name = "SlaveMainViewBase";
211      this.Size = new System.Drawing.Size(653, 444);
212      this.contextMenuNotifyIcon.ResumeLayout(false);
213      this.splitContainer.Panel1.ResumeLayout(false);
214      this.splitContainer.Panel2.ResumeLayout(false);
215      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
216      this.splitContainer.ResumeLayout(false);
217      this.mainTabControl.ResumeLayout(false);
218      this.tabSlaveView.ResumeLayout(false);
219      this.tabLog.ResumeLayout(false);
220      this.ResumeLayout(false);
221
222    }
223
224    #endregion
225
226    private System.Windows.Forms.TabPage tabLog;
227    private LogView logView;
228    private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
229    private System.Windows.Forms.NotifyIcon notifyIcon;
230    private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon;
231    private System.Windows.Forms.ToolStripMenuItem homepageToolStripMenuItem;
232    private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
233    protected System.Windows.Forms.TabPage tabSlaveView;
234    protected System.Windows.Forms.TabControl mainTabControl;
235    protected SlaveView slaveView;
236    protected System.Windows.Forms.SplitContainer splitContainer;
237    private System.Windows.Forms.Button btnAbout;
238
239
240  }
241}
Note: See TracBrowser for help on using the repository browser.