Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11836 was 11836, checked in by jkarder, 9 years ago

#2077:

  • changed error and warning markup handling
  • minor code changes
File size: 13.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
22using System.Collections.Generic;
23using System.Reflection;
24using HeuristicLab.Common;
25
26namespace HeuristicLab.Scripting.Views {
27  partial class ScriptView {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
34    /// Clean up any resources being used.
35    /// </summary>
36    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
37    protected override void Dispose(bool disposing) {
38      if (disposing && (components != null)) {
39        components.Dispose();
40      }
41      base.Dispose(disposing);
42    }
43
44    #region Component Designer generated code
45
46    /// <summary>
47    /// Required method for Designer support - do not modify
48    /// the contents of this method with the code editor.
49    /// </summary>
50    private void InitializeComponent() {
51      this.components = new System.ComponentModel.Container();
52      this.infoTextLabel = new System.Windows.Forms.Label();
53      this.imageList = new System.Windows.Forms.ImageList(this.components);
54      this.compileButton = new System.Windows.Forms.Button();
55      this.infoTabControl = new System.Windows.Forms.TabControl();
56      this.outputTabPage = new System.Windows.Forms.TabPage();
57      this.outputTextBox = new System.Windows.Forms.TextBox();
58      this.errorListTabPage = new System.Windows.Forms.TabPage();
59      this.errorListView = new System.Windows.Forms.ListView();
60      this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
61      this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
62      this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
63      this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
64      this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
65      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
66      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
67      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
68      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
69      this.infoTabControl.SuspendLayout();
70      this.outputTabPage.SuspendLayout();
71      this.errorListTabPage.SuspendLayout();
72      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
73      this.splitContainer1.Panel1.SuspendLayout();
74      this.splitContainer1.Panel2.SuspendLayout();
75      this.splitContainer1.SuspendLayout();
76      this.SuspendLayout();
77      //
78      // nameTextBox
79      //
80      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
81      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
82      this.nameTextBox.Location = new System.Drawing.Point(69, 0);
83      this.nameTextBox.Size = new System.Drawing.Size(741, 20);
84      //
85      // infoLabel
86      //
87      this.infoLabel.Location = new System.Drawing.Point(816, 4);
88      //
89      // infoTextLabel
90      //
91      this.infoTextLabel.AutoSize = true;
92      this.infoTextLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
93      this.infoTextLabel.Location = new System.Drawing.Point(66, 32);
94      this.infoTextLabel.Name = "infoTextLabel";
95      this.infoTextLabel.Size = new System.Drawing.Size(69, 13);
96      this.infoTextLabel.TabIndex = 3;
97      this.infoTextLabel.Text = "Not compiled";
98      //
99      // imageList
100      //
101      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
102      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
103      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
104      //
105      // compileButton
106      //
107      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
108      this.compileButton.Location = new System.Drawing.Point(6, 26);
109      this.compileButton.Name = "compileButton";
110      this.compileButton.Size = new System.Drawing.Size(24, 24);
111      this.compileButton.TabIndex = 8;
112      this.compileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
113      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
114      this.compileButton.UseVisualStyleBackColor = true;
115      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
116      //
117      // infoTabControl
118      //
119      this.infoTabControl.Controls.Add(this.outputTabPage);
120      this.infoTabControl.Controls.Add(this.errorListTabPage);
121      this.infoTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
122      this.infoTabControl.Location = new System.Drawing.Point(0, 0);
123      this.infoTabControl.Name = "infoTabControl";
124      this.infoTabControl.SelectedIndex = 0;
125      this.infoTabControl.Size = new System.Drawing.Size(832, 112);
126      this.infoTabControl.TabIndex = 1;
127      //
128      // outputTabPage
129      //
130      this.outputTabPage.Controls.Add(this.outputTextBox);
131      this.outputTabPage.Location = new System.Drawing.Point(4, 22);
132      this.outputTabPage.Name = "outputTabPage";
133      this.outputTabPage.Padding = new System.Windows.Forms.Padding(3);
134      this.outputTabPage.Size = new System.Drawing.Size(824, 86);
135      this.outputTabPage.TabIndex = 1;
136      this.outputTabPage.Text = "Output";
137      this.outputTabPage.UseVisualStyleBackColor = true;
138      //
139      // outputTextBox
140      //
141      this.outputTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
142      this.outputTextBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
143      this.outputTextBox.Location = new System.Drawing.Point(3, 3);
144      this.outputTextBox.Multiline = true;
145      this.outputTextBox.Name = "outputTextBox";
146      this.outputTextBox.ReadOnly = true;
147      this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
148      this.outputTextBox.Size = new System.Drawing.Size(818, 80);
149      this.outputTextBox.TabIndex = 0;
150      this.outputTextBox.WordWrap = false;
151      //
152      // errorListTabPage
153      //
154      this.errorListTabPage.Controls.Add(this.errorListView);
155      this.errorListTabPage.Location = new System.Drawing.Point(4, 22);
156      this.errorListTabPage.Name = "errorListTabPage";
157      this.errorListTabPage.Padding = new System.Windows.Forms.Padding(3);
158      this.errorListTabPage.Size = new System.Drawing.Size(824, 86);
159      this.errorListTabPage.TabIndex = 0;
160      this.errorListTabPage.Text = "Error List";
161      this.errorListTabPage.UseVisualStyleBackColor = true;
162      //
163      // errorListView
164      //
165      this.errorListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
166            this.iconColumnHeader,
167            this.categoryColumnHeader,
168            this.errorNumberColumnHeader,
169            this.lineColumnHeader,
170            this.columnColumnHeader,
171            this.descriptionColumnHeader});
172      this.errorListView.Dock = System.Windows.Forms.DockStyle.Fill;
173      this.errorListView.FullRowSelect = true;
174      this.errorListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
175      this.errorListView.HideSelection = false;
176      this.errorListView.Location = new System.Drawing.Point(3, 3);
177      this.errorListView.Name = "errorListView";
178      this.errorListView.Size = new System.Drawing.Size(818, 80);
179      this.errorListView.SmallImageList = this.imageList;
180      this.errorListView.TabIndex = 0;
181      this.errorListView.UseCompatibleStateImageBehavior = false;
182      this.errorListView.View = System.Windows.Forms.View.Details;
183      this.errorListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.errorListView_MouseDoubleClick);
184      //
185      // iconColumnHeader
186      //
187      this.iconColumnHeader.Text = "";
188      //
189      // categoryColumnHeader
190      //
191      this.categoryColumnHeader.Text = "Category";
192      //
193      // errorNumberColumnHeader
194      //
195      this.errorNumberColumnHeader.Text = "Error Number";
196      //
197      // lineColumnHeader
198      //
199      this.lineColumnHeader.Text = "Line";
200      //
201      // columnColumnHeader
202      //
203      this.columnColumnHeader.Text = "Column";
204      //
205      // descriptionColumnHeader
206      //
207      this.descriptionColumnHeader.Text = "Description";
208      //
209      // codeEditor
210      //
211      this.codeEditor.Dock = System.Windows.Forms.DockStyle.Fill;
212      this.codeEditor.Location = new System.Drawing.Point(0, 0);
213      this.codeEditor.Name = "codeEditor";
214      this.codeEditor.Prefix = "";
215      this.codeEditor.Size = new System.Drawing.Size(832, 430);
216      this.codeEditor.Suffix = "";
217      this.codeEditor.TabIndex = 0;
218      this.codeEditor.UserCode = "";
219      this.codeEditor.TextEditorTextChanged += new System.EventHandler(this.codeEditor_TextEditorTextChanged);
220      this.codeEditor.AssembliesLoading += new System.EventHandler<HeuristicLab.Common.EventArgs<System.Collections.Generic.IEnumerable<System.Reflection.Assembly>>>(this.codeEditor_AssembliesLoading);
221      this.codeEditor.AssembliesLoaded += new System.EventHandler<HeuristicLab.Common.EventArgs<System.Collections.Generic.IEnumerable<System.Reflection.Assembly>>>(this.codeEditor_AssembliesLoaded);
222      this.codeEditor.AssembliesUnloading += new System.EventHandler<HeuristicLab.Common.EventArgs<System.Collections.Generic.IEnumerable<System.Reflection.Assembly>>>(this.codeEditor_AssembliesUnloading);
223      this.codeEditor.AssembliesUnloaded += new System.EventHandler<HeuristicLab.Common.EventArgs<System.Collections.Generic.IEnumerable<System.Reflection.Assembly>>>(this.codeEditor_AssembliesUnloaded);
224      //
225      // splitContainer1
226      //
227      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
228            | System.Windows.Forms.AnchorStyles.Left)
229            | System.Windows.Forms.AnchorStyles.Right)));
230      this.splitContainer1.Location = new System.Drawing.Point(0, 56);
231      this.splitContainer1.Name = "splitContainer1";
232      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
233      //
234      // splitContainer1.Panel1
235      //
236      this.splitContainer1.Panel1.Controls.Add(this.codeEditor);
237      //
238      // splitContainer1.Panel2
239      //
240      this.splitContainer1.Panel2.Controls.Add(this.infoTabControl);
241      this.splitContainer1.Size = new System.Drawing.Size(832, 546);
242      this.splitContainer1.SplitterDistance = 430;
243      this.splitContainer1.TabIndex = 9;
244      //
245      // ScriptView
246      //
247      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
248      this.Controls.Add(this.splitContainer1);
249      this.Controls.Add(this.compileButton);
250      this.Controls.Add(this.infoTextLabel);
251      this.Name = "ScriptView";
252      this.Size = new System.Drawing.Size(835, 602);
253      this.Controls.SetChildIndex(this.infoTextLabel, 0);
254      this.Controls.SetChildIndex(this.compileButton, 0);
255      this.Controls.SetChildIndex(this.splitContainer1, 0);
256      this.Controls.SetChildIndex(this.nameLabel, 0);
257      this.Controls.SetChildIndex(this.nameTextBox, 0);
258      this.Controls.SetChildIndex(this.infoLabel, 0);
259      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
260      this.infoTabControl.ResumeLayout(false);
261      this.outputTabPage.ResumeLayout(false);
262      this.outputTabPage.PerformLayout();
263      this.errorListTabPage.ResumeLayout(false);
264      this.splitContainer1.Panel1.ResumeLayout(false);
265      this.splitContainer1.Panel2.ResumeLayout(false);
266      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
267      this.splitContainer1.ResumeLayout(false);
268      this.ResumeLayout(false);
269      this.PerformLayout();
270
271    }
272
273    #endregion
274
275    protected System.Windows.Forms.Label infoTextLabel;
276    protected System.Windows.Forms.Button compileButton;
277    protected System.Windows.Forms.ImageList imageList;
278    protected System.Windows.Forms.TabControl infoTabControl;
279    protected System.Windows.Forms.TabPage outputTabPage;
280    protected System.Windows.Forms.TextBox outputTextBox;
281    protected System.Windows.Forms.TabPage errorListTabPage;
282    protected System.Windows.Forms.ListView errorListView;
283    protected System.Windows.Forms.ColumnHeader iconColumnHeader;
284    protected System.Windows.Forms.ColumnHeader categoryColumnHeader;
285    protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
286    protected System.Windows.Forms.ColumnHeader lineColumnHeader;
287    protected System.Windows.Forms.ColumnHeader columnColumnHeader;
288    protected System.Windows.Forms.ColumnHeader descriptionColumnHeader;
289    protected CodeEditor.CodeEditor codeEditor;
290    protected System.Windows.Forms.SplitContainer splitContainer1;
291  }
292}
Note: See TracBrowser for help on using the repository browser.