[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 | using HeuristicLab.Data;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.Scheduling.JSSP {
|
---|
| 25 | partial class OperationView {
|
---|
| 26 | /// <summary>
|
---|
| 27 | /// Required designer variable.
|
---|
| 28 | /// </summary>
|
---|
| 29 | private System.ComponentModel.IContainer components = null;
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Clean up any resources being used.
|
---|
| 33 | /// </summary>
|
---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 35 | protected override void Dispose(bool disposing) {
|
---|
| 36 | if (disposing && (components != null)) {
|
---|
| 37 | components.Dispose();
|
---|
| 38 | }
|
---|
| 39 | base.Dispose(disposing);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | #region Component Designer generated code
|
---|
| 43 |
|
---|
| 44 | /// <summary>
|
---|
| 45 | /// Required method for Designer support - do not modify
|
---|
| 46 | /// the contents of this method with the code editor.
|
---|
| 47 | /// </summary>
|
---|
| 48 | private void InitializeComponent() {
|
---|
| 49 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 50 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 51 | this.label4 = new System.Windows.Forms.Label();
|
---|
| 52 | this.label5 = new System.Windows.Forms.Label();
|
---|
| 53 | this.jobTextBox = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.opTextBox = new System.Windows.Forms.TextBox();
|
---|
| 55 | this.startTextBox = new System.Windows.Forms.TextBox();
|
---|
| 56 | this.durTextBox = new System.Windows.Forms.TextBox();
|
---|
| 57 | this.predTextBox = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 59 | this.SuspendLayout();
|
---|
| 60 | //
|
---|
| 61 | // label2
|
---|
| 62 | //
|
---|
| 63 | this.label2.AutoSize = true;
|
---|
| 64 | this.label2.Location = new System.Drawing.Point(5, 3);
|
---|
| 65 | this.label2.Name = "label2";
|
---|
| 66 | this.label2.Size = new System.Drawing.Size(30, 13);
|
---|
| 67 | this.label2.TabIndex = 5;
|
---|
| 68 | this.label2.Text = "Job: ";
|
---|
| 69 | //
|
---|
| 70 | // label3
|
---|
| 71 | //
|
---|
| 72 | this.label3.AutoSize = true;
|
---|
| 73 | this.label3.Location = new System.Drawing.Point(5, 31);
|
---|
| 74 | this.label3.Name = "label3";
|
---|
| 75 | this.label3.Size = new System.Drawing.Size(56, 13);
|
---|
| 76 | this.label3.TabIndex = 6;
|
---|
| 77 | this.label3.Text = "Operation:";
|
---|
| 78 | //
|
---|
| 79 | // label4
|
---|
| 80 | //
|
---|
| 81 | this.label4.AutoSize = true;
|
---|
| 82 | this.label4.Location = new System.Drawing.Point(5, 57);
|
---|
| 83 | this.label4.Name = "label4";
|
---|
| 84 | this.label4.Size = new System.Drawing.Size(32, 13);
|
---|
| 85 | this.label4.TabIndex = 7;
|
---|
| 86 | this.label4.Text = "Start:";
|
---|
| 87 | //
|
---|
| 88 | // label5
|
---|
| 89 | //
|
---|
| 90 | this.label5.AutoSize = true;
|
---|
| 91 | this.label5.Location = new System.Drawing.Point(5, 84);
|
---|
| 92 | this.label5.Name = "label5";
|
---|
| 93 | this.label5.Size = new System.Drawing.Size(50, 13);
|
---|
| 94 | this.label5.TabIndex = 8;
|
---|
| 95 | this.label5.Text = "Duration:";
|
---|
| 96 | //
|
---|
| 97 | // jobTextBox
|
---|
| 98 | //
|
---|
| 99 | this.jobTextBox.Location = new System.Drawing.Point(71, 4);
|
---|
| 100 | this.jobTextBox.Name = "jobTextBox";
|
---|
| 101 | this.jobTextBox.Size = new System.Drawing.Size(38, 20);
|
---|
| 102 | this.jobTextBox.TabIndex = 9;
|
---|
| 103 | this.jobTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.jobTextBox_Validating);
|
---|
| 104 | //
|
---|
| 105 | // opTextBox
|
---|
| 106 | //
|
---|
| 107 | this.opTextBox.Location = new System.Drawing.Point(71, 29);
|
---|
| 108 | this.opTextBox.Name = "opTextBox";
|
---|
| 109 | this.opTextBox.Size = new System.Drawing.Size(38, 20);
|
---|
| 110 | this.opTextBox.TabIndex = 10;
|
---|
| 111 | this.opTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.opTextBox_Validating);
|
---|
| 112 | //
|
---|
| 113 | // startTextBox
|
---|
| 114 | //
|
---|
| 115 | this.startTextBox.Location = new System.Drawing.Point(71, 55);
|
---|
| 116 | this.startTextBox.Name = "startTextBox";
|
---|
| 117 | this.startTextBox.Size = new System.Drawing.Size(38, 20);
|
---|
| 118 | this.startTextBox.TabIndex = 11;
|
---|
| 119 | this.startTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.startTextBox_Validating);
|
---|
| 120 | //
|
---|
| 121 | // durTextBox
|
---|
| 122 | //
|
---|
| 123 | this.durTextBox.Location = new System.Drawing.Point(71, 82);
|
---|
| 124 | this.durTextBox.Name = "durTextBox";
|
---|
| 125 | this.durTextBox.Size = new System.Drawing.Size(38, 20);
|
---|
| 126 | this.durTextBox.TabIndex = 12;
|
---|
| 127 | this.durTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.durTextBox_Validating);
|
---|
| 128 | //
|
---|
| 129 | // predTextBox
|
---|
| 130 | //
|
---|
| 131 | this.predTextBox.Location = new System.Drawing.Point(8, 128);
|
---|
| 132 | this.predTextBox.Name = "predTextBox";
|
---|
| 133 | this.predTextBox.Size = new System.Drawing.Size(101, 20);
|
---|
| 134 | this.predTextBox.TabIndex = 13;
|
---|
| 135 | //
|
---|
| 136 | // label1
|
---|
| 137 | //
|
---|
| 138 | this.label1.AutoSize = true;
|
---|
| 139 | this.label1.Location = new System.Drawing.Point(7, 112);
|
---|
| 140 | this.label1.Name = "label1";
|
---|
| 141 | this.label1.Size = new System.Drawing.Size(74, 13);
|
---|
| 142 | this.label1.TabIndex = 14;
|
---|
| 143 | this.label1.Text = "Predecessors:";
|
---|
| 144 | //
|
---|
| 145 | // OperationView
|
---|
| 146 | //
|
---|
| 147 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 148 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 149 | this.Controls.Add(this.label1);
|
---|
| 150 | this.Controls.Add(this.predTextBox);
|
---|
| 151 | this.Controls.Add(this.durTextBox);
|
---|
| 152 | this.Controls.Add(this.startTextBox);
|
---|
| 153 | this.Controls.Add(this.opTextBox);
|
---|
| 154 | this.Controls.Add(this.jobTextBox);
|
---|
| 155 | this.Controls.Add(this.label5);
|
---|
| 156 | this.Controls.Add(this.label4);
|
---|
| 157 | this.Controls.Add(this.label3);
|
---|
| 158 | this.Controls.Add(this.label2);
|
---|
| 159 | this.Name = "OperationView";
|
---|
| 160 | this.Size = new System.Drawing.Size(130, 178);
|
---|
| 161 | this.ResumeLayout(false);
|
---|
| 162 | this.PerformLayout();
|
---|
| 163 |
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | #endregion
|
---|
| 167 |
|
---|
| 168 | private System.Windows.Forms.Label label2;
|
---|
| 169 | private System.Windows.Forms.Label label3;
|
---|
| 170 | private System.Windows.Forms.Label label4;
|
---|
| 171 | private System.Windows.Forms.Label label5;
|
---|
| 172 | private System.Windows.Forms.TextBox jobTextBox;
|
---|
| 173 | private System.Windows.Forms.TextBox opTextBox;
|
---|
| 174 | private System.Windows.Forms.TextBox startTextBox;
|
---|
| 175 | private System.Windows.Forms.TextBox durTextBox;
|
---|
| 176 | private System.Windows.Forms.TextBox predTextBox;
|
---|
| 177 | private System.Windows.Forms.Label label1;
|
---|
| 178 |
|
---|
| 179 | }
|
---|
| 180 | }
|
---|