Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP/3.3/FunctionLibraryEditor.Designer.cs @ 2700

Last change on this file since 2700 was 2222, checked in by gkronber, 15 years ago

Merged changes from GP-refactoring branch back into the trunk #713.

File size: 12.5 KB
Line 
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
22namespace HeuristicLab.GP {
23  partial class FunctionLibraryEditor {
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.tabControl = new System.Windows.Forms.TabControl();
48      this.functionsTabPage = new System.Windows.Forms.TabPage();
49      this.initializationTabPage = new System.Windows.Forms.TabPage();
50      this.initSplitContainer = new System.Windows.Forms.SplitContainer();
51      this.initListView = new System.Windows.Forms.ListView();
52      this.initVariableView = new HeuristicLab.Core.VariableView();
53      this.mutationTabPage = new System.Windows.Forms.TabPage();
54      this.mutationSplitContainer = new System.Windows.Forms.SplitContainer();
55      this.mutationListView = new System.Windows.Forms.ListView();
56      this.mutationVariableView = new HeuristicLab.Core.VariableView();
57      this.addButton = new System.Windows.Forms.Button();
58      this.removeButton = new System.Windows.Forms.Button();
59      this.functionsListView = new System.Windows.Forms.ListView();
60      this.tabControl.SuspendLayout();
61      this.functionsTabPage.SuspendLayout();
62      this.initializationTabPage.SuspendLayout();
63      this.initSplitContainer.Panel1.SuspendLayout();
64      this.initSplitContainer.Panel2.SuspendLayout();
65      this.initSplitContainer.SuspendLayout();
66      this.mutationTabPage.SuspendLayout();
67      this.mutationSplitContainer.Panel1.SuspendLayout();
68      this.mutationSplitContainer.Panel2.SuspendLayout();
69      this.mutationSplitContainer.SuspendLayout();
70      this.SuspendLayout();
71      //
72      // tabControl
73      //
74      this.tabControl.Controls.Add(this.functionsTabPage);
75      this.tabControl.Controls.Add(this.initializationTabPage);
76      this.tabControl.Controls.Add(this.mutationTabPage);
77      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
78      this.tabControl.Location = new System.Drawing.Point(0, 0);
79      this.tabControl.Name = "tabControl";
80      this.tabControl.SelectedIndex = 0;
81      this.tabControl.Size = new System.Drawing.Size(677, 561);
82      this.tabControl.TabIndex = 1;
83      //
84      // functionsTabPage
85      //
86      this.functionsTabPage.Controls.Add(this.functionsListView);
87      this.functionsTabPage.Controls.Add(this.removeButton);
88      this.functionsTabPage.Controls.Add(this.addButton);
89      this.functionsTabPage.Location = new System.Drawing.Point(4, 22);
90      this.functionsTabPage.Name = "functionsTabPage";
91      this.functionsTabPage.Padding = new System.Windows.Forms.Padding(3);
92      this.functionsTabPage.Size = new System.Drawing.Size(669, 535);
93      this.functionsTabPage.TabIndex = 0;
94      this.functionsTabPage.Text = "Functions";
95      this.functionsTabPage.UseVisualStyleBackColor = true;
96      //
97      // initializationTabPage
98      //
99      this.initializationTabPage.Controls.Add(this.initSplitContainer);
100      this.initializationTabPage.Location = new System.Drawing.Point(4, 22);
101      this.initializationTabPage.Name = "initializationTabPage";
102      this.initializationTabPage.Padding = new System.Windows.Forms.Padding(3);
103      this.initializationTabPage.Size = new System.Drawing.Size(669, 535);
104      this.initializationTabPage.TabIndex = 1;
105      this.initializationTabPage.Text = "Initialization";
106      this.initializationTabPage.UseVisualStyleBackColor = true;
107      //
108      // initSplitContainer
109      //
110      this.initSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
111      this.initSplitContainer.Location = new System.Drawing.Point(3, 3);
112      this.initSplitContainer.Name = "initSplitContainer";
113      //
114      // initSplitContainer.Panel1
115      //
116      this.initSplitContainer.Panel1.Controls.Add(this.initListView);
117      //
118      // initSplitContainer.Panel2
119      //
120      this.initSplitContainer.Panel2.Controls.Add(this.initVariableView);
121      this.initSplitContainer.Size = new System.Drawing.Size(663, 529);
122      this.initSplitContainer.SplitterDistance = 221;
123      this.initSplitContainer.TabIndex = 0;
124      //
125      // initListView
126      //
127      this.initListView.Dock = System.Windows.Forms.DockStyle.Fill;
128      this.initListView.Location = new System.Drawing.Point(0, 0);
129      this.initListView.Name = "initListView";
130      this.initListView.Size = new System.Drawing.Size(221, 529);
131      this.initListView.TabIndex = 0;
132      this.initListView.UseCompatibleStateImageBehavior = false;
133      this.initListView.View = System.Windows.Forms.View.List;
134      this.initListView.SelectedIndexChanged += new System.EventHandler(this.initListView_SelectedIndexChanged);
135      //
136      // initVariableView
137      //
138      this.initVariableView.Caption = "Variable";
139      this.initVariableView.Dock = System.Windows.Forms.DockStyle.Fill;
140      this.initVariableView.Location = new System.Drawing.Point(0, 0);
141      this.initVariableView.Name = "initVariableView";
142      this.initVariableView.Size = new System.Drawing.Size(438, 529);
143      this.initVariableView.TabIndex = 0;
144      this.initVariableView.Variable = null;
145      //
146      // mutationTabPage
147      //
148      this.mutationTabPage.Controls.Add(this.mutationSplitContainer);
149      this.mutationTabPage.Location = new System.Drawing.Point(4, 22);
150      this.mutationTabPage.Name = "mutationTabPage";
151      this.mutationTabPage.Padding = new System.Windows.Forms.Padding(3);
152      this.mutationTabPage.Size = new System.Drawing.Size(669, 535);
153      this.mutationTabPage.TabIndex = 2;
154      this.mutationTabPage.Text = "Mutation";
155      this.mutationTabPage.UseVisualStyleBackColor = true;
156      //
157      // mutationSplitContainer
158      //
159      this.mutationSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
160      this.mutationSplitContainer.Location = new System.Drawing.Point(3, 3);
161      this.mutationSplitContainer.Name = "mutationSplitContainer";
162      //
163      // mutationSplitContainer.Panel1
164      //
165      this.mutationSplitContainer.Panel1.Controls.Add(this.mutationListView);
166      //
167      // mutationSplitContainer.Panel2
168      //
169      this.mutationSplitContainer.Panel2.Controls.Add(this.mutationVariableView);
170      this.mutationSplitContainer.Size = new System.Drawing.Size(663, 529);
171      this.mutationSplitContainer.SplitterDistance = 221;
172      this.mutationSplitContainer.TabIndex = 0;
173      //
174      // mutationListView
175      //
176      this.mutationListView.Dock = System.Windows.Forms.DockStyle.Fill;
177      this.mutationListView.Location = new System.Drawing.Point(0, 0);
178      this.mutationListView.MultiSelect = false;
179      this.mutationListView.Name = "mutationListView";
180      this.mutationListView.Size = new System.Drawing.Size(221, 529);
181      this.mutationListView.TabIndex = 0;
182      this.mutationListView.UseCompatibleStateImageBehavior = false;
183      this.mutationListView.View = System.Windows.Forms.View.List;
184      this.mutationListView.SelectedIndexChanged += new System.EventHandler(this.mutationListView_SelectedIndexChanged);
185      //
186      // mutationVariableView
187      //
188      this.mutationVariableView.Caption = "Variable";
189      this.mutationVariableView.Dock = System.Windows.Forms.DockStyle.Fill;
190      this.mutationVariableView.Location = new System.Drawing.Point(0, 0);
191      this.mutationVariableView.Name = "mutationVariableView";
192      this.mutationVariableView.Size = new System.Drawing.Size(438, 529);
193      this.mutationVariableView.TabIndex = 0;
194      this.mutationVariableView.Variable = null;
195      //
196      // addButton
197      //
198      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
199      this.addButton.Location = new System.Drawing.Point(6, 506);
200      this.addButton.Name = "addButton";
201      this.addButton.Size = new System.Drawing.Size(75, 23);
202      this.addButton.TabIndex = 1;
203      this.addButton.Text = "Add...";
204      this.addButton.UseVisualStyleBackColor = true;
205      this.addButton.Click += new System.EventHandler(this.addButton_Click);
206      //
207      // removeButton
208      //
209      this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
210      this.removeButton.Location = new System.Drawing.Point(87, 506);
211      this.removeButton.Name = "removeButton";
212      this.removeButton.Size = new System.Drawing.Size(75, 23);
213      this.removeButton.TabIndex = 2;
214      this.removeButton.Text = "Remove";
215      this.removeButton.UseVisualStyleBackColor = true;
216      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
217      //
218      // functionsListView
219      //
220      this.functionsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
221                  | System.Windows.Forms.AnchorStyles.Left)
222                  | System.Windows.Forms.AnchorStyles.Right)));
223      this.functionsListView.Location = new System.Drawing.Point(3, 6);
224      this.functionsListView.Name = "functionsListView";
225      this.functionsListView.Size = new System.Drawing.Size(660, 494);
226      this.functionsListView.TabIndex = 3;
227      this.functionsListView.UseCompatibleStateImageBehavior = false;
228      this.functionsListView.SelectedIndexChanged += new System.EventHandler(this.functionsListView_SelectedIndexChanged);
229      //
230      // FunctionLibraryEditor
231      //
232      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
233      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
234      this.Controls.Add(this.tabControl);
235      this.Name = "FunctionLibraryEditor";
236      this.Size = new System.Drawing.Size(677, 561);
237      this.tabControl.ResumeLayout(false);
238      this.functionsTabPage.ResumeLayout(false);
239      this.initializationTabPage.ResumeLayout(false);
240      this.initSplitContainer.Panel1.ResumeLayout(false);
241      this.initSplitContainer.Panel2.ResumeLayout(false);
242      this.initSplitContainer.ResumeLayout(false);
243      this.mutationTabPage.ResumeLayout(false);
244      this.mutationSplitContainer.Panel1.ResumeLayout(false);
245      this.mutationSplitContainer.Panel2.ResumeLayout(false);
246      this.mutationSplitContainer.ResumeLayout(false);
247      this.ResumeLayout(false);
248
249    }
250
251    #endregion
252
253    private System.Windows.Forms.TabControl tabControl;
254    private System.Windows.Forms.TabPage functionsTabPage;
255    private System.Windows.Forms.TabPage initializationTabPage;
256    private System.Windows.Forms.TabPage mutationTabPage;
257    private System.Windows.Forms.SplitContainer initSplitContainer;
258    private System.Windows.Forms.SplitContainer mutationSplitContainer;
259    private HeuristicLab.Core.VariableView initVariableView;
260    private HeuristicLab.Core.VariableView mutationVariableView;
261    private System.Windows.Forms.ListView initListView;
262    private System.Windows.Forms.ListView mutationListView;
263    private System.Windows.Forms.Button removeButton;
264    private System.Windows.Forms.Button addButton;
265    private System.Windows.Forms.ListView functionsListView;
266  }
267}
Note: See TracBrowser for help on using the repository browser.