#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.SlaveCore.Views { partial class SlaveMainViewBase { /// /// 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.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SlaveMainViewBase)); this.mainTabControl = new System.Windows.Forms.TabControl(); this.tabSlaveView = new System.Windows.Forms.TabPage(); this.tabJobs = new System.Windows.Forms.TabPage(); this.jobsView = new HeuristicLab.Clients.Hive.SlaveCore.Views.JobsView(); this.tabLog = new System.Windows.Forms.TabPage(); this.logView = new HeuristicLab.Clients.Hive.SlaveCore.Views.LogView(); this.tabAbout = new System.Windows.Forms.TabPage(); this.aboutView = new HeuristicLab.Clients.Hive.SlaveCore.Views.AboutView(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components); this.contextMenuNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components); this.homepageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); this.mainTabControl.SuspendLayout(); this.tabJobs.SuspendLayout(); this.tabLog.SuspendLayout(); this.tabAbout.SuspendLayout(); this.contextMenuNotifyIcon.SuspendLayout(); this.SuspendLayout(); // // mainTabControl // this.mainTabControl.Controls.Add(this.tabSlaveView); this.mainTabControl.Controls.Add(this.tabJobs); this.mainTabControl.Controls.Add(this.tabLog); this.mainTabControl.Controls.Add(this.tabAbout); this.mainTabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.mainTabControl.Location = new System.Drawing.Point(0, 0); this.mainTabControl.Margin = new System.Windows.Forms.Padding(1); this.mainTabControl.Name = "mainTabControl"; this.mainTabControl.SelectedIndex = 0; this.mainTabControl.Size = new System.Drawing.Size(653, 444); this.mainTabControl.TabIndex = 2; // // tabSlaveView // this.tabSlaveView.Location = new System.Drawing.Point(4, 22); this.tabSlaveView.Name = "tabSlaveView"; this.tabSlaveView.Padding = new System.Windows.Forms.Padding(3); this.tabSlaveView.Size = new System.Drawing.Size(645, 418); this.tabSlaveView.TabIndex = 0; this.tabSlaveView.Text = "Overview"; this.tabSlaveView.UseVisualStyleBackColor = true; // // tabJobs // this.tabJobs.Controls.Add(this.jobsView); this.tabJobs.Location = new System.Drawing.Point(4, 22); this.tabJobs.Name = "tabJobs"; this.tabJobs.Size = new System.Drawing.Size(645, 418); this.tabJobs.TabIndex = 3; this.tabJobs.Text = "Jobs"; this.tabJobs.UseVisualStyleBackColor = true; // // jobsView // this.jobsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.jobsView.Caption = "JobsView"; this.jobsView.Content = null; this.jobsView.Location = new System.Drawing.Point(4, 4); this.jobsView.Name = "jobsView"; this.jobsView.ReadOnly = false; this.jobsView.Size = new System.Drawing.Size(638, 411); this.jobsView.TabIndex = 0; // // tabLog // this.tabLog.Controls.Add(this.logView); this.tabLog.Location = new System.Drawing.Point(4, 22); this.tabLog.Name = "tabLog"; this.tabLog.Padding = new System.Windows.Forms.Padding(3); this.tabLog.Size = new System.Drawing.Size(645, 418); this.tabLog.TabIndex = 1; this.tabLog.Text = "Log"; this.tabLog.UseVisualStyleBackColor = true; // // logView // this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.logView.Caption = "LogView: Displays logged messages from the slave core."; this.logView.Content = null; this.logView.Location = new System.Drawing.Point(7, 7); this.logView.Name = "logView"; this.logView.ReadOnly = false; this.logView.Size = new System.Drawing.Size(632, 405); this.logView.TabIndex = 0; // // tabAbout // this.tabAbout.Controls.Add(this.aboutView); this.tabAbout.Location = new System.Drawing.Point(4, 22); this.tabAbout.Name = "tabAbout"; this.tabAbout.Size = new System.Drawing.Size(645, 418); this.tabAbout.TabIndex = 2; this.tabAbout.Text = "About HeuristicLab Hive"; this.tabAbout.UseVisualStyleBackColor = true; // // aboutView // this.aboutView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.aboutView.Caption = "AboutView: Shows some information about HeuristicLab Hive"; this.aboutView.Content = null; this.aboutView.Location = new System.Drawing.Point(3, 3); this.aboutView.Name = "aboutView"; this.aboutView.ReadOnly = false; this.aboutView.Size = new System.Drawing.Size(639, 412); this.aboutView.TabIndex = 0; // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; this.closeToolStripMenuItem.Size = new System.Drawing.Size(209, 22); this.closeToolStripMenuItem.Text = "Close"; this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); // // showToolStripMenuItem // this.showToolStripMenuItem.Name = "showToolStripMenuItem"; this.showToolStripMenuItem.Size = new System.Drawing.Size(209, 22); this.showToolStripMenuItem.Text = "Show"; this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click); // // notifyIcon // this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; this.notifyIcon.BalloonTipText = "A client for computing jobs sent from HeuristicLab Hive"; this.notifyIcon.BalloonTipTitle = "HeuristicLab Hive Slave"; this.notifyIcon.ContextMenuStrip = this.contextMenuNotifyIcon; this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon"))); this.notifyIcon.Text = "HeuristicLab Hive Slave"; this.notifyIcon.Visible = true; this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick); // // contextMenuNotifyIcon // this.contextMenuNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.homepageToolStripMenuItem, this.toolStripSeparator, this.showToolStripMenuItem, this.closeToolStripMenuItem}); this.contextMenuNotifyIcon.Name = "contextMenuNotifyIcon"; this.contextMenuNotifyIcon.Size = new System.Drawing.Size(210, 76); // // homepageToolStripMenuItem // this.homepageToolStripMenuItem.ForeColor = System.Drawing.Color.Blue; this.homepageToolStripMenuItem.Name = "homepageToolStripMenuItem"; this.homepageToolStripMenuItem.Size = new System.Drawing.Size(209, 22); this.homepageToolStripMenuItem.Text = "Visit dev.heuristiclab.com"; this.homepageToolStripMenuItem.Click += new System.EventHandler(this.homepageToolStripMenuItem_Click); // // toolStripSeparator // this.toolStripSeparator.Name = "toolStripSeparator"; this.toolStripSeparator.Size = new System.Drawing.Size(206, 6); // // SlaveMainViewBase // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.mainTabControl); this.Name = "SlaveMainViewBase"; this.Size = new System.Drawing.Size(653, 444); this.mainTabControl.ResumeLayout(false); this.tabJobs.ResumeLayout(false); this.tabLog.ResumeLayout(false); this.tabAbout.ResumeLayout(false); this.contextMenuNotifyIcon.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TabPage tabJobs; private JobsView jobsView; private System.Windows.Forms.TabPage tabLog; private LogView logView; private System.Windows.Forms.TabPage tabAbout; private AboutView aboutView; private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem; private System.Windows.Forms.NotifyIcon notifyIcon; private System.Windows.Forms.ContextMenuStrip contextMenuNotifyIcon; private System.Windows.Forms.ToolStripMenuItem homepageToolStripMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator; protected System.Windows.Forms.TabPage tabSlaveView; protected System.Windows.Forms.TabControl mainTabControl; } }