Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HLScript/HeuristicLab.HLScript.Views/3.3/HLScriptView.Designer.cs @ 10479

Last change on this file since 10479 was 10358, checked in by jkarder, 10 years ago

#2136:

  • refactored HLScriptGeneration to separate outputs from different running HL scripts.
  • added persistence support for HLScripts and fixed cloning
  • added code completion for all types in the currently loaded assemblies
  • merged trunk changes
File size: 15.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.HLScript.Views {
23  partial class HLScriptView {
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.compilationLabel = new System.Windows.Forms.Label();
48      this.showCodeButton = new System.Windows.Forms.Button();
49      this.startStopButton = new System.Windows.Forms.Button();
50      this.errorListView = new System.Windows.Forms.ListView();
51      this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
52      this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
53      this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
54      this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
55      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
56      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
57      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
58      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
59      this.tabControl1 = new System.Windows.Forms.TabControl();
60      this.errorListTabPage = new System.Windows.Forms.TabPage();
61      this.outputTabPage = new System.Windows.Forms.TabPage();
62      this.outputTextBox = new System.Windows.Forms.TextBox();
63      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
64      this.variableStoreView = new HeuristicLab.HLScript.Views.VariableStoreView();
65      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
66      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
67      this.splitContainer1.Panel1.SuspendLayout();
68      this.splitContainer1.Panel2.SuspendLayout();
69      this.splitContainer1.SuspendLayout();
70      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
71      this.splitContainer2.Panel1.SuspendLayout();
72      this.splitContainer2.Panel2.SuspendLayout();
73      this.splitContainer2.SuspendLayout();
74      this.tabControl1.SuspendLayout();
75      this.errorListTabPage.SuspendLayout();
76      this.outputTabPage.SuspendLayout();
77      this.SuspendLayout();
78      //
79      // nameTextBox
80      //
81      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
82      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
83      this.nameTextBox.Location = new System.Drawing.Point(60, 0);
84      this.nameTextBox.Size = new System.Drawing.Size(750, 20);
85      //
86      // infoLabel
87      //
88      this.infoLabel.Location = new System.Drawing.Point(816, 4);
89      //
90      // compilationLabel
91      //
92      this.compilationLabel.AutoSize = true;
93      this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
94      this.compilationLabel.Location = new System.Drawing.Point(63, 32);
95      this.compilationLabel.Name = "compilationLabel";
96      this.compilationLabel.Size = new System.Drawing.Size(69, 13);
97      this.compilationLabel.TabIndex = 3;
98      this.compilationLabel.Text = "Not compiled";
99      //
100      // showCodeButton
101      //
102      this.showCodeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PrintPreview;
103      this.showCodeButton.Location = new System.Drawing.Point(33, 26);
104      this.showCodeButton.Name = "showCodeButton";
105      this.showCodeButton.Size = new System.Drawing.Size(24, 24);
106      this.showCodeButton.TabIndex = 2;
107      this.showCodeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
108      this.toolTip.SetToolTip(this.showCodeButton, "Show generated code");
109      this.showCodeButton.UseVisualStyleBackColor = true;
110      this.showCodeButton.Click += new System.EventHandler(this.showCodeButton_Click);
111      //
112      // startStopButton
113      //
114      this.startStopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
115      this.startStopButton.Location = new System.Drawing.Point(3, 26);
116      this.startStopButton.Name = "startStopButton";
117      this.startStopButton.Size = new System.Drawing.Size(24, 24);
118      this.startStopButton.TabIndex = 1;
119      this.startStopButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
120      this.toolTip.SetToolTip(this.startStopButton, "Run (F5)");
121      this.startStopButton.UseVisualStyleBackColor = true;
122      this.startStopButton.Click += new System.EventHandler(this.startStopButton_Click);
123      //
124      // errorListView
125      //
126      this.errorListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
127            this.categoryColumnHeader,
128            this.errorNumberColumnHeader,
129            this.lineColumnHeader,
130            this.columnColumnHeader,
131            this.descriptionColumnHeader});
132      this.errorListView.Dock = System.Windows.Forms.DockStyle.Fill;
133      this.errorListView.FullRowSelect = true;
134      this.errorListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
135      this.errorListView.HideSelection = false;
136      this.errorListView.Location = new System.Drawing.Point(3, 3);
137      this.errorListView.Name = "errorListView";
138      this.errorListView.Size = new System.Drawing.Size(623, 79);
139      this.errorListView.TabIndex = 0;
140      this.errorListView.UseCompatibleStateImageBehavior = false;
141      this.errorListView.View = System.Windows.Forms.View.Details;
142      //
143      // categoryColumnHeader
144      //
145      this.categoryColumnHeader.Text = "Category";
146      //
147      // errorNumberColumnHeader
148      //
149      this.errorNumberColumnHeader.Text = "Error Number";
150      this.errorNumberColumnHeader.Width = 78;
151      //
152      // lineColumnHeader
153      //
154      this.lineColumnHeader.Text = "Line";
155      this.lineColumnHeader.Width = 50;
156      //
157      // columnColumnHeader
158      //
159      this.columnColumnHeader.Text = "Column";
160      this.columnColumnHeader.Width = 50;
161      //
162      // descriptionColumnHeader
163      //
164      this.descriptionColumnHeader.Text = "Description";
165      this.descriptionColumnHeader.Width = 600;
166      //
167      // codeEditor
168      //
169      this.codeEditor.Dock = System.Windows.Forms.DockStyle.Fill;
170      this.codeEditor.Location = new System.Drawing.Point(0, 0);
171      this.codeEditor.Name = "codeEditor";
172      this.codeEditor.Prefix = "";
173      this.codeEditor.Size = new System.Drawing.Size(637, 428);
174      this.codeEditor.Suffix = "";
175      this.codeEditor.TabIndex = 0;
176      this.codeEditor.UserCode = "";
177      this.codeEditor.TextEditorTextChanged += new System.EventHandler(this.codeEditor_TextEditorTextChanged);
178      //
179      // splitContainer1
180      //
181      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
182            | System.Windows.Forms.AnchorStyles.Left)
183            | System.Windows.Forms.AnchorStyles.Right)));
184      this.splitContainer1.Location = new System.Drawing.Point(3, 56);
185      this.splitContainer1.Name = "splitContainer1";
186      //
187      // splitContainer1.Panel1
188      //
189      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
190      //
191      // splitContainer1.Panel2
192      //
193      this.splitContainer1.Panel2.Controls.Add(this.variableStoreView);
194      this.splitContainer1.Panel2.Controls.Add(this.viewHost);
195      this.splitContainer1.Size = new System.Drawing.Size(829, 543);
196      this.splitContainer1.SplitterDistance = 637;
197      this.splitContainer1.TabIndex = 7;
198      //
199      // splitContainer2
200      //
201      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
202      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
203      this.splitContainer2.Name = "splitContainer2";
204      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
205      //
206      // splitContainer2.Panel1
207      //
208      this.splitContainer2.Panel1.Controls.Add(this.codeEditor);
209      //
210      // splitContainer2.Panel2
211      //
212      this.splitContainer2.Panel2.Controls.Add(this.tabControl1);
213      this.splitContainer2.Size = new System.Drawing.Size(637, 543);
214      this.splitContainer2.SplitterDistance = 428;
215      this.splitContainer2.TabIndex = 5;
216      //
217      // tabControl1
218      //
219      this.tabControl1.Controls.Add(this.errorListTabPage);
220      this.tabControl1.Controls.Add(this.outputTabPage);
221      this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
222      this.tabControl1.Location = new System.Drawing.Point(0, 0);
223      this.tabControl1.Name = "tabControl1";
224      this.tabControl1.SelectedIndex = 0;
225      this.tabControl1.Size = new System.Drawing.Size(637, 111);
226      this.tabControl1.TabIndex = 1;
227      //
228      // errorListTabPage
229      //
230      this.errorListTabPage.Controls.Add(this.errorListView);
231      this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
232      this.errorListTabPage.Name = "errorListTabPage";
233      this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
234      this.errorListTabPage.Size = new System.Drawing.Size(629, 85);
235      this.errorListTabPage.TabIndex = 0;
236      this.errorListTabPage.Text = "Error List";
237      this.errorListTabPage.UseVisualStyleBackColor = true;
238      //
239      // outputTabPage
240      //
241      this.outputTabPage.Controls.Add(this.outputTextBox);
242      this.outputTabPage.Location = new System.Drawing.Point(4, 22);
243      this.outputTabPage.Name = "outputTabPage";
244      this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
245      this.outputTabPage.Size = new System.Drawing.Size(629, 85);
246      this.outputTabPage.TabIndex = 1;
247      this.outputTabPage.Text = "Output";
248      this.outputTabPage.UseVisualStyleBackColor = true;
249      //
250      // outputTextBox
251      //
252      this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
253      this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
254      this.outputTextBox.Location = new System.Drawing.Point(3, 3);
255      this.outputTextBox.Multiline = true;
256      this.outputTextBox.Name = "outputTextBox";
257      this.outputTextBox.ReadOnly = true;
258      this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
259      this.outputTextBox.Size = new System.Drawing.Size(623, 79);
260      this.outputTextBox.TabIndex = 0;
261      this.outputTextBox.WordWrap = false;
262      //
263      // viewHost
264      //
265      this.viewHost.Caption = "View";
266      this.viewHost.Content = null;
267      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
268      this.viewHost.Enabled = false;
269      this.viewHost.Location = new System.Drawing.Point(0, 0);
270      this.viewHost.Name = "viewHost";
271      this.viewHost.ReadOnly = false;
272      this.viewHost.Size = new System.Drawing.Size(188, 543);
273      this.viewHost.TabIndex = 0;
274      this.viewHost.ViewsLabelVisible = true;
275      this.viewHost.ViewType = null;
276      //
277      // variableStoreView
278      //
279      this.variableStoreView.Caption = "ItemCollection View";
280      this.variableStoreView.Content = null;
281      this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill;
282      this.variableStoreView.Location = new System.Drawing.Point(0, 0);
283      this.variableStoreView.Name = "variableStoreView";
284      this.variableStoreView.ReadOnly = false;
285      this.variableStoreView.Size = new System.Drawing.Size(188, 543);
286      this.variableStoreView.TabIndex = 0;
287      //
288      // HLScriptView
289      //
290      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
291      this.Controls.Add(this.splitContainer1);
292      this.Controls.Add(this.startStopButton);
293      this.Controls.Add(this.compilationLabel);
294      this.Controls.Add(this.showCodeButton);
295      this.Name = "HLScriptView";
296      this.Size = new System.Drawing.Size(835, 602);
297      this.Controls.SetChildIndex(this.showCodeButton, 0);
298      this.Controls.SetChildIndex(this.compilationLabel, 0);
299      this.Controls.SetChildIndex(this.startStopButton, 0);
300      this.Controls.SetChildIndex(this.splitContainer1, 0);
301      this.Controls.SetChildIndex(this.nameLabel, 0);
302      this.Controls.SetChildIndex(this.nameTextBox, 0);
303      this.Controls.SetChildIndex(this.infoLabel, 0);
304      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
305      this.splitContainer1.Panel1.ResumeLayout(false);
306      this.splitContainer1.Panel2.ResumeLayout(false);
307      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
308      this.splitContainer1.ResumeLayout(false);
309      this.splitContainer2.Panel1.ResumeLayout(false);
310      this.splitContainer2.Panel2.ResumeLayout(false);
311      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
312      this.splitContainer2.ResumeLayout(false);
313      this.tabControl1.ResumeLayout(false);
314      this.errorListTabPage.ResumeLayout(false);
315      this.outputTabPage.ResumeLayout(false);
316      this.outputTabPage.PerformLayout();
317      this.ResumeLayout(false);
318      this.PerformLayout();
319
320    }
321
322    #endregion
323
324    private System.Windows.Forms.Button showCodeButton;
325    private System.Windows.Forms.Label compilationLabel;
326    private System.Windows.Forms.Button startStopButton;
327    private System.Windows.Forms.ListView errorListView;
328    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
329    private System.Windows.Forms.ColumnHeader lineColumnHeader;
330    private System.Windows.Forms.ColumnHeader columnColumnHeader;
331    private CodeEditor.CodeEditor codeEditor;
332    private System.Windows.Forms.SplitContainer splitContainer1;
333    private System.Windows.Forms.SplitContainer splitContainer2;
334    private MainForm.WindowsForms.ViewHost viewHost;
335    private VariableStoreView variableStoreView;
336    private System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
337    private System.Windows.Forms.ColumnHeader categoryColumnHeader;
338    private System.Windows.Forms.TabControl tabControl1;
339    private System.Windows.Forms.TabPage errorListTabPage;
340    private System.Windows.Forms.TabPage outputTabPage;
341    private System.Windows.Forms.TextBox outputTextBox;
342  }
343}
Note: See TracBrowser for help on using the repository browser.