1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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.SuspendLayout();
|
---|
59 | //
|
---|
60 | // insertNodeToolStripMenuItem
|
---|
61 | //
|
---|
62 | this.insertNodeToolStripMenuItem.Name = "insertNodeToolStripMenuItem";
|
---|
63 | this.insertNodeToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
64 | this.insertNodeToolStripMenuItem.Text = "Insert Node";
|
---|
65 | this.insertNodeToolStripMenuItem.Click += new System.EventHandler(this.insertNodeToolStripMenuItem_Click);
|
---|
66 | //
|
---|
67 | // changeNodeToolStripMenuItem
|
---|
68 | //
|
---|
69 | this.changeNodeToolStripMenuItem.Name = "changeNodeToolStripMenuItem";
|
---|
70 | this.changeNodeToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
71 | this.changeNodeToolStripMenuItem.Text = "Change Node";
|
---|
72 | this.changeNodeToolStripMenuItem.Click += new System.EventHandler(this.changeNodeToolStripMenuItem_Click);
|
---|
73 | //
|
---|
74 | // cutToolStripMenuItem
|
---|
75 | //
|
---|
76 | this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
|
---|
77 | this.cutToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
78 | this.cutToolStripMenuItem.Text = "Cut";
|
---|
79 | this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
|
---|
80 | //
|
---|
81 | // removeToolStripMenuItem
|
---|
82 | //
|
---|
83 | this.removeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
84 | this.removeNodeToolStripMenuItem,
|
---|
85 | this.removeSubtreeToolStripMenuItem});
|
---|
86 | this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
|
---|
87 | this.removeToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
88 | this.removeToolStripMenuItem.Text = "Remove";
|
---|
89 | this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeSubtreeToolStripMenuItem_Click);
|
---|
90 | //
|
---|
91 | // removeNodeToolStripMenuItem
|
---|
92 | //
|
---|
93 | this.removeNodeToolStripMenuItem.Name = "removeNodeToolStripMenuItem";
|
---|
94 | this.removeNodeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
|
---|
95 | this.removeNodeToolStripMenuItem.Text = "Node";
|
---|
96 | this.removeNodeToolStripMenuItem.Click += new System.EventHandler(this.removeNodeToolStripMenuItem_Click);
|
---|
97 | //
|
---|
98 | // removeSubtreeToolStripMenuItem
|
---|
99 | //
|
---|
100 | this.removeSubtreeToolStripMenuItem.Name = "removeSubtreeToolStripMenuItem";
|
---|
101 | this.removeSubtreeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
|
---|
102 | this.removeSubtreeToolStripMenuItem.Text = "Subtree";
|
---|
103 | this.removeSubtreeToolStripMenuItem.Click += new System.EventHandler(this.removeSubtreeToolStripMenuItem_Click);
|
---|
104 | //
|
---|
105 | // pasteToolStripMenuItem
|
---|
106 | //
|
---|
107 | this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
|
---|
108 | this.pasteToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
109 | this.pasteToolStripMenuItem.Text = "Paste";
|
---|
110 | this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Clicked);
|
---|
111 | //
|
---|
112 | // toolStripSeparator
|
---|
113 | //
|
---|
114 | this.toolStripSeparator.Name = "toolStripSeparator";
|
---|
115 | this.toolStripSeparator.Size = new System.Drawing.Size(149, 6);
|
---|
116 | //
|
---|
117 | // copyToolStripMenuItem
|
---|
118 | //
|
---|
119 | this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
|
---|
120 | this.copyToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
---|
121 | this.copyToolStripMenuItem.Text = "Copy";
|
---|
122 | this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
|
---|
123 | //
|
---|
124 | // contextMenuStrip
|
---|
125 | //
|
---|
126 | this.contextMenuStrip.Opened += this.contextMenuStrip_Opened;
|
---|
127 | this.contextMenuStrip.Items.AddRange(new ToolStripItem[] { insertNodeToolStripMenuItem,
|
---|
128 | changeNodeToolStripMenuItem,
|
---|
129 | copyToolStripMenuItem,
|
---|
130 | cutToolStripMenuItem,
|
---|
131 | removeToolStripMenuItem,
|
---|
132 | pasteToolStripMenuItem });
|
---|
133 | //
|
---|
134 | // InteractiveSymbolicExpressionTreeChart
|
---|
135 | //
|
---|
136 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
137 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
138 | this.DoubleBuffered = true;
|
---|
139 | this.Name = "InteractiveSymbolicExpressionTreeChart";
|
---|
140 | this.ResumeLayout(false);
|
---|
141 |
|
---|
142 | }
|
---|
143 |
|
---|
144 | private ToolStripMenuItem insertNodeToolStripMenuItem;
|
---|
145 | private ToolStripMenuItem changeNodeToolStripMenuItem;
|
---|
146 | private ToolStripMenuItem cutToolStripMenuItem;
|
---|
147 | private ToolStripMenuItem pasteToolStripMenuItem;
|
---|
148 | private ToolStripMenuItem removeToolStripMenuItem;
|
---|
149 | private ToolStripMenuItem removeNodeToolStripMenuItem;
|
---|
150 | private ToolStripMenuItem removeSubtreeToolStripMenuItem;
|
---|
151 |
|
---|
152 | #endregion
|
---|
153 |
|
---|
154 | private ToolStripSeparator toolStripSeparator;
|
---|
155 | private ToolStripMenuItem copyToolStripMenuItem;
|
---|
156 | }
|
---|
157 | }
|
---|