1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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.Networks.Views {
|
---|
23 | partial class AlgorithmNodeView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | #region Component Designer generated code
|
---|
30 |
|
---|
31 | /// <summary>
|
---|
32 | /// Required method for Designer support - do not modify
|
---|
33 | /// the contents of this method with the code editor.
|
---|
34 | /// </summary>
|
---|
35 | private void InitializeComponent() {
|
---|
36 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlgorithmNodeView));
|
---|
37 | this.portCollectionView = new HeuristicLab.Core.Networks.Views.PortCollectionView();
|
---|
38 | this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
|
---|
39 | this.portsTabPage = new System.Windows.Forms.TabPage();
|
---|
40 | this.algorithmTabPage = new System.Windows.Forms.TabPage();
|
---|
41 | this.algorithmPanel = new System.Windows.Forms.Panel();
|
---|
42 | this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
43 | this.clearAlgorithmButton = new System.Windows.Forms.Button();
|
---|
44 | this.setAlgorithmButton = new System.Windows.Forms.Button();
|
---|
45 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
46 | this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
47 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
48 | this.tabControl.SuspendLayout();
|
---|
49 | this.portsTabPage.SuspendLayout();
|
---|
50 | this.algorithmTabPage.SuspendLayout();
|
---|
51 | this.algorithmPanel.SuspendLayout();
|
---|
52 | this.runsTabPage.SuspendLayout();
|
---|
53 | this.SuspendLayout();
|
---|
54 | //
|
---|
55 | // nameTextBox
|
---|
56 | //
|
---|
57 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
58 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
59 | //
|
---|
60 | // portCollectionView
|
---|
61 | //
|
---|
62 | this.portCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
63 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
64 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
65 | this.portCollectionView.Caption = "PortCollection View";
|
---|
66 | this.portCollectionView.Content = null;
|
---|
67 | this.portCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
68 | this.portCollectionView.Name = "portCollectionView";
|
---|
69 | this.portCollectionView.ReadOnly = false;
|
---|
70 | this.portCollectionView.ShowDetails = true;
|
---|
71 | this.portCollectionView.Size = new System.Drawing.Size(625, 453);
|
---|
72 | this.portCollectionView.TabIndex = 0;
|
---|
73 | //
|
---|
74 | // tabControl
|
---|
75 | //
|
---|
76 | this.tabControl.AllowDrop = true;
|
---|
77 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
78 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
79 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
80 | this.tabControl.Controls.Add(this.portsTabPage);
|
---|
81 | this.tabControl.Controls.Add(this.algorithmTabPage);
|
---|
82 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
83 | this.tabControl.Location = new System.Drawing.Point(0, 26);
|
---|
84 | this.tabControl.Name = "tabControl";
|
---|
85 | this.tabControl.SelectedIndex = 0;
|
---|
86 | this.tabControl.Size = new System.Drawing.Size(645, 491);
|
---|
87 | this.tabControl.TabIndex = 3;
|
---|
88 | //
|
---|
89 | // portsTabPage
|
---|
90 | //
|
---|
91 | this.portsTabPage.Controls.Add(this.portCollectionView);
|
---|
92 | this.portsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
93 | this.portsTabPage.Name = "portsTabPage";
|
---|
94 | this.portsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
95 | this.portsTabPage.Size = new System.Drawing.Size(637, 465);
|
---|
96 | this.portsTabPage.TabIndex = 0;
|
---|
97 | this.portsTabPage.Text = "Ports";
|
---|
98 | this.portsTabPage.UseVisualStyleBackColor = true;
|
---|
99 | //
|
---|
100 | // algorithmTabPage
|
---|
101 | //
|
---|
102 | this.algorithmTabPage.Controls.Add(this.algorithmPanel);
|
---|
103 | this.algorithmTabPage.Controls.Add(this.clearAlgorithmButton);
|
---|
104 | this.algorithmTabPage.Controls.Add(this.setAlgorithmButton);
|
---|
105 | this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
106 | this.algorithmTabPage.Name = "algorithmTabPage";
|
---|
107 | this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
108 | this.algorithmTabPage.Size = new System.Drawing.Size(637, 465);
|
---|
109 | this.algorithmTabPage.TabIndex = 1;
|
---|
110 | this.algorithmTabPage.Text = "Algorithm";
|
---|
111 | this.algorithmTabPage.UseVisualStyleBackColor = true;
|
---|
112 | //
|
---|
113 | // algorithmPanel
|
---|
114 | //
|
---|
115 | this.algorithmPanel.AllowDrop = true;
|
---|
116 | this.algorithmPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
117 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
118 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
119 | this.algorithmPanel.Controls.Add(this.algorithmViewHost);
|
---|
120 | this.algorithmPanel.Location = new System.Drawing.Point(6, 36);
|
---|
121 | this.algorithmPanel.Name = "algorithmPanel";
|
---|
122 | this.algorithmPanel.Size = new System.Drawing.Size(625, 423);
|
---|
123 | this.algorithmPanel.TabIndex = 2;
|
---|
124 | this.algorithmPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragDrop);
|
---|
125 | this.algorithmPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
|
---|
126 | this.algorithmPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
|
---|
127 | //
|
---|
128 | // algorithmViewHost
|
---|
129 | //
|
---|
130 | this.algorithmViewHost.Caption = "View";
|
---|
131 | this.algorithmViewHost.Content = null;
|
---|
132 | this.algorithmViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
133 | this.algorithmViewHost.Enabled = false;
|
---|
134 | this.algorithmViewHost.Location = new System.Drawing.Point(0, 0);
|
---|
135 | this.algorithmViewHost.Name = "algorithmViewHost";
|
---|
136 | this.algorithmViewHost.ReadOnly = false;
|
---|
137 | this.algorithmViewHost.Size = new System.Drawing.Size(625, 423);
|
---|
138 | this.algorithmViewHost.TabIndex = 0;
|
---|
139 | this.algorithmViewHost.ViewsLabelVisible = true;
|
---|
140 | this.algorithmViewHost.ViewType = null;
|
---|
141 | //
|
---|
142 | // clearAlgorithmButton
|
---|
143 | //
|
---|
144 | this.clearAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
|
---|
145 | this.clearAlgorithmButton.Location = new System.Drawing.Point(36, 6);
|
---|
146 | this.clearAlgorithmButton.Name = "clearAlgorithmButton";
|
---|
147 | this.clearAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
148 | this.clearAlgorithmButton.TabIndex = 1;
|
---|
149 | this.clearAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
150 | this.clearAlgorithmButton.Click += new System.EventHandler(this.clearAlgorithmButton_Click);
|
---|
151 | //
|
---|
152 | // setAlgorithmButton
|
---|
153 | //
|
---|
154 | this.setAlgorithmButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
|
---|
155 | this.setAlgorithmButton.Location = new System.Drawing.Point(6, 6);
|
---|
156 | this.setAlgorithmButton.Name = "setAlgorithmButton";
|
---|
157 | this.setAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
158 | this.setAlgorithmButton.TabIndex = 0;
|
---|
159 | this.setAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
160 | this.setAlgorithmButton.Click += new System.EventHandler(this.setAlgorithmButton_Click);
|
---|
161 | //
|
---|
162 | // runsTabPage
|
---|
163 | //
|
---|
164 | this.runsTabPage.Controls.Add(this.runCollectionView);
|
---|
165 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
166 | this.runsTabPage.Name = "runsTabPage";
|
---|
167 | this.runsTabPage.Size = new System.Drawing.Size(637, 465);
|
---|
168 | this.runsTabPage.TabIndex = 2;
|
---|
169 | this.runsTabPage.Text = "Runs";
|
---|
170 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
171 | //
|
---|
172 | // runCollectionView
|
---|
173 | //
|
---|
174 | this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
175 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
176 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
177 | this.runCollectionView.Caption = "RunCollection View";
|
---|
178 | this.runCollectionView.Content = null;
|
---|
179 | this.runCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
180 | this.runCollectionView.Name = "runCollectionView";
|
---|
181 | this.runCollectionView.ReadOnly = false;
|
---|
182 | this.runCollectionView.Size = new System.Drawing.Size(631, 459);
|
---|
183 | this.runCollectionView.TabIndex = 0;
|
---|
184 | //
|
---|
185 | // AlgorithmNodeView
|
---|
186 | //
|
---|
187 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
188 | this.Controls.Add(this.tabControl);
|
---|
189 | this.Name = "AlgorithmNodeView";
|
---|
190 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
191 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
192 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
193 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
194 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
195 | this.tabControl.ResumeLayout(false);
|
---|
196 | this.portsTabPage.ResumeLayout(false);
|
---|
197 | this.algorithmTabPage.ResumeLayout(false);
|
---|
198 | this.algorithmPanel.ResumeLayout(false);
|
---|
199 | this.runsTabPage.ResumeLayout(false);
|
---|
200 | this.ResumeLayout(false);
|
---|
201 | this.PerformLayout();
|
---|
202 |
|
---|
203 | }
|
---|
204 |
|
---|
205 | #endregion
|
---|
206 |
|
---|
207 | protected HeuristicLab.Core.Networks.Views.PortCollectionView portCollectionView;
|
---|
208 | protected System.Windows.Forms.TabPage portsTabPage;
|
---|
209 | protected System.Windows.Forms.Button setAlgorithmButton;
|
---|
210 | protected System.Windows.Forms.Button clearAlgorithmButton;
|
---|
211 | protected System.Windows.Forms.Panel algorithmPanel;
|
---|
212 | protected HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
|
---|
213 | protected System.Windows.Forms.TabPage algorithmTabPage;
|
---|
214 | protected MainForm.WindowsForms.ViewHost algorithmViewHost;
|
---|
215 | protected System.Windows.Forms.TabPage runsTabPage;
|
---|
216 | protected Optimization.Views.RunCollectionView runCollectionView;
|
---|
217 |
|
---|
218 |
|
---|
219 | }
|
---|
220 | }
|
---|