Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/Core.Networks.Views/ProgrammableNetworkItemView.Designer.cs @ 11563

Last change on this file since 11563 was 11563, checked in by swagner, 9 years ago

#2205: Continued working on programmable network items

  • implemented view and some refactoring
File size: 11.3 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.Core.Networks.Views {
23  partial class ProgrammableNetworkItemView {
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 Windows Form 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.splitContainer = new System.Windows.Forms.SplitContainer();
49      this.codeGroupBox = new System.Windows.Forms.GroupBox();
50      this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor();
51      this.errorsGroupBox = new System.Windows.Forms.GroupBox();
52      this.errorsListView = new System.Windows.Forms.ListView();
53      this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
54      this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
55      this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
56      this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
57      this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
58      this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
59      this.imageList = new System.Windows.Forms.ImageList(this.components);
60      this.compileButton = new System.Windows.Forms.Button();
61      this.compilationLabel = new System.Windows.Forms.Label();
62      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
63      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
64      this.splitContainer.Panel1.SuspendLayout();
65      this.splitContainer.Panel2.SuspendLayout();
66      this.splitContainer.SuspendLayout();
67      this.codeGroupBox.SuspendLayout();
68      this.errorsGroupBox.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // nameTextBox
72      //
73      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
74      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
75      //
76      // splitContainer
77      //
78      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
79            | System.Windows.Forms.AnchorStyles.Left)
80            | System.Windows.Forms.AnchorStyles.Right)));
81      this.splitContainer.Location = new System.Drawing.Point(0, 56);
82      this.splitContainer.Name = "splitContainer";
83      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
84      //
85      // splitContainer.Panel1
86      //
87      this.splitContainer.Panel1.Controls.Add(this.codeGroupBox);
88      //
89      // splitContainer.Panel2
90      //
91      this.splitContainer.Panel2.Controls.Add(this.errorsGroupBox);
92      this.splitContainer.Size = new System.Drawing.Size(645, 461);
93      this.splitContainer.SplitterDistance = 352;
94      this.splitContainer.TabIndex = 3;
95      //
96      // codeGroupBox
97      //
98      this.codeGroupBox.Controls.Add(this.codeEditor);
99      this.codeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
100      this.codeGroupBox.Location = new System.Drawing.Point(0, 0);
101      this.codeGroupBox.Name = "codeGroupBox";
102      this.codeGroupBox.Size = new System.Drawing.Size(645, 352);
103      this.codeGroupBox.TabIndex = 1;
104      this.codeGroupBox.TabStop = false;
105      this.codeGroupBox.Text = "Code";
106      //
107      // codeEditor
108      //
109      this.codeEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110            | System.Windows.Forms.AnchorStyles.Left)
111            | System.Windows.Forms.AnchorStyles.Right)));
112      this.codeEditor.Location = new System.Drawing.Point(6, 19);
113      this.codeEditor.Name = "codeEditor";
114      this.codeEditor.Prefix = "";
115      this.codeEditor.Size = new System.Drawing.Size(633, 327);
116      this.codeEditor.Suffix = "";
117      this.codeEditor.TabIndex = 0;
118      this.codeEditor.UserCode = "";
119      this.codeEditor.Validated += new System.EventHandler(this.codeEditor_Validated);
120      //
121      // errorsGroupBox
122      //
123      this.errorsGroupBox.Controls.Add(this.errorsListView);
124      this.errorsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
125      this.errorsGroupBox.Location = new System.Drawing.Point(0, 0);
126      this.errorsGroupBox.Name = "errorsGroupBox";
127      this.errorsGroupBox.Size = new System.Drawing.Size(645, 105);
128      this.errorsGroupBox.TabIndex = 0;
129      this.errorsGroupBox.TabStop = false;
130      this.errorsGroupBox.Text = "Errors";
131      //
132      // errorsListView
133      //
134      this.errorsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
135            | System.Windows.Forms.AnchorStyles.Left)
136            | System.Windows.Forms.AnchorStyles.Right)));
137      this.errorsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
138            this.iconColumnHeader,
139            this.categoryColumnHeader,
140            this.errorNumberColumnHeader,
141            this.lineColumnHeader,
142            this.columnColumnHeader,
143            this.descriptionColumnHeader});
144      this.errorsListView.FullRowSelect = true;
145      this.errorsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
146      this.errorsListView.HideSelection = false;
147      this.errorsListView.Location = new System.Drawing.Point(6, 19);
148      this.errorsListView.Name = "errorsListView";
149      this.errorsListView.Size = new System.Drawing.Size(633, 80);
150      this.errorsListView.SmallImageList = this.imageList;
151      this.errorsListView.TabIndex = 0;
152      this.errorsListView.UseCompatibleStateImageBehavior = false;
153      this.errorsListView.View = System.Windows.Forms.View.Details;
154      this.errorsListView.DoubleClick += new System.EventHandler(this.errorsListView_DoubleClick);
155      //
156      // iconColumnHeader
157      //
158      this.iconColumnHeader.Text = "";
159      //
160      // categoryColumnHeader
161      //
162      this.categoryColumnHeader.Text = "Category";
163      //
164      // errorNumberColumnHeader
165      //
166      this.errorNumberColumnHeader.Text = "Error Number";
167      //
168      // lineColumnHeader
169      //
170      this.lineColumnHeader.Text = "Line";
171      //
172      // columnColumnHeader
173      //
174      this.columnColumnHeader.Text = "Column";
175      //
176      // descriptionColumnHeader
177      //
178      this.descriptionColumnHeader.Text = "Description";
179      //
180      // imageList
181      //
182      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
183      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
184      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
185      //
186      // compileButton
187      //
188      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
189      this.compileButton.Location = new System.Drawing.Point(6, 26);
190      this.compileButton.Name = "compileButton";
191      this.compileButton.Size = new System.Drawing.Size(24, 24);
192      this.compileButton.TabIndex = 3;
193      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
194      this.compileButton.UseVisualStyleBackColor = true;
195      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
196      //
197      // compilationLabel
198      //
199      this.compilationLabel.AutoSize = true;
200      this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
201      this.compilationLabel.Location = new System.Drawing.Point(66, 32);
202      this.compilationLabel.Name = "compilationLabel";
203      this.compilationLabel.Size = new System.Drawing.Size(69, 13);
204      this.compilationLabel.TabIndex = 4;
205      this.compilationLabel.Text = "Not compiled";
206      //
207      // ProgrammableNetworkItemView
208      //
209      this.Controls.Add(this.compilationLabel);
210      this.Controls.Add(this.compileButton);
211      this.Controls.Add(this.splitContainer);
212      this.Name = "ProgrammableNetworkItemView";
213      this.Controls.SetChildIndex(this.nameLabel, 0);
214      this.Controls.SetChildIndex(this.nameTextBox, 0);
215      this.Controls.SetChildIndex(this.infoLabel, 0);
216      this.Controls.SetChildIndex(this.splitContainer, 0);
217      this.Controls.SetChildIndex(this.compileButton, 0);
218      this.Controls.SetChildIndex(this.compilationLabel, 0);
219      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
220      this.splitContainer.Panel1.ResumeLayout(false);
221      this.splitContainer.Panel2.ResumeLayout(false);
222      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
223      this.splitContainer.ResumeLayout(false);
224      this.codeGroupBox.ResumeLayout(false);
225      this.errorsGroupBox.ResumeLayout(false);
226      this.ResumeLayout(false);
227      this.PerformLayout();
228
229    }
230
231    #endregion
232
233    protected System.Windows.Forms.SplitContainer splitContainer;
234    protected System.Windows.Forms.GroupBox errorsGroupBox;
235    protected System.Windows.Forms.Button compileButton;
236    protected CodeEditor.CodeEditor codeEditor;
237    protected System.Windows.Forms.ListView errorsListView;
238    protected System.Windows.Forms.ColumnHeader iconColumnHeader;
239    protected System.Windows.Forms.ColumnHeader categoryColumnHeader;
240    protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader;
241    protected System.Windows.Forms.ColumnHeader lineColumnHeader;
242    protected System.Windows.Forms.ColumnHeader columnColumnHeader;
243    protected System.Windows.Forms.ColumnHeader descriptionColumnHeader;
244    protected System.Windows.Forms.Label compilationLabel;
245    protected System.Windows.Forms.ImageList imageList;
246    protected System.Windows.Forms.GroupBox codeGroupBox;
247
248  }
249}
Note: See TracBrowser for help on using the repository browser.