Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GBT/HeuristicLab.Operators.Programmable.Views/3.3/ProgrammableOperatorView.Designer.cs @ 12495

Last change on this file since 12495 was 12495, checked in by gkronber, 9 years ago

#2261: merged trunk changes to branch
r12494
#2403: added a null check in the MatlabParameterVectorEvaluator to prevent exceptions when clearstate is called


r12493
#2369: added support for squared errors and relative errors to error-characteristic-curve view


r12492
#2392: implemented PearsonsRCalculator to fix incorrect correlation values in the correlation matrix.


r12491
#2402 don't set task state to waiting when it fails


r12490
#2401 added missing Mono.Cecil plugin dependency


r12488
#2400 - Interfaces for Capaciated-, PickupAndDelivery- and TimeWindowed-ProblemInstances now specify an additional penalty parameter to set the current penalty factor for the constraint relaxation. - The setter of the penalty-property in ...


r12485
#2374 made RegressionSolution and ClassificationSolution non-abstract


r12482
#2320: Fixed warnings in unit test solutions introduced in r12420 by marking methods as obsolete.


r12481
#2320: Fixed AfterDeserialization of GEArtifialAntEvaluator.


r12480
#2320: Fixed error in symbolicexpressiontree crossover regarding the wiring of lookup parameters if persisted file is loaded.


r12479
#2397 moved GeoIP project into ExtLibs


r12478
#2329 fixed bug in simple code editor


r12476
#2331 removed outdated plugins


r12475
#2368 fixed compile warnings


r12474
#2399 worked on Mono project prepare script


r12473
#2329 added a simple code editor for Linux


r12472
#2399 - fixed MathJax.js file name - worked on Mono project prepare script


r12471
#2399 worked on Mono project prepare script


r12470
#2399 fixed pre-build events in project files


r12465
#2399 worked on mono project prepare script


r12464
#2399 added patch to project


r12463
#2399 fixed EPPlus so that it compiles on Linux


r12461
#2398: Skip root and start symbols when calculating impacts and replacement values in the pruning operators.


r12458
#2354 show label when no data is displayed and don't show the legend


r12457
#2353 removed duplicated call to Any() in Hive Status page


r12456
#2368 fixed modifier


r12455
#2368 added support in persistence for typecaches in streams


r12445
#2394: Changed Web.config compilation from debug to release to force script bundling. Changed history loading type from lazy to eager loading to increase performance. Fixed "getCoreStatus" typo in statusCtrl.js


r12443
#2394: Fixed UserTaskQuery and GetStatusHistory in the WebApp.Status plugin


r12442
#2394 added nuget folders to svn ignore list


r12435
#2394: Improved PluginManager and updated hive status monitor.


r12434
#2396 added symbolic expression tree formatter for C#


r12433
#2395: Minor change in DoubleValue.GetValue.


r12432
#2395 Use simple round-trip format for doubles because G17 prints some strange numbers (20.22 to 20.219999999999999999). Some accuracy can still be lost on 64bit machines, but should be very rare and minimal. double.MaxValue can still be pa...


r12431
#2395 Fixed parsing issues by using the G17 format.


r12430
#2394 added missing package config


r12429
#2394 added missing package config


r12428
#2394 added web app and status page to trunk


r12424
#2320: Adapted plugin file and updated project file of SymbolicExpressionTreeEncoding.


r12422
#2320: Merged the encoding class and all accompanying changes in the trunk.


r12401
#2387 Fixed a bug where the automatic selection of the first element behaved differently for the NewItemDialog.


r12400
#2387 Forgot to commit a file.


r12399
#2387 - Added context-menu for expanding and collapsing tree-nodes. - Improve response time when expanding/collapsing all nodes for TypeSelector and NewItemDialog.


r12398
#2387 - Added clearSearch-button in TypeSelector. - Adapted behavior of TypeSelector and NewItemDialog that a selected node stays selected as long as it matches the search criteria.


r12397
#2387 - Adapted behavior of the matching in the TypeSelector that it behave the same as the NewItemDialog. The search string is tokenized by space and matches if all tokens are contained, (eg. "Sym Reg" matches "SymbolicRegression...")...


r12393
#2025 - Removed Expand/CollapseAll buttons. - Removed cycling of items.


r12392
#2386: Updated GetHashCode method in the EnumerableBoolEqualityComparer.


File size: 16.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Operators.Programmable {
23  partial class ProgrammableOperatorView {
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.tabPage2 = new System.Windows.Forms.TabPage();
48      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
49      this.compilationLabel = new System.Windows.Forms.Label();
50      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
51      this.assembliesBox = new System.Windows.Forms.GroupBox();
52      this.assembliesTreeView = new System.Windows.Forms.TreeView();
53      this.namespacesBox = new System.Windows.Forms.GroupBox();
54      this.namespacesTreeView = new System.Windows.Forms.TreeView();
55      this.showCodeButton = new System.Windows.Forms.Button();
56      this.compileButton = new System.Windows.Forms.Button();
57#if __MonoCS__
58      this.codeEditor = new HeuristicLab.CodeEditor.SimpleCodeEditor();
59#else
60      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
61#endif
62      this.tabControl1 = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
63      this.tabPage1 = new System.Windows.Forms.TabPage();
64      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
65      this.breakpointCheckBox = new System.Windows.Forms.CheckBox();
66      this.breakpointLabel = new System.Windows.Forms.Label();
67      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
68      this.tabPage2.SuspendLayout();
69      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
70      this.splitContainer1.Panel1.SuspendLayout();
71      this.splitContainer1.Panel2.SuspendLayout();
72      this.splitContainer1.SuspendLayout();
73      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
74      this.splitContainer2.Panel1.SuspendLayout();
75      this.splitContainer2.Panel2.SuspendLayout();
76      this.splitContainer2.SuspendLayout();
77      this.assembliesBox.SuspendLayout();
78      this.namespacesBox.SuspendLayout();
79      this.tabControl1.SuspendLayout();
80      this.tabPage1.SuspendLayout();
81      this.SuspendLayout();
82      //
83      // nameTextBox
84      //
85      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
86      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
87      this.nameTextBox.Location = new System.Drawing.Point(70, 0);
88      this.nameTextBox.Size = new System.Drawing.Size(890, 20);
89      //
90      // infoLabel
91      //
92      this.infoLabel.Location = new System.Drawing.Point(966, 3);
93      //
94      // tabPage2
95      //
96      this.tabPage2.Controls.Add(this.splitContainer1);
97      this.tabPage2.Location = new System.Drawing.Point(4, 22);
98      this.tabPage2.Name = "tabPage2";
99      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
100      this.tabPage2.Size = new System.Drawing.Size(977, 625);
101      this.tabPage2.TabIndex = 1;
102      this.tabPage2.Text = "Code";
103      this.tabPage2.UseVisualStyleBackColor = true;
104      //
105      // splitContainer1
106      //
107      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
108      this.splitContainer1.Location = new System.Drawing.Point(3, 3);
109      this.splitContainer1.Name = "splitContainer1";
110      //
111      // splitContainer1.Panel1
112      //
113      this.splitContainer1.Panel1.Controls.Add(this.compilationLabel);
114      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
115      this.splitContainer1.Panel1.Controls.Add(this.showCodeButton);
116      this.splitContainer1.Panel1.Controls.Add(this.compileButton);
117      //
118      // splitContainer1.Panel2
119      //
120      this.splitContainer1.Panel2.Controls.Add(this.codeEditor);
121      this.splitContainer1.Size = new System.Drawing.Size(971, 619);
122      this.splitContainer1.SplitterDistance = 244;
123      this.splitContainer1.TabIndex = 0;
124      //
125      // compilationLabel
126      //
127      this.compilationLabel.AutoSize = true;
128      this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
129      this.compilationLabel.Location = new System.Drawing.Point(63, 9);
130      this.compilationLabel.Name = "compilationLabel";
131      this.compilationLabel.Size = new System.Drawing.Size(69, 13);
132      this.compilationLabel.TabIndex = 2;
133      this.compilationLabel.Text = "Not compiled";
134      //
135      // splitContainer2
136      //
137      this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
138                  | System.Windows.Forms.AnchorStyles.Left)
139                  | System.Windows.Forms.AnchorStyles.Right)));
140      this.splitContainer2.Location = new System.Drawing.Point(0, 33);
141      this.splitContainer2.Name = "splitContainer2";
142      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
143      //
144      // splitContainer2.Panel1
145      //
146      this.splitContainer2.Panel1.Controls.Add(this.assembliesBox);
147      //
148      // splitContainer2.Panel2
149      //
150      this.splitContainer2.Panel2.Controls.Add(this.namespacesBox);
151      this.splitContainer2.Size = new System.Drawing.Size(242, 589);
152      this.splitContainer2.SplitterDistance = 292;
153      this.splitContainer2.TabIndex = 2;
154      //
155      // assembliesBox
156      //
157      this.assembliesBox.Controls.Add(this.assembliesTreeView);
158      this.assembliesBox.Dock = System.Windows.Forms.DockStyle.Fill;
159      this.assembliesBox.Location = new System.Drawing.Point(0, 0);
160      this.assembliesBox.Name = "assembliesBox";
161      this.assembliesBox.Size = new System.Drawing.Size(242, 292);
162      this.assembliesBox.TabIndex = 0;
163      this.assembliesBox.TabStop = false;
164      this.assembliesBox.Text = "Assemblies";
165      //
166      // assembliesTreeView
167      //
168      this.assembliesTreeView.CheckBoxes = true;
169      this.assembliesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
170      this.assembliesTreeView.Location = new System.Drawing.Point(3, 16);
171      this.assembliesTreeView.Name = "assembliesTreeView";
172      this.assembliesTreeView.Size = new System.Drawing.Size(236, 273);
173      this.assembliesTreeView.TabIndex = 0;
174      this.assembliesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.assembliesTreeView_AfterCheck);
175      //
176      // namespacesBox
177      //
178      this.namespacesBox.Controls.Add(this.namespacesTreeView);
179      this.namespacesBox.Dock = System.Windows.Forms.DockStyle.Fill;
180      this.namespacesBox.Location = new System.Drawing.Point(0, 0);
181      this.namespacesBox.Name = "namespacesBox";
182      this.namespacesBox.Size = new System.Drawing.Size(242, 293);
183      this.namespacesBox.TabIndex = 0;
184      this.namespacesBox.TabStop = false;
185      this.namespacesBox.Text = "Namespaces";
186      //
187      // namespacesTreeView
188      //
189      this.namespacesTreeView.CheckBoxes = true;
190      this.namespacesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
191      this.namespacesTreeView.Location = new System.Drawing.Point(3, 16);
192      this.namespacesTreeView.Name = "namespacesTreeView";
193      this.namespacesTreeView.PathSeparator = ".";
194      this.namespacesTreeView.Size = new System.Drawing.Size(236, 274);
195      this.namespacesTreeView.TabIndex = 0;
196      this.namespacesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.namespacesTreeView_AfterCheck);
197      //
198      // showCodeButton
199      //
200      this.showCodeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PrintPreview;
201      this.showCodeButton.Location = new System.Drawing.Point(33, 3);
202      this.showCodeButton.Name = "showCodeButton";
203      this.showCodeButton.Size = new System.Drawing.Size(24, 24);
204      this.showCodeButton.TabIndex = 1;
205      this.showCodeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
206      this.toolTip.SetToolTip(this.showCodeButton, "Show generated code");
207      this.showCodeButton.UseVisualStyleBackColor = false;
208      this.showCodeButton.Click += new System.EventHandler(this.showCodeButton_Click);
209      //
210      // compileButton
211      //
212      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
213      this.compileButton.Location = new System.Drawing.Point(3, 3);
214      this.compileButton.Name = "compileButton";
215      this.compileButton.Size = new System.Drawing.Size(24, 24);
216      this.compileButton.TabIndex = 0;
217      this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
218      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
219      this.compileButton.UseVisualStyleBackColor = true;
220      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
221      //
222      // codeEditor
223      //
224      this.codeEditor.Dock = System.Windows.Forms.DockStyle.Fill;
225      this.codeEditor.Location = new System.Drawing.Point(0, 0);
226      this.codeEditor.Name = "codeEditor";
227      this.codeEditor.Prefix = "";
228      this.codeEditor.Size = new System.Drawing.Size(723, 619);
229      this.codeEditor.Suffix = "";
230      this.codeEditor.TabIndex = 0;
231      this.codeEditor.UserCode = "";
232      this.codeEditor.Validated += new System.EventHandler(this.codeEditor_Validated);
233      //
234      // tabControl1
235      //
236      this.tabControl1.AllowDrop = true;
237      this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
238                  | System.Windows.Forms.AnchorStyles.Left)
239                  | System.Windows.Forms.AnchorStyles.Right)));
240      this.tabControl1.Controls.Add(this.tabPage1);
241      this.tabControl1.Controls.Add(this.tabPage2);
242      this.tabControl1.Location = new System.Drawing.Point(0, 46);
243      this.tabControl1.Name = "tabControl1";
244      this.tabControl1.SelectedIndex = 0;
245      this.tabControl1.Size = new System.Drawing.Size(985, 651);
246      this.tabControl1.TabIndex = 5;
247      //
248      // tabPage1
249      //
250      this.tabPage1.Controls.Add(this.parameterCollectionView);
251      this.tabPage1.Location = new System.Drawing.Point(4, 22);
252      this.tabPage1.Name = "tabPage1";
253      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
254      this.tabPage1.Size = new System.Drawing.Size(977, 625);
255      this.tabPage1.TabIndex = 0;
256      this.tabPage1.Text = "Parameters";
257      this.tabPage1.UseVisualStyleBackColor = true;
258      //
259      // parameterCollectionView
260      //
261      this.parameterCollectionView.Caption = "ParameterCollection View";
262      this.parameterCollectionView.Content = null;
263      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
264      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
265      this.parameterCollectionView.Name = "parameterCollectionView";
266      this.parameterCollectionView.ReadOnly = false;
267      this.parameterCollectionView.Size = new System.Drawing.Size(971, 619);
268      this.parameterCollectionView.TabIndex = 0;
269      //
270      // breakpointCheckBox
271      //
272      this.breakpointCheckBox.AutoSize = true;
273      this.breakpointCheckBox.Location = new System.Drawing.Point(70, 26);
274      this.breakpointCheckBox.Name = "breakpointCheckBox";
275      this.breakpointCheckBox.Size = new System.Drawing.Size(15, 14);
276      this.breakpointCheckBox.TabIndex = 4;
277      this.breakpointCheckBox.UseVisualStyleBackColor = true;
278      this.breakpointCheckBox.CheckedChanged += new System.EventHandler(this.breakpointCheckBox_CheckedChanged);
279      //
280      // breakpointLabel
281      //
282      this.breakpointLabel.AutoSize = true;
283      this.breakpointLabel.Location = new System.Drawing.Point(3, 26);
284      this.breakpointLabel.Name = "breakpointLabel";
285      this.breakpointLabel.Size = new System.Drawing.Size(61, 13);
286      this.breakpointLabel.TabIndex = 3;
287      this.breakpointLabel.Text = "Breakpoint:";
288      //
289      // ProgrammableOperatorView
290      //
291      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
292      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
293      this.Controls.Add(this.tabControl1);
294      this.Controls.Add(this.breakpointLabel);
295      this.Controls.Add(this.breakpointCheckBox);
296      this.Name = "ProgrammableOperatorView";
297      this.Size = new System.Drawing.Size(985, 697);
298      this.Controls.SetChildIndex(this.breakpointCheckBox, 0);
299      this.Controls.SetChildIndex(this.breakpointLabel, 0);
300      this.Controls.SetChildIndex(this.infoLabel, 0);
301      this.Controls.SetChildIndex(this.nameLabel, 0);
302      this.Controls.SetChildIndex(this.tabControl1, 0);
303      this.Controls.SetChildIndex(this.nameTextBox, 0);
304      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
305      this.tabPage2.ResumeLayout(false);
306      this.splitContainer1.Panel1.ResumeLayout(false);
307      this.splitContainer1.Panel1.PerformLayout();
308      this.splitContainer1.Panel2.ResumeLayout(false);
309      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
310      this.splitContainer1.ResumeLayout(false);
311      this.splitContainer2.Panel1.ResumeLayout(false);
312      this.splitContainer2.Panel2.ResumeLayout(false);
313      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
314      this.splitContainer2.ResumeLayout(false);
315      this.assembliesBox.ResumeLayout(false);
316      this.namespacesBox.ResumeLayout(false);
317      this.tabControl1.ResumeLayout(false);
318      this.tabPage1.ResumeLayout(false);
319      this.ResumeLayout(false);
320      this.PerformLayout();
321
322    }
323
324    #endregion
325
326    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl1;
327    private System.Windows.Forms.TabPage tabPage1;
328    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
329    private System.Windows.Forms.SplitContainer splitContainer1;
330    private HeuristicLab.CodeEditor.CodeEditorBase codeEditor;
331    private System.Windows.Forms.Button compileButton;
332    private System.Windows.Forms.Button showCodeButton;
333    private System.Windows.Forms.SplitContainer splitContainer2;
334    private System.Windows.Forms.TreeView assembliesTreeView;
335    private System.Windows.Forms.TreeView namespacesTreeView;
336    private System.Windows.Forms.GroupBox assembliesBox;
337    private System.Windows.Forms.GroupBox namespacesBox;
338    private System.Windows.Forms.CheckBox breakpointCheckBox;
339    private System.Windows.Forms.Label compilationLabel;
340    private System.Windows.Forms.Label breakpointLabel;
341    private System.Windows.Forms.TabPage tabPage2;
342  }
343}
Note: See TracBrowser for help on using the repository browser.