1 | namespace HeuristicLab.Operators.Views.GraphVisualization {
|
---|
2 | partial class OperatorGraphView {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.components = new System.ComponentModel.Container();
|
---|
27 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OperatorGraphView));
|
---|
28 | this.graphVisualizationInfoView = new HeuristicLab.Operators.Views.GraphVisualization.GraphVisualizationInfoView();
|
---|
29 | this.shapeContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
30 | this.openViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
31 | this.initialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
32 | this.breakPointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
33 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
34 | this.screenshotButton = new System.Windows.Forms.Button();
|
---|
35 | this.zoomOutButton = new System.Windows.Forms.Button();
|
---|
36 | this.zoomInButton = new System.Windows.Forms.Button();
|
---|
37 | this.zoomToFitButton = new System.Windows.Forms.Button();
|
---|
38 | this.relayoutButton = new System.Windows.Forms.Button();
|
---|
39 | this.connectButton = new System.Windows.Forms.Button();
|
---|
40 | this.panButton = new System.Windows.Forms.Button();
|
---|
41 | this.selectButton = new System.Windows.Forms.Button();
|
---|
42 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
43 | this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
44 | this.buttonToolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
45 | this.shapeContextMenu.SuspendLayout();
|
---|
46 | this.splitContainer.Panel1.SuspendLayout();
|
---|
47 | this.splitContainer.Panel2.SuspendLayout();
|
---|
48 | this.splitContainer.SuspendLayout();
|
---|
49 | this.detailsGroupBox.SuspendLayout();
|
---|
50 | this.SuspendLayout();
|
---|
51 | //
|
---|
52 | // graphVisualizationInfoView
|
---|
53 | //
|
---|
54 | this.graphVisualizationInfoView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
55 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
56 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
57 | this.graphVisualizationInfoView.Caption = null;
|
---|
58 | this.graphVisualizationInfoView.Content = null;
|
---|
59 | this.graphVisualizationInfoView.Location = new System.Drawing.Point(3, 30);
|
---|
60 | this.graphVisualizationInfoView.Name = "graphVisualizationInfoView";
|
---|
61 | this.graphVisualizationInfoView.ReadOnly = false;
|
---|
62 | this.graphVisualizationInfoView.Size = new System.Drawing.Size(662, 248);
|
---|
63 | this.graphVisualizationInfoView.TabIndex = 0;
|
---|
64 | //
|
---|
65 | // shapeContextMenu
|
---|
66 | //
|
---|
67 | this.shapeContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
68 | this.openViewToolStripMenuItem,
|
---|
69 | this.initialToolStripMenuItem,
|
---|
70 | this.breakPointToolStripMenuItem});
|
---|
71 | this.shapeContextMenu.Name = "shapeContextMenu";
|
---|
72 | this.shapeContextMenu.Size = new System.Drawing.Size(154, 70);
|
---|
73 | this.shapeContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.shapeContextMenu_Opening);
|
---|
74 | //
|
---|
75 | // openViewToolStripMenuItem
|
---|
76 | //
|
---|
77 | this.openViewToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
|
---|
78 | this.openViewToolStripMenuItem.Name = "openViewToolStripMenuItem";
|
---|
79 | this.openViewToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
|
---|
80 | this.openViewToolStripMenuItem.Text = "Open View";
|
---|
81 | this.openViewToolStripMenuItem.Click += new System.EventHandler(this.openViewToolStripMenuItem_Click);
|
---|
82 | //
|
---|
83 | // initialToolStripMenuItem
|
---|
84 | //
|
---|
85 | this.initialToolStripMenuItem.Name = "initialToolStripMenuItem";
|
---|
86 | this.initialToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
|
---|
87 | this.initialToolStripMenuItem.Text = "Initial Operator";
|
---|
88 | this.initialToolStripMenuItem.Click += new System.EventHandler(this.initialOperatorToolStripMenuItem_Click);
|
---|
89 | //
|
---|
90 | // breakPointToolStripMenuItem
|
---|
91 | //
|
---|
92 | this.breakPointToolStripMenuItem.Name = "breakPointToolStripMenuItem";
|
---|
93 | this.breakPointToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
|
---|
94 | this.breakPointToolStripMenuItem.Text = "Breakpoint";
|
---|
95 | this.breakPointToolStripMenuItem.Click += new System.EventHandler(this.breakPointToolStripMenuItem_Click);
|
---|
96 | //
|
---|
97 | // splitContainer
|
---|
98 | //
|
---|
99 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
100 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
101 | this.splitContainer.Name = "splitContainer";
|
---|
102 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
103 | //
|
---|
104 | // splitContainer.Panel1
|
---|
105 | //
|
---|
106 | this.splitContainer.Panel1.Controls.Add(this.screenshotButton);
|
---|
107 | this.splitContainer.Panel1.Controls.Add(this.zoomOutButton);
|
---|
108 | this.splitContainer.Panel1.Controls.Add(this.zoomInButton);
|
---|
109 | this.splitContainer.Panel1.Controls.Add(this.zoomToFitButton);
|
---|
110 | this.splitContainer.Panel1.Controls.Add(this.relayoutButton);
|
---|
111 | this.splitContainer.Panel1.Controls.Add(this.connectButton);
|
---|
112 | this.splitContainer.Panel1.Controls.Add(this.panButton);
|
---|
113 | this.splitContainer.Panel1.Controls.Add(this.selectButton);
|
---|
114 | this.splitContainer.Panel1.Controls.Add(this.graphVisualizationInfoView);
|
---|
115 | //
|
---|
116 | // splitContainer.Panel2
|
---|
117 | //
|
---|
118 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
119 | this.splitContainer.Size = new System.Drawing.Size(665, 444);
|
---|
120 | this.splitContainer.SplitterDistance = 279;
|
---|
121 | this.splitContainer.TabIndex = 1;
|
---|
122 | //
|
---|
123 | // screenshotButton
|
---|
124 | //
|
---|
125 | this.screenshotButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Image;
|
---|
126 | this.screenshotButton.Location = new System.Drawing.Point(243, 3);
|
---|
127 | this.screenshotButton.Name = "screenshotButton";
|
---|
128 | this.screenshotButton.Size = new System.Drawing.Size(24, 24);
|
---|
129 | this.screenshotButton.TabIndex = 8;
|
---|
130 | this.buttonToolTip.SetToolTip(this.screenshotButton, "Screenshot");
|
---|
131 | this.screenshotButton.UseVisualStyleBackColor = true;
|
---|
132 | this.screenshotButton.Click += new System.EventHandler(this.screenshotButton_Click);
|
---|
133 | //
|
---|
134 | // zoomOutButton
|
---|
135 | //
|
---|
136 | this.zoomOutButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ZoomOut;
|
---|
137 | this.zoomOutButton.Location = new System.Drawing.Point(213, 3);
|
---|
138 | this.zoomOutButton.Name = "zoomOutButton";
|
---|
139 | this.zoomOutButton.Size = new System.Drawing.Size(24, 24);
|
---|
140 | this.zoomOutButton.TabIndex = 7;
|
---|
141 | this.buttonToolTip.SetToolTip(this.zoomOutButton, "Zoom Out");
|
---|
142 | this.zoomOutButton.UseVisualStyleBackColor = true;
|
---|
143 | this.zoomOutButton.Click += new System.EventHandler(this.zoomOutButton_Click);
|
---|
144 | //
|
---|
145 | // zoomInButton
|
---|
146 | //
|
---|
147 | this.zoomInButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ZoomIn;
|
---|
148 | this.zoomInButton.Location = new System.Drawing.Point(183, 3);
|
---|
149 | this.zoomInButton.Name = "zoomInButton";
|
---|
150 | this.zoomInButton.Size = new System.Drawing.Size(24, 24);
|
---|
151 | this.zoomInButton.TabIndex = 6;
|
---|
152 | this.buttonToolTip.SetToolTip(this.zoomInButton, "Zoom In");
|
---|
153 | this.zoomInButton.UseVisualStyleBackColor = true;
|
---|
154 | this.zoomInButton.Click += new System.EventHandler(this.zoomInButton_Click);
|
---|
155 | //
|
---|
156 | // zoomAreaButton
|
---|
157 | //
|
---|
158 | this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize;
|
---|
159 | this.zoomToFitButton.Location = new System.Drawing.Point(153, 3);
|
---|
160 | this.zoomToFitButton.Name = "zoomAreaButton";
|
---|
161 | this.zoomToFitButton.Size = new System.Drawing.Size(24, 24);
|
---|
162 | this.zoomToFitButton.TabIndex = 5;
|
---|
163 | this.buttonToolTip.SetToolTip(this.zoomToFitButton, "Zoom to Fit");
|
---|
164 | this.zoomToFitButton.UseVisualStyleBackColor = true;
|
---|
165 | this.zoomToFitButton.Click += new System.EventHandler(this.zoomAreaButton_Click);
|
---|
166 | //
|
---|
167 | // relayoutButton
|
---|
168 | //
|
---|
169 | this.relayoutButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.RefreshDocument;
|
---|
170 | this.relayoutButton.Location = new System.Drawing.Point(123, 3);
|
---|
171 | this.relayoutButton.Name = "relayoutButton";
|
---|
172 | this.relayoutButton.Size = new System.Drawing.Size(24, 24);
|
---|
173 | this.relayoutButton.TabIndex = 4;
|
---|
174 | this.buttonToolTip.SetToolTip(this.relayoutButton, "Relayout Graph");
|
---|
175 | this.relayoutButton.UseVisualStyleBackColor = true;
|
---|
176 | this.relayoutButton.Click += new System.EventHandler(this.relayoutButton_Click);
|
---|
177 | //
|
---|
178 | // connectButton
|
---|
179 | //
|
---|
180 | this.connectButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Interface;
|
---|
181 | this.connectButton.Location = new System.Drawing.Point(63, 3);
|
---|
182 | this.connectButton.Name = "connectButton";
|
---|
183 | this.connectButton.Size = new System.Drawing.Size(24, 24);
|
---|
184 | this.connectButton.TabIndex = 3;
|
---|
185 | this.buttonToolTip.SetToolTip(this.connectButton, "Connection Tool");
|
---|
186 | this.connectButton.UseVisualStyleBackColor = true;
|
---|
187 | this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
|
---|
188 | //
|
---|
189 | // panButton
|
---|
190 | //
|
---|
191 | this.panButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Breakpoint;
|
---|
192 | this.panButton.Location = new System.Drawing.Point(33, 3);
|
---|
193 | this.panButton.Name = "panButton";
|
---|
194 | this.panButton.Size = new System.Drawing.Size(24, 24);
|
---|
195 | this.panButton.TabIndex = 2;
|
---|
196 | this.buttonToolTip.SetToolTip(this.panButton, "Pan Tool");
|
---|
197 | this.panButton.UseVisualStyleBackColor = true;
|
---|
198 | this.panButton.Click += new System.EventHandler(this.panButton_Click);
|
---|
199 | //
|
---|
200 | // selectButton
|
---|
201 | //
|
---|
202 | this.selectButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pointer;
|
---|
203 | this.selectButton.Location = new System.Drawing.Point(3, 3);
|
---|
204 | this.selectButton.Name = "selectButton";
|
---|
205 | this.selectButton.Size = new System.Drawing.Size(24, 24);
|
---|
206 | this.selectButton.TabIndex = 1;
|
---|
207 | this.buttonToolTip.SetToolTip(this.selectButton, "Select Tool");
|
---|
208 | this.selectButton.UseVisualStyleBackColor = true;
|
---|
209 | this.selectButton.Click += new System.EventHandler(this.selectButton_Click);
|
---|
210 | //
|
---|
211 | // detailsGroupBox
|
---|
212 | //
|
---|
213 | this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
214 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
215 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
216 | this.detailsGroupBox.Controls.Add(this.detailsViewHost);
|
---|
217 | this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
218 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
219 | this.detailsGroupBox.Size = new System.Drawing.Size(665, 161);
|
---|
220 | this.detailsGroupBox.TabIndex = 0;
|
---|
221 | this.detailsGroupBox.TabStop = false;
|
---|
222 | this.detailsGroupBox.Text = "Details";
|
---|
223 | //
|
---|
224 | // detailsViewHost
|
---|
225 | //
|
---|
226 | this.detailsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
227 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
228 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
229 | this.detailsViewHost.Caption = null;
|
---|
230 | this.detailsViewHost.Content = null;
|
---|
231 | this.detailsViewHost.Location = new System.Drawing.Point(3, 16);
|
---|
232 | this.detailsViewHost.Name = "detailsViewHost";
|
---|
233 | this.detailsViewHost.ReadOnly = false;
|
---|
234 | this.detailsViewHost.Size = new System.Drawing.Size(659, 142);
|
---|
235 | this.detailsViewHost.TabIndex = 0;
|
---|
236 | this.detailsViewHost.ViewType = null;
|
---|
237 | //
|
---|
238 | // OperatorGraphView
|
---|
239 | //
|
---|
240 | this.DragOver += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragEnterOver);
|
---|
241 | this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragDrop);
|
---|
242 | this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragEnterOver);
|
---|
243 | this.AllowDrop = true;
|
---|
244 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
245 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
246 | this.Controls.Add(this.splitContainer);
|
---|
247 | this.Name = "OperatorGraphView";
|
---|
248 | this.Size = new System.Drawing.Size(665, 444);
|
---|
249 | this.shapeContextMenu.ResumeLayout(false);
|
---|
250 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
251 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
252 | this.splitContainer.ResumeLayout(false);
|
---|
253 | this.detailsGroupBox.ResumeLayout(false);
|
---|
254 | this.ResumeLayout(false);
|
---|
255 |
|
---|
256 | }
|
---|
257 | #endregion
|
---|
258 |
|
---|
259 | private GraphVisualizationInfoView graphVisualizationInfoView;
|
---|
260 | private System.Windows.Forms.ContextMenuStrip shapeContextMenu;
|
---|
261 | private System.Windows.Forms.ToolStripMenuItem openViewToolStripMenuItem;
|
---|
262 | private System.Windows.Forms.ToolStripMenuItem initialToolStripMenuItem;
|
---|
263 | private System.Windows.Forms.ToolStripMenuItem breakPointToolStripMenuItem;
|
---|
264 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
265 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
266 | private HeuristicLab.MainForm.WindowsForms.ViewHost detailsViewHost;
|
---|
267 | private System.Windows.Forms.Button selectButton;
|
---|
268 | private System.Windows.Forms.Button zoomOutButton;
|
---|
269 | private System.Windows.Forms.Button zoomInButton;
|
---|
270 | private System.Windows.Forms.Button zoomToFitButton;
|
---|
271 | private System.Windows.Forms.Button relayoutButton;
|
---|
272 | private System.Windows.Forms.Button connectButton;
|
---|
273 | private System.Windows.Forms.Button panButton;
|
---|
274 | private System.Windows.Forms.Button screenshotButton;
|
---|
275 | private System.Windows.Forms.ToolTip buttonToolTip;
|
---|
276 | }
|
---|
277 | }
|
---|