1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 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 | using System.Windows.Forms;
|
---|
23 |
|
---|
24 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
25 | partial class InteractiveSymbolicExpressionTreeChart {
|
---|
26 | /// <summary>
|
---|
27 | /// Required designer variable.
|
---|
28 | /// </summary>
|
---|
29 | private System.ComponentModel.IContainer components = null;
|
---|
30 |
|
---|
31 | /// <summary>
|
---|
32 | /// Clean up any resources being used.
|
---|
33 | /// </summary>
|
---|
34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
35 | protected override void Dispose(bool disposing) {
|
---|
36 | if (disposing && (components != null)) {
|
---|
37 | components.Dispose();
|
---|
38 | }
|
---|
39 | base.Dispose(disposing);
|
---|
40 | }
|
---|
41 |
|
---|
42 | #region Component Designer generated code
|
---|
43 |
|
---|
44 | /// <summary>
|
---|
45 | /// Required method for Designer support - do not modify
|
---|
46 | /// the contents of this method with the code editor.
|
---|
47 | /// </summary>
|
---|
48 | private void InitializeComponent() {
|
---|
49 | this.insertNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
50 | this.changeNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
51 | this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
52 | this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
53 | this.removeNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
54 | this.removeSubtreeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
55 | this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
56 | this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
|
---|
57 | this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
58 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
---|
59 | this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
---|
60 | this.SuspendLayout();
|
---|
61 | //
|
---|
62 | // insertNodeToolStripMenuItem
|
---|
63 | //
|
---|
64 | this.insertNodeToolStripMenuItem.Name = "insertNodeToolStripMenuItem";
|
---|
65 | this.insertNodeToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
66 | this.insertNodeToolStripMenuItem.Text = "Insert Node";
|
---|
67 | this.insertNodeToolStripMenuItem.Click += new System.EventHandler(this.insertNodeToolStripMenuItem_Click);
|
---|
68 | //
|
---|
69 | // changeNodeToolStripMenuItem
|
---|
70 | //
|
---|
71 | this.changeNodeToolStripMenuItem.Name = "changeNodeToolStripMenuItem";
|
---|
72 | this.changeNodeToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
73 | this.changeNodeToolStripMenuItem.Text = "Change Node";
|
---|
74 | this.changeNodeToolStripMenuItem.Click += new System.EventHandler(this.changeNodeToolStripMenuItem_Click);
|
---|
75 | //
|
---|
76 | // cutToolStripMenuItem
|
---|
77 | //
|
---|
78 | this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
|
---|
79 | this.cutToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
80 | this.cutToolStripMenuItem.Text = "Cut Subtree";
|
---|
81 | this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
|
---|
82 | //
|
---|
83 | // removeToolStripMenuItem
|
---|
84 | //
|
---|
85 | this.removeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
86 | this.removeNodeToolStripMenuItem,
|
---|
87 | this.removeSubtreeToolStripMenuItem});
|
---|
88 | this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
|
---|
89 | this.removeToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
90 | this.removeToolStripMenuItem.Text = "Remove";
|
---|
91 | this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeSubtreeToolStripMenuItem_Click);
|
---|
92 | //
|
---|
93 | // removeNodeToolStripMenuItem
|
---|
94 | //
|
---|
95 | this.removeNodeToolStripMenuItem.Name = "removeNodeToolStripMenuItem";
|
---|
96 | this.removeNodeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
|
---|
97 | this.removeNodeToolStripMenuItem.Text = "Node";
|
---|
98 | this.removeNodeToolStripMenuItem.Click += new System.EventHandler(this.removeNodeToolStripMenuItem_Click);
|
---|
99 | //
|
---|
100 | // removeSubtreeToolStripMenuItem
|
---|
101 | //
|
---|
102 | this.removeSubtreeToolStripMenuItem.Name = "removeSubtreeToolStripMenuItem";
|
---|
103 | this.removeSubtreeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
|
---|
104 | this.removeSubtreeToolStripMenuItem.Text = "Subtree";
|
---|
105 | this.removeSubtreeToolStripMenuItem.Click += new System.EventHandler(this.removeSubtreeToolStripMenuItem_Click);
|
---|
106 | //
|
---|
107 | // pasteToolStripMenuItem
|
---|
108 | //
|
---|
109 | this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
|
---|
110 | this.pasteToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
111 | this.pasteToolStripMenuItem.Text = "Paste Subtree";
|
---|
112 | this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Clicked);
|
---|
113 | //
|
---|
114 | // toolStripSeparator
|
---|
115 | //
|
---|
116 | this.toolStripSeparator.Name = "toolStripSeparator";
|
---|
117 | this.toolStripSeparator.Size = new System.Drawing.Size(149, 6);
|
---|
118 | //
|
---|
119 | // copyToolStripMenuItem
|
---|
120 | //
|
---|
121 | this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
|
---|
122 | this.copyToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
|
---|
123 | this.copyToolStripMenuItem.Text = "Copy Subtree";
|
---|
124 | this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
|
---|
125 | //
|
---|
126 | // toolStripSeparator1
|
---|
127 | //
|
---|
128 | this.toolStripSeparator1.Name = "toolStripSeparator1";
|
---|
129 | this.toolStripSeparator1.Size = new System.Drawing.Size(162, 6);
|
---|
130 | //
|
---|
131 | // toolStripSeparator2
|
---|
132 | //
|
---|
133 | this.toolStripSeparator2.Name = "toolStripSeparator2";
|
---|
134 | this.toolStripSeparator2.Size = new System.Drawing.Size(162, 6);
|
---|
135 | //
|
---|
136 | // contextMenuStrip
|
---|
137 | //
|
---|
138 | this.contextMenuStrip.Opened += this.contextMenuStrip_Opened;
|
---|
139 | this.contextMenuStrip.Items.AddRange(new ToolStripItem[] { toolStripSeparator1,
|
---|
140 | insertNodeToolStripMenuItem,
|
---|
141 | removeToolStripMenuItem,
|
---|
142 | changeNodeToolStripMenuItem,
|
---|
143 | toolStripSeparator2,
|
---|
144 | copyToolStripMenuItem,
|
---|
145 | cutToolStripMenuItem,
|
---|
146 | pasteToolStripMenuItem });
|
---|
147 | //
|
---|
148 | // InteractiveSymbolicExpressionTreeChart
|
---|
149 | //
|
---|
150 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
151 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
152 | this.DoubleBuffered = true;
|
---|
153 | this.Name = "InteractiveSymbolicExpressionTreeChart";
|
---|
154 | this.ResumeLayout(false);
|
---|
155 | }
|
---|
156 |
|
---|
157 | private ToolStripMenuItem insertNodeToolStripMenuItem;
|
---|
158 | private ToolStripMenuItem changeNodeToolStripMenuItem;
|
---|
159 | private ToolStripMenuItem cutToolStripMenuItem;
|
---|
160 | private ToolStripMenuItem pasteToolStripMenuItem;
|
---|
161 | private ToolStripMenuItem removeToolStripMenuItem;
|
---|
162 | private ToolStripMenuItem removeNodeToolStripMenuItem;
|
---|
163 | private ToolStripMenuItem removeSubtreeToolStripMenuItem;
|
---|
164 |
|
---|
165 | #endregion
|
---|
166 |
|
---|
167 | private ToolStripSeparator toolStripSeparator;
|
---|
168 | private ToolStripMenuItem copyToolStripMenuItem;
|
---|
169 | private ToolStripSeparator toolStripSeparator1;
|
---|
170 | private ToolStripSeparator toolStripSeparator2;
|
---|
171 | }
|
---|
172 | }
|
---|