Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2136: added prototype of a scripting environment

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