#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.Clients.OKB {
partial class ProblemDataView {
///
/// 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 (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();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.groupBox = new System.Windows.Forms.GroupBox();
this.noViewAvailableLabel = new System.Windows.Forms.Label();
this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
this.dataTypeComboBox = new System.Windows.Forms.ComboBox();
this.newDataButton = new System.Windows.Forms.Button();
this.saveFileButton = new System.Windows.Forms.Button();
this.openFileButton = new System.Windows.Forms.Button();
this.fileTextBox = new System.Windows.Forms.TextBox();
this.refreshDataButton = new System.Windows.Forms.Button();
this.storeDataButton = new System.Windows.Forms.Button();
this.dataTypeLabel = new System.Windows.Forms.Label();
this.fileLabel = new System.Windows.Forms.Label();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.groupBox.SuspendLayout();
this.SuspendLayout();
//
// openFileDialog
//
this.openFileDialog.FileName = "data";
this.openFileDialog.Filter = "All Files (*.*)|*.*";
this.openFileDialog.Title = "Load Problem Data";
//
// saveFileDialog
//
this.saveFileDialog.FileName = "data";
this.saveFileDialog.Filter = "All Files (*.*)|*.*";
this.saveFileDialog.Title = "Save Problem Data";
//
// groupBox
//
this.groupBox.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.groupBox.Controls.Add(this.noViewAvailableLabel);
this.groupBox.Controls.Add(this.viewHost);
this.groupBox.Location = new System.Drawing.Point(0, 83);
this.groupBox.Name = "groupBox";
this.groupBox.Size = new System.Drawing.Size(633, 371);
this.groupBox.TabIndex = 19;
this.groupBox.TabStop = false;
this.groupBox.Text = "Data:";
//
// noViewAvailableLabel
//
this.noViewAvailableLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
this.noViewAvailableLabel.AutoSize = true;
this.noViewAvailableLabel.Location = new System.Drawing.Point(269, 179);
this.noViewAvailableLabel.Name = "noViewAvailableLabel";
this.noViewAvailableLabel.Size = new System.Drawing.Size(94, 13);
this.noViewAvailableLabel.TabIndex = 1;
this.noViewAvailableLabel.Text = "No view available.";
this.noViewAvailableLabel.Visible = false;
//
// viewHost
//
this.viewHost.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.viewHost.Caption = "View";
this.viewHost.Content = null;
this.viewHost.Enabled = true;
this.viewHost.Location = new System.Drawing.Point(6, 19);
this.viewHost.Name = "viewHost";
this.viewHost.ReadOnly = false;
this.viewHost.Size = new System.Drawing.Size(621, 346);
this.viewHost.TabIndex = 0;
this.viewHost.ViewType = null;
//
// dataTypeComboBox
//
this.dataTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.dataTypeComboBox.FormattingEnabled = true;
this.dataTypeComboBox.Location = new System.Drawing.Point(66, 30);
this.dataTypeComboBox.Name = "dataTypeComboBox";
this.dataTypeComboBox.Size = new System.Drawing.Size(567, 21);
this.dataTypeComboBox.TabIndex = 16;
this.dataTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTypeComboBox_SelectedIndexChanged);
//
// newDataButton
//
this.newDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
this.newDataButton.Location = new System.Drawing.Point(90, 0);
this.newDataButton.Name = "newDataButton";
this.newDataButton.Size = new System.Drawing.Size(24, 24);
this.newDataButton.TabIndex = 12;
this.toolTip.SetToolTip(this.newDataButton, "Create New Problem Data");
this.newDataButton.UseVisualStyleBackColor = true;
this.newDataButton.Click += new System.EventHandler(this.newDataButton_Click);
//
// saveFileButton
//
this.saveFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
this.saveFileButton.Location = new System.Drawing.Point(150, 0);
this.saveFileButton.Name = "saveFileButton";
this.saveFileButton.Size = new System.Drawing.Size(24, 24);
this.saveFileButton.TabIndex = 14;
this.toolTip.SetToolTip(this.saveFileButton, "Save Problem Data into File");
this.saveFileButton.UseVisualStyleBackColor = true;
this.saveFileButton.Click += new System.EventHandler(this.saveFileButton_Click);
//
// openFileButton
//
this.openFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
this.openFileButton.Location = new System.Drawing.Point(120, 0);
this.openFileButton.Name = "openFileButton";
this.openFileButton.Size = new System.Drawing.Size(24, 24);
this.openFileButton.TabIndex = 13;
this.toolTip.SetToolTip(this.openFileButton, "Load Problem Data from File");
this.openFileButton.UseVisualStyleBackColor = true;
this.openFileButton.Click += new System.EventHandler(this.openFileButton_Click);
//
// fileTextBox
//
this.fileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.fileTextBox.Location = new System.Drawing.Point(66, 57);
this.fileTextBox.Name = "fileTextBox";
this.fileTextBox.ReadOnly = true;
this.fileTextBox.Size = new System.Drawing.Size(567, 20);
this.fileTextBox.TabIndex = 18;
//
// refreshDataButton
//
this.refreshDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
this.refreshDataButton.Location = new System.Drawing.Point(0, 0);
this.refreshDataButton.Name = "refreshDataButton";
this.refreshDataButton.Size = new System.Drawing.Size(24, 24);
this.refreshDataButton.TabIndex = 10;
this.toolTip.SetToolTip(this.refreshDataButton, "Refresh Problem Data from OKB");
this.refreshDataButton.UseVisualStyleBackColor = true;
this.refreshDataButton.Click += new System.EventHandler(this.refreshDataButton_Click);
//
// storeDataButton
//
this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
this.storeDataButton.Location = new System.Drawing.Point(30, 0);
this.storeDataButton.Name = "storeDataButton";
this.storeDataButton.Size = new System.Drawing.Size(24, 24);
this.storeDataButton.TabIndex = 11;
this.toolTip.SetToolTip(this.storeDataButton, "Store Problem Data in OKB");
this.storeDataButton.UseVisualStyleBackColor = true;
this.storeDataButton.Click += new System.EventHandler(this.storeDataButton_Click);
//
// dataTypeLabel
//
this.dataTypeLabel.AutoSize = true;
this.dataTypeLabel.Location = new System.Drawing.Point(3, 33);
this.dataTypeLabel.Name = "dataTypeLabel";
this.dataTypeLabel.Size = new System.Drawing.Size(57, 13);
this.dataTypeLabel.TabIndex = 15;
this.dataTypeLabel.Text = "&DataType:";
//
// fileLabel
//
this.fileLabel.AutoSize = true;
this.fileLabel.Location = new System.Drawing.Point(3, 60);
this.fileLabel.Name = "fileLabel";
this.fileLabel.Size = new System.Drawing.Size(26, 13);
this.fileLabel.TabIndex = 17;
this.fileLabel.Text = "&File:";
//
// ProblemDataView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.Controls.Add(this.groupBox);
this.Controls.Add(this.dataTypeComboBox);
this.Controls.Add(this.newDataButton);
this.Controls.Add(this.saveFileButton);
this.Controls.Add(this.openFileButton);
this.Controls.Add(this.fileTextBox);
this.Controls.Add(this.refreshDataButton);
this.Controls.Add(this.storeDataButton);
this.Controls.Add(this.dataTypeLabel);
this.Controls.Add(this.fileLabel);
this.Name = "ProblemDataView";
this.Size = new System.Drawing.Size(633, 454);
this.groupBox.ResumeLayout(false);
this.groupBox.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolTip toolTip;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
private System.Windows.Forms.GroupBox groupBox;
private System.Windows.Forms.Label noViewAvailableLabel;
private MainForm.WindowsForms.ViewHost viewHost;
private System.Windows.Forms.ComboBox dataTypeComboBox;
private System.Windows.Forms.Button newDataButton;
private System.Windows.Forms.Button saveFileButton;
private System.Windows.Forms.Button openFileButton;
private System.Windows.Forms.TextBox fileTextBox;
private System.Windows.Forms.Button refreshDataButton;
private System.Windows.Forms.Button storeDataButton;
private System.Windows.Forms.Label dataTypeLabel;
private System.Windows.Forms.Label fileLabel;
}
}