[4426] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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 {
|
---|
| 23 | partial class AdministratorView {
|
---|
| 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) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
[4441] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[4466] | 48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AdministratorView));
|
---|
[4426] | 49 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
[4441] | 50 | this.platformsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 51 | this.platformCollectionView = new HeuristicLab.Clients.OKB.PlatformCollectionView();
|
---|
[4426] | 52 | this.algorithmClassesTabPage = new System.Windows.Forms.TabPage();
|
---|
| 53 | this.algorithmClassCollectionView = new HeuristicLab.Clients.OKB.AlgorithmClassCollectionView();
|
---|
| 54 | this.algorithmsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 55 | this.algorithmCollectionView = new HeuristicLab.Clients.OKB.AlgorithmCollectionView();
|
---|
[4466] | 56 | this.dataTypesTabPage = new System.Windows.Forms.TabPage();
|
---|
[4441] | 57 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
| 58 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[4466] | 59 | this.dataTypeCollectionView = new HeuristicLab.Clients.OKB.DataTypeCollectionView();
|
---|
[4426] | 60 | this.tabControl.SuspendLayout();
|
---|
[4441] | 61 | this.platformsTabPage.SuspendLayout();
|
---|
[4426] | 62 | this.algorithmClassesTabPage.SuspendLayout();
|
---|
| 63 | this.algorithmsTabPage.SuspendLayout();
|
---|
[4466] | 64 | this.dataTypesTabPage.SuspendLayout();
|
---|
[4426] | 65 | this.SuspendLayout();
|
---|
| 66 | //
|
---|
| 67 | // tabControl
|
---|
| 68 | //
|
---|
| 69 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 70 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 71 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4441] | 72 | this.tabControl.Controls.Add(this.platformsTabPage);
|
---|
[4426] | 73 | this.tabControl.Controls.Add(this.algorithmClassesTabPage);
|
---|
| 74 | this.tabControl.Controls.Add(this.algorithmsTabPage);
|
---|
[4466] | 75 | this.tabControl.Controls.Add(this.dataTypesTabPage);
|
---|
[4426] | 76 | this.tabControl.Location = new System.Drawing.Point(0, 29);
|
---|
| 77 | this.tabControl.Name = "tabControl";
|
---|
| 78 | this.tabControl.SelectedIndex = 0;
|
---|
| 79 | this.tabControl.Size = new System.Drawing.Size(727, 406);
|
---|
[4441] | 80 | this.tabControl.TabIndex = 1;
|
---|
[4426] | 81 | //
|
---|
[4441] | 82 | // platformsTabPage
|
---|
| 83 | //
|
---|
| 84 | this.platformsTabPage.Controls.Add(this.platformCollectionView);
|
---|
| 85 | this.platformsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 86 | this.platformsTabPage.Name = "platformsTabPage";
|
---|
| 87 | this.platformsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 88 | this.platformsTabPage.Size = new System.Drawing.Size(719, 380);
|
---|
| 89 | this.platformsTabPage.TabIndex = 2;
|
---|
| 90 | this.platformsTabPage.Text = "Platforms";
|
---|
| 91 | this.platformsTabPage.UseVisualStyleBackColor = true;
|
---|
| 92 | //
|
---|
| 93 | // platformCollectionView
|
---|
| 94 | //
|
---|
| 95 | this.platformCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 96 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 97 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 98 | this.platformCollectionView.Caption = "PlatformCollection View";
|
---|
| 99 | this.platformCollectionView.Content = null;
|
---|
| 100 | this.platformCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 101 | this.platformCollectionView.Name = "platformCollectionView";
|
---|
| 102 | this.platformCollectionView.ReadOnly = false;
|
---|
| 103 | this.platformCollectionView.Size = new System.Drawing.Size(707, 368);
|
---|
| 104 | this.platformCollectionView.TabIndex = 0;
|
---|
| 105 | //
|
---|
[4426] | 106 | // algorithmClassesTabPage
|
---|
| 107 | //
|
---|
| 108 | this.algorithmClassesTabPage.Controls.Add(this.algorithmClassCollectionView);
|
---|
| 109 | this.algorithmClassesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 110 | this.algorithmClassesTabPage.Name = "algorithmClassesTabPage";
|
---|
| 111 | this.algorithmClassesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 112 | this.algorithmClassesTabPage.Size = new System.Drawing.Size(719, 380);
|
---|
| 113 | this.algorithmClassesTabPage.TabIndex = 0;
|
---|
| 114 | this.algorithmClassesTabPage.Text = "Algorithm Classes";
|
---|
| 115 | this.algorithmClassesTabPage.UseVisualStyleBackColor = true;
|
---|
| 116 | //
|
---|
| 117 | // algorithmClassCollectionView
|
---|
| 118 | //
|
---|
| 119 | this.algorithmClassCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 120 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 121 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 122 | this.algorithmClassCollectionView.Caption = "AlgorithmClassCollection View";
|
---|
| 123 | this.algorithmClassCollectionView.Content = null;
|
---|
| 124 | this.algorithmClassCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 125 | this.algorithmClassCollectionView.Name = "algorithmClassCollectionView";
|
---|
| 126 | this.algorithmClassCollectionView.ReadOnly = false;
|
---|
| 127 | this.algorithmClassCollectionView.Size = new System.Drawing.Size(707, 368);
|
---|
[4441] | 128 | this.algorithmClassCollectionView.TabIndex = 0;
|
---|
[4426] | 129 | //
|
---|
| 130 | // algorithmsTabPage
|
---|
| 131 | //
|
---|
| 132 | this.algorithmsTabPage.Controls.Add(this.algorithmCollectionView);
|
---|
| 133 | this.algorithmsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 134 | this.algorithmsTabPage.Name = "algorithmsTabPage";
|
---|
| 135 | this.algorithmsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 136 | this.algorithmsTabPage.Size = new System.Drawing.Size(719, 380);
|
---|
| 137 | this.algorithmsTabPage.TabIndex = 1;
|
---|
| 138 | this.algorithmsTabPage.Text = "Algorithms";
|
---|
| 139 | this.algorithmsTabPage.UseVisualStyleBackColor = true;
|
---|
| 140 | //
|
---|
| 141 | // algorithmCollectionView
|
---|
| 142 | //
|
---|
| 143 | this.algorithmCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 144 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 145 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 146 | this.algorithmCollectionView.Caption = "AlgorithmCollection View";
|
---|
| 147 | this.algorithmCollectionView.Content = null;
|
---|
| 148 | this.algorithmCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 149 | this.algorithmCollectionView.Name = "algorithmCollectionView";
|
---|
| 150 | this.algorithmCollectionView.ReadOnly = false;
|
---|
| 151 | this.algorithmCollectionView.Size = new System.Drawing.Size(707, 368);
|
---|
[4441] | 152 | this.algorithmCollectionView.TabIndex = 0;
|
---|
[4426] | 153 | //
|
---|
[4466] | 154 | // dataTypesTabPage
|
---|
| 155 | //
|
---|
| 156 | this.dataTypesTabPage.Controls.Add(this.dataTypeCollectionView);
|
---|
| 157 | this.dataTypesTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 158 | this.dataTypesTabPage.Name = "dataTypesTabPage";
|
---|
| 159 | this.dataTypesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 160 | this.dataTypesTabPage.Size = new System.Drawing.Size(719, 380);
|
---|
| 161 | this.dataTypesTabPage.TabIndex = 3;
|
---|
| 162 | this.dataTypesTabPage.Text = "Data Types";
|
---|
| 163 | this.dataTypesTabPage.UseVisualStyleBackColor = true;
|
---|
| 164 | //
|
---|
[4441] | 165 | // refreshButton
|
---|
| 166 | //
|
---|
[4466] | 167 | this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));
|
---|
[4441] | 168 | this.refreshButton.Location = new System.Drawing.Point(0, 0);
|
---|
| 169 | this.refreshButton.Name = "refreshButton";
|
---|
| 170 | this.refreshButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 171 | this.refreshButton.TabIndex = 0;
|
---|
| 172 | this.toolTip.SetToolTip(this.refreshButton, "Refresh Data");
|
---|
| 173 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 174 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
| 175 | //
|
---|
[4466] | 176 | // dataTypeCollectionView
|
---|
| 177 | //
|
---|
| 178 | this.dataTypeCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 179 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 180 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 181 | this.dataTypeCollectionView.Caption = "DataTypeCollection View";
|
---|
| 182 | this.dataTypeCollectionView.Content = null;
|
---|
| 183 | this.dataTypeCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 184 | this.dataTypeCollectionView.Name = "dataTypeCollectionView";
|
---|
| 185 | this.dataTypeCollectionView.ReadOnly = false;
|
---|
| 186 | this.dataTypeCollectionView.Size = new System.Drawing.Size(707, 368);
|
---|
| 187 | this.dataTypeCollectionView.TabIndex = 0;
|
---|
| 188 | //
|
---|
[4426] | 189 | // AdministratorView
|
---|
| 190 | //
|
---|
| 191 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 192 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 193 | this.Controls.Add(this.tabControl);
|
---|
| 194 | this.Controls.Add(this.refreshButton);
|
---|
| 195 | this.Name = "AdministratorView";
|
---|
| 196 | this.Size = new System.Drawing.Size(727, 435);
|
---|
| 197 | this.tabControl.ResumeLayout(false);
|
---|
[4441] | 198 | this.platformsTabPage.ResumeLayout(false);
|
---|
[4426] | 199 | this.algorithmClassesTabPage.ResumeLayout(false);
|
---|
| 200 | this.algorithmsTabPage.ResumeLayout(false);
|
---|
[4466] | 201 | this.dataTypesTabPage.ResumeLayout(false);
|
---|
[4426] | 202 | this.ResumeLayout(false);
|
---|
| 203 |
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | #endregion
|
---|
| 207 |
|
---|
| 208 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 209 | private System.Windows.Forms.TabPage algorithmClassesTabPage;
|
---|
| 210 | private System.Windows.Forms.TabPage algorithmsTabPage;
|
---|
| 211 | private System.Windows.Forms.Button refreshButton;
|
---|
| 212 | private AlgorithmClassCollectionView algorithmClassCollectionView;
|
---|
| 213 | private AlgorithmCollectionView algorithmCollectionView;
|
---|
[4441] | 214 | private System.Windows.Forms.ToolTip toolTip;
|
---|
| 215 | private System.Windows.Forms.TabPage platformsTabPage;
|
---|
| 216 | private PlatformCollectionView platformCollectionView;
|
---|
[4466] | 217 | private System.Windows.Forms.TabPage dataTypesTabPage;
|
---|
| 218 | private DataTypeCollectionView dataTypeCollectionView;
|
---|
[4426] | 219 |
|
---|
| 220 | }
|
---|
| 221 | }
|
---|