Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PythonScript/HeuristicLab.Scripting.Python.Views/3.3/PytonScriptView.Designer.cs @ 10567

Last change on this file since 10567 was 10567, checked in by abeham, 10 years ago

#2165: Imported branch of adding python scripting support through IronPython

File size: 16.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Scripting.Python.Views {
23  partial class PythonScriptView {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PythonScriptView));
49      this.compilationLabel = new System.Windows.Forms.Label();
50      this.startStopButton = new System.Windows.Forms.Button();
51      this.errorListView = new System.Windows.Forms.ListView();
52      this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
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.imageList = new System.Windows.Forms.ImageList(this.components);
59      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
60      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
61      this.infoTabControl = new System.Windows.Forms.TabControl();
62      this.outputTabPage = new System.Windows.Forms.TabPage();
63      this.outputTextBox = new System.Windows.Forms.TextBox();
64      this.errorListTabPage = new System.Windows.Forms.TabPage();
65      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
66      this.compileButton = new System.Windows.Forms.Button();
67      this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView();
68      this.codeTextBox = new System.Windows.Forms.TextBox();
69      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
70      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
71      this.splitContainer1.Panel1.SuspendLayout();
72      this.splitContainer1.Panel2.SuspendLayout();
73      this.splitContainer1.SuspendLayout();
74      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
75      this.splitContainer2.Panel1.SuspendLayout();
76      this.splitContainer2.Panel2.SuspendLayout();
77      this.splitContainer2.SuspendLayout();
78      this.infoTabControl.SuspendLayout();
79      this.outputTabPage.SuspendLayout();
80      this.errorListTabPage.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(60, 0);
88      this.nameTextBox.Size = new System.Drawing.Size(750, 20);
89      //
90      // infoLabel
91      //
92      this.infoLabel.Location = new System.Drawing.Point(816, 4);
93      //
94      // compilationLabel
95      //
96      this.compilationLabel.AutoSize = true;
97      this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
98      this.compilationLabel.Location = new System.Drawing.Point(66, 32);
99      this.compilationLabel.Name = "compilationLabel";
100      this.compilationLabel.Size = new System.Drawing.Size(69, 13);
101      this.compilationLabel.TabIndex = 3;
102      this.compilationLabel.Text = "Not compiled";
103      //
104      // startStopButton
105      //
106      this.startStopButton.Image = ((System.Drawing.Image)(resources.GetObject("startStopButton.Image")));
107      this.startStopButton.Location = new System.Drawing.Point(36, 26);
108      this.startStopButton.Name = "startStopButton";
109      this.startStopButton.Size = new System.Drawing.Size(24, 24);
110      this.startStopButton.TabIndex = 1;
111      this.startStopButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
112      this.toolTip.SetToolTip(this.startStopButton, "Run (F5)");
113      this.startStopButton.UseVisualStyleBackColor = true;
114      this.startStopButton.Click += new System.EventHandler(this.startStopButton_Click);
115      //
116      // errorListView
117      //
118      this.errorListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
119            this.iconColumnHeader,
120            this.categoryColumnHeader,
121            this.errorNumberColumnHeader,
122            this.lineColumnHeader,
123            this.columnColumnHeader,
124            this.descriptionColumnHeader});
125      this.errorListView.Dock = System.Windows.Forms.DockStyle.Fill;
126      this.errorListView.FullRowSelect = true;
127      this.errorListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
128      this.errorListView.HideSelection = false;
129      this.errorListView.Location = new System.Drawing.Point(3, 3);
130      this.errorListView.Name = "errorListView";
131      this.errorListView.Size = new System.Drawing.Size(623, 79);
132      this.errorListView.SmallImageList = this.imageList;
133      this.errorListView.TabIndex = 0;
134      this.errorListView.UseCompatibleStateImageBehavior = false;
135      this.errorListView.View = System.Windows.Forms.View.Details;
136      //
137      // iconColumnHeader
138      //
139      this.iconColumnHeader.Text = "";
140      //
141      // categoryColumnHeader
142      //
143      this.categoryColumnHeader.Text = "Category";
144      //
145      // errorNumberColumnHeader
146      //
147      this.errorNumberColumnHeader.Text = "Error Number";
148      //
149      // lineColumnHeader
150      //
151      this.lineColumnHeader.Text = "Line";
152      //
153      // columnColumnHeader
154      //
155      this.columnColumnHeader.Text = "Column";
156      //
157      // descriptionColumnHeader
158      //
159      this.descriptionColumnHeader.Text = "Description";
160      //
161      // imageList
162      //
163      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
164      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
165      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
166      //
167      // splitContainer1
168      //
169      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
170            | System.Windows.Forms.AnchorStyles.Left)
171            | System.Windows.Forms.AnchorStyles.Right)));
172      this.splitContainer1.Location = new System.Drawing.Point(3, 56);
173      this.splitContainer1.Name = "splitContainer1";
174      //
175      // splitContainer1.Panel1
176      //
177      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
178      //
179      // splitContainer1.Panel2
180      //
181      this.splitContainer1.Panel2.Controls.Add(this.variableStoreView);
182      this.splitContainer1.Panel2.Controls.Add(this.viewHost);
183      this.splitContainer1.Size = new System.Drawing.Size(829, 543);
184      this.splitContainer1.SplitterDistance = 637;
185      this.splitContainer1.TabIndex = 7;
186      //
187      // splitContainer2
188      //
189      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
190      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
191      this.splitContainer2.Name = "splitContainer2";
192      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
193      //
194      // splitContainer2.Panel1
195      //
196      this.splitContainer2.Panel1.Controls.Add(this.codeTextBox);
197      //
198      // splitContainer2.Panel2
199      //
200      this.splitContainer2.Panel2.Controls.Add(this.infoTabControl);
201      this.splitContainer2.Size = new System.Drawing.Size(637, 543);
202      this.splitContainer2.SplitterDistance = 428;
203      this.splitContainer2.TabIndex = 5;
204      //
205      // infoTabControl
206      //
207      this.infoTabControl.Controls.Add(this.outputTabPage);
208      this.infoTabControl.Controls.Add(this.errorListTabPage);
209      this.infoTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
210      this.infoTabControl.Location = new System.Drawing.Point(0, 0);
211      this.infoTabControl.Name = "infoTabControl";
212      this.infoTabControl.SelectedIndex = 0;
213      this.infoTabControl.Size = new System.Drawing.Size(637, 111);
214      this.infoTabControl.TabIndex = 1;
215      //
216      // outputTabPage
217      //
218      this.outputTabPage.Controls.Add(this.outputTextBox);
219      this.outputTabPage.Location = new System.Drawing.Point(4, 22);
220      this.outputTabPage.Name = "outputTabPage";
221      this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
222      this.outputTabPage.Size = new System.Drawing.Size(629, 85);
223      this.outputTabPage.TabIndex = 1;
224      this.outputTabPage.Text = "Output";
225      this.outputTabPage.UseVisualStyleBackColor = true;
226      //
227      // outputTextBox
228      //
229      this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
230      this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
231      this.outputTextBox.Location = new System.Drawing.Point(3, 3);
232      this.outputTextBox.Multiline = true;
233      this.outputTextBox.Name = "outputTextBox";
234      this.outputTextBox.ReadOnly = true;
235      this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
236      this.outputTextBox.Size = new System.Drawing.Size(623, 79);
237      this.outputTextBox.TabIndex = 0;
238      this.outputTextBox.WordWrap = false;
239      //
240      // errorListTabPage
241      //
242      this.errorListTabPage.Controls.Add(this.errorListView);
243      this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
244      this.errorListTabPage.Name = "errorListTabPage";
245      this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
246      this.errorListTabPage.Size = new System.Drawing.Size(629, 85);
247      this.errorListTabPage.TabIndex = 0;
248      this.errorListTabPage.Text = "Error List";
249      this.errorListTabPage.UseVisualStyleBackColor = true;
250      //
251      // viewHost
252      //
253      this.viewHost.Caption = "View";
254      this.viewHost.Content = null;
255      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
256      this.viewHost.Enabled = false;
257      this.viewHost.Location = new System.Drawing.Point(0, 0);
258      this.viewHost.Name = "viewHost";
259      this.viewHost.ReadOnly = false;
260      this.viewHost.Size = new System.Drawing.Size(188, 543);
261      this.viewHost.TabIndex = 0;
262      this.viewHost.ViewsLabelVisible = true;
263      this.viewHost.ViewType = null;
264      //
265      // compileButton
266      //
267      this.compileButton.Image = ((System.Drawing.Image)(resources.GetObject("compileButton.Image")));
268      this.compileButton.Location = new System.Drawing.Point(6, 26);
269      this.compileButton.Name = "compileButton";
270      this.compileButton.Size = new System.Drawing.Size(24, 24);
271      this.compileButton.TabIndex = 8;
272      this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
273      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
274      this.compileButton.UseVisualStyleBackColor = true;
275      this.compileButton.Visible = false;
276      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
277      //
278      // variableStoreView
279      //
280      this.variableStoreView.Caption = "ItemCollection View";
281      this.variableStoreView.Content = null;
282      this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill;
283      this.variableStoreView.Location = new System.Drawing.Point(0, 0);
284      this.variableStoreView.Name = "variableStoreView";
285      this.variableStoreView.ReadOnly = false;
286      this.variableStoreView.Size = new System.Drawing.Size(188, 543);
287      this.variableStoreView.TabIndex = 0;
288      //
289      // codeTextBox
290      //
291      this.codeTextBox.AcceptsReturn = true;
292      this.codeTextBox.AcceptsTab = true;
293      this.codeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
294      this.codeTextBox.Location = new System.Drawing.Point(0, 0);
295      this.codeTextBox.Multiline = true;
296      this.codeTextBox.Name = "codeTextBox";
297      this.codeTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
298      this.codeTextBox.Size = new System.Drawing.Size(637, 428);
299      this.codeTextBox.TabIndex = 0;
300      this.codeTextBox.WordWrap = false;
301      this.codeTextBox.TextChanged += new System.EventHandler(this.CodeTextBoxOnTextChanged);
302      //
303      // PythonScriptView
304      //
305      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
306      this.Controls.Add(this.compileButton);
307      this.Controls.Add(this.splitContainer1);
308      this.Controls.Add(this.startStopButton);
309      this.Controls.Add(this.compilationLabel);
310      this.Name = "PythonScriptView";
311      this.Size = new System.Drawing.Size(835, 602);
312      this.Controls.SetChildIndex(this.compilationLabel, 0);
313      this.Controls.SetChildIndex(this.startStopButton, 0);
314      this.Controls.SetChildIndex(this.splitContainer1, 0);
315      this.Controls.SetChildIndex(this.nameLabel, 0);
316      this.Controls.SetChildIndex(this.nameTextBox, 0);
317      this.Controls.SetChildIndex(this.infoLabel, 0);
318      this.Controls.SetChildIndex(this.compileButton, 0);
319      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
320      this.splitContainer1.Panel1.ResumeLayout(false);
321      this.splitContainer1.Panel2.ResumeLayout(false);
322      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
323      this.splitContainer1.ResumeLayout(false);
324      this.splitContainer2.Panel1.ResumeLayout(false);
325      this.splitContainer2.Panel1.PerformLayout();
326      this.splitContainer2.Panel2.ResumeLayout(false);
327      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
328      this.splitContainer2.ResumeLayout(false);
329      this.infoTabControl.ResumeLayout(false);
330      this.outputTabPage.ResumeLayout(false);
331      this.outputTabPage.PerformLayout();
332      this.errorListTabPage.ResumeLayout(false);
333      this.ResumeLayout(false);
334      this.PerformLayout();
335
336    }
337
338    #endregion
339
340    private System.Windows.Forms.Label compilationLabel;
341    private System.Windows.Forms.Button startStopButton;
342    private System.Windows.Forms.ListView errorListView;
343    private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
344    private System.Windows.Forms.ColumnHeader lineColumnHeader;
345    private System.Windows.Forms.ColumnHeader columnColumnHeader;
346    private System.Windows.Forms.SplitContainer splitContainer1;
347    private System.Windows.Forms.SplitContainer splitContainer2;
348    private MainForm.WindowsForms.ViewHost viewHost;
349    private HeuristicLab.Scripting.Views.VariableStoreView variableStoreView;
350    private System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
351    private System.Windows.Forms.ColumnHeader categoryColumnHeader;
352    private System.Windows.Forms.TabControl infoTabControl;
353    private System.Windows.Forms.TabPage errorListTabPage;
354    private System.Windows.Forms.TabPage outputTabPage;
355    private System.Windows.Forms.TextBox outputTextBox;
356    private System.Windows.Forms.Button compileButton;
357    private System.Windows.Forms.ColumnHeader iconColumnHeader;
358    private System.Windows.Forms.ImageList imageList;
359    private System.Windows.Forms.TextBox codeTextBox;
360  }
361}
Note: See TracBrowser for help on using the repository browser.