#region License Information /* HeuristicLab * Copyright (C) 2002-2015 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 using System.Windows.Forms; namespace HeuristicLab.Scripting.Views { partial class CSharpScriptView { /// /// 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 Component 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.startStopButton = new System.Windows.Forms.Button(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView(); this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); this.executionTimeTextBox = new System.Windows.Forms.TextBox(); this.executionTimeLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.SuspendLayout(); // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.executionTimeTextBox); this.splitContainer1.Panel1.Controls.Add(this.executionTimeLabel); this.splitContainer1.Panel1.Controls.SetChildIndex(this.executionTimeTextBox, 0); this.splitContainer1.Panel1.Controls.SetChildIndex(this.executionTimeLabel, 0); this.splitContainer1.Size = new System.Drawing.Size(637, 543); // // nameTextBox // this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); this.errorProvider.SetIconPadding(this.nameTextBox, 2); this.nameTextBox.Location = new System.Drawing.Point(60, 0); this.nameTextBox.Size = new System.Drawing.Size(750, 20); // // infoLabel // this.infoLabel.Location = new System.Drawing.Point(816, 4); // // startStopButton // this.startStopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play; this.startStopButton.Location = new System.Drawing.Point(36, 26); this.startStopButton.Name = "startStopButton"; this.startStopButton.Size = new System.Drawing.Size(24, 24); this.startStopButton.TabIndex = 1; this.startStopButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.toolTip.SetToolTip(this.startStopButton, "Run (F5)"); this.startStopButton.UseVisualStyleBackColor = true; this.startStopButton.Click += new System.EventHandler(this.StartStopButtonOnClick); // // splitContainer2 // this.splitContainer2.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.splitContainer2.Location = new System.Drawing.Point(3, 56); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.splitContainer1); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.variableStoreView); this.splitContainer2.Panel2.Controls.Add(this.viewHost); this.splitContainer2.Size = new System.Drawing.Size(829, 543); this.splitContainer2.SplitterDistance = 637; this.splitContainer2.TabIndex = 7; // // splitContainer1 // this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Dock = DockStyle.Fill; // // 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(188, 543); this.variableStoreView.TabIndex = 0; // // viewHost // this.viewHost.Caption = "View"; this.viewHost.Content = null; this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill; this.viewHost.Enabled = false; this.viewHost.Location = new System.Drawing.Point(0, 0); this.viewHost.Name = "viewHost"; this.viewHost.ReadOnly = false; this.viewHost.Size = new System.Drawing.Size(188, 543); this.viewHost.TabIndex = 0; this.viewHost.ViewsLabelVisible = true; this.viewHost.ViewType = null; // // executionTimeTextBox // this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.executionTimeTextBox.Location = new System.Drawing.Point(483, 390); this.executionTimeTextBox.Name = "executionTimeTextBox"; this.executionTimeTextBox.ReadOnly = true; this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20); this.executionTimeTextBox.TabIndex = 17; // // executionTimeLabel // this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.executionTimeLabel.AutoSize = true; this.executionTimeLabel.Location = new System.Drawing.Point(394, 393); this.executionTimeLabel.Name = "executionTimeLabel"; this.executionTimeLabel.Size = new System.Drawing.Size(83, 13); this.executionTimeLabel.TabIndex = 16; this.executionTimeLabel.Text = "&Execution Time:"; // // ScriptView // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.Controls.Add(this.splitContainer2); this.Controls.Add(this.startStopButton); this.Name = "ScriptView"; this.Size = new System.Drawing.Size(835, 602); this.Controls.SetChildIndex(this.startStopButton, 0); this.Controls.SetChildIndex(this.splitContainer2, 0); this.Controls.SetChildIndex(this.nameLabel, 0); this.Controls.SetChildIndex(this.nameTextBox, 0); this.Controls.SetChildIndex(this.infoLabel, 0); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); this.splitContainer2.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion protected System.Windows.Forms.Button startStopButton; protected System.Windows.Forms.SplitContainer splitContainer2; protected MainForm.WindowsForms.ViewHost viewHost; protected VariableStoreView variableStoreView; protected TextBox executionTimeTextBox; protected Label executionTimeLabel; } }