#region License Information /* HeuristicLab * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Scripting.Views { partial class ProgrammableItemView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.codeGroupBox = new System.Windows.Forms.GroupBox(); this.codeEditor = new HeuristicLab.CodeEditor.CodeEditor(); this.errorsGroupBox = new System.Windows.Forms.GroupBox(); this.errorsListView = new System.Windows.Forms.ListView(); this.iconColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.categoryColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.errorNumberColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.lineColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.descriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.imageList = new System.Windows.Forms.ImageList(this.components); this.compileButton = new System.Windows.Forms.Button(); this.compilationLabel = new System.Windows.Forms.Label(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.codeGroupBox.SuspendLayout(); this.errorsGroupBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.codeGroupBox); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.errorsGroupBox); this.splitContainer2.Size = new System.Drawing.Size(357, 454); this.splitContainer2.SplitterDistance = 382; this.splitContainer2.TabIndex = 3; // // codeGroupBox // this.codeGroupBox.Controls.Add(this.codeEditor); this.codeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; this.codeGroupBox.Location = new System.Drawing.Point(0, 0); this.codeGroupBox.Name = "codeGroupBox"; this.codeGroupBox.Size = new System.Drawing.Size(357, 382); this.codeGroupBox.TabIndex = 0; this.codeGroupBox.TabStop = false; this.codeGroupBox.Text = "Code"; // // codeEditor // this.codeEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.codeEditor.Location = new System.Drawing.Point(6, 19); this.codeEditor.Name = "codeEditor"; this.codeEditor.Prefix = ""; this.codeEditor.ReadOnly = false; this.codeEditor.Size = new System.Drawing.Size(345, 357); this.codeEditor.Suffix = ""; this.codeEditor.TabIndex = 0; this.codeEditor.UserCode = ""; this.codeEditor.Validated += new System.EventHandler(this.codeEditor_Validated); // // errorsGroupBox // this.errorsGroupBox.Controls.Add(this.errorsListView); this.errorsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill; this.errorsGroupBox.Location = new System.Drawing.Point(0, 0); this.errorsGroupBox.Name = "errorsGroupBox"; this.errorsGroupBox.Size = new System.Drawing.Size(357, 68); this.errorsGroupBox.TabIndex = 0; this.errorsGroupBox.TabStop = false; this.errorsGroupBox.Text = "Errors"; // // errorsListView // this.errorsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.errorsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.iconColumnHeader, this.categoryColumnHeader, this.errorNumberColumnHeader, this.lineColumnHeader, this.columnColumnHeader, this.descriptionColumnHeader}); this.errorsListView.FullRowSelect = true; this.errorsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.errorsListView.HideSelection = false; this.errorsListView.Location = new System.Drawing.Point(6, 19); this.errorsListView.Name = "errorsListView"; this.errorsListView.Size = new System.Drawing.Size(345, 43); this.errorsListView.SmallImageList = this.imageList; this.errorsListView.TabIndex = 0; this.errorsListView.UseCompatibleStateImageBehavior = false; this.errorsListView.View = System.Windows.Forms.View.Details; this.errorsListView.DoubleClick += new System.EventHandler(this.errorsListView_DoubleClick); // // iconColumnHeader // this.iconColumnHeader.Text = ""; // // categoryColumnHeader // this.categoryColumnHeader.Text = "Category"; // // errorNumberColumnHeader // this.errorNumberColumnHeader.Text = "Error Number"; // // lineColumnHeader // this.lineColumnHeader.Text = "Line"; // // columnColumnHeader // this.columnColumnHeader.Text = "Column"; // // descriptionColumnHeader // this.descriptionColumnHeader.Text = "Description"; // // imageList // this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit; this.imageList.ImageSize = new System.Drawing.Size(16, 16); this.imageList.TransparentColor = System.Drawing.Color.Transparent; // // compileButton // this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script; this.compileButton.Location = new System.Drawing.Point(3, 3); this.compileButton.Name = "compileButton"; this.compileButton.Size = new System.Drawing.Size(24, 24); this.compileButton.TabIndex = 0; this.toolTip.SetToolTip(this.compileButton, "Compile (F6)"); this.compileButton.UseVisualStyleBackColor = true; this.compileButton.Click += new System.EventHandler(this.compileButton_Click); // // compilationLabel // this.compilationLabel.AutoSize = true; this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark; this.compilationLabel.Location = new System.Drawing.Point(66, 9); this.compilationLabel.Name = "compilationLabel"; this.compilationLabel.Size = new System.Drawing.Size(69, 13); this.compilationLabel.TabIndex = 1; this.compilationLabel.Text = "Not compiled"; // // splitContainer1 // this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.splitContainer1.Location = new System.Drawing.Point(0, 33); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.splitContainer2); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.variableStoreView); this.splitContainer1.Size = new System.Drawing.Size(486, 454); this.splitContainer1.SplitterDistance = 357; this.splitContainer1.TabIndex = 4; // // variableStoreView // this.variableStoreView.Caption = "ItemCollection View"; this.variableStoreView.Content = null; this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill; this.variableStoreView.Location = new System.Drawing.Point(0, 0); this.variableStoreView.Name = "variableStoreView"; this.variableStoreView.ReadOnly = false; this.variableStoreView.Size = new System.Drawing.Size(125, 454); this.variableStoreView.TabIndex = 0; // // ProgrammableItemView // this.Controls.Add(this.splitContainer1); this.Controls.Add(this.compilationLabel); this.Controls.Add(this.compileButton); this.Name = "ProgrammableItemView"; this.Size = new System.Drawing.Size(486, 487); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); this.splitContainer2.ResumeLayout(false); this.codeGroupBox.ResumeLayout(false); this.errorsGroupBox.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion protected System.Windows.Forms.SplitContainer splitContainer2; protected System.Windows.Forms.GroupBox errorsGroupBox; protected System.Windows.Forms.Button compileButton; protected CodeEditor.CodeEditor codeEditor; protected System.Windows.Forms.ListView errorsListView; protected System.Windows.Forms.ColumnHeader iconColumnHeader; protected System.Windows.Forms.ColumnHeader categoryColumnHeader; protected System.Windows.Forms.ColumnHeader errorNumberColumnHeader; protected System.Windows.Forms.ColumnHeader lineColumnHeader; protected System.Windows.Forms.ColumnHeader columnColumnHeader; protected System.Windows.Forms.ColumnHeader descriptionColumnHeader; protected System.Windows.Forms.Label compilationLabel; protected System.Windows.Forms.ImageList imageList; protected System.Windows.Forms.GroupBox codeGroupBox; protected System.Windows.Forms.ToolTip toolTip; protected System.Windows.Forms.SplitContainer splitContainer1; protected VariableStoreView variableStoreView; } }