Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Scheduling/HeuristicLab.Problems.Scheduling.Views/3.3/SchedulingProblemImportDialog.Designer.cs @ 6475

Last change on this file since 6475 was 6121, checked in by jhelm, 13 years ago

#1329: Implemented basic functionalities of problemdefinition, encodings and primitive operators. A GA can already be applied on the problem to compute a solution it seems however that the current implementation isn't very efficient so the process takes some time.

File size: 11.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
22namespace HeuristicLab.Problems.Scheduling.Views {
23  partial class SchedulingProblemImportDialog {
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 Windows Form 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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SchedulingProblemImportDialog));
48      this.okButton = new System.Windows.Forms.Button();
49      this.cancelButton = new System.Windows.Forms.Button();
50      this.openSchedulingProblemFileDialog = new System.Windows.Forms.OpenFileDialog();
51      this.spFileLabel = new System.Windows.Forms.Label();
52      this.openSchedulingProblemFileButton = new System.Windows.Forms.Button();
53      this.spFileTextBox = new System.Windows.Forms.TextBox();
54      this.optimalScheduleFileLabel = new System.Windows.Forms.Label();
55      this.openOptimalScheduleFileButton = new System.Windows.Forms.Button();
56      this.optimalScheduleFileTextBox = new System.Windows.Forms.TextBox();
57      this.openOptimalScheduleFileDialog = new System.Windows.Forms.OpenFileDialog();
58      this.clearOptimalScheduleButton = new System.Windows.Forms.Button();
59      this.SuspendLayout();
60      //
61      // okButton
62      //
63      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
64      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
65      this.okButton.Enabled = false;
66      this.okButton.Location = new System.Drawing.Point(422, 69);
67      this.okButton.Name = "okButton";
68      this.okButton.Size = new System.Drawing.Size(75, 23);
69      this.okButton.TabIndex = 9;
70      this.okButton.Text = "&OK";
71      this.okButton.UseVisualStyleBackColor = true;
72      //
73      // cancelButton
74      //
75      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
77      this.cancelButton.Location = new System.Drawing.Point(499, 69);
78      this.cancelButton.Name = "cancelButton";
79      this.cancelButton.Size = new System.Drawing.Size(75, 23);
80      this.cancelButton.TabIndex = 10;
81      this.cancelButton.Text = "&Cancel";
82      this.cancelButton.UseVisualStyleBackColor = true;
83      //
84      // openSchedulingProblemFileDialog
85      //
86      this.openSchedulingProblemFileDialog.DefaultExt = "scp";
87      this.openSchedulingProblemFileDialog.FileName = "scp";
88      this.openSchedulingProblemFileDialog.Filter = "ORLib Format|*.txt";
89      this.openSchedulingProblemFileDialog.Title = "Open Scheduling Problem File";
90      //
91      // spFileLabel
92      //
93      this.spFileLabel.AutoSize = true;
94      this.spFileLabel.Location = new System.Drawing.Point(12, 15);
95      this.spFileLabel.Name = "spFileLabel";
96      this.spFileLabel.Size = new System.Drawing.Size(43, 13);
97      this.spFileLabel.TabIndex = 0;
98      this.spFileLabel.Text = "&SP File:";
99      //
100      // openSchedulingProblemFileButton
101      //
102      this.openSchedulingProblemFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
103      this.openSchedulingProblemFileButton.Image = ((System.Drawing.Image)(resources.GetObject("openSchedulingProblemFileButton.Image")));
104      this.openSchedulingProblemFileButton.Location = new System.Drawing.Point(520, 10);
105      this.openSchedulingProblemFileButton.Name = "openSchedulingProblemFileButton";
106      this.openSchedulingProblemFileButton.Size = new System.Drawing.Size(24, 24);
107      this.openSchedulingProblemFileButton.TabIndex = 2;
108      this.openSchedulingProblemFileButton.UseVisualStyleBackColor = true;
109      this.openSchedulingProblemFileButton.Click += new System.EventHandler(this.openSchedulingProblemFileButton_Click);
110      //
111      // spFileTextBox
112      //
113      this.spFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
114                  | System.Windows.Forms.AnchorStyles.Right)));
115      this.spFileTextBox.Enabled = false;
116      this.spFileTextBox.Location = new System.Drawing.Point(136, 12);
117      this.spFileTextBox.Name = "spFileTextBox";
118      this.spFileTextBox.ReadOnly = true;
119      this.spFileTextBox.Size = new System.Drawing.Size(378, 20);
120      this.spFileTextBox.TabIndex = 1;
121      //
122      // optimalScheduleFileLabel
123      //
124      this.optimalScheduleFileLabel.AutoSize = true;
125      this.optimalScheduleFileLabel.Location = new System.Drawing.Point(12, 41);
126      this.optimalScheduleFileLabel.Name = "optimalScheduleFileLabel";
127      this.optimalScheduleFileLabel.Size = new System.Drawing.Size(112, 13);
128      this.optimalScheduleFileLabel.TabIndex = 5;
129      this.optimalScheduleFileLabel.Text = "&Optimal Schedule File:";
130      //
131      // openOptimalScheduleFileButton
132      //
133      this.openOptimalScheduleFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
134      this.openOptimalScheduleFileButton.Image = ((System.Drawing.Image)(resources.GetObject("openOptimalScheduleFileButton.Image")));
135      this.openOptimalScheduleFileButton.Location = new System.Drawing.Point(520, 35);
136      this.openOptimalScheduleFileButton.Name = "openOptimalScheduleFileButton";
137      this.openOptimalScheduleFileButton.Size = new System.Drawing.Size(24, 24);
138      this.openOptimalScheduleFileButton.TabIndex = 7;
139      this.openOptimalScheduleFileButton.UseVisualStyleBackColor = true;
140      this.openOptimalScheduleFileButton.Click += new System.EventHandler(this.openOptimalScheduleFileButton_Click);
141      //
142      // optimalScheduleFileTextBox
143      //
144      this.optimalScheduleFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
145                  | System.Windows.Forms.AnchorStyles.Right)));
146      this.optimalScheduleFileTextBox.Enabled = false;
147      this.optimalScheduleFileTextBox.Location = new System.Drawing.Point(136, 38);
148      this.optimalScheduleFileTextBox.Name = "optimalScheduleFileTextBox";
149      this.optimalScheduleFileTextBox.ReadOnly = true;
150      this.optimalScheduleFileTextBox.Size = new System.Drawing.Size(378, 20);
151      this.optimalScheduleFileTextBox.TabIndex = 6;
152      //
153      // openOptimalScheduleFileDialog
154      //
155      this.openOptimalScheduleFileDialog.DefaultExt = "opt";
156      this.openOptimalScheduleFileDialog.FileName = "tour";
157      this.openOptimalScheduleFileDialog.Filter = "Optimal Schedule Files|*.opt";
158      this.openOptimalScheduleFileDialog.SupportMultiDottedExtensions = true;
159      this.openOptimalScheduleFileDialog.Title = "Open Optimal Schedule File";
160      //
161      // clearOptimalScheduleButton
162      //
163      this.clearOptimalScheduleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
164      this.clearOptimalScheduleButton.Image = ((System.Drawing.Image)(resources.GetObject("clearOptimalScheduleButton.Image")));
165      this.clearOptimalScheduleButton.Location = new System.Drawing.Point(550, 35);
166      this.clearOptimalScheduleButton.Name = "clearOptimalScheduleButton";
167      this.clearOptimalScheduleButton.Size = new System.Drawing.Size(24, 24);
168      this.clearOptimalScheduleButton.TabIndex = 8;
169      this.clearOptimalScheduleButton.UseVisualStyleBackColor = true;
170      this.clearOptimalScheduleButton.Click += new System.EventHandler(this.clearTourFileButton_Click);
171      //
172      // SchedulingProblemImportDialog
173      //
174      this.AcceptButton = this.okButton;
175      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
176      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
177      this.CancelButton = this.cancelButton;
178      this.ClientSize = new System.Drawing.Size(586, 104);
179      this.Controls.Add(this.optimalScheduleFileTextBox);
180      this.Controls.Add(this.spFileTextBox);
181      this.Controls.Add(this.clearOptimalScheduleButton);
182      this.Controls.Add(this.openOptimalScheduleFileButton);
183      this.Controls.Add(this.openSchedulingProblemFileButton);
184      this.Controls.Add(this.optimalScheduleFileLabel);
185      this.Controls.Add(this.spFileLabel);
186      this.Controls.Add(this.cancelButton);
187      this.Controls.Add(this.okButton);
188      this.HelpButton = true;
189      this.MaximizeBox = false;
190      this.MinimizeBox = false;
191      this.Name = "SchedulingProblemImportDialog";
192      this.ShowIcon = false;
193      this.ShowInTaskbar = false;
194      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
195      this.Text = "Import Scheduling Problem";
196      this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.VRPImportDialog_HelpButtonClicked);
197      this.ResumeLayout(false);
198      this.PerformLayout();
199
200    }
201
202    #endregion
203
204    private System.Windows.Forms.Button okButton;
205    private System.Windows.Forms.Button cancelButton;
206    private System.Windows.Forms.OpenFileDialog openSchedulingProblemFileDialog;
207    private System.Windows.Forms.Label spFileLabel;
208    private System.Windows.Forms.Button openSchedulingProblemFileButton;
209    private System.Windows.Forms.TextBox spFileTextBox;
210    private System.Windows.Forms.Label optimalScheduleFileLabel;
211    private System.Windows.Forms.Button openOptimalScheduleFileButton;
212    private System.Windows.Forms.TextBox optimalScheduleFileTextBox;
213    private System.Windows.Forms.OpenFileDialog openOptimalScheduleFileDialog;
214    private System.Windows.Forms.Button clearOptimalScheduleButton;
215  }
216}
Note: See TracBrowser for help on using the repository browser.