Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/EngineBaseView.Designer.cs @ 2655

Last change on this file since 2655 was 2655, checked in by swagner, 14 years ago

Committing first results of the refactoring of HeuristicLab.Core and related plugins (#95)

File size: 8.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Core.Views {
23  partial class EngineBaseView {
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) {
35        if (components != null) 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.executionTimeTextBox = new System.Windows.Forms.TextBox();
49      this.executionTimeLabel = new System.Windows.Forms.Label();
50      this.splitContainer = new System.Windows.Forms.SplitContainer();
51      this.operatorGraphView = new HeuristicLab.Core.Views.OperatorGraphView();
52      this.scopeView = new HeuristicLab.Core.Views.ScopeView();
53      this.resetButton = new System.Windows.Forms.Button();
54      this.stopButton = new System.Windows.Forms.Button();
55      this.startButton = new System.Windows.Forms.Button();
56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
57      this.splitContainer.Panel1.SuspendLayout();
58      this.splitContainer.Panel2.SuspendLayout();
59      this.splitContainer.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // executionTimeTextBox
63      //
64      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
65      this.executionTimeTextBox.Location = new System.Drawing.Point(661, 620);
66      this.executionTimeTextBox.Name = "executionTimeTextBox";
67      this.executionTimeTextBox.ReadOnly = true;
68      this.executionTimeTextBox.Size = new System.Drawing.Size(141, 20);
69      this.executionTimeTextBox.TabIndex = 4;
70      //
71      // executionTimeLabel
72      //
73      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
74      this.executionTimeLabel.AutoSize = true;
75      this.executionTimeLabel.Location = new System.Drawing.Point(572, 623);
76      this.executionTimeLabel.Name = "executionTimeLabel";
77      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
78      this.executionTimeLabel.TabIndex = 3;
79      this.executionTimeLabel.Text = "&Execution Time:";
80      //
81      // splitContainer
82      //
83      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
84                  | System.Windows.Forms.AnchorStyles.Left)
85                  | System.Windows.Forms.AnchorStyles.Right)));
86      this.splitContainer.Location = new System.Drawing.Point(0, 0);
87      this.splitContainer.Name = "splitContainer";
88      //
89      // splitContainer.Panel1
90      //
91      this.splitContainer.Panel1.Controls.Add(this.operatorGraphView);
92      //
93      // splitContainer.Panel2
94      //
95      this.splitContainer.Panel2.Controls.Add(this.scopeView);
96      this.splitContainer.Size = new System.Drawing.Size(802, 611);
97      this.splitContainer.SplitterDistance = 401;
98      this.splitContainer.TabIndex = 0;
99      //
100      // operatorGraphView
101      //
102      this.operatorGraphView.Caption = "Operator Graph";
103      this.operatorGraphView.Dock = System.Windows.Forms.DockStyle.Fill;
104      this.operatorGraphView.Item = null;
105      this.operatorGraphView.Location = new System.Drawing.Point(0, 0);
106      this.operatorGraphView.Name = "operatorGraphView";
107      this.operatorGraphView.OperatorGraph = null;
108      this.operatorGraphView.Size = new System.Drawing.Size(401, 611);
109      this.operatorGraphView.TabIndex = 0;
110      //
111      // scopeView
112      //
113      this.scopeView.Caption = "Scope";
114      this.scopeView.Dock = System.Windows.Forms.DockStyle.Fill;
115      this.scopeView.Item = null;
116      this.scopeView.Location = new System.Drawing.Point(0, 0);
117      this.scopeView.Name = "scopeView";
118      this.scopeView.Scope = null;
119      this.scopeView.Size = new System.Drawing.Size(397, 611);
120      this.scopeView.TabIndex = 0;
121      //
122      // resetButton
123      //
124      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
125      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
126      this.resetButton.Location = new System.Drawing.Point(58, 617);
127      this.resetButton.Name = "resetButton";
128      this.resetButton.Size = new System.Drawing.Size(23, 23);
129      this.resetButton.TabIndex = 2;
130      this.toolTip.SetToolTip(this.resetButton, "Reset Engine");
131      this.resetButton.UseVisualStyleBackColor = true;
132      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
133      //
134      // stopButton
135      //
136      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
137      this.stopButton.Enabled = false;
138      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
139      this.stopButton.Location = new System.Drawing.Point(29, 617);
140      this.stopButton.Name = "stopButton";
141      this.stopButton.Size = new System.Drawing.Size(23, 23);
142      this.stopButton.TabIndex = 1;
143      this.toolTip.SetToolTip(this.stopButton, "Stop Engine");
144      this.stopButton.UseVisualStyleBackColor = true;
145      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
146      //
147      // startButton
148      //
149      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
150      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
151      this.startButton.Location = new System.Drawing.Point(0, 617);
152      this.startButton.Name = "startButton";
153      this.startButton.Size = new System.Drawing.Size(23, 23);
154      this.startButton.TabIndex = 0;
155      this.toolTip.SetToolTip(this.startButton, "Start Engine");
156      this.startButton.UseVisualStyleBackColor = true;
157      this.startButton.Click += new System.EventHandler(this.startButton_Click);
158      //
159      // EngineBaseView
160      //
161      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
162      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
163      this.Controls.Add(this.executionTimeTextBox);
164      this.Controls.Add(this.executionTimeLabel);
165      this.Controls.Add(this.splitContainer);
166      this.Controls.Add(this.resetButton);
167      this.Controls.Add(this.stopButton);
168      this.Controls.Add(this.startButton);
169      this.Name = "EngineBaseView";
170      this.Size = new System.Drawing.Size(802, 640);
171      this.splitContainer.Panel1.ResumeLayout(false);
172      this.splitContainer.Panel2.ResumeLayout(false);
173      this.splitContainer.ResumeLayout(false);
174      this.ResumeLayout(false);
175      this.PerformLayout();
176
177    }
178
179    #endregion
180
181    protected System.Windows.Forms.TextBox executionTimeTextBox;
182    protected System.Windows.Forms.Label executionTimeLabel;
183    protected System.Windows.Forms.SplitContainer splitContainer;
184    protected System.Windows.Forms.Button resetButton;
185    protected System.Windows.Forms.Button stopButton;
186    protected System.Windows.Forms.Button startButton;
187    protected HeuristicLab.Core.Views.OperatorGraphView operatorGraphView;
188    protected HeuristicLab.Core.Views.ScopeView scopeView;
189    private System.Windows.Forms.ToolTip toolTip;
190
191  }
192}
Note: See TracBrowser for help on using the repository browser.