1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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 |
|
---|
22 | namespace HeuristicLab.DebugEngine {
|
---|
23 | partial class DebugEngineView {
|
---|
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 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DebugEngineView));
|
---|
49 | this.label1 = new System.Windows.Forms.Label();
|
---|
50 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
51 | this.executionStackView = new HeuristicLab.DebugEngine.ExecutionStackView();
|
---|
52 | this.operationContentView = new HeuristicLab.DebugEngine.OperationContentView();
|
---|
53 | this.logView = new HeuristicLab.Core.Views.LogView();
|
---|
54 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
55 | this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
---|
56 | this.stepButton = new System.Windows.Forms.Button();
|
---|
57 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
58 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
59 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
60 | this.splitContainer1.SuspendLayout();
|
---|
61 | this.splitContainer2.Panel1.SuspendLayout();
|
---|
62 | this.splitContainer2.Panel2.SuspendLayout();
|
---|
63 | this.splitContainer2.SuspendLayout();
|
---|
64 | this.SuspendLayout();
|
---|
65 | //
|
---|
66 | // label1
|
---|
67 | //
|
---|
68 | this.label1.AutoSize = true;
|
---|
69 | this.label1.Location = new System.Drawing.Point(3, 9);
|
---|
70 | this.label1.Name = "label1";
|
---|
71 | this.label1.Size = new System.Drawing.Size(83, 13);
|
---|
72 | this.label1.TabIndex = 0;
|
---|
73 | this.label1.Text = "Execution Time:";
|
---|
74 | //
|
---|
75 | // executionTimeTextBox
|
---|
76 | //
|
---|
77 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
78 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
79 | this.executionTimeTextBox.Location = new System.Drawing.Point(92, 6);
|
---|
80 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
81 | this.executionTimeTextBox.ReadOnly = true;
|
---|
82 | this.executionTimeTextBox.Size = new System.Drawing.Size(747, 20);
|
---|
83 | this.executionTimeTextBox.TabIndex = 1;
|
---|
84 | //
|
---|
85 | // executionStackView
|
---|
86 | //
|
---|
87 | this.executionStackView.Caption = "Execution Stack View";
|
---|
88 | this.executionStackView.Content = null;
|
---|
89 | this.executionStackView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
90 | this.executionStackView.Location = new System.Drawing.Point(0, 0);
|
---|
91 | this.executionStackView.Name = "executionStackView";
|
---|
92 | this.executionStackView.ReadOnly = false;
|
---|
93 | this.executionStackView.Size = new System.Drawing.Size(252, 262);
|
---|
94 | this.executionStackView.TabIndex = 0;
|
---|
95 | //
|
---|
96 | // operationContentView
|
---|
97 | //
|
---|
98 | this.operationContentView.Caption = "Operation Content View";
|
---|
99 | this.operationContentView.Content = null;
|
---|
100 | this.operationContentView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
101 | this.operationContentView.Location = new System.Drawing.Point(0, 0);
|
---|
102 | this.operationContentView.Name = "operationContentView";
|
---|
103 | this.operationContentView.ReadOnly = false;
|
---|
104 | this.operationContentView.Size = new System.Drawing.Size(610, 503);
|
---|
105 | this.operationContentView.TabIndex = 0;
|
---|
106 | //
|
---|
107 | // logView
|
---|
108 | //
|
---|
109 | this.logView.Caption = "Log View";
|
---|
110 | this.logView.Content = null;
|
---|
111 | this.logView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
112 | this.logView.Location = new System.Drawing.Point(0, 0);
|
---|
113 | this.logView.Name = "logView";
|
---|
114 | this.logView.ReadOnly = false;
|
---|
115 | this.logView.Size = new System.Drawing.Size(252, 237);
|
---|
116 | this.logView.TabIndex = 2;
|
---|
117 | //
|
---|
118 | // splitContainer1
|
---|
119 | //
|
---|
120 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
121 | this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
---|
122 | this.splitContainer1.Name = "splitContainer1";
|
---|
123 | this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
124 | //
|
---|
125 | // splitContainer1.Panel1
|
---|
126 | //
|
---|
127 | this.splitContainer1.Panel1.Controls.Add(this.executionStackView);
|
---|
128 | //
|
---|
129 | // splitContainer1.Panel2
|
---|
130 | //
|
---|
131 | this.splitContainer1.Panel2.Controls.Add(this.logView);
|
---|
132 | this.splitContainer1.Size = new System.Drawing.Size(252, 503);
|
---|
133 | this.splitContainer1.SplitterDistance = 262;
|
---|
134 | this.splitContainer1.TabIndex = 3;
|
---|
135 | //
|
---|
136 | // splitContainer2
|
---|
137 | //
|
---|
138 | this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
139 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
140 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
141 | this.splitContainer2.Location = new System.Drawing.Point(3, 32);
|
---|
142 | this.splitContainer2.Name = "splitContainer2";
|
---|
143 | //
|
---|
144 | // splitContainer2.Panel1
|
---|
145 | //
|
---|
146 | this.splitContainer2.Panel1.Controls.Add(this.splitContainer1);
|
---|
147 | //
|
---|
148 | // splitContainer2.Panel2
|
---|
149 | //
|
---|
150 | this.splitContainer2.Panel2.Controls.Add(this.operationContentView);
|
---|
151 | this.splitContainer2.Size = new System.Drawing.Size(866, 503);
|
---|
152 | this.splitContainer2.SplitterDistance = 252;
|
---|
153 | this.splitContainer2.TabIndex = 0;
|
---|
154 | //
|
---|
155 | // stepButton
|
---|
156 | //
|
---|
157 | this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
158 | this.stepButton.Image = ((System.Drawing.Image)(resources.GetObject("stepButton.Image")));
|
---|
159 | this.stepButton.Location = new System.Drawing.Point(845, 3);
|
---|
160 | this.stepButton.Name = "stepButton";
|
---|
161 | this.stepButton.Size = new System.Drawing.Size(24, 24);
|
---|
162 | this.stepButton.TabIndex = 4;
|
---|
163 | this.toolTip.SetToolTip(this.stepButton, "Step");
|
---|
164 | this.stepButton.UseVisualStyleBackColor = true;
|
---|
165 | this.stepButton.Click += new System.EventHandler(this.stepButton_Click);
|
---|
166 | //
|
---|
167 | // DebugEngineView
|
---|
168 | //
|
---|
169 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
170 | this.Controls.Add(this.splitContainer2);
|
---|
171 | this.Controls.Add(this.stepButton);
|
---|
172 | this.Controls.Add(this.executionTimeTextBox);
|
---|
173 | this.Controls.Add(this.label1);
|
---|
174 | this.Name = "DebugEngineView";
|
---|
175 | this.Size = new System.Drawing.Size(872, 538);
|
---|
176 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
177 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
178 | this.splitContainer1.ResumeLayout(false);
|
---|
179 | this.splitContainer2.Panel1.ResumeLayout(false);
|
---|
180 | this.splitContainer2.Panel2.ResumeLayout(false);
|
---|
181 | this.splitContainer2.ResumeLayout(false);
|
---|
182 | this.ResumeLayout(false);
|
---|
183 | this.PerformLayout();
|
---|
184 |
|
---|
185 | }
|
---|
186 |
|
---|
187 | #endregion
|
---|
188 |
|
---|
189 | private System.Windows.Forms.Label label1;
|
---|
190 | private System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
191 | private Core.Views.LogView logView;
|
---|
192 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
193 | private System.Windows.Forms.SplitContainer splitContainer2;
|
---|
194 | private System.Windows.Forms.Button stepButton;
|
---|
195 | private System.Windows.Forms.ToolTip toolTip;
|
---|
196 | private HeuristicLab.DebugEngine.ExecutionStackView executionStackView;
|
---|
197 | private HeuristicLab.DebugEngine.OperationContentView operationContentView;
|
---|
198 |
|
---|
199 | }
|
---|
200 | }
|
---|