[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15584] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.Clients.OKB.RunCreation {
|
---|
[8055] | 23 | partial class OKBExperimentUploadView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
[13195] | 37 | DisposeSpecific();
|
---|
[8055] | 38 | base.Dispose(disposing);
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | #region Component Designer generated code
|
---|
| 42 |
|
---|
| 43 | /// <summary>
|
---|
| 44 | /// Required method for Designer support - do not modify
|
---|
| 45 | /// the contents of this method with the code editor.
|
---|
| 46 | /// </summary>
|
---|
| 47 | private void InitializeComponent() {
|
---|
| 48 | this.components = new System.ComponentModel.Container();
|
---|
| 49 | this.btnUpload = new System.Windows.Forms.Button();
|
---|
| 50 | this.dataGridView = new System.Windows.Forms.DataGridView();
|
---|
[13195] | 51 | this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 52 | this.setColumnToThisValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 53 | this.clearButton = new System.Windows.Forms.Button();
|
---|
[8055] | 54 | this.RunNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 55 | this.AlgorithmNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 56 | this.AlgorithmTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 57 | this.OKBAlgorithmColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
|
---|
| 58 | this.ProblemNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 59 | this.ProblemTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
---|
| 60 | this.OKBProblemColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
|
---|
[13195] | 61 | this.UploadColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
---|
[8055] | 62 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
---|
| 63 | this.contextMenu.SuspendLayout();
|
---|
| 64 | this.SuspendLayout();
|
---|
| 65 | //
|
---|
| 66 | // btnUpload
|
---|
| 67 | //
|
---|
| 68 | this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 69 | this.btnUpload.Location = new System.Drawing.Point(4, 200);
|
---|
| 70 | this.btnUpload.Name = "btnUpload";
|
---|
| 71 | this.btnUpload.Size = new System.Drawing.Size(89, 23);
|
---|
| 72 | this.btnUpload.TabIndex = 1;
|
---|
| 73 | this.btnUpload.Text = "Upload Runs";
|
---|
| 74 | this.btnUpload.UseVisualStyleBackColor = true;
|
---|
| 75 | this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
|
---|
| 76 | //
|
---|
| 77 | // dataGridView
|
---|
| 78 | //
|
---|
| 79 | this.dataGridView.AllowDrop = true;
|
---|
| 80 | this.dataGridView.AllowUserToAddRows = false;
|
---|
| 81 | this.dataGridView.AllowUserToDeleteRows = false;
|
---|
| 82 | this.dataGridView.AllowUserToOrderColumns = true;
|
---|
| 83 | this.dataGridView.AllowUserToResizeRows = false;
|
---|
[13195] | 84 | this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 85 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 86 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[8055] | 87 | this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
---|
| 88 | this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
---|
| 89 | this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
---|
| 90 | this.RunNameColumn,
|
---|
| 91 | this.AlgorithmNameColumn,
|
---|
| 92 | this.AlgorithmTypeColumn,
|
---|
| 93 | this.OKBAlgorithmColumn,
|
---|
| 94 | this.ProblemNameColumn,
|
---|
| 95 | this.ProblemTypeColumn,
|
---|
[13195] | 96 | this.OKBProblemColumn,
|
---|
| 97 | this.UploadColumn});
|
---|
[8055] | 98 | this.dataGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
|
---|
| 99 | this.dataGridView.Location = new System.Drawing.Point(3, 3);
|
---|
| 100 | this.dataGridView.Name = "dataGridView";
|
---|
| 101 | this.dataGridView.Size = new System.Drawing.Size(460, 191);
|
---|
| 102 | this.dataGridView.TabIndex = 2;
|
---|
| 103 | this.dataGridView.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView_CellMouseClick);
|
---|
| 104 | this.dataGridView.DragDrop += new System.Windows.Forms.DragEventHandler(this.dataGridView_DragDrop);
|
---|
| 105 | this.dataGridView.DragEnter += new System.Windows.Forms.DragEventHandler(this.dataGridView_DragEnter);
|
---|
| 106 | //
|
---|
[13195] | 107 | // contextMenu
|
---|
| 108 | //
|
---|
| 109 | this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 110 | this.setColumnToThisValueToolStripMenuItem});
|
---|
| 111 | this.contextMenu.Name = "contextMenu";
|
---|
| 112 | this.contextMenu.Size = new System.Drawing.Size(202, 26);
|
---|
| 113 | //
|
---|
| 114 | // setColumnToThisValueToolStripMenuItem
|
---|
| 115 | //
|
---|
| 116 | this.setColumnToThisValueToolStripMenuItem.Name = "setColumnToThisValueToolStripMenuItem";
|
---|
| 117 | this.setColumnToThisValueToolStripMenuItem.Size = new System.Drawing.Size(201, 22);
|
---|
| 118 | this.setColumnToThisValueToolStripMenuItem.Text = "Set column to this value";
|
---|
| 119 | this.setColumnToThisValueToolStripMenuItem.Click += new System.EventHandler(this.setColumnToThisValueToolStripMenuItem_Click);
|
---|
| 120 | //
|
---|
| 121 | // clearButton
|
---|
| 122 | //
|
---|
| 123 | this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 124 | this.clearButton.Location = new System.Drawing.Point(387, 199);
|
---|
| 125 | this.clearButton.Name = "clearButton";
|
---|
| 126 | this.clearButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 127 | this.clearButton.TabIndex = 3;
|
---|
| 128 | this.clearButton.Text = "Clear Runs";
|
---|
| 129 | this.clearButton.UseVisualStyleBackColor = true;
|
---|
| 130 | this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
|
---|
| 131 | //
|
---|
[8055] | 132 | // RunNameColumn
|
---|
| 133 | //
|
---|
| 134 | this.RunNameColumn.HeaderText = "Run Name";
|
---|
| 135 | this.RunNameColumn.Name = "RunNameColumn";
|
---|
| 136 | this.RunNameColumn.ReadOnly = true;
|
---|
| 137 | //
|
---|
| 138 | // AlgorithmNameColumn
|
---|
| 139 | //
|
---|
| 140 | this.AlgorithmNameColumn.HeaderText = "Algorithm Name";
|
---|
| 141 | this.AlgorithmNameColumn.Name = "AlgorithmNameColumn";
|
---|
| 142 | this.AlgorithmNameColumn.ReadOnly = true;
|
---|
| 143 | //
|
---|
| 144 | // AlgorithmTypeColumn
|
---|
| 145 | //
|
---|
| 146 | this.AlgorithmTypeColumn.HeaderText = "Algorithm Type";
|
---|
| 147 | this.AlgorithmTypeColumn.Name = "AlgorithmTypeColumn";
|
---|
| 148 | this.AlgorithmTypeColumn.ReadOnly = true;
|
---|
| 149 | //
|
---|
| 150 | // OKBAlgorithmColumn
|
---|
| 151 | //
|
---|
| 152 | this.OKBAlgorithmColumn.HeaderText = "OKB Algorithm";
|
---|
| 153 | this.OKBAlgorithmColumn.Name = "OKBAlgorithmColumn";
|
---|
| 154 | //
|
---|
| 155 | // ProblemNameColumn
|
---|
| 156 | //
|
---|
| 157 | this.ProblemNameColumn.HeaderText = "Problem Name";
|
---|
| 158 | this.ProblemNameColumn.Name = "ProblemNameColumn";
|
---|
| 159 | this.ProblemNameColumn.ReadOnly = true;
|
---|
| 160 | this.ProblemNameColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
---|
| 161 | this.ProblemNameColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
---|
| 162 | //
|
---|
| 163 | // ProblemTypeColumn
|
---|
| 164 | //
|
---|
| 165 | this.ProblemTypeColumn.HeaderText = "Problem Type";
|
---|
| 166 | this.ProblemTypeColumn.Name = "ProblemTypeColumn";
|
---|
| 167 | this.ProblemTypeColumn.ReadOnly = true;
|
---|
| 168 | this.ProblemTypeColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
---|
| 169 | this.ProblemTypeColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
---|
| 170 | //
|
---|
| 171 | // OKBProblemColumn
|
---|
| 172 | //
|
---|
| 173 | this.OKBProblemColumn.HeaderText = "OKB Problem";
|
---|
| 174 | this.OKBProblemColumn.Name = "OKBProblemColumn";
|
---|
| 175 | //
|
---|
[13195] | 176 | // UploadColumn
|
---|
[8055] | 177 | //
|
---|
[13195] | 178 | this.UploadColumn.HeaderText = "Upload?";
|
---|
| 179 | this.UploadColumn.Name = "UploadColumn";
|
---|
| 180 | this.UploadColumn.ToolTipText = "Whether the run should be uploaded or not.";
|
---|
[8055] | 181 | //
|
---|
| 182 | // OKBExperimentUploadView
|
---|
| 183 | //
|
---|
| 184 | this.AllowDrop = true;
|
---|
| 185 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 186 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 187 | this.Controls.Add(this.clearButton);
|
---|
| 188 | this.Controls.Add(this.dataGridView);
|
---|
| 189 | this.Controls.Add(this.btnUpload);
|
---|
| 190 | this.Name = "OKBExperimentUploadView";
|
---|
| 191 | this.Size = new System.Drawing.Size(466, 229);
|
---|
| 192 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
---|
| 193 | this.contextMenu.ResumeLayout(false);
|
---|
| 194 | this.ResumeLayout(false);
|
---|
| 195 |
|
---|
| 196 | }
|
---|
| 197 |
|
---|
| 198 | #endregion
|
---|
| 199 |
|
---|
| 200 | private System.Windows.Forms.Button btnUpload;
|
---|
| 201 | private System.Windows.Forms.DataGridView dataGridView;
|
---|
[13195] | 202 | private System.Windows.Forms.ContextMenuStrip contextMenu;
|
---|
| 203 | private System.Windows.Forms.ToolStripMenuItem setColumnToThisValueToolStripMenuItem;
|
---|
| 204 | private System.Windows.Forms.Button clearButton;
|
---|
[8055] | 205 | private System.Windows.Forms.DataGridViewTextBoxColumn RunNameColumn;
|
---|
| 206 | private System.Windows.Forms.DataGridViewTextBoxColumn AlgorithmNameColumn;
|
---|
| 207 | private System.Windows.Forms.DataGridViewTextBoxColumn AlgorithmTypeColumn;
|
---|
| 208 | private System.Windows.Forms.DataGridViewComboBoxColumn OKBAlgorithmColumn;
|
---|
| 209 | private System.Windows.Forms.DataGridViewTextBoxColumn ProblemNameColumn;
|
---|
| 210 | private System.Windows.Forms.DataGridViewTextBoxColumn ProblemTypeColumn;
|
---|
| 211 | private System.Windows.Forms.DataGridViewComboBoxColumn OKBProblemColumn;
|
---|
[13195] | 212 | private System.Windows.Forms.DataGridViewCheckBoxColumn UploadColumn;
|
---|
[8055] | 213 | }
|
---|
| 214 | }
|
---|