#region License Information /* HeuristicLab * Copyright (C) 2002-2010 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.DebugEngine { partial class DebugEngineView { /// /// 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(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DebugEngineView)); this.label1 = new System.Windows.Forms.Label(); this.executionTimeTextBox = new System.Windows.Forms.TextBox(); this.executionStackView = new HeuristicLab.DebugEngine.ExecutionStackView(); this.operationContentView = new HeuristicLab.DebugEngine.OperationContentView(); this.logView = new HeuristicLab.Core.Views.LogView(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.stepButton = new System.Windows.Forms.Button(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(83, 13); this.label1.TabIndex = 0; this.label1.Text = "Execution Time:"; // // executionTimeTextBox // this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.executionTimeTextBox.Location = new System.Drawing.Point(92, 6); this.executionTimeTextBox.Name = "executionTimeTextBox"; this.executionTimeTextBox.ReadOnly = true; this.executionTimeTextBox.Size = new System.Drawing.Size(747, 20); this.executionTimeTextBox.TabIndex = 1; // // executionStackView // this.executionStackView.Caption = "Execution Stack View"; this.executionStackView.Content = null; this.executionStackView.Dock = System.Windows.Forms.DockStyle.Fill; this.executionStackView.Location = new System.Drawing.Point(0, 0); this.executionStackView.Name = "executionStackView"; this.executionStackView.ReadOnly = false; this.executionStackView.Size = new System.Drawing.Size(252, 262); this.executionStackView.TabIndex = 0; // // operationContentView // this.operationContentView.Caption = "Operation Content View"; this.operationContentView.Content = null; this.operationContentView.Dock = System.Windows.Forms.DockStyle.Fill; this.operationContentView.Location = new System.Drawing.Point(0, 0); this.operationContentView.Name = "operationContentView"; this.operationContentView.ReadOnly = false; this.operationContentView.Size = new System.Drawing.Size(610, 503); this.operationContentView.TabIndex = 0; // // logView // this.logView.Caption = "Log View"; this.logView.Content = null; this.logView.Dock = System.Windows.Forms.DockStyle.Fill; this.logView.Location = new System.Drawing.Point(0, 0); this.logView.Name = "logView"; this.logView.ReadOnly = false; this.logView.Size = new System.Drawing.Size(252, 237); this.logView.TabIndex = 2; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.executionStackView); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.logView); this.splitContainer1.Size = new System.Drawing.Size(252, 503); this.splitContainer1.SplitterDistance = 262; this.splitContainer1.TabIndex = 3; // // 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, 32); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.splitContainer1); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.operationContentView); this.splitContainer2.Size = new System.Drawing.Size(866, 503); this.splitContainer2.SplitterDistance = 252; this.splitContainer2.TabIndex = 0; // // stepButton // this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.stepButton.Image = ((System.Drawing.Image)(resources.GetObject("stepButton.Image"))); this.stepButton.Location = new System.Drawing.Point(845, 3); this.stepButton.Name = "stepButton"; this.stepButton.Size = new System.Drawing.Size(24, 24); this.stepButton.TabIndex = 4; this.toolTip.SetToolTip(this.stepButton, "Step"); this.stepButton.UseVisualStyleBackColor = true; this.stepButton.Click += new System.EventHandler(this.stepButton_Click); // // DebugEngineView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.Controls.Add(this.splitContainer2); this.Controls.Add(this.stepButton); this.Controls.Add(this.executionTimeTextBox); this.Controls.Add(this.label1); this.Name = "DebugEngineView"; this.Size = new System.Drawing.Size(872, 538); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox executionTimeTextBox; private Core.Views.LogView logView; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.Button stepButton; private System.Windows.Forms.ToolTip toolTip; private HeuristicLab.DebugEngine.ExecutionStackView executionStackView; private HeuristicLab.DebugEngine.OperationContentView operationContentView; } }