Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/ExportJsonDialog.Designer.cs @ 18055

Last change on this file since 18055 was 18055, checked in by dpiringe, 3 years ago

#3026

  • added StorableTypeAttribute and StorableConstructorAttribute to all JsonItems
  • added a new JsonItem ListJsonItem + Interfaces IListJsonItem
  • renamed SymRegPythonProcessor to RunCollectionSRSolutionPythonFormatter
  • removed Interface IResultCollectionProcessor -> using the interface IRunCollectionModifier now (has aleady implementations)
  • renamed all related variables/fields/properties with a connection to ResultCollectionProcessor
  • added new implementations for IRunCollectionModifier
File size: 15.4 KB
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Optimization;
3
4namespace HeuristicLab.JsonInterface.OptimizerIntegration {
5  partial class ExportJsonDialog {
6    /// <summary>
7    /// Required designer variable.
8    /// </summary>
9    private System.ComponentModel.IContainer components = null;
10
11    /// <summary>
12    /// Clean up any resources being used.
13    /// </summary>
14    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
15    protected override void Dispose(bool disposing) {
16      if (disposing && (components != null)) {
17        components.Dispose();
18      }
19      base.Dispose(disposing);
20    }
21
22    #region Windows Form Designer generated code
23
24    /// <summary>
25    /// Required method for Designer support - do not modify
26    /// the contents of this method with the code editor.
27    /// </summary>
28    private void InitializeComponent() {
29      this.components = new System.ComponentModel.Container();
30      HeuristicLab.Core.CheckedItemList<HeuristicLab.Optimization.IRunCollectionModifier> checkedItemList_11 = new HeuristicLab.Core.CheckedItemList<HeuristicLab.Optimization.IRunCollectionModifier>();
31      this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
32      this.exportButton = new System.Windows.Forms.Button();
33      this.treeView = new System.Windows.Forms.TreeView();
34      this.groupBoxDetails = new System.Windows.Forms.GroupBox();
35      this.panelParameterDetails = new System.Windows.Forms.Panel();
36      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
37      this.treeViewResults = new System.Windows.Forms.TreeView();
38      this.groupBox = new System.Windows.Forms.GroupBox();
39      this.panelResultDetails = new System.Windows.Forms.Panel();
40      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
41      this.tabControl1 = new System.Windows.Forms.TabControl();
42      this.tabPage1 = new System.Windows.Forms.TabPage();
43      this.tabPage2 = new System.Windows.Forms.TabPage();
44      this.tabPage3 = new System.Windows.Forms.TabPage();
45      this.postProcessorListControl = new HeuristicLab.JsonInterface.OptimizerIntegration.ResultCollectionPostProcessorControl();
46      this.label1 = new System.Windows.Forms.Label();
47      this.textBoxTemplateName = new System.Windows.Forms.TextBox();
48      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
49      this.jsonItemBindingSource = new System.Windows.Forms.BindingSource(this.components);
50      this.groupBoxDetails.SuspendLayout();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
52      this.splitContainer1.Panel1.SuspendLayout();
53      this.splitContainer1.Panel2.SuspendLayout();
54      this.splitContainer1.SuspendLayout();
55      this.groupBox.SuspendLayout();
56      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
57      this.splitContainer2.Panel1.SuspendLayout();
58      this.splitContainer2.Panel2.SuspendLayout();
59      this.splitContainer2.SuspendLayout();
60      this.tabControl1.SuspendLayout();
61      this.tabPage1.SuspendLayout();
62      this.tabPage2.SuspendLayout();
63      this.tabPage3.SuspendLayout();
64      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
65      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).BeginInit();
66      this.SuspendLayout();
67      //
68      // dataGridViewTextBoxColumn1
69      //
70      this.dataGridViewTextBoxColumn1.DataPropertyName = "Value";
71      this.dataGridViewTextBoxColumn1.HeaderText = "Value";
72      this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
73      //
74      // exportButton
75      //
76      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
77      this.exportButton.Location = new System.Drawing.Point(630, 575);
78      this.exportButton.Name = "exportButton";
79      this.exportButton.Size = new System.Drawing.Size(191, 29);
80      this.exportButton.TabIndex = 1;
81      this.exportButton.Text = "Export";
82      this.exportButton.UseVisualStyleBackColor = true;
83      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
84      //
85      // treeView
86      //
87      this.treeView.CheckBoxes = true;
88      this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
89      this.treeView.Location = new System.Drawing.Point(0, 6);
90      this.treeView.Name = "treeView";
91      this.treeView.Size = new System.Drawing.Size(380, 492);
92      this.treeView.TabIndex = 3;
93      this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
94      //
95      // groupBoxDetails
96      //
97      this.groupBoxDetails.Controls.Add(this.panelParameterDetails);
98      this.groupBoxDetails.Dock = System.Windows.Forms.DockStyle.Fill;
99      this.groupBoxDetails.Location = new System.Drawing.Point(0, 0);
100      this.groupBoxDetails.Name = "groupBoxDetails";
101      this.groupBoxDetails.Size = new System.Drawing.Size(412, 499);
102      this.groupBoxDetails.TabIndex = 4;
103      this.groupBoxDetails.TabStop = false;
104      this.groupBoxDetails.Text = "Details";
105      //
106      // panelParameterDetails
107      //
108      this.panelParameterDetails.AutoScroll = true;
109      this.panelParameterDetails.Dock = System.Windows.Forms.DockStyle.Fill;
110      this.panelParameterDetails.Location = new System.Drawing.Point(3, 16);
111      this.panelParameterDetails.Name = "panelParameterDetails";
112      this.panelParameterDetails.Size = new System.Drawing.Size(406, 480);
113      this.panelParameterDetails.TabIndex = 0;
114      //
115      // splitContainer1
116      //
117      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.splitContainer1.Location = new System.Drawing.Point(3, 3);
119      this.splitContainer1.Name = "splitContainer1";
120      //
121      // splitContainer1.Panel1
122      //
123      this.splitContainer1.Panel1.Controls.Add(this.treeViewResults);
124      this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(0, 6, 0, 1);
125      //
126      // splitContainer1.Panel2
127      //
128      this.splitContainer1.Panel2.Controls.Add(this.groupBox);
129      this.splitContainer1.Size = new System.Drawing.Size(796, 499);
130      this.splitContainer1.SplitterDistance = 380;
131      this.splitContainer1.TabIndex = 7;
132      //
133      // treeViewResults
134      //
135      this.treeViewResults.CheckBoxes = true;
136      this.treeViewResults.Dock = System.Windows.Forms.DockStyle.Fill;
137      this.treeViewResults.Location = new System.Drawing.Point(0, 6);
138      this.treeViewResults.Name = "treeViewResults";
139      this.treeViewResults.Size = new System.Drawing.Size(380, 492);
140      this.treeViewResults.TabIndex = 6;
141      this.treeViewResults.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeViewResults_AfterCheck);
142      this.treeViewResults.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewResults_AfterSelect);
143      //
144      // groupBox
145      //
146      this.groupBox.Controls.Add(this.panelResultDetails);
147      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
148      this.groupBox.Location = new System.Drawing.Point(0, 0);
149      this.groupBox.Name = "groupBox";
150      this.groupBox.Size = new System.Drawing.Size(412, 499);
151      this.groupBox.TabIndex = 5;
152      this.groupBox.TabStop = false;
153      this.groupBox.Text = "Details";
154      //
155      // panelResultDetails
156      //
157      this.panelResultDetails.AutoScroll = true;
158      this.panelResultDetails.Dock = System.Windows.Forms.DockStyle.Fill;
159      this.panelResultDetails.Location = new System.Drawing.Point(3, 16);
160      this.panelResultDetails.Name = "panelResultDetails";
161      this.panelResultDetails.Size = new System.Drawing.Size(406, 480);
162      this.panelResultDetails.TabIndex = 0;
163      //
164      // splitContainer2
165      //
166      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
167      this.splitContainer2.Location = new System.Drawing.Point(3, 3);
168      this.splitContainer2.Name = "splitContainer2";
169      //
170      // splitContainer2.Panel1
171      //
172      this.splitContainer2.Panel1.Controls.Add(this.treeView);
173      this.splitContainer2.Panel1.Padding = new System.Windows.Forms.Padding(0, 6, 0, 1);
174      //
175      // splitContainer2.Panel2
176      //
177      this.splitContainer2.Panel2.Controls.Add(this.groupBoxDetails);
178      this.splitContainer2.Size = new System.Drawing.Size(796, 499);
179      this.splitContainer2.SplitterDistance = 380;
180      this.splitContainer2.TabIndex = 9;
181      //
182      // tabControl1
183      //
184      this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
185            | System.Windows.Forms.AnchorStyles.Left)
186            | System.Windows.Forms.AnchorStyles.Right)));
187      this.tabControl1.Controls.Add(this.tabPage1);
188      this.tabControl1.Controls.Add(this.tabPage2);
189      this.tabControl1.Controls.Add(this.tabPage3);
190      this.tabControl1.Location = new System.Drawing.Point(12, 38);
191      this.tabControl1.Name = "tabControl1";
192      this.tabControl1.SelectedIndex = 0;
193      this.tabControl1.Size = new System.Drawing.Size(810, 531);
194      this.tabControl1.TabIndex = 10;
195      //
196      // tabPage1
197      //
198      this.tabPage1.Controls.Add(this.splitContainer2);
199      this.tabPage1.Location = new System.Drawing.Point(4, 22);
200      this.tabPage1.Name = "tabPage1";
201      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
202      this.tabPage1.Size = new System.Drawing.Size(802, 505);
203      this.tabPage1.TabIndex = 0;
204      this.tabPage1.Text = "Parameters";
205      this.tabPage1.UseVisualStyleBackColor = true;
206      //
207      // tabPage2
208      //
209      this.tabPage2.Controls.Add(this.splitContainer1);
210      this.tabPage2.Location = new System.Drawing.Point(4, 22);
211      this.tabPage2.Name = "tabPage2";
212      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
213      this.tabPage2.Size = new System.Drawing.Size(802, 505);
214      this.tabPage2.TabIndex = 1;
215      this.tabPage2.Text = "Results";
216      this.tabPage2.UseVisualStyleBackColor = true;
217      //
218      // tabPage3
219      //
220      this.tabPage3.Controls.Add(this.postProcessorListControl);
221      this.tabPage3.Location = new System.Drawing.Point(4, 22);
222      this.tabPage3.Name = "tabPage3";
223      this.tabPage3.Size = new System.Drawing.Size(802, 505);
224      this.tabPage3.TabIndex = 2;
225      this.tabPage3.Text = "Result Collection Modifiers";
226      this.tabPage3.UseVisualStyleBackColor = true;
227      //
228      // postProcessorListControl
229      //
230      this.postProcessorListControl.Caption = "View";
231      checkedItemList_11.Capacity = 0;
232      this.postProcessorListControl.Content = checkedItemList_11;
233      this.postProcessorListControl.Dock = System.Windows.Forms.DockStyle.Fill;
234      this.postProcessorListControl.Location = new System.Drawing.Point(0, 0);
235      this.postProcessorListControl.Name = "postProcessorListControl";
236      this.postProcessorListControl.ReadOnly = false;
237      this.postProcessorListControl.Size = new System.Drawing.Size(802, 505);
238      this.postProcessorListControl.TabIndex = 0;
239      //
240      // label1
241      //
242      this.label1.AutoSize = true;
243      this.label1.Location = new System.Drawing.Point(12, 15);
244      this.label1.Name = "label1";
245      this.label1.Size = new System.Drawing.Size(82, 13);
246      this.label1.TabIndex = 11;
247      this.label1.Text = "Template Name";
248      //
249      // textBoxTemplateName
250      //
251      this.textBoxTemplateName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
252            | System.Windows.Forms.AnchorStyles.Right)));
253      this.errorProvider.SetIconAlignment(this.textBoxTemplateName, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
254      this.textBoxTemplateName.Location = new System.Drawing.Point(100, 12);
255      this.textBoxTemplateName.Name = "textBoxTemplateName";
256      this.textBoxTemplateName.Size = new System.Drawing.Size(721, 20);
257      this.textBoxTemplateName.TabIndex = 12;
258      this.textBoxTemplateName.Text = "Template";
259      this.textBoxTemplateName.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxTemplateName_Validating);
260      //
261      // errorProvider
262      //
263      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
264      this.errorProvider.ContainerControl = this;
265      //
266      // jsonItemBindingSource
267      //
268      this.jsonItemBindingSource.DataSource = typeof(HeuristicLab.JsonInterface.IJsonItem);
269      //
270      // ExportJsonDialog
271      //
272      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
273      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
274      this.ClientSize = new System.Drawing.Size(834, 616);
275      this.Controls.Add(this.textBoxTemplateName);
276      this.Controls.Add(this.label1);
277      this.Controls.Add(this.exportButton);
278      this.Controls.Add(this.tabControl1);
279      this.Name = "ExportJsonDialog";
280      this.RightToLeft = System.Windows.Forms.RightToLeft.No;
281      this.Text = "Export Json";
282      this.groupBoxDetails.ResumeLayout(false);
283      this.splitContainer1.Panel1.ResumeLayout(false);
284      this.splitContainer1.Panel2.ResumeLayout(false);
285      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
286      this.splitContainer1.ResumeLayout(false);
287      this.groupBox.ResumeLayout(false);
288      this.splitContainer2.Panel1.ResumeLayout(false);
289      this.splitContainer2.Panel2.ResumeLayout(false);
290      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
291      this.splitContainer2.ResumeLayout(false);
292      this.tabControl1.ResumeLayout(false);
293      this.tabPage1.ResumeLayout(false);
294      this.tabPage2.ResumeLayout(false);
295      this.tabPage3.ResumeLayout(false);
296      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
297      ((System.ComponentModel.ISupportInitialize)(this.jsonItemBindingSource)).EndInit();
298      this.ResumeLayout(false);
299      this.PerformLayout();
300
301    }
302
303    #endregion
304
305    private System.Windows.Forms.BindingSource jsonItemBindingSource;
306    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
307    private System.Windows.Forms.Button exportButton;
308    private System.Windows.Forms.TreeView treeView;
309    private System.Windows.Forms.GroupBox groupBoxDetails;
310    private System.Windows.Forms.Panel panelParameterDetails;
311    private System.Windows.Forms.SplitContainer splitContainer2;
312    private System.Windows.Forms.TabControl tabControl1;
313    private System.Windows.Forms.TabPage tabPage1;
314    private System.Windows.Forms.TabPage tabPage2;
315    private System.Windows.Forms.TreeView treeViewResults;
316    private System.Windows.Forms.Label label1;
317    private System.Windows.Forms.TextBox textBoxTemplateName;
318    private System.Windows.Forms.ErrorProvider errorProvider;
319    private System.Windows.Forms.SplitContainer splitContainer1;
320    private System.Windows.Forms.GroupBox groupBox;
321    private System.Windows.Forms.Panel panelResultDetails;
322    private System.Windows.Forms.TabPage tabPage3;
323    private ResultCollectionPostProcessorControl postProcessorListControl;
324  }
325}
Note: See TracBrowser for help on using the repository browser.