#region License Information /* HeuristicLab * Copyright (C) 2002-2014 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.Networks.Views { partial class AlgorithmNodeView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; #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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlgorithmNodeView)); this.portCollectionView = new HeuristicLab.Core.Networks.Views.PortCollectionView(); this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl(); this.portsTabPage = new System.Windows.Forms.TabPage(); this.algorithmTabPage = new System.Windows.Forms.TabPage(); this.algorithmPanel = new System.Windows.Forms.Panel(); this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.clearAlgorithmButton = new System.Windows.Forms.Button(); this.setAlgorithmButton = new System.Windows.Forms.Button(); this.runsTabPage = new System.Windows.Forms.TabPage(); this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.tabControl.SuspendLayout(); this.portsTabPage.SuspendLayout(); this.algorithmTabPage.SuspendLayout(); this.algorithmPanel.SuspendLayout(); this.runsTabPage.SuspendLayout(); this.SuspendLayout(); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); // // portCollectionView // this.portCollectionView.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.portCollectionView.Caption = "PortCollection View"; this.portCollectionView.Content = null; this.portCollectionView.Location = new System.Drawing.Point(6, 6); this.portCollectionView.Name = "portCollectionView"; this.portCollectionView.ReadOnly = false; this.portCollectionView.ShowDetails = true; this.portCollectionView.Size = new System.Drawing.Size(625, 453); this.portCollectionView.TabIndex = 0; // // tabControl // this.tabControl.AllowDrop = true; this.tabControl.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.tabControl.Controls.Add(this.portsTabPage); this.tabControl.Controls.Add(this.algorithmTabPage); this.tabControl.Controls.Add(this.runsTabPage); this.tabControl.Location = new System.Drawing.Point(0, 26); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(645, 491); this.tabControl.TabIndex = 3; // // portsTabPage // this.portsTabPage.Controls.Add(this.portCollectionView); this.portsTabPage.Location = new System.Drawing.Point(4, 22); this.portsTabPage.Name = "portsTabPage"; this.portsTabPage.Padding = new System.Windows.Forms.Padding(3); this.portsTabPage.Size = new System.Drawing.Size(637, 465); this.portsTabPage.TabIndex = 0; this.portsTabPage.Text = "Ports"; this.portsTabPage.UseVisualStyleBackColor = true; // // algorithmTabPage // this.algorithmTabPage.Controls.Add(this.algorithmPanel); this.algorithmTabPage.Controls.Add(this.clearAlgorithmButton); this.algorithmTabPage.Controls.Add(this.setAlgorithmButton); this.algorithmTabPage.Location = new System.Drawing.Point(4, 22); this.algorithmTabPage.Name = "algorithmTabPage"; this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3); this.algorithmTabPage.Size = new System.Drawing.Size(637, 465); this.algorithmTabPage.TabIndex = 1; this.algorithmTabPage.Text = "Algorithm"; this.algorithmTabPage.UseVisualStyleBackColor = true; // // algorithmPanel // this.algorithmPanel.AllowDrop = true; this.algorithmPanel.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.algorithmPanel.Controls.Add(this.algorithmViewHost); this.algorithmPanel.Location = new System.Drawing.Point(6, 36); this.algorithmPanel.Name = "algorithmPanel"; this.algorithmPanel.Size = new System.Drawing.Size(625, 423); this.algorithmPanel.TabIndex = 2; this.algorithmPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragDrop); this.algorithmPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver); this.algorithmPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver); // // algorithmViewHost // this.algorithmViewHost.Caption = "View"; this.algorithmViewHost.Content = null; this.algorithmViewHost.Dock = System.Windows.Forms.DockStyle.Fill; this.algorithmViewHost.Enabled = false; this.algorithmViewHost.Location = new System.Drawing.Point(0, 0); this.algorithmViewHost.Name = "algorithmViewHost"; this.algorithmViewHost.ReadOnly = false; this.algorithmViewHost.Size = new System.Drawing.Size(625, 423); this.algorithmViewHost.TabIndex = 0; this.algorithmViewHost.ViewsLabelVisible = true; this.algorithmViewHost.ViewType = null; // // clearAlgorithmButton // this.clearAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove; this.clearAlgorithmButton.Location = new System.Drawing.Point(36, 6); this.clearAlgorithmButton.Name = "clearAlgorithmButton"; this.clearAlgorithmButton.Size = new System.Drawing.Size(24, 24); this.clearAlgorithmButton.TabIndex = 1; this.clearAlgorithmButton.UseVisualStyleBackColor = true; this.clearAlgorithmButton.Click += new System.EventHandler(this.clearAlgorithmButton_Click); // // setAlgorithmButton // this.setAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit; this.setAlgorithmButton.Location = new System.Drawing.Point(6, 6); this.setAlgorithmButton.Name = "setAlgorithmButton"; this.setAlgorithmButton.Size = new System.Drawing.Size(24, 24); this.setAlgorithmButton.TabIndex = 0; this.setAlgorithmButton.UseVisualStyleBackColor = true; this.setAlgorithmButton.Click += new System.EventHandler(this.setAlgorithmButton_Click); // // runsTabPage // this.runsTabPage.Controls.Add(this.runCollectionView); this.runsTabPage.Location = new System.Drawing.Point(4, 22); this.runsTabPage.Name = "runsTabPage"; this.runsTabPage.Size = new System.Drawing.Size(637, 465); this.runsTabPage.TabIndex = 2; this.runsTabPage.Text = "Runs"; this.runsTabPage.UseVisualStyleBackColor = true; // // runCollectionView // this.runCollectionView.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.runCollectionView.Caption = "RunCollection View"; this.runCollectionView.Content = null; this.runCollectionView.Location = new System.Drawing.Point(3, 3); this.runCollectionView.Name = "runCollectionView"; this.runCollectionView.ReadOnly = false; this.runCollectionView.Size = new System.Drawing.Size(631, 459); this.runCollectionView.TabIndex = 0; // // AlgorithmNodeView // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.Controls.Add(this.tabControl); this.Name = "AlgorithmNodeView"; this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.infoLabel, 0); this.Controls.SetChildIndex(this.tabControl, 0); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.tabControl.ResumeLayout(false); this.portsTabPage.ResumeLayout(false); this.algorithmTabPage.ResumeLayout(false); this.algorithmPanel.ResumeLayout(false); this.runsTabPage.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion protected HeuristicLab.Core.Networks.Views.PortCollectionView portCollectionView; protected System.Windows.Forms.TabPage portsTabPage; protected System.Windows.Forms.Button setAlgorithmButton; protected System.Windows.Forms.Button clearAlgorithmButton; protected System.Windows.Forms.Panel algorithmPanel; protected HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl; protected System.Windows.Forms.TabPage algorithmTabPage; protected MainForm.WindowsForms.ViewHost algorithmViewHost; protected System.Windows.Forms.TabPage runsTabPage; protected Optimization.Views.RunCollectionView runCollectionView; } }