Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/DebugEngineView.Designer.cs @ 4753

Last change on this file since 4753 was 4753, checked in by epitzer, 13 years ago

Show expected parameter values and include type information in tool tip (#47)

File size: 10.8 KB
Line 
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
22namespace 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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DebugEngineView));
48      this.label1 = new System.Windows.Forms.Label();
49      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
50      this.logView = new HeuristicLab.Core.Views.LogView();
51      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
52      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
53      this.executionStackTreeView = new System.Windows.Forms.TreeView();
54      this.label2 = new System.Windows.Forms.Label();
55      this.label3 = new System.Windows.Forms.Label();
56      this.scopeTreeView = new System.Windows.Forms.TreeView();
57      this.stepButton = new System.Windows.Forms.Button();
58      this.updateButton = new System.Windows.Forms.Button();
59      this.splitContainer1.Panel1.SuspendLayout();
60      this.splitContainer1.Panel2.SuspendLayout();
61      this.splitContainer1.SuspendLayout();
62      this.splitContainer2.Panel1.SuspendLayout();
63      this.splitContainer2.Panel2.SuspendLayout();
64      this.splitContainer2.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // label1
68      //
69      this.label1.AutoSize = true;
70      this.label1.Location = new System.Drawing.Point(3, 9);
71      this.label1.Name = "label1";
72      this.label1.Size = new System.Drawing.Size(83, 13);
73      this.label1.TabIndex = 0;
74      this.label1.Text = "Execution Time:";
75      //
76      // executionTimeTextBox
77      //
78      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.executionTimeTextBox.Location = new System.Drawing.Point(92, 6);
81      this.executionTimeTextBox.Name = "executionTimeTextBox";
82      this.executionTimeTextBox.ReadOnly = true;
83      this.executionTimeTextBox.Size = new System.Drawing.Size(366, 20);
84      this.executionTimeTextBox.TabIndex = 1;
85      //
86      // logView
87      //
88      this.logView.Caption = "Log View";
89      this.logView.Content = null;
90      this.logView.Dock = System.Windows.Forms.DockStyle.Fill;
91      this.logView.Location = new System.Drawing.Point(0, 0);
92      this.logView.Name = "logView";
93      this.logView.ReadOnly = false;
94      this.logView.Size = new System.Drawing.Size(515, 175);
95      this.logView.TabIndex = 2;
96      //
97      // splitContainer1
98      //
99      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
100                  | System.Windows.Forms.AnchorStyles.Left)
101                  | System.Windows.Forms.AnchorStyles.Right)));
102      this.splitContainer1.Location = new System.Drawing.Point(3, 32);
103      this.splitContainer1.Name = "splitContainer1";
104      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
105      //
106      // splitContainer1.Panel1
107      //
108      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
109      //
110      // splitContainer1.Panel2
111      //
112      this.splitContainer1.Panel2.Controls.Add(this.logView);
113      this.splitContainer1.Size = new System.Drawing.Size(515, 341);
114      this.splitContainer1.SplitterDistance = 162;
115      this.splitContainer1.TabIndex = 3;
116      //
117      // splitContainer2
118      //
119      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
120      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
121      this.splitContainer2.Name = "splitContainer2";
122      //
123      // splitContainer2.Panel1
124      //
125      this.splitContainer2.Panel1.Controls.Add(this.executionStackTreeView);
126      this.splitContainer2.Panel1.Controls.Add(this.label2);
127      //
128      // splitContainer2.Panel2
129      //
130      this.splitContainer2.Panel2.Controls.Add(this.label3);
131      this.splitContainer2.Panel2.Controls.Add(this.scopeTreeView);
132      this.splitContainer2.Size = new System.Drawing.Size(515, 162);
133      this.splitContainer2.SplitterDistance = 258;
134      this.splitContainer2.TabIndex = 0;
135      //
136      // executionStackTreeView
137      //
138      this.executionStackTreeView.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.executionStackTreeView.Location = new System.Drawing.Point(3, 16);
142      this.executionStackTreeView.Name = "executionStackTreeView";
143      this.executionStackTreeView.ShowNodeToolTips = true;
144      this.executionStackTreeView.Size = new System.Drawing.Size(252, 143);
145      this.executionStackTreeView.TabIndex = 2;
146      this.executionStackTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.executionStackTreeView_NodeMouseDoubleClick);
147      //
148      // label2
149      //
150      this.label2.AutoSize = true;
151      this.label2.Location = new System.Drawing.Point(3, 0);
152      this.label2.Name = "label2";
153      this.label2.Size = new System.Drawing.Size(85, 13);
154      this.label2.TabIndex = 1;
155      this.label2.Text = "Execution Stack";
156      //
157      // label3
158      //
159      this.label3.AutoSize = true;
160      this.label3.Location = new System.Drawing.Point(3, 0);
161      this.label3.Name = "label3";
162      this.label3.Size = new System.Drawing.Size(63, 13);
163      this.label3.TabIndex = 1;
164      this.label3.Text = "Scope Tree";
165      //
166      // scopeTreeView
167      //
168      this.scopeTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
169                  | System.Windows.Forms.AnchorStyles.Left)
170                  | System.Windows.Forms.AnchorStyles.Right)));
171      this.scopeTreeView.Location = new System.Drawing.Point(3, 16);
172      this.scopeTreeView.Name = "scopeTreeView";
173      this.scopeTreeView.ShowNodeToolTips = true;
174      this.scopeTreeView.Size = new System.Drawing.Size(247, 143);
175      this.scopeTreeView.TabIndex = 0;
176      this.scopeTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.scopeTreeView_NodeMouseDoubleClick);
177      //
178      // stepButton
179      //
180      this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
181      this.stepButton.Image = ((System.Drawing.Image)(resources.GetObject("stepButton.Image")));
182      this.stepButton.Location = new System.Drawing.Point(494, 3);
183      this.stepButton.Name = "stepButton";
184      this.stepButton.Size = new System.Drawing.Size(24, 24);
185      this.stepButton.TabIndex = 4;
186      this.stepButton.UseVisualStyleBackColor = true;
187      this.stepButton.Click += new System.EventHandler(this.stepButton_Click);
188      //
189      // updateButton
190      //
191      this.updateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
192      this.updateButton.Image = ((System.Drawing.Image)(resources.GetObject("updateButton.Image")));
193      this.updateButton.Location = new System.Drawing.Point(464, 3);
194      this.updateButton.Name = "updateButton";
195      this.updateButton.Size = new System.Drawing.Size(24, 24);
196      this.updateButton.TabIndex = 5;
197      this.updateButton.UseVisualStyleBackColor = true;
198      this.updateButton.Click += new System.EventHandler(this.updateButton_Click);
199      //
200      // DebugEngineView
201      //
202      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
203      this.Controls.Add(this.updateButton);
204      this.Controls.Add(this.stepButton);
205      this.Controls.Add(this.splitContainer1);
206      this.Controls.Add(this.executionTimeTextBox);
207      this.Controls.Add(this.label1);
208      this.Name = "DebugEngineView";
209      this.Size = new System.Drawing.Size(521, 376);
210      this.splitContainer1.Panel1.ResumeLayout(false);
211      this.splitContainer1.Panel2.ResumeLayout(false);
212      this.splitContainer1.ResumeLayout(false);
213      this.splitContainer2.Panel1.ResumeLayout(false);
214      this.splitContainer2.Panel1.PerformLayout();
215      this.splitContainer2.Panel2.ResumeLayout(false);
216      this.splitContainer2.Panel2.PerformLayout();
217      this.splitContainer2.ResumeLayout(false);
218      this.ResumeLayout(false);
219      this.PerformLayout();
220
221    }
222
223    #endregion
224
225    private System.Windows.Forms.Label label1;
226    private System.Windows.Forms.TextBox executionTimeTextBox;
227    private Core.Views.LogView logView;
228    private System.Windows.Forms.SplitContainer splitContainer1;
229    private System.Windows.Forms.SplitContainer splitContainer2;
230    private System.Windows.Forms.Label label2;
231    private System.Windows.Forms.Label label3;
232    private System.Windows.Forms.TreeView scopeTreeView;
233    private System.Windows.Forms.TreeView executionStackTreeView;
234    private System.Windows.Forms.Button stepButton;
235    private System.Windows.Forms.Button updateButton;
236
237  }
238}
Note: See TracBrowser for help on using the repository browser.