Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/ProblemView.Designer.cs @ 7448

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

#1614

  • Added Transpose() extension method for double[,] matrices
  • Added IProblemInstanceConsumer<T> interface
  • Implemented general ProblemView which auto-detects all instances a problem can consume
  • Added ability of IProblemInstanceProvider to directly feed a consumer
  • Implemented general view for problem instance providers
  • Fixed a few bugs
File size: 6.1 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.GeneralizedQuadraticAssignment.Views {
23  partial class ProblemView {
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.label1 = new System.Windows.Forms.Label();
48      this.problemInstanceProviderComboBox = new System.Windows.Forms.ComboBox();
49      this.problemInstanceProviderViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
51      this.SuspendLayout();
52      //
53      // parameterCollectionView
54      //
55      this.parameterCollectionView.Location = new System.Drawing.Point(0, 58);
56      this.parameterCollectionView.Size = new System.Drawing.Size(650, 394);
57      //
58      // nameTextBox
59      //
60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
62      this.nameTextBox.Location = new System.Drawing.Point(50, 32);
63      this.nameTextBox.Size = new System.Drawing.Size(578, 20);
64      //
65      // nameLabel
66      //
67      this.nameLabel.Location = new System.Drawing.Point(3, 35);
68      //
69      // infoLabel
70      //
71      this.infoLabel.Location = new System.Drawing.Point(634, 35);
72      //
73      // label1
74      //
75      this.label1.AutoSize = true;
76      this.label1.Location = new System.Drawing.Point(3, 8);
77      this.label1.Name = "label1";
78      this.label1.Size = new System.Drawing.Size(41, 13);
79      this.label1.TabIndex = 4;
80      this.label1.Text = "Library:";
81      //
82      // problemInstanceProviderComboBox
83      //
84      this.problemInstanceProviderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
85      this.problemInstanceProviderComboBox.FormattingEnabled = true;
86      this.problemInstanceProviderComboBox.Location = new System.Drawing.Point(50, 5);
87      this.problemInstanceProviderComboBox.Name = "problemInstanceProviderComboBox";
88      this.problemInstanceProviderComboBox.Size = new System.Drawing.Size(173, 21);
89      this.problemInstanceProviderComboBox.TabIndex = 5;
90      this.problemInstanceProviderComboBox.SelectedIndexChanged += new System.EventHandler(this.problemInstanceProviderComboBox_SelectedIndexChanged);
91      this.problemInstanceProviderComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged);
92      //
93      // problemInstanceProviderViewHost
94      //
95      this.problemInstanceProviderViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
96            | System.Windows.Forms.AnchorStyles.Right)));
97      this.problemInstanceProviderViewHost.Caption = "View";
98      this.problemInstanceProviderViewHost.Content = null;
99      this.problemInstanceProviderViewHost.Enabled = false;
100      this.problemInstanceProviderViewHost.Location = new System.Drawing.Point(229, 5);
101      this.problemInstanceProviderViewHost.Name = "problemInstanceProviderViewHost";
102      this.problemInstanceProviderViewHost.ReadOnly = false;
103      this.problemInstanceProviderViewHost.Size = new System.Drawing.Size(421, 21);
104      this.problemInstanceProviderViewHost.TabIndex = 6;
105      this.problemInstanceProviderViewHost.ViewsLabelVisible = false;
106      this.problemInstanceProviderViewHost.ViewType = null;
107      //
108      // ProblemView
109      //
110      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112      this.Controls.Add(this.problemInstanceProviderViewHost);
113      this.Controls.Add(this.problemInstanceProviderComboBox);
114      this.Controls.Add(this.label1);
115      this.Name = "ProblemView";
116      this.Size = new System.Drawing.Size(653, 455);
117      this.Controls.SetChildIndex(this.infoLabel, 0);
118      this.Controls.SetChildIndex(this.label1, 0);
119      this.Controls.SetChildIndex(this.nameTextBox, 0);
120      this.Controls.SetChildIndex(this.nameLabel, 0);
121      this.Controls.SetChildIndex(this.problemInstanceProviderComboBox, 0);
122      this.Controls.SetChildIndex(this.problemInstanceProviderViewHost, 0);
123      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
124      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
125      this.ResumeLayout(false);
126      this.PerformLayout();
127
128    }
129
130    #endregion
131
132    private System.Windows.Forms.Label label1;
133    private System.Windows.Forms.ComboBox problemInstanceProviderComboBox;
134    private MainForm.WindowsForms.ViewHost problemInstanceProviderViewHost;
135
136  }
137}
Note: See TracBrowser for help on using the repository browser.