Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.Designer.cs @ 7558

Last change on this file since 7558 was 7558, checked in by abeham, 12 years ago

#1782: trunk integration of problem instance development

  • Adapted TSP and QAP to use the new feature
  • Moved the TSPLIB importer dialog from the TSP plugin to the TSPLIB instances plugin (created a view for that provider)
  • Created it as a default view for IHeuristicOptimizationProblem in order not to interfere with other problems do not yet work with this
File size: 6.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.QuadraticAssignment.Views {
23  partial class QuadraticAssignmentProblemView {
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.openFileDialog = new System.Windows.Forms.OpenFileDialog();
48      this.tabControl = new System.Windows.Forms.TabControl();
49      this.problemTabPage = new System.Windows.Forms.TabPage();
50      this.visualizationTabPage = new System.Windows.Forms.TabPage();
51      this.qapView = new HeuristicLab.Problems.QuadraticAssignment.Views.QAPVisualizationControl();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.tabControl.SuspendLayout();
54      this.visualizationTabPage.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // parameterCollectionView
58      //
59      this.parameterCollectionView.Location = new System.Drawing.Point(8, 107);
60      this.parameterCollectionView.Size = new System.Drawing.Size(629, 375);
61      //
62      // nameTextBox
63      //
64      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
65      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
66      this.nameTextBox.Location = new System.Drawing.Point(50, 29);
67      this.nameTextBox.Size = new System.Drawing.Size(572, 20);
68      //
69      // nameLabel
70      //
71      this.nameLabel.Location = new System.Drawing.Point(3, 32);
72      //
73      // infoLabel
74      //
75      this.infoLabel.Location = new System.Drawing.Point(628, 32);
76      //
77      // openFileDialog
78      //
79      this.openFileDialog.FileName = "instance.dat";
80      this.openFileDialog.Filter = "Dat files|*.dat|All files|*.*";
81      //
82      // tabControl
83      //
84      this.tabControl.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)));
87      this.tabControl.Controls.Add(this.problemTabPage);
88      this.tabControl.Controls.Add(this.visualizationTabPage);
89      this.tabControl.Location = new System.Drawing.Point(0, 55);
90      this.tabControl.Name = "tabControl";
91      this.tabControl.SelectedIndex = 0;
92      this.tabControl.Size = new System.Drawing.Size(647, 437);
93      this.tabControl.TabIndex = 8;
94      //
95      // problemTabPage
96      //
97      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
98      this.problemTabPage.Name = "problemTabPage";
99      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
100      this.problemTabPage.Size = new System.Drawing.Size(639, 411);
101      this.problemTabPage.TabIndex = 0;
102      this.problemTabPage.Text = "Problem";
103      this.problemTabPage.UseVisualStyleBackColor = true;
104      //
105      // visualizationTabPage
106      //
107      this.visualizationTabPage.Controls.Add(this.qapView);
108      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
109      this.visualizationTabPage.Name = "visualizationTabPage";
110      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
111      this.visualizationTabPage.Size = new System.Drawing.Size(639, 411);
112      this.visualizationTabPage.TabIndex = 1;
113      this.visualizationTabPage.Text = "Visualization";
114      this.visualizationTabPage.UseVisualStyleBackColor = true;
115      //
116      // qapView
117      //
118      this.qapView.Assignment = null;
119      this.qapView.Distances = null;
120      this.qapView.Dock = System.Windows.Forms.DockStyle.Fill;
121      this.qapView.Location = new System.Drawing.Point(3, 3);
122      this.qapView.Name = "qapView";
123      this.qapView.Size = new System.Drawing.Size(633, 405);
124      this.qapView.TabIndex = 0;
125      this.qapView.Weights = null;
126      //
127      // QuadraticAssignmentProblemView
128      //
129      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
130      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
131      this.Controls.Add(this.tabControl);
132      this.Name = "QuadraticAssignmentProblemView";
133      this.Size = new System.Drawing.Size(647, 492);
134      this.Controls.SetChildIndex(this.tabControl, 0);
135      this.Controls.SetChildIndex(this.infoLabel, 0);
136      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
137      this.Controls.SetChildIndex(this.nameLabel, 0);
138      this.Controls.SetChildIndex(this.nameTextBox, 0);
139      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
140      this.tabControl.ResumeLayout(false);
141      this.visualizationTabPage.ResumeLayout(false);
142      this.ResumeLayout(false);
143      this.PerformLayout();
144
145    }
146
147    #endregion
148
149    private System.Windows.Forms.OpenFileDialog openFileDialog;
150    private System.Windows.Forms.TabControl tabControl;
151    private System.Windows.Forms.TabPage problemTabPage;
152    private System.Windows.Forms.TabPage visualizationTabPage;
153    private QAPVisualizationControl qapView;
154  }
155}
Note: See TracBrowser for help on using the repository browser.