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 |
|
---|
22 | namespace HeuristicLab.Core {
|
---|
23 | partial class ScopeView {
|
---|
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.scopesTreeView = new System.Windows.Forms.TreeView();
|
---|
49 | this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
50 | this.automaticUpdatingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
51 | this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
52 | this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
---|
53 | this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
54 | this.variablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
55 | this.contextMenuStrip.SuspendLayout();
|
---|
56 | this.SuspendLayout();
|
---|
57 | //
|
---|
58 | // scopesTreeView
|
---|
59 | //
|
---|
60 | this.scopesTreeView.ContextMenuStrip = this.contextMenuStrip;
|
---|
61 | this.scopesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
62 | this.scopesTreeView.HideSelection = false;
|
---|
63 | this.scopesTreeView.Location = new System.Drawing.Point(0, 0);
|
---|
64 | this.scopesTreeView.Name = "scopesTreeView";
|
---|
65 | this.scopesTreeView.ShowNodeToolTips = true;
|
---|
66 | this.scopesTreeView.Size = new System.Drawing.Size(400, 400);
|
---|
67 | this.scopesTreeView.TabIndex = 0;
|
---|
68 | this.scopesTreeView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.scopesTreeView_AfterCollapse);
|
---|
69 | this.scopesTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.scopesTreeView_BeforeExpand);
|
---|
70 | this.scopesTreeView.DoubleClick += new System.EventHandler(this.scopesTreeView_DoubleClick);
|
---|
71 | this.scopesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.scopesTreeView_MouseDown);
|
---|
72 | this.scopesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.scopesTreeView_ItemDrag);
|
---|
73 | //
|
---|
74 | // contextMenuStrip
|
---|
75 | //
|
---|
76 | this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
77 | this.automaticUpdatingToolStripMenuItem,
|
---|
78 | this.refreshToolStripMenuItem,
|
---|
79 | this.toolStripMenuItem1,
|
---|
80 | this.variablesToolStripMenuItem,
|
---|
81 | this.viewToolStripMenuItem});
|
---|
82 | this.contextMenuStrip.Name = "contextMenuStrip";
|
---|
83 | this.contextMenuStrip.Size = new System.Drawing.Size(180, 98);
|
---|
84 | this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
|
---|
85 | //
|
---|
86 | // automaticUpdatingToolStripMenuItem
|
---|
87 | //
|
---|
88 | this.automaticUpdatingToolStripMenuItem.CheckOnClick = true;
|
---|
89 | this.automaticUpdatingToolStripMenuItem.Name = "automaticUpdatingToolStripMenuItem";
|
---|
90 | this.automaticUpdatingToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
|
---|
91 | this.automaticUpdatingToolStripMenuItem.Text = "Automatic &Updating";
|
---|
92 | this.automaticUpdatingToolStripMenuItem.ToolTipText = "Automatically update scope editor during execution";
|
---|
93 | this.automaticUpdatingToolStripMenuItem.Click += new System.EventHandler(this.automaticUpdatingToolStripMenuItem_Click);
|
---|
94 | //
|
---|
95 | // refreshToolStripMenuItem
|
---|
96 | //
|
---|
97 | this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
|
---|
98 | this.refreshToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
|
---|
99 | this.refreshToolStripMenuItem.Text = "&Refresh";
|
---|
100 | this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
|
---|
101 | //
|
---|
102 | // toolStripMenuItem1
|
---|
103 | //
|
---|
104 | this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
---|
105 | this.toolStripMenuItem1.Size = new System.Drawing.Size(176, 6);
|
---|
106 | //
|
---|
107 | // viewToolStripMenuItem
|
---|
108 | //
|
---|
109 | this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
---|
110 | this.viewToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
|
---|
111 | this.viewToolStripMenuItem.Text = "&View";
|
---|
112 | //
|
---|
113 | // variablesToolStripMenuItem
|
---|
114 | //
|
---|
115 | this.variablesToolStripMenuItem.Name = "variablesToolStripMenuItem";
|
---|
116 | this.variablesToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
|
---|
117 | this.variablesToolStripMenuItem.Text = "&Variables...";
|
---|
118 | this.variablesToolStripMenuItem.Click += new System.EventHandler(this.variablesToolStripMenuItem_Click);
|
---|
119 | //
|
---|
120 | // ScopeView
|
---|
121 | //
|
---|
122 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
123 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
124 | this.Controls.Add(this.scopesTreeView);
|
---|
125 | this.Name = "ScopeView";
|
---|
126 | this.Size = new System.Drawing.Size(400, 400);
|
---|
127 | this.contextMenuStrip.ResumeLayout(false);
|
---|
128 | this.ResumeLayout(false);
|
---|
129 |
|
---|
130 | }
|
---|
131 |
|
---|
132 | #endregion
|
---|
133 |
|
---|
134 | private System.Windows.Forms.TreeView scopesTreeView;
|
---|
135 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
---|
136 | private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
---|
137 | private System.Windows.Forms.ToolStripMenuItem automaticUpdatingToolStripMenuItem;
|
---|
138 | private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
|
---|
139 | private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
---|
140 | private System.Windows.Forms.ToolStripMenuItem variablesToolStripMenuItem;
|
---|
141 | }
|
---|
142 | }
|
---|