Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.Designer.cs @ 2790

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 10.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.Core.Views {
23  partial class EngineView {
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.operatorGraphView = new HeuristicLab.Core.Views.OperatorGraphView();
51      this.scopeView = new HeuristicLab.Core.Views.ScopeView();
52      this.resetButton = new System.Windows.Forms.Button();
53      this.stopButton = new System.Windows.Forms.Button();
54      this.startButton = new System.Windows.Forms.Button();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.tabControl = new System.Windows.Forms.TabControl();
57      this.operatorGraphTabPage = new System.Windows.Forms.TabPage();
58      this.globalScopeTabPage = new System.Windows.Forms.TabPage();
59      this.tabControl.SuspendLayout();
60      this.operatorGraphTabPage.SuspendLayout();
61      this.globalScopeTabPage.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // executionTimeTextBox
65      //
66      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
67      this.executionTimeTextBox.Location = new System.Drawing.Point(661, 620);
68      this.executionTimeTextBox.Name = "executionTimeTextBox";
69      this.executionTimeTextBox.ReadOnly = true;
70      this.executionTimeTextBox.Size = new System.Drawing.Size(141, 20);
71      this.executionTimeTextBox.TabIndex = 5;
72      //
73      // executionTimeLabel
74      //
75      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.executionTimeLabel.AutoSize = true;
77      this.executionTimeLabel.Location = new System.Drawing.Point(572, 623);
78      this.executionTimeLabel.Name = "executionTimeLabel";
79      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
80      this.executionTimeLabel.TabIndex = 4;
81      this.executionTimeLabel.Text = "&Execution Time:";
82      //
83      // operatorGraphView
84      //
85      this.operatorGraphView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86                  | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.operatorGraphView.Caption = "Operator Graph";
89      this.operatorGraphView.Location = new System.Drawing.Point(6, 6);
90      this.operatorGraphView.Name = "operatorGraphView";
91      this.operatorGraphView.Size = new System.Drawing.Size(782, 573);
92      this.operatorGraphView.TabIndex = 0;
93      //
94      // scopeView
95      //
96      this.scopeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
97                  | System.Windows.Forms.AnchorStyles.Left)
98                  | System.Windows.Forms.AnchorStyles.Right)));
99      this.scopeView.Caption = "Scope";
100      this.scopeView.Location = new System.Drawing.Point(6, 6);
101      this.scopeView.Name = "scopeView";
102      this.scopeView.Size = new System.Drawing.Size(782, 573);
103      this.scopeView.TabIndex = 0;
104      //
105      // resetButton
106      //
107      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
108      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
109      this.resetButton.Location = new System.Drawing.Point(58, 617);
110      this.resetButton.Name = "resetButton";
111      this.resetButton.Size = new System.Drawing.Size(23, 23);
112      this.resetButton.TabIndex = 3;
113      this.toolTip.SetToolTip(this.resetButton, "Reset Engine");
114      this.resetButton.UseVisualStyleBackColor = true;
115      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
116      //
117      // stopButton
118      //
119      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
120      this.stopButton.Enabled = false;
121      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
122      this.stopButton.Location = new System.Drawing.Point(29, 617);
123      this.stopButton.Name = "stopButton";
124      this.stopButton.Size = new System.Drawing.Size(23, 23);
125      this.stopButton.TabIndex = 2;
126      this.toolTip.SetToolTip(this.stopButton, "Stop Engine");
127      this.stopButton.UseVisualStyleBackColor = true;
128      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
129      //
130      // startButton
131      //
132      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
133      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
134      this.startButton.Location = new System.Drawing.Point(0, 617);
135      this.startButton.Name = "startButton";
136      this.startButton.Size = new System.Drawing.Size(23, 23);
137      this.startButton.TabIndex = 1;
138      this.toolTip.SetToolTip(this.startButton, "Start Engine");
139      this.startButton.UseVisualStyleBackColor = true;
140      this.startButton.Click += new System.EventHandler(this.startButton_Click);
141      //
142      // tabControl
143      //
144      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
145                  | System.Windows.Forms.AnchorStyles.Left)
146                  | System.Windows.Forms.AnchorStyles.Right)));
147      this.tabControl.Controls.Add(this.operatorGraphTabPage);
148      this.tabControl.Controls.Add(this.globalScopeTabPage);
149      this.tabControl.Location = new System.Drawing.Point(0, 0);
150      this.tabControl.Name = "tabControl";
151      this.tabControl.SelectedIndex = 0;
152      this.tabControl.Size = new System.Drawing.Size(802, 611);
153      this.tabControl.TabIndex = 0;
154      //
155      // operatorGraphTabPage
156      //
157      this.operatorGraphTabPage.Controls.Add(this.operatorGraphView);
158      this.operatorGraphTabPage.Location = new System.Drawing.Point(4, 22);
159      this.operatorGraphTabPage.Name = "operatorGraphTabPage";
160      this.operatorGraphTabPage.Padding = new System.Windows.Forms.Padding(3);
161      this.operatorGraphTabPage.Size = new System.Drawing.Size(794, 585);
162      this.operatorGraphTabPage.TabIndex = 0;
163      this.operatorGraphTabPage.Text = "Operator Graph";
164      this.operatorGraphTabPage.UseVisualStyleBackColor = true;
165      //
166      // globalScopeTabPage
167      //
168      this.globalScopeTabPage.Controls.Add(this.scopeView);
169      this.globalScopeTabPage.Location = new System.Drawing.Point(4, 22);
170      this.globalScopeTabPage.Name = "globalScopeTabPage";
171      this.globalScopeTabPage.Padding = new System.Windows.Forms.Padding(3);
172      this.globalScopeTabPage.Size = new System.Drawing.Size(794, 585);
173      this.globalScopeTabPage.TabIndex = 1;
174      this.globalScopeTabPage.Text = "Global Scope";
175      this.globalScopeTabPage.UseVisualStyleBackColor = true;
176      //
177      // EngineView
178      //
179      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
180      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
181      this.Controls.Add(this.tabControl);
182      this.Controls.Add(this.executionTimeTextBox);
183      this.Controls.Add(this.stopButton);
184      this.Controls.Add(this.executionTimeLabel);
185      this.Controls.Add(this.resetButton);
186      this.Controls.Add(this.startButton);
187      this.Name = "EngineView";
188      this.Size = new System.Drawing.Size(802, 640);
189      this.tabControl.ResumeLayout(false);
190      this.operatorGraphTabPage.ResumeLayout(false);
191      this.globalScopeTabPage.ResumeLayout(false);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198
199    protected System.Windows.Forms.TextBox executionTimeTextBox;
200    protected System.Windows.Forms.Label executionTimeLabel;
201    protected System.Windows.Forms.Button resetButton;
202    protected System.Windows.Forms.Button stopButton;
203    protected System.Windows.Forms.Button startButton;
204    protected HeuristicLab.Core.Views.OperatorGraphView operatorGraphView;
205    protected HeuristicLab.Core.Views.ScopeView scopeView;
206    protected System.Windows.Forms.ToolTip toolTip;
207    protected System.Windows.Forms.TabControl tabControl;
208    protected System.Windows.Forms.TabPage operatorGraphTabPage;
209    protected System.Windows.Forms.TabPage globalScopeTabPage;
210
211  }
212}
Note: See TracBrowser for help on using the repository browser.