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 | namespace HeuristicLab.Scheduling.JSSP {
|
---|
23 | partial class JSSPInjectorView {
|
---|
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 | }
|
---|
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() {
|
---|
47 | this.tabPage1 = new System.Windows.Forms.TabPage();
|
---|
48 | this.tb_jobs = new System.Windows.Forms.TextBox();
|
---|
49 | this.tb_machines = new System.Windows.Forms.TextBox();
|
---|
50 | this.label2 = new System.Windows.Forms.Label();
|
---|
51 | this.label1 = new System.Windows.Forms.Label();
|
---|
52 | this.button1 = new System.Windows.Forms.Button();
|
---|
53 | this.tabControl1 = new System.Windows.Forms.TabControl();
|
---|
54 | this.tabvariables = new System.Windows.Forms.TabPage();
|
---|
55 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
56 | this.descriptionTabPage = new System.Windows.Forms.TabPage();
|
---|
57 | this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView();
|
---|
58 | this.tabPage1.SuspendLayout();
|
---|
59 | this.tabControl1.SuspendLayout();
|
---|
60 | this.descriptionTabPage.SuspendLayout();
|
---|
61 | this.SuspendLayout();
|
---|
62 | //
|
---|
63 | // tabPage1
|
---|
64 | //
|
---|
65 | this.tabPage1.Controls.Add(this.tb_jobs);
|
---|
66 | this.tabPage1.Controls.Add(this.tb_machines);
|
---|
67 | this.tabPage1.Controls.Add(this.label2);
|
---|
68 | this.tabPage1.Controls.Add(this.label1);
|
---|
69 | this.tabPage1.Controls.Add(this.button1);
|
---|
70 | this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
---|
71 | this.tabPage1.Name = "tabPage1";
|
---|
72 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
---|
73 | this.tabPage1.Size = new System.Drawing.Size(228, 133);
|
---|
74 | this.tabPage1.TabIndex = 0;
|
---|
75 | this.tabPage1.Text = "JSSP Data";
|
---|
76 | this.tabPage1.UseVisualStyleBackColor = true;
|
---|
77 | //
|
---|
78 | // tb_jobs
|
---|
79 | //
|
---|
80 | this.tb_jobs.BackColor = System.Drawing.SystemColors.Control;
|
---|
81 | this.tb_jobs.Location = new System.Drawing.Point(96, 42);
|
---|
82 | this.tb_jobs.Name = "tb_jobs";
|
---|
83 | this.tb_jobs.ReadOnly = true;
|
---|
84 | this.tb_jobs.Size = new System.Drawing.Size(100, 20);
|
---|
85 | this.tb_jobs.TabIndex = 4;
|
---|
86 | //
|
---|
87 | // tb_machines
|
---|
88 | //
|
---|
89 | this.tb_machines.BackColor = System.Drawing.SystemColors.Control;
|
---|
90 | this.tb_machines.Location = new System.Drawing.Point(96, 16);
|
---|
91 | this.tb_machines.Name = "tb_machines";
|
---|
92 | this.tb_machines.ReadOnly = true;
|
---|
93 | this.tb_machines.Size = new System.Drawing.Size(101, 20);
|
---|
94 | this.tb_machines.TabIndex = 3;
|
---|
95 | //
|
---|
96 | // label2
|
---|
97 | //
|
---|
98 | this.label2.AutoSize = true;
|
---|
99 | this.label2.Location = new System.Drawing.Point(11, 45);
|
---|
100 | this.label2.Name = "label2";
|
---|
101 | this.label2.Size = new System.Drawing.Size(35, 13);
|
---|
102 | this.label2.TabIndex = 2;
|
---|
103 | this.label2.Text = "Jobs: ";
|
---|
104 | //
|
---|
105 | // label1
|
---|
106 | //
|
---|
107 | this.label1.AutoSize = true;
|
---|
108 | this.label1.Location = new System.Drawing.Point(11, 19);
|
---|
109 | this.label1.Name = "label1";
|
---|
110 | this.label1.Size = new System.Drawing.Size(56, 13);
|
---|
111 | this.label1.TabIndex = 1;
|
---|
112 | this.label1.Text = "Machines:";
|
---|
113 | //
|
---|
114 | // button1
|
---|
115 | //
|
---|
116 | this.button1.Location = new System.Drawing.Point(3, 97);
|
---|
117 | this.button1.Name = "button1";
|
---|
118 | this.button1.Size = new System.Drawing.Size(216, 25);
|
---|
119 | this.button1.TabIndex = 0;
|
---|
120 | this.button1.Text = "Import Instance from JSSPLib ";
|
---|
121 | this.button1.UseVisualStyleBackColor = true;
|
---|
122 | this.button1.Click += new System.EventHandler(this.button1_Click);
|
---|
123 | //
|
---|
124 | // tabControl1
|
---|
125 | //
|
---|
126 | this.tabControl1.Controls.Add(this.tabPage1);
|
---|
127 | this.tabControl1.Controls.Add(this.tabvariables);
|
---|
128 | this.tabControl1.Controls.Add(this.descriptionTabPage);
|
---|
129 | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
130 | this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
---|
131 | this.tabControl1.Name = "tabControl1";
|
---|
132 | this.tabControl1.SelectedIndex = 0;
|
---|
133 | this.tabControl1.Size = new System.Drawing.Size(236, 159);
|
---|
134 | this.tabControl1.TabIndex = 0;
|
---|
135 | //
|
---|
136 | // tabvariables
|
---|
137 | //
|
---|
138 | this.tabvariables.Location = new System.Drawing.Point(4, 22);
|
---|
139 | this.tabvariables.Name = "tabvariables";
|
---|
140 | this.tabvariables.Size = new System.Drawing.Size(228, 133);
|
---|
141 | this.tabvariables.TabIndex = 1;
|
---|
142 | this.tabvariables.Text = "Variables";
|
---|
143 | this.tabvariables.UseVisualStyleBackColor = true;
|
---|
144 | //
|
---|
145 | // openFileDialog
|
---|
146 | //
|
---|
147 | this.openFileDialog.DefaultExt = "jssp";
|
---|
148 | this.openFileDialog.Title = "Import JSSP Instance";
|
---|
149 | //
|
---|
150 | // descriptionTabPage
|
---|
151 | //
|
---|
152 | this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
|
---|
153 | this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
154 | this.descriptionTabPage.Name = "descriptionTabPage";
|
---|
155 | this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
156 | this.descriptionTabPage.Size = new System.Drawing.Size(228, 133);
|
---|
157 | this.descriptionTabPage.TabIndex = 2;
|
---|
158 | this.descriptionTabPage.Text = "Description";
|
---|
159 | this.descriptionTabPage.UseVisualStyleBackColor = true;
|
---|
160 | //
|
---|
161 | // operatorBaseDescriptionView
|
---|
162 | //
|
---|
163 | this.operatorBaseDescriptionView.Caption = "Operator";
|
---|
164 | this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
165 | this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
|
---|
166 | this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
|
---|
167 | this.operatorBaseDescriptionView.Operator = null;
|
---|
168 | this.operatorBaseDescriptionView.Size = new System.Drawing.Size(222, 127);
|
---|
169 | this.operatorBaseDescriptionView.TabIndex = 0;
|
---|
170 | //
|
---|
171 | // JSSPInjectorView
|
---|
172 | //
|
---|
173 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
174 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
175 | this.Controls.Add(this.tabControl1);
|
---|
176 | this.Name = "JSSPInjectorView";
|
---|
177 | this.Size = new System.Drawing.Size(236, 159);
|
---|
178 | this.tabPage1.ResumeLayout(false);
|
---|
179 | this.tabPage1.PerformLayout();
|
---|
180 | this.tabControl1.ResumeLayout(false);
|
---|
181 | this.descriptionTabPage.ResumeLayout(false);
|
---|
182 | this.ResumeLayout(false);
|
---|
183 |
|
---|
184 | }
|
---|
185 |
|
---|
186 | #endregion
|
---|
187 |
|
---|
188 | private System.Windows.Forms.TabPage tabPage1;
|
---|
189 | private System.Windows.Forms.TextBox tb_jobs;
|
---|
190 | private System.Windows.Forms.TextBox tb_machines;
|
---|
191 | private System.Windows.Forms.Label label2;
|
---|
192 | private System.Windows.Forms.Label label1;
|
---|
193 | private System.Windows.Forms.Button button1;
|
---|
194 | private System.Windows.Forms.TabControl tabControl1;
|
---|
195 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
196 | private System.Windows.Forms.TabPage tabvariables;
|
---|
197 | private System.Windows.Forms.TabPage descriptionTabPage;
|
---|
198 | private HeuristicLab.Core.OperatorBaseDescriptionView operatorBaseDescriptionView;
|
---|
199 | }
|
---|
200 | }
|
---|