Free cookie consent management tool by TermsFeed Policy Generator

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

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

remove resources, add license headers, update plug-in dependencies (#47)

File size: 15.2 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 OperationContentView {
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 Component 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      this.groupBox = new System.Windows.Forms.GroupBox();
49      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
50      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
51      this.executionContextGroupBox = new System.Windows.Forms.GroupBox();
52      this.executionContextTreeView = new System.Windows.Forms.TreeView();
53      this.executionContextImageList = new System.Windows.Forms.ImageList(this.components);
54      this.parametersGroupBox = new System.Windows.Forms.GroupBox();
55      this.parameterListView = new System.Windows.Forms.ListView();
56      this.parameterColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
57      this.parametersImageList = new System.Windows.Forms.ImageList(this.components);
58      this.scopeGroupBox = new System.Windows.Forms.GroupBox();
59      this.scopeTreeView = new System.Windows.Forms.TreeView();
60      this.scopeImageList = new System.Windows.Forms.ImageList(this.components);
61      this.nameTextBox = new System.Windows.Forms.TextBox();
62      this.contextLabel = new System.Windows.Forms.Label();
63      this.atomicLabel = new System.Windows.Forms.Label();
64      this.collectionLabel = new System.Windows.Forms.Label();
65      this.groupBox.SuspendLayout();
66      this.splitContainer1.Panel1.SuspendLayout();
67      this.splitContainer1.Panel2.SuspendLayout();
68      this.splitContainer1.SuspendLayout();
69      this.splitContainer2.Panel1.SuspendLayout();
70      this.splitContainer2.Panel2.SuspendLayout();
71      this.splitContainer2.SuspendLayout();
72      this.executionContextGroupBox.SuspendLayout();
73      this.parametersGroupBox.SuspendLayout();
74      this.scopeGroupBox.SuspendLayout();
75      this.SuspendLayout();
76      //
77      // groupBox
78      //
79      this.groupBox.Controls.Add(this.splitContainer1);
80      this.groupBox.Controls.Add(this.nameTextBox);
81      this.groupBox.Controls.Add(this.contextLabel);
82      this.groupBox.Controls.Add(this.atomicLabel);
83      this.groupBox.Controls.Add(this.collectionLabel);
84      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.groupBox.Location = new System.Drawing.Point(0, 0);
86      this.groupBox.Name = "groupBox";
87      this.groupBox.Size = new System.Drawing.Size(563, 412);
88      this.groupBox.TabIndex = 0;
89      this.groupBox.TabStop = false;
90      this.groupBox.Text = "Operation";
91      //
92      // splitContainer1
93      //
94      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
95                  | System.Windows.Forms.AnchorStyles.Left)
96                  | System.Windows.Forms.AnchorStyles.Right)));
97      this.splitContainer1.Location = new System.Drawing.Point(6, 45);
98      this.splitContainer1.Name = "splitContainer1";
99      //
100      // splitContainer1.Panel1
101      //
102      this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
103      //
104      // splitContainer1.Panel2
105      //
106      this.splitContainer1.Panel2.Controls.Add(this.scopeGroupBox);
107      this.splitContainer1.Size = new System.Drawing.Size(551, 361);
108      this.splitContainer1.SplitterDistance = 242;
109      this.splitContainer1.TabIndex = 4;
110      //
111      // splitContainer2
112      //
113      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
114      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
115      this.splitContainer2.Name = "splitContainer2";
116      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
117      //
118      // splitContainer2.Panel1
119      //
120      this.splitContainer2.Panel1.Controls.Add(this.executionContextGroupBox);
121      //
122      // splitContainer2.Panel2
123      //
124      this.splitContainer2.Panel2.Controls.Add(this.parametersGroupBox);
125      this.splitContainer2.Size = new System.Drawing.Size(242, 361);
126      this.splitContainer2.SplitterDistance = 180;
127      this.splitContainer2.TabIndex = 1;
128      //
129      // executionContextGroupBox
130      //
131      this.executionContextGroupBox.Controls.Add(this.executionContextTreeView);
132      this.executionContextGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
133      this.executionContextGroupBox.Location = new System.Drawing.Point(0, 0);
134      this.executionContextGroupBox.Name = "executionContextGroupBox";
135      this.executionContextGroupBox.Size = new System.Drawing.Size(242, 180);
136      this.executionContextGroupBox.TabIndex = 0;
137      this.executionContextGroupBox.TabStop = false;
138      this.executionContextGroupBox.Text = "Execution Context";
139      //
140      // executionContextTreeView
141      //
142      this.executionContextTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
143      this.executionContextTreeView.ImageIndex = 0;
144      this.executionContextTreeView.ImageList = this.executionContextImageList;
145      this.executionContextTreeView.Location = new System.Drawing.Point(3, 16);
146      this.executionContextTreeView.Name = "executionContextTreeView";
147      this.executionContextTreeView.SelectedImageIndex = 0;
148      this.executionContextTreeView.ShowNodeToolTips = true;
149      this.executionContextTreeView.Size = new System.Drawing.Size(236, 161);
150      this.executionContextTreeView.TabIndex = 0;
151      this.executionContextTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.executionContextTreeView_NodeMouseClick);
152      this.executionContextTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.executionContextTreeView_NodeMouseDoubleClick);
153      //
154      // executionContextImageList
155      //
156      this.executionContextImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
157      this.executionContextImageList.ImageSize = new System.Drawing.Size(16, 16);
158      this.executionContextImageList.TransparentColor = System.Drawing.Color.Transparent;
159      //
160      // parametersGroupBox
161      //
162      this.parametersGroupBox.Controls.Add(this.parameterListView);
163      this.parametersGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
164      this.parametersGroupBox.Location = new System.Drawing.Point(0, 0);
165      this.parametersGroupBox.Name = "parametersGroupBox";
166      this.parametersGroupBox.Size = new System.Drawing.Size(242, 177);
167      this.parametersGroupBox.TabIndex = 0;
168      this.parametersGroupBox.TabStop = false;
169      this.parametersGroupBox.Text = "Parameters";
170      //
171      // parameterListView
172      //
173      this.parameterListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
174            this.parameterColumn});
175      this.parameterListView.Dock = System.Windows.Forms.DockStyle.Fill;
176      this.parameterListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
177      this.parameterListView.HideSelection = false;
178      this.parameterListView.Location = new System.Drawing.Point(3, 16);
179      this.parameterListView.Name = "parameterListView";
180      this.parameterListView.ShowItemToolTips = true;
181      this.parameterListView.Size = new System.Drawing.Size(236, 158);
182      this.parameterListView.SmallImageList = this.parametersImageList;
183      this.parameterListView.TabIndex = 0;
184      this.parameterListView.UseCompatibleStateImageBehavior = false;
185      this.parameterListView.View = System.Windows.Forms.View.Details;
186      this.parameterListView.ItemActivate += new System.EventHandler(this.parameterListView_ItemActivate);
187      //
188      // parametersImageList
189      //
190      this.parametersImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
191      this.parametersImageList.ImageSize = new System.Drawing.Size(16, 16);
192      this.parametersImageList.TransparentColor = System.Drawing.Color.Transparent;
193      //
194      // scopeGroupBox
195      //
196      this.scopeGroupBox.Controls.Add(this.scopeTreeView);
197      this.scopeGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
198      this.scopeGroupBox.Location = new System.Drawing.Point(0, 0);
199      this.scopeGroupBox.Name = "scopeGroupBox";
200      this.scopeGroupBox.Size = new System.Drawing.Size(305, 361);
201      this.scopeGroupBox.TabIndex = 1;
202      this.scopeGroupBox.TabStop = false;
203      this.scopeGroupBox.Text = "Scope";
204      //
205      // scopeTreeView
206      //
207      this.scopeTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
208      this.scopeTreeView.ImageIndex = 0;
209      this.scopeTreeView.ImageList = this.scopeImageList;
210      this.scopeTreeView.Location = new System.Drawing.Point(3, 16);
211      this.scopeTreeView.Name = "scopeTreeView";
212      this.scopeTreeView.SelectedImageIndex = 0;
213      this.scopeTreeView.ShowNodeToolTips = true;
214      this.scopeTreeView.Size = new System.Drawing.Size(299, 342);
215      this.scopeTreeView.TabIndex = 0;
216      this.scopeTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.scopeTreeView_NodeMouseDoubleClick);
217      //
218      // scopeImageList
219      //
220      this.scopeImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
221      this.scopeImageList.ImageSize = new System.Drawing.Size(16, 16);
222      this.scopeImageList.TransparentColor = System.Drawing.Color.Transparent;
223      //
224      // nameTextBox
225      //
226      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
227                  | System.Windows.Forms.AnchorStyles.Right)));
228      this.nameTextBox.Cursor = System.Windows.Forms.Cursors.Default;
229      this.nameTextBox.Location = new System.Drawing.Point(6, 19);
230      this.nameTextBox.Name = "nameTextBox";
231      this.nameTextBox.ReadOnly = true;
232      this.nameTextBox.Size = new System.Drawing.Size(395, 20);
233      this.nameTextBox.TabIndex = 3;
234      this.nameTextBox.DoubleClick += new System.EventHandler(this.nameTextBox_DoubleClick);
235      //
236      // contextLabel
237      //
238      this.contextLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
239      this.contextLabel.AutoSize = true;
240      this.contextLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
241      this.contextLabel.Location = new System.Drawing.Point(407, 22);
242      this.contextLabel.Name = "contextLabel";
243      this.contextLabel.Size = new System.Drawing.Size(43, 13);
244      this.contextLabel.TabIndex = 2;
245      this.contextLabel.Text = "Context";
246      //
247      // atomicLabel
248      //
249      this.atomicLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
250      this.atomicLabel.AutoSize = true;
251      this.atomicLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
252      this.atomicLabel.Location = new System.Drawing.Point(456, 22);
253      this.atomicLabel.Name = "atomicLabel";
254      this.atomicLabel.Size = new System.Drawing.Size(39, 13);
255      this.atomicLabel.TabIndex = 1;
256      this.atomicLabel.Text = "Atomic";
257      //
258      // collectionLabel
259      //
260      this.collectionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
261      this.collectionLabel.AutoSize = true;
262      this.collectionLabel.ForeColor = System.Drawing.SystemColors.ControlDark;
263      this.collectionLabel.Location = new System.Drawing.Point(501, 22);
264      this.collectionLabel.Name = "collectionLabel";
265      this.collectionLabel.Size = new System.Drawing.Size(53, 13);
266      this.collectionLabel.TabIndex = 0;
267      this.collectionLabel.Text = "Collection";
268      //
269      // OperationContentView
270      //
271      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
272      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
273      this.Controls.Add(this.groupBox);
274      this.Name = "OperationContentView";
275      this.Size = new System.Drawing.Size(563, 412);
276      this.groupBox.ResumeLayout(false);
277      this.groupBox.PerformLayout();
278      this.splitContainer1.Panel1.ResumeLayout(false);
279      this.splitContainer1.Panel2.ResumeLayout(false);
280      this.splitContainer1.ResumeLayout(false);
281      this.splitContainer2.Panel1.ResumeLayout(false);
282      this.splitContainer2.Panel2.ResumeLayout(false);
283      this.splitContainer2.ResumeLayout(false);
284      this.executionContextGroupBox.ResumeLayout(false);
285      this.parametersGroupBox.ResumeLayout(false);
286      this.scopeGroupBox.ResumeLayout(false);
287      this.ResumeLayout(false);
288
289    }
290
291    #endregion
292
293    private System.Windows.Forms.GroupBox groupBox;
294    private System.Windows.Forms.TextBox nameTextBox;
295    private System.Windows.Forms.Label contextLabel;
296    private System.Windows.Forms.Label atomicLabel;
297    private System.Windows.Forms.Label collectionLabel;
298    private System.Windows.Forms.SplitContainer splitContainer1;
299    private System.Windows.Forms.ListView parameterListView;
300    private System.Windows.Forms.TreeView scopeTreeView;
301    private System.Windows.Forms.SplitContainer splitContainer2;
302    private System.Windows.Forms.GroupBox executionContextGroupBox;
303    private System.Windows.Forms.TreeView executionContextTreeView;
304    private System.Windows.Forms.GroupBox parametersGroupBox;
305    private System.Windows.Forms.GroupBox scopeGroupBox;
306    private System.Windows.Forms.ImageList executionContextImageList;
307    private System.Windows.Forms.ImageList parametersImageList;
308    private System.Windows.Forms.ImageList scopeImageList;
309    private System.Windows.Forms.ColumnHeader parameterColumn;
310  }
311}
Note: See TracBrowser for help on using the repository browser.