Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Scripting.Views/3.3/ScriptView.Designer.cs @ 10731

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

#2136:

  • Split Script into Script and CSharpScript
  • Split ScriptView into ScriptView and CSharpScriptView
File size: 12.8 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.Views {
23  partial class ScriptView {
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(ScriptView));
49      this.compilationLabel = new System.Windows.Forms.Label();
50      this.imageList = new System.Windows.Forms.ImageList(this.components);
51      this.compileButton = new System.Windows.Forms.Button();
52      this.infoTabControl = new System.Windows.Forms.TabControl();
53      this.errorListTabPage = new System.Windows.Forms.TabPage();
54      this.errorListView = new System.Windows.Forms.ListView();
55      this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
56      this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
57      this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
58      this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
59      this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
60      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
61      this.outputTabPage = new System.Windows.Forms.TabPage();
62      this.outputTextBox = new System.Windows.Forms.TextBox();
63      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
64      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
65      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
66      this.infoTabControl.SuspendLayout();
67      this.errorListTabPage.SuspendLayout();
68      this.outputTabPage.SuspendLayout();
69      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
70      this.splitContainer1.Panel1.SuspendLayout();
71      this.splitContainer1.Panel2.SuspendLayout();
72      this.splitContainer1.SuspendLayout();
73      this.SuspendLayout();
74      //
75      // nameTextBox
76      //
77      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
78      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
79      this.nameTextBox.Location = new System.Drawing.Point(69, 0);
80      this.nameTextBox.Size = new System.Drawing.Size(741, 20);
81      //
82      // infoLabel
83      //
84      this.infoLabel.Location = new System.Drawing.Point(816, 4);
85      //
86      // compilationLabel
87      //
88      this.compilationLabel.AutoSize = true;
89      this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
90      this.compilationLabel.Location = new System.Drawing.Point(66, 32);
91      this.compilationLabel.Name = "compilationLabel";
92      this.compilationLabel.Size = new System.Drawing.Size(69, 13);
93      this.compilationLabel.TabIndex = 3;
94      this.compilationLabel.Text = "Not compiled";
95      //
96      // imageList
97      //
98      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
99      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
100      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
101      //
102      // compileButton
103      //
104      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
105      this.compileButton.Location = new System.Drawing.Point(6, 26);
106      this.compileButton.Name = "compileButton";
107      this.compileButton.Size = new System.Drawing.Size(24, 24);
108      this.compileButton.TabIndex = 8;
109      this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
110      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
111      this.compileButton.UseVisualStyleBackColor = true;
112      this.compileButton.Click += new System.EventHandler(this.CompileButtonOnClick);
113      //
114      // infoTabControl
115      //
116      this.infoTabControl.Controls.Add(this.outputTabPage);
117      this.infoTabControl.Controls.Add(this.errorListTabPage);
118      this.infoTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
119      this.infoTabControl.Location = new System.Drawing.Point(0, 0);
120      this.infoTabControl.Name = "infoTabControl";
121      this.infoTabControl.SelectedIndex = 0;
122      this.infoTabControl.Size = new System.Drawing.Size(832, 112);
123      this.infoTabControl.TabIndex = 1;
124      //
125      // errorListTabPage
126      //
127      this.errorListTabPage.Controls.Add(this.errorListView);
128      this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
129      this.errorListTabPage.Name = "errorListTabPage";
130      this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
131      this.errorListTabPage.Size = new System.Drawing.Size(824, 86);
132      this.errorListTabPage.TabIndex = 0;
133      this.errorListTabPage.Text = "Error List";
134      this.errorListTabPage.UseVisualStyleBackColor = true;
135      //
136      // errorListView
137      //
138      this.errorListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
139            this.iconColumnHeader,
140            this.categoryColumnHeader,
141            this.errorNumberColumnHeader,
142            this.lineColumnHeader,
143            this.columnColumnHeader,
144            this.descriptionColumnHeader});
145      this.errorListView.Dock = System.Windows.Forms.DockStyle.Fill;
146      this.errorListView.FullRowSelect = true;
147      this.errorListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
148      this.errorListView.HideSelection = false;
149      this.errorListView.Location = new System.Drawing.Point(3, 3);
150      this.errorListView.Name = "errorListView";
151      this.errorListView.Size = new System.Drawing.Size(818, 80);
152      this.errorListView.SmallImageList = this.imageList;
153      this.errorListView.TabIndex = 0;
154      this.errorListView.UseCompatibleStateImageBehavior = false;
155      this.errorListView.View = System.Windows.Forms.View.Details;
156      //
157      // iconColumnHeader
158      //
159      this.iconColumnHeader.Text = "";
160      //
161      // categoryColumnHeader
162      //
163      this.categoryColumnHeader.Text = "Category";
164      //
165      // errorNumberColumnHeader
166      //
167      this.errorNumberColumnHeader.Text = "Error Number";
168      //
169      // lineColumnHeader
170      //
171      this.lineColumnHeader.Text = "Line";
172      //
173      // columnColumnHeader
174      //
175      this.columnColumnHeader.Text = "Column";
176      //
177      // descriptionColumnHeader
178      //
179      this.descriptionColumnHeader.Text = "Description";
180      //
181      // outputTabPage
182      //
183      this.outputTabPage.Controls.Add(this.outputTextBox);
184      this.outputTabPage.Location = new System.Drawing.Point(4, 22);
185      this.outputTabPage.Name = "outputTabPage";
186      this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
187      this.outputTabPage.Size = new System.Drawing.Size(824, 86);
188      this.outputTabPage.TabIndex = 1;
189      this.outputTabPage.Text = "Output";
190      this.outputTabPage.UseVisualStyleBackColor = true;
191      //
192      // outputTextBox
193      //
194      this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
195      this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
196      this.outputTextBox.Location = new System.Drawing.Point(3, 3);
197      this.outputTextBox.Multiline = true;
198      this.outputTextBox.Name = "outputTextBox";
199      this.outputTextBox.ReadOnly = true;
200      this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
201      this.outputTextBox.Size = new System.Drawing.Size(818, 80);
202      this.outputTextBox.TabIndex = 0;
203      this.outputTextBox.WordWrap = false;
204      //
205      // codeEditor
206      //
207      this.codeEditor.Dock = System.Windows.Forms.DockStyle.Fill;
208      this.codeEditor.Location = new System.Drawing.Point(0, 0);
209      this.codeEditor.Name = "codeEditor";
210      this.codeEditor.Prefix = "";
211      this.codeEditor.Size = new System.Drawing.Size(832, 430);
212      this.codeEditor.Suffix = "";
213      this.codeEditor.TabIndex = 0;
214      this.codeEditor.UserCode = "";
215      this.codeEditor.TextEditorTextChanged += new System.EventHandler(this.CodeEditorOnTextEditorTextChanged);
216      //
217      // splitContainer1
218      //
219      this.splitContainer1.Location = new System.Drawing.Point(0, 56);
220      this.splitContainer1.Name = "splitContainer1";
221      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
222      //
223      // splitContainer1.Panel1
224      //
225      this.splitContainer1.Panel1.Controls.Add(this.codeEditor);
226      //
227      // splitContainer1.Panel2
228      //
229      this.splitContainer1.Panel2.Controls.Add(this.infoTabControl);
230      this.splitContainer1.Size = new System.Drawing.Size(832, 546);
231      this.splitContainer1.SplitterDistance = 430;
232      this.splitContainer1.TabIndex = 9;
233      //
234      // ScriptView
235      //
236      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
237      this.Controls.Add(this.splitContainer1);
238      this.Controls.Add(this.compileButton);
239      this.Controls.Add(this.compilationLabel);
240      this.Name = "ScriptView";
241      this.Size = new System.Drawing.Size(835, 602);
242      this.Controls.SetChildIndex(this.compilationLabel, 0);
243      this.Controls.SetChildIndex(this.compileButton, 0);
244      this.Controls.SetChildIndex(this.splitContainer1, 0);
245      this.Controls.SetChildIndex(this.nameLabel, 0);
246      this.Controls.SetChildIndex(this.nameTextBox, 0);
247      this.Controls.SetChildIndex(this.infoLabel, 0);
248      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
249      this.infoTabControl.ResumeLayout(false);
250      this.errorListTabPage.ResumeLayout(false);
251      this.outputTabPage.ResumeLayout(false);
252      this.outputTabPage.PerformLayout();
253      this.splitContainer1.Panel1.ResumeLayout(false);
254      this.splitContainer1.Panel2.ResumeLayout(false);
255      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
256      this.splitContainer1.ResumeLayout(false);
257      this.ResumeLayout(false);
258      this.PerformLayout();
259
260    }
261
262    #endregion
263
264    protected System.Windows.Forms.Label compilationLabel;
265    protected System.Windows.Forms.Button compileButton;
266    protected System.Windows.Forms.ImageList imageList;
267    protected System.Windows.Forms.TabControl infoTabControl;
268    protected System.Windows.Forms.TabPage outputTabPage;
269    protected System.Windows.Forms.TextBox outputTextBox;
270    protected System.Windows.Forms.TabPage errorListTabPage;
271    protected System.Windows.Forms.ListView errorListView;
272    protected System.Windows.Forms.ColumnHeader iconColumnHeader;
273    protected System.Windows.Forms.ColumnHeader categoryColumnHeader;
274    protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
275    protected System.Windows.Forms.ColumnHeader lineColumnHeader;
276    protected System.Windows.Forms.ColumnHeader columnColumnHeader;
277    protected System.Windows.Forms.ColumnHeader descriptionColumnHeader;
278    protected CodeEditor.CodeEditor codeEditor;
279    protected System.Windows.Forms.SplitContainer splitContainer1;
280  }
281}
Note: See TracBrowser for help on using the repository browser.