Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/OperationContentView.Designer.cs @ 4903

Last change on this file since 4903 was 4903, checked in by epitzer, 14 years ago

Many small improvements to DebugEngine (#47)

  • suppress logging during execution
  • add refresh button
  • optionally skip over execution stack operators
  • expand all tree views and scroll to top node
  • show operator on click on atomic operation
  • add build.cmd
File size: 12.2 KB
Line 
1namespace HeuristicLab.DebugEngine {
2  partial class OperationContentView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.groupBox = new System.Windows.Forms.GroupBox();
28      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
29      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
30      this.executionContextGroupBox = new System.Windows.Forms.GroupBox();
31      this.executionContextTreeView = new System.Windows.Forms.TreeView();
32      this.parametersGroupBox = new System.Windows.Forms.GroupBox();
33      this.parameterListView = new System.Windows.Forms.ListView();
34      this.scopeGroupBox = new System.Windows.Forms.GroupBox();
35      this.scopeTreeView = new System.Windows.Forms.TreeView();
36      this.nameTextBox = new System.Windows.Forms.TextBox();
37      this.contextLabel = new System.Windows.Forms.Label();
38      this.atomicLabel = new System.Windows.Forms.Label();
39      this.collectionLabel = new System.Windows.Forms.Label();
40      this.timer = new System.Windows.Forms.Timer(this.components);
41      this.groupBox.SuspendLayout();
42      this.splitContainer1.Panel1.SuspendLayout();
43      this.splitContainer1.Panel2.SuspendLayout();
44      this.splitContainer1.SuspendLayout();
45      this.splitContainer2.Panel1.SuspendLayout();
46      this.splitContainer2.Panel2.SuspendLayout();
47      this.splitContainer2.SuspendLayout();
48      this.executionContextGroupBox.SuspendLayout();
49      this.parametersGroupBox.SuspendLayout();
50      this.scopeGroupBox.SuspendLayout();
51      this.SuspendLayout();
52      //
53      // groupBox
54      //
55      this.groupBox.Controls.Add(this.splitContainer1);
56      this.groupBox.Controls.Add(this.nameTextBox);
57      this.groupBox.Controls.Add(this.contextLabel);
58      this.groupBox.Controls.Add(this.atomicLabel);
59      this.groupBox.Controls.Add(this.collectionLabel);
60      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
61      this.groupBox.Location = new System.Drawing.Point(0, 0);
62      this.groupBox.Name = "groupBox";
63      this.groupBox.Size = new System.Drawing.Size(563, 412);
64      this.groupBox.TabIndex = 0;
65      this.groupBox.TabStop = false;
66      this.groupBox.Text = "Operation";
67      //
68      // splitContainer1
69      //
70      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
71                  | System.Windows.Forms.AnchorStyles.Left)
72                  | System.Windows.Forms.AnchorStyles.Right)));
73      this.splitContainer1.Location = new System.Drawing.Point(6, 45);
74      this.splitContainer1.Name = "splitContainer1";
75      //
76      // splitContainer1.Panel1
77      //
78      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
79      //
80      // splitContainer1.Panel2
81      //
82      this.splitContainer1.Panel2.Controls.Add(this.scopeGroupBox);
83      this.splitContainer1.Size = new System.Drawing.Size(551, 361);
84      this.splitContainer1.SplitterDistance = 242;
85      this.splitContainer1.TabIndex = 4;
86      //
87      // splitContainer2
88      //
89      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
90      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
91      this.splitContainer2.Name = "splitContainer2";
92      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
93      //
94      // splitContainer2.Panel1
95      //
96      this.splitContainer2.Panel1.Controls.Add(this.executionContextGroupBox);
97      //
98      // splitContainer2.Panel2
99      //
100      this.splitContainer2.Panel2.Controls.Add(this.parametersGroupBox);
101      this.splitContainer2.Size = new System.Drawing.Size(242, 361);
102      this.splitContainer2.SplitterDistance = 180;
103      this.splitContainer2.TabIndex = 1;
104      //
105      // executionContextGroupBox
106      //
107      this.executionContextGroupBox.Controls.Add(this.executionContextTreeView);
108      this.executionContextGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
109      this.executionContextGroupBox.Location = new System.Drawing.Point(0, 0);
110      this.executionContextGroupBox.Name = "executionContextGroupBox";
111      this.executionContextGroupBox.Size = new System.Drawing.Size(242, 180);
112      this.executionContextGroupBox.TabIndex = 0;
113      this.executionContextGroupBox.TabStop = false;
114      this.executionContextGroupBox.Text = "Execution Context";
115      //
116      // executionContextTreeView
117      //
118      this.executionContextTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
119      this.executionContextTreeView.Location = new System.Drawing.Point(3, 16);
120      this.executionContextTreeView.Name = "executionContextTreeView";
121      this.executionContextTreeView.Size = new System.Drawing.Size(236, 161);
122      this.executionContextTreeView.TabIndex = 0;
123      this.executionContextTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.executionContextTreeView_NodeMouseClick);
124      this.executionContextTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.executionContextTreeView_NodeMouseDoubleClick);
125      //
126      // parametersGroupBox
127      //
128      this.parametersGroupBox.Controls.Add(this.parameterListView);
129      this.parametersGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
130      this.parametersGroupBox.Location = new System.Drawing.Point(0, 0);
131      this.parametersGroupBox.Name = "parametersGroupBox";
132      this.parametersGroupBox.Size = new System.Drawing.Size(242, 177);
133      this.parametersGroupBox.TabIndex = 0;
134      this.parametersGroupBox.TabStop = false;
135      this.parametersGroupBox.Text = "Parameters";
136      //
137      // parameterListView
138      //
139      this.parameterListView.Dock = System.Windows.Forms.DockStyle.Fill;
140      this.parameterListView.FullRowSelect = true;
141      this.parameterListView.Location = new System.Drawing.Point(3, 16);
142      this.parameterListView.Name = "parameterListView";
143      this.parameterListView.Size = new System.Drawing.Size(236, 158);
144      this.parameterListView.TabIndex = 0;
145      this.parameterListView.UseCompatibleStateImageBehavior = false;
146      this.parameterListView.View = System.Windows.Forms.View.List;
147      this.parameterListView.ItemActivate += new System.EventHandler(this.parameterListView_ItemActivate);
148      //
149      // scopeGroupBox
150      //
151      this.scopeGroupBox.Controls.Add(this.scopeTreeView);
152      this.scopeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
153      this.scopeGroupBox.Location = new System.Drawing.Point(0, 0);
154      this.scopeGroupBox.Name = "scopeGroupBox";
155      this.scopeGroupBox.Size = new System.Drawing.Size(305, 361);
156      this.scopeGroupBox.TabIndex = 1;
157      this.scopeGroupBox.TabStop = false;
158      this.scopeGroupBox.Text = "Scope";
159      //
160      // scopeTreeView
161      //
162      this.scopeTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
163      this.scopeTreeView.Location = new System.Drawing.Point(3, 16);
164      this.scopeTreeView.Name = "scopeTreeView";
165      this.scopeTreeView.Size = new System.Drawing.Size(299, 342);
166      this.scopeTreeView.TabIndex = 0;
167      //
168      // nameTextBox
169      //
170      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
171                  | System.Windows.Forms.AnchorStyles.Right)));
172      this.nameTextBox.Cursor = System.Windows.Forms.Cursors.Default;
173      this.nameTextBox.Location = new System.Drawing.Point(6, 19);
174      this.nameTextBox.Name = "nameTextBox";
175      this.nameTextBox.ReadOnly = true;
176      this.nameTextBox.Size = new System.Drawing.Size(395, 20);
177      this.nameTextBox.TabIndex = 3;
178      this.nameTextBox.DoubleClick += new System.EventHandler(this.nameTextBox_DoubleClick);
179      //
180      // contextLabel
181      //
182      this.contextLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
183      this.contextLabel.AutoSize = true;
184      this.contextLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
185      this.contextLabel.Location = new System.Drawing.Point(407, 22);
186      this.contextLabel.Name = "contextLabel";
187      this.contextLabel.Size = new System.Drawing.Size(43, 13);
188      this.contextLabel.TabIndex = 2;
189      this.contextLabel.Text = "Context";
190      //
191      // atomicLabel
192      //
193      this.atomicLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
194      this.atomicLabel.AutoSize = true;
195      this.atomicLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
196      this.atomicLabel.Location = new System.Drawing.Point(456, 22);
197      this.atomicLabel.Name = "atomicLabel";
198      this.atomicLabel.Size = new System.Drawing.Size(39, 13);
199      this.atomicLabel.TabIndex = 1;
200      this.atomicLabel.Text = "Atomic";
201      //
202      // collectionLabel
203      //
204      this.collectionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
205      this.collectionLabel.AutoSize = true;
206      this.collectionLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
207      this.collectionLabel.Location = new System.Drawing.Point(501, 22);
208      this.collectionLabel.Name = "collectionLabel";
209      this.collectionLabel.Size = new System.Drawing.Size(53, 13);
210      this.collectionLabel.TabIndex = 0;
211      this.collectionLabel.Text = "Collection";
212      //
213      // timer
214      //
215      this.timer.Interval = 500;
216      this.timer.Tick += new System.EventHandler(this.timer_Tick);
217      //
218      // OperationContentView
219      //
220      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
221      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
222      this.Controls.Add(this.groupBox);
223      this.Name = "OperationContentView";
224      this.Size = new System.Drawing.Size(563, 412);
225      this.groupBox.ResumeLayout(false);
226      this.groupBox.PerformLayout();
227      this.splitContainer1.Panel1.ResumeLayout(false);
228      this.splitContainer1.Panel2.ResumeLayout(false);
229      this.splitContainer1.ResumeLayout(false);
230      this.splitContainer2.Panel1.ResumeLayout(false);
231      this.splitContainer2.Panel2.ResumeLayout(false);
232      this.splitContainer2.ResumeLayout(false);
233      this.executionContextGroupBox.ResumeLayout(false);
234      this.parametersGroupBox.ResumeLayout(false);
235      this.scopeGroupBox.ResumeLayout(false);
236      this.ResumeLayout(false);
237
238    }
239
240    #endregion
241
242    private System.Windows.Forms.GroupBox groupBox;
243    private System.Windows.Forms.TextBox nameTextBox;
244    private System.Windows.Forms.Label contextLabel;
245    private System.Windows.Forms.Label atomicLabel;
246    private System.Windows.Forms.Label collectionLabel;
247    private System.Windows.Forms.SplitContainer splitContainer1;
248    private System.Windows.Forms.ListView parameterListView;
249    private System.Windows.Forms.TreeView scopeTreeView;
250    private System.Windows.Forms.SplitContainer splitContainer2;
251    private System.Windows.Forms.GroupBox executionContextGroupBox;
252    private System.Windows.Forms.TreeView executionContextTreeView;
253    private System.Windows.Forms.GroupBox parametersGroupBox;
254    private System.Windows.Forms.GroupBox scopeGroupBox;
255    private System.Windows.Forms.Timer timer;
256  }
257}
Note: See TracBrowser for help on using the repository browser.