#region License Information /* HeuristicLab * Copyright (C) 2002-2010 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.Optimization.Views { partial class AlgorithmView { /// /// 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) { if (problemTypeSelectorDialog != null) problemTypeSelectorDialog.Dispose(); if (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.tabControl = new System.Windows.Forms.TabControl(); this.parametersTabPage = new System.Windows.Forms.TabPage(); this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView(); this.problemTabPage = new System.Windows.Forms.TabPage(); this.saveProblemButton = new System.Windows.Forms.Button(); this.openProblemButton = new System.Windows.Forms.Button(); this.newProblemButton = new System.Windows.Forms.Button(); this.problemViewHost = new HeuristicLab.Core.Views.ViewHost(); this.resultsTabPage = new System.Windows.Forms.TabPage(); this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView(); this.startButton = new System.Windows.Forms.Button(); this.stopButton = new System.Windows.Forms.Button(); this.resetButton = new System.Windows.Forms.Button(); this.executionTimeLabel = new System.Windows.Forms.Label(); this.executionTimeTextBox = new System.Windows.Forms.TextBox(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); this.tabControl.SuspendLayout(); this.parametersTabPage.SuspendLayout(); this.problemTabPage.SuspendLayout(); this.resultsTabPage.SuspendLayout(); this.SuspendLayout(); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); this.nameTextBox.Size = new System.Drawing.Size(607, 20); // // descriptionTextBox // this.descriptionTextBox.Size = new System.Drawing.Size(607, 20); // // tabControl // 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.parametersTabPage); this.tabControl.Controls.Add(this.problemTabPage); this.tabControl.Controls.Add(this.resultsTabPage); this.tabControl.Location = new System.Drawing.Point(0, 52); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(679, 400); this.tabControl.TabIndex = 4; // // parametersTabPage // this.parametersTabPage.Controls.Add(this.parameterCollectionView); this.parametersTabPage.Location = new System.Drawing.Point(4, 22); this.parametersTabPage.Name = "parametersTabPage"; this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3); this.parametersTabPage.Size = new System.Drawing.Size(671, 374); this.parametersTabPage.TabIndex = 0; this.parametersTabPage.Text = "Parameters"; this.parametersTabPage.UseVisualStyleBackColor = true; // // parameterCollectionView // this.parameterCollectionView.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.parameterCollectionView.Caption = "ParameterCollection"; this.parameterCollectionView.Content = null; this.parameterCollectionView.Location = new System.Drawing.Point(6, 6); this.parameterCollectionView.Name = "parameterCollectionView"; this.parameterCollectionView.Size = new System.Drawing.Size(659, 362); this.parameterCollectionView.TabIndex = 0; // // problemTabPage // this.problemTabPage.Controls.Add(this.saveProblemButton); this.problemTabPage.Controls.Add(this.openProblemButton); this.problemTabPage.Controls.Add(this.newProblemButton); this.problemTabPage.Controls.Add(this.problemViewHost); 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(671, 374); this.problemTabPage.TabIndex = 1; this.problemTabPage.Text = "Problem"; this.problemTabPage.UseVisualStyleBackColor = true; // // saveProblemButton // this.saveProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save; this.saveProblemButton.Location = new System.Drawing.Point(66, 6); this.saveProblemButton.Name = "saveProblemButton"; this.saveProblemButton.Size = new System.Drawing.Size(24, 24); this.saveProblemButton.TabIndex = 2; this.toolTip.SetToolTip(this.saveProblemButton, "Save Problem"); this.saveProblemButton.UseVisualStyleBackColor = true; this.saveProblemButton.Click += new System.EventHandler(this.saveProblemButton_Click); // // openProblemButton // this.openProblemButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.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.VS2008ImageLibrary.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); // // 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.Content = null; this.problemViewHost.Location = new System.Drawing.Point(6, 36); this.problemViewHost.Name = "problemViewHost"; this.problemViewHost.Size = new System.Drawing.Size(659, 332); this.problemViewHost.TabIndex = 3; this.problemViewHost.ViewType = null; // // resultsTabPage // this.resultsTabPage.Controls.Add(this.resultsView); this.resultsTabPage.Location = new System.Drawing.Point(4, 22); this.resultsTabPage.Name = "resultsTabPage"; this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3); this.resultsTabPage.Size = new System.Drawing.Size(671, 374); this.resultsTabPage.TabIndex = 2; this.resultsTabPage.Text = "Results"; this.resultsTabPage.UseVisualStyleBackColor = true; // // resultsView // this.resultsView.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.resultsView.Caption = "ResultsCollection"; this.resultsView.Content = null; this.resultsView.Location = new System.Drawing.Point(6, 6); this.resultsView.Name = "resultsView"; this.resultsView.Size = new System.Drawing.Size(659, 362); this.resultsView.TabIndex = 0; // // startButton // this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play; this.startButton.Location = new System.Drawing.Point(0, 458); this.startButton.Name = "startButton"; this.startButton.Size = new System.Drawing.Size(24, 24); this.startButton.TabIndex = 5; this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm"); this.startButton.UseVisualStyleBackColor = true; this.startButton.Click += new System.EventHandler(this.startButton_Click); // // stopButton // this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause; this.stopButton.Location = new System.Drawing.Point(30, 458); this.stopButton.Name = "stopButton"; this.stopButton.Size = new System.Drawing.Size(24, 24); this.stopButton.TabIndex = 6; this.toolTip.SetToolTip(this.stopButton, "Pause Algorithm"); this.stopButton.UseVisualStyleBackColor = true; this.stopButton.Click += new System.EventHandler(this.stopButton_Click); // // resetButton // this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart; this.resetButton.Location = new System.Drawing.Point(60, 458); this.resetButton.Name = "resetButton"; this.resetButton.Size = new System.Drawing.Size(24, 24); this.resetButton.TabIndex = 7; this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm"); this.resetButton.UseVisualStyleBackColor = true; this.resetButton.Click += new System.EventHandler(this.resetButton_Click); // // executionTimeLabel // this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.executionTimeLabel.AutoSize = true; this.executionTimeLabel.Location = new System.Drawing.Point(453, 465); this.executionTimeLabel.Name = "executionTimeLabel"; this.executionTimeLabel.Size = new System.Drawing.Size(83, 13); this.executionTimeLabel.TabIndex = 8; this.executionTimeLabel.Text = "&Execution Time:"; // // executionTimeTextBox // this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462); this.executionTimeTextBox.Name = "executionTimeTextBox"; this.executionTimeTextBox.ReadOnly = true; this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20); this.executionTimeTextBox.TabIndex = 9; // // openFileDialog // this.openFileDialog.DefaultExt = "hl"; this.openFileDialog.FileName = "Problem"; this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*"; this.openFileDialog.Title = "Open Problem"; // // saveFileDialog // this.saveFileDialog.DefaultExt = "hl"; this.saveFileDialog.FileName = "Problem"; this.saveFileDialog.Filter = "Uncompressed HeuristicLab Files|*.hl|HeuristicLab Files|*.hl|All Files|*.*"; this.saveFileDialog.FilterIndex = 2; this.saveFileDialog.Title = "Save Problem"; // // AlgorithmView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.tabControl); this.Controls.Add(this.startButton); this.Controls.Add(this.stopButton); this.Controls.Add(this.executionTimeTextBox); this.Controls.Add(this.executionTimeLabel); this.Controls.Add(this.resetButton); this.Name = "AlgorithmView"; this.Size = new System.Drawing.Size(679, 482); this.Controls.SetChildIndex(this.resetButton, 0); this.Controls.SetChildIndex(this.executionTimeLabel, 0); this.Controls.SetChildIndex(this.executionTimeTextBox, 0); this.Controls.SetChildIndex(this.stopButton, 0); this.Controls.SetChildIndex(this.startButton, 0); this.Controls.SetChildIndex(this.tabControl, 0); this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.descriptionLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.descriptionTextBox, 0); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.tabControl.ResumeLayout(false); this.parametersTabPage.ResumeLayout(false); this.problemTabPage.ResumeLayout(false); this.resultsTabPage.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion protected System.Windows.Forms.TabControl tabControl; protected System.Windows.Forms.TabPage parametersTabPage; protected System.Windows.Forms.TabPage problemTabPage; protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView; protected HeuristicLab.Core.Views.ViewHost problemViewHost; protected System.Windows.Forms.Button newProblemButton; protected System.Windows.Forms.Button saveProblemButton; protected System.Windows.Forms.Button openProblemButton; protected System.Windows.Forms.Button startButton; protected System.Windows.Forms.Button stopButton; protected System.Windows.Forms.Button resetButton; protected System.Windows.Forms.Label executionTimeLabel; protected System.Windows.Forms.TextBox executionTimeTextBox; protected System.Windows.Forms.OpenFileDialog openFileDialog; protected System.Windows.Forms.SaveFileDialog saveFileDialog; protected System.Windows.Forms.TabPage resultsTabPage; protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView; } }