#region License Information /* HeuristicLab * Copyright (C) 2002-2012 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.OptimizationExpertSystem.Views { partial class ExpertSystemView { /// /// 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() { this.evaluationsLimitabel = new System.Windows.Forms.Label(); this.maxEvaluationsTextBox = new System.Windows.Forms.TextBox(); this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl(); this.problemTabPage = new System.Windows.Forms.TabPage(); this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.openProblemButton = new System.Windows.Forms.Button(); this.newProblemButton = new System.Windows.Forms.Button(); this.algorithmTabPage = new System.Windows.Forms.TabPage(); this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.algorithmSuggestionLabel = new System.Windows.Forms.Label(); this.suggestedInstancesComboBox = new System.Windows.Forms.ComboBox(); this.runsTabPage = new System.Windows.Forms.TabPage(); this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView(); this.okbTabPage = new System.Windows.Forms.TabPage(); this.algorithmInstancesViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.problemInstancesTabPage = new System.Windows.Forms.TabPage(); this.problemInstancesView = new HeuristicLab.Optimization.Views.RunCollectionBubbleChartView(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.tabControl.SuspendLayout(); this.problemTabPage.SuspendLayout(); this.algorithmTabPage.SuspendLayout(); this.runsTabPage.SuspendLayout(); this.okbTabPage.SuspendLayout(); this.problemInstancesTabPage.SuspendLayout(); this.SuspendLayout(); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); this.nameTextBox.Location = new System.Drawing.Point(75, 0); this.nameTextBox.Size = new System.Drawing.Size(449, 20); // // infoLabel // this.infoLabel.Location = new System.Drawing.Point(530, 3); // // evaluationsLimitabel // this.evaluationsLimitabel.AutoSize = true; this.evaluationsLimitabel.Location = new System.Drawing.Point(3, 29); this.evaluationsLimitabel.Name = "evaluationsLimitabel"; this.evaluationsLimitabel.Size = new System.Drawing.Size(66, 13); this.evaluationsLimitabel.TabIndex = 5; this.evaluationsLimitabel.Text = "Budget (FE):"; // // maxEvaluationsTextBox // this.maxEvaluationsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.maxEvaluationsTextBox.Location = new System.Drawing.Point(75, 26); this.maxEvaluationsTextBox.Name = "maxEvaluationsTextBox"; this.maxEvaluationsTextBox.Size = new System.Drawing.Size(449, 20); this.maxEvaluationsTextBox.TabIndex = 6; this.maxEvaluationsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxEvaluationsTextBox_Validating); // // 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.problemTabPage); this.tabControl.Controls.Add(this.algorithmTabPage); this.tabControl.Controls.Add(this.runsTabPage); this.tabControl.Controls.Add(this.okbTabPage); this.tabControl.Controls.Add(this.problemInstancesTabPage); this.tabControl.Location = new System.Drawing.Point(0, 52); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(546, 361); this.tabControl.TabIndex = 17; // // problemTabPage // this.problemTabPage.AllowDrop = true; this.problemTabPage.Controls.Add(this.problemViewHost); this.problemTabPage.Controls.Add(this.openProblemButton); this.problemTabPage.Controls.Add(this.newProblemButton); this.problemTabPage.Location = new System.Drawing.Point(4, 22); this.problemTabPage.Name = "problemTabPage"; this.problemTabPage.Padding = new System.Windows.Forms.Padding(3); this.problemTabPage.Size = new System.Drawing.Size(538, 335); this.problemTabPage.TabIndex = 1; this.problemTabPage.Text = "Problem"; this.problemTabPage.UseVisualStyleBackColor = true; this.problemTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragDrop); this.problemTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver); this.problemTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver); // // problemViewHost // this.problemViewHost.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.problemViewHost.Caption = "View"; this.problemViewHost.Content = null; this.problemViewHost.Enabled = false; this.problemViewHost.Location = new System.Drawing.Point(6, 36); this.problemViewHost.Name = "problemViewHost"; this.problemViewHost.ReadOnly = false; this.problemViewHost.Size = new System.Drawing.Size(526, 293); this.problemViewHost.TabIndex = 2; this.problemViewHost.ViewsLabelVisible = true; this.problemViewHost.ViewType = null; // // openProblemButton // this.openProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open; this.openProblemButton.Location = new System.Drawing.Point(36, 6); this.openProblemButton.Name = "openProblemButton"; this.openProblemButton.Size = new System.Drawing.Size(24, 24); this.openProblemButton.TabIndex = 1; this.toolTip.SetToolTip(this.openProblemButton, "Open Problem"); this.openProblemButton.UseVisualStyleBackColor = true; this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click); // // newProblemButton // this.newProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument; this.newProblemButton.Location = new System.Drawing.Point(6, 6); this.newProblemButton.Name = "newProblemButton"; this.newProblemButton.Size = new System.Drawing.Size(24, 24); this.newProblemButton.TabIndex = 0; this.toolTip.SetToolTip(this.newProblemButton, "New Problem"); this.newProblemButton.UseVisualStyleBackColor = true; this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click); // // algorithmTabPage // this.algorithmTabPage.Controls.Add(this.algorithmViewHost); this.algorithmTabPage.Controls.Add(this.algorithmSuggestionLabel); this.algorithmTabPage.Controls.Add(this.suggestedInstancesComboBox); 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(538, 335); this.algorithmTabPage.TabIndex = 4; this.algorithmTabPage.Text = "Algorithm"; this.algorithmTabPage.UseVisualStyleBackColor = true; // // algorithmViewHost // this.algorithmViewHost.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.algorithmViewHost.Caption = "View"; this.algorithmViewHost.Content = null; this.algorithmViewHost.Enabled = false; this.algorithmViewHost.Location = new System.Drawing.Point(6, 36); this.algorithmViewHost.Name = "algorithmViewHost"; this.algorithmViewHost.ReadOnly = false; this.algorithmViewHost.Size = new System.Drawing.Size(526, 293); this.algorithmViewHost.TabIndex = 2; this.algorithmViewHost.ViewsLabelVisible = true; this.algorithmViewHost.ViewType = null; // // algorithmSuggestionLabel // this.algorithmSuggestionLabel.AutoSize = true; this.algorithmSuggestionLabel.Location = new System.Drawing.Point(6, 9); this.algorithmSuggestionLabel.Name = "algorithmSuggestionLabel"; this.algorithmSuggestionLabel.Size = new System.Drawing.Size(156, 13); this.algorithmSuggestionLabel.TabIndex = 1; this.algorithmSuggestionLabel.Text = "Suggested Algorithm Instances:"; // // suggestedInstancesComboBox // this.suggestedInstancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.suggestedInstancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.suggestedInstancesComboBox.FormattingEnabled = true; this.suggestedInstancesComboBox.Location = new System.Drawing.Point(178, 6); this.suggestedInstancesComboBox.Name = "suggestedInstancesComboBox"; this.suggestedInstancesComboBox.Size = new System.Drawing.Size(354, 21); this.suggestedInstancesComboBox.TabIndex = 0; this.suggestedInstancesComboBox.SelectedIndexChanged += new System.EventHandler(this.suggestedInstancesComboBox_SelectedIndexChanged); // // runsTabPage // this.runsTabPage.Controls.Add(this.runsView); this.runsTabPage.Location = new System.Drawing.Point(4, 22); this.runsTabPage.Name = "runsTabPage"; this.runsTabPage.Padding = new System.Windows.Forms.Padding(3); this.runsTabPage.Size = new System.Drawing.Size(538, 335); this.runsTabPage.TabIndex = 3; this.runsTabPage.Text = "Runs"; this.runsTabPage.UseVisualStyleBackColor = true; // // runsView // this.runsView.Caption = "RunCollection View"; this.runsView.Content = null; this.runsView.Dock = System.Windows.Forms.DockStyle.Fill; this.runsView.Location = new System.Drawing.Point(3, 3); this.runsView.Name = "runsView"; this.runsView.ReadOnly = false; this.runsView.Size = new System.Drawing.Size(532, 329); this.runsView.TabIndex = 1; // // okbTabPage // this.okbTabPage.Controls.Add(this.algorithmInstancesViewHost); this.okbTabPage.Location = new System.Drawing.Point(4, 22); this.okbTabPage.Name = "okbTabPage"; this.okbTabPage.Padding = new System.Windows.Forms.Padding(3); this.okbTabPage.Size = new System.Drawing.Size(538, 335); this.okbTabPage.TabIndex = 5; this.okbTabPage.Text = "Knowledge Base"; this.okbTabPage.UseVisualStyleBackColor = true; // // algorithmInstancesViewHost // this.algorithmInstancesViewHost.Caption = "View"; this.algorithmInstancesViewHost.Content = null; this.algorithmInstancesViewHost.Dock = System.Windows.Forms.DockStyle.Fill; this.algorithmInstancesViewHost.Enabled = false; this.algorithmInstancesViewHost.Location = new System.Drawing.Point(3, 3); this.algorithmInstancesViewHost.Name = "algorithmInstancesViewHost"; this.algorithmInstancesViewHost.ReadOnly = false; this.algorithmInstancesViewHost.Size = new System.Drawing.Size(532, 329); this.algorithmInstancesViewHost.TabIndex = 0; this.algorithmInstancesViewHost.ViewsLabelVisible = true; this.algorithmInstancesViewHost.ViewType = null; // // problemInstancesTabPage // this.problemInstancesTabPage.Controls.Add(this.problemInstancesView); this.problemInstancesTabPage.Location = new System.Drawing.Point(4, 22); this.problemInstancesTabPage.Name = "problemInstancesTabPage"; this.problemInstancesTabPage.Padding = new System.Windows.Forms.Padding(3); this.problemInstancesTabPage.Size = new System.Drawing.Size(538, 335); this.problemInstancesTabPage.TabIndex = 6; this.problemInstancesTabPage.Text = "Problem Instances"; this.problemInstancesTabPage.UseVisualStyleBackColor = true; // // problemInstancesView // this.problemInstancesView.BackColor = System.Drawing.SystemColors.Window; this.problemInstancesView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.problemInstancesView.Caption = "Bubble Chart"; this.problemInstancesView.Content = null; this.problemInstancesView.Dock = System.Windows.Forms.DockStyle.Fill; this.problemInstancesView.Location = new System.Drawing.Point(3, 3); this.problemInstancesView.Name = "problemInstancesView"; this.problemInstancesView.ReadOnly = false; this.problemInstancesView.Size = new System.Drawing.Size(532, 329); this.problemInstancesView.TabIndex = 0; // // openFileDialog // this.openFileDialog.DefaultExt = "hl"; this.openFileDialog.FileName = "Optimizer"; this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*"; this.openFileDialog.Title = "Open Optimizer"; // // ExpertSystemView // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.Controls.Add(this.tabControl); this.Controls.Add(this.evaluationsLimitabel); this.Controls.Add(this.maxEvaluationsTextBox); this.Name = "ExpertSystemView"; this.Size = new System.Drawing.Size(549, 413); this.Controls.SetChildIndex(this.maxEvaluationsTextBox, 0); this.Controls.SetChildIndex(this.evaluationsLimitabel, 0); this.Controls.SetChildIndex(this.tabControl, 0); this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.infoLabel, 0); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.tabControl.ResumeLayout(false); this.problemTabPage.ResumeLayout(false); this.algorithmTabPage.ResumeLayout(false); this.algorithmTabPage.PerformLayout(); this.runsTabPage.ResumeLayout(false); this.okbTabPage.ResumeLayout(false); this.problemInstancesTabPage.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label evaluationsLimitabel; private System.Windows.Forms.TextBox maxEvaluationsTextBox; private MainForm.WindowsForms.DragOverTabControl tabControl; private System.Windows.Forms.TabPage runsTabPage; private HeuristicLab.Optimization.Views.RunCollectionView runsView; private System.Windows.Forms.OpenFileDialog openFileDialog; private System.Windows.Forms.TabPage problemTabPage; private MainForm.WindowsForms.ViewHost problemViewHost; private System.Windows.Forms.Button openProblemButton; private System.Windows.Forms.Button newProblemButton; private System.Windows.Forms.TabPage algorithmTabPage; private MainForm.WindowsForms.ViewHost algorithmViewHost; private System.Windows.Forms.Label algorithmSuggestionLabel; private System.Windows.Forms.ComboBox suggestedInstancesComboBox; private System.Windows.Forms.TabPage okbTabPage; private MainForm.WindowsForms.ViewHost algorithmInstancesViewHost; private System.Windows.Forms.TabPage problemInstancesTabPage; private Optimization.Views.RunCollectionBubbleChartView problemInstancesView; } }