Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.Designer.cs @ 3753

Last change on this file since 3753 was 3742, checked in by gkronber, 14 years ago

Fixed GPL license headers and deleted files which are not referenced by projects. #893

File size: 15.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.Operators.Views.GraphVisualization {
23  partial class OperatorGraphView {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OperatorGraphView));
49      this.graphVisualizationInfoView = new HeuristicLab.Operators.Views.GraphVisualization.GraphVisualizationInfoView();
50      this.shapeContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
51      this.openViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.initialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.breakPointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.splitContainer = new System.Windows.Forms.SplitContainer();
55      this.screenshotButton = new System.Windows.Forms.Button();
56      this.zoomOutButton = new System.Windows.Forms.Button();
57      this.zoomInButton = new System.Windows.Forms.Button();
58      this.zoomToFitButton = new System.Windows.Forms.Button();
59      this.relayoutButton = new System.Windows.Forms.Button();
60      this.connectButton = new System.Windows.Forms.Button();
61      this.panButton = new System.Windows.Forms.Button();
62      this.selectButton = new System.Windows.Forms.Button();
63      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
64      this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
65      this.buttonToolTip = new System.Windows.Forms.ToolTip(this.components);
66      this.shapeContextMenu.SuspendLayout();
67      this.splitContainer.Panel1.SuspendLayout();
68      this.splitContainer.Panel2.SuspendLayout();
69      this.splitContainer.SuspendLayout();
70      this.detailsGroupBox.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // graphVisualizationInfoView
74      //
75      this.graphVisualizationInfoView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
76                  | System.Windows.Forms.AnchorStyles.Left)
77                  | System.Windows.Forms.AnchorStyles.Right)));
78      this.graphVisualizationInfoView.Caption = null;
79      this.graphVisualizationInfoView.Content = null;
80      this.graphVisualizationInfoView.Location = new System.Drawing.Point(3, 30);
81      this.graphVisualizationInfoView.Name = "graphVisualizationInfoView";
82      this.graphVisualizationInfoView.ReadOnly = false;
83      this.graphVisualizationInfoView.Size = new System.Drawing.Size(662, 248);
84      this.graphVisualizationInfoView.TabIndex = 0;
85      //
86      // shapeContextMenu
87      //
88      this.shapeContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
89            this.openViewToolStripMenuItem,
90            this.initialToolStripMenuItem,
91            this.breakPointToolStripMenuItem});
92      this.shapeContextMenu.Name = "shapeContextMenu";
93      this.shapeContextMenu.Size = new System.Drawing.Size(154, 70);
94      this.shapeContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.shapeContextMenu_Opening);
95      //
96      // openViewToolStripMenuItem
97      //
98      this.openViewToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
99      this.openViewToolStripMenuItem.Name = "openViewToolStripMenuItem";
100      this.openViewToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
101      this.openViewToolStripMenuItem.Text = "Open View";
102      this.openViewToolStripMenuItem.Click += new System.EventHandler(this.openViewToolStripMenuItem_Click);
103      //
104      // initialToolStripMenuItem
105      //
106      this.initialToolStripMenuItem.Name = "initialToolStripMenuItem";
107      this.initialToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
108      this.initialToolStripMenuItem.Text = "Initial Operator";
109      this.initialToolStripMenuItem.Click += new System.EventHandler(this.initialOperatorToolStripMenuItem_Click);
110      //
111      // breakPointToolStripMenuItem
112      //
113      this.breakPointToolStripMenuItem.Name = "breakPointToolStripMenuItem";
114      this.breakPointToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
115      this.breakPointToolStripMenuItem.Text = "Breakpoint";
116      this.breakPointToolStripMenuItem.Click += new System.EventHandler(this.breakPointToolStripMenuItem_Click);
117      //
118      // splitContainer
119      //
120      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
121      this.splitContainer.Location = new System.Drawing.Point(0, 0);
122      this.splitContainer.Name = "splitContainer";
123      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
124      //
125      // splitContainer.Panel1
126      //
127      this.splitContainer.Panel1.Controls.Add(this.screenshotButton);
128      this.splitContainer.Panel1.Controls.Add(this.zoomOutButton);
129      this.splitContainer.Panel1.Controls.Add(this.zoomInButton);
130      this.splitContainer.Panel1.Controls.Add(this.zoomToFitButton);
131      this.splitContainer.Panel1.Controls.Add(this.relayoutButton);
132      this.splitContainer.Panel1.Controls.Add(this.connectButton);
133      this.splitContainer.Panel1.Controls.Add(this.panButton);
134      this.splitContainer.Panel1.Controls.Add(this.selectButton);
135      this.splitContainer.Panel1.Controls.Add(this.graphVisualizationInfoView);
136      //
137      // splitContainer.Panel2
138      //
139      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
140      this.splitContainer.Size = new System.Drawing.Size(665, 444);
141      this.splitContainer.SplitterDistance = 279;
142      this.splitContainer.TabIndex = 1;
143      //
144      // screenshotButton
145      //
146      this.screenshotButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Image;
147      this.screenshotButton.Location = new System.Drawing.Point(243, 3);
148      this.screenshotButton.Name = "screenshotButton";
149      this.screenshotButton.Size = new System.Drawing.Size(24, 24);
150      this.screenshotButton.TabIndex = 8;
151      this.buttonToolTip.SetToolTip(this.screenshotButton, "Screenshot");
152      this.screenshotButton.UseVisualStyleBackColor = true;
153      this.screenshotButton.Click += new System.EventHandler(this.screenshotButton_Click);
154      //
155      // zoomOutButton
156      //
157      this.zoomOutButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ZoomOut;
158      this.zoomOutButton.Location = new System.Drawing.Point(213, 3);
159      this.zoomOutButton.Name = "zoomOutButton";
160      this.zoomOutButton.Size = new System.Drawing.Size(24, 24);
161      this.zoomOutButton.TabIndex = 7;
162      this.buttonToolTip.SetToolTip(this.zoomOutButton, "Zoom Out");
163      this.zoomOutButton.UseVisualStyleBackColor = true;
164      this.zoomOutButton.Click += new System.EventHandler(this.zoomOutButton_Click);
165      //
166      // zoomInButton
167      //
168      this.zoomInButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ZoomIn;
169      this.zoomInButton.Location = new System.Drawing.Point(183, 3);
170      this.zoomInButton.Name = "zoomInButton";
171      this.zoomInButton.Size = new System.Drawing.Size(24, 24);
172      this.zoomInButton.TabIndex = 6;
173      this.buttonToolTip.SetToolTip(this.zoomInButton, "Zoom In");
174      this.zoomInButton.UseVisualStyleBackColor = true;
175      this.zoomInButton.Click += new System.EventHandler(this.zoomInButton_Click);
176      //
177      // zoomAreaButton
178      //
179      this.zoomToFitButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ActualSize;
180      this.zoomToFitButton.Location = new System.Drawing.Point(153, 3);
181      this.zoomToFitButton.Name = "zoomAreaButton";
182      this.zoomToFitButton.Size = new System.Drawing.Size(24, 24);
183      this.zoomToFitButton.TabIndex = 5;
184      this.buttonToolTip.SetToolTip(this.zoomToFitButton, "Zoom to Fit");
185      this.zoomToFitButton.UseVisualStyleBackColor = true;
186      this.zoomToFitButton.Click += new System.EventHandler(this.zoomAreaButton_Click);
187      //
188      // relayoutButton
189      //
190      this.relayoutButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.RefreshDocument;
191      this.relayoutButton.Location = new System.Drawing.Point(123, 3);
192      this.relayoutButton.Name = "relayoutButton";
193      this.relayoutButton.Size = new System.Drawing.Size(24, 24);
194      this.relayoutButton.TabIndex = 4;
195      this.buttonToolTip.SetToolTip(this.relayoutButton, "Relayout Graph");
196      this.relayoutButton.UseVisualStyleBackColor = true;
197      this.relayoutButton.Click += new System.EventHandler(this.relayoutButton_Click);
198      //
199      // connectButton
200      //
201      this.connectButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Interface;
202      this.connectButton.Location = new System.Drawing.Point(63, 3);
203      this.connectButton.Name = "connectButton";
204      this.connectButton.Size = new System.Drawing.Size(24, 24);
205      this.connectButton.TabIndex = 3;
206      this.buttonToolTip.SetToolTip(this.connectButton, "Connection Tool");
207      this.connectButton.UseVisualStyleBackColor = true;
208      this.connectButton.Click += new System.EventHandler(this.connectButton_Click);
209      //
210      // panButton
211      //
212      this.panButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Breakpoint;
213      this.panButton.Location = new System.Drawing.Point(33, 3);
214      this.panButton.Name = "panButton";
215      this.panButton.Size = new System.Drawing.Size(24, 24);
216      this.panButton.TabIndex = 2;
217      this.buttonToolTip.SetToolTip(this.panButton, "Pan Tool");
218      this.panButton.UseVisualStyleBackColor = true;
219      this.panButton.Click += new System.EventHandler(this.panButton_Click);
220      //
221      // selectButton
222      //
223      this.selectButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pointer;
224      this.selectButton.Location = new System.Drawing.Point(3, 3);
225      this.selectButton.Name = "selectButton";
226      this.selectButton.Size = new System.Drawing.Size(24, 24);
227      this.selectButton.TabIndex = 1;
228      this.buttonToolTip.SetToolTip(this.selectButton, "Select Tool");
229      this.selectButton.UseVisualStyleBackColor = true;
230      this.selectButton.Click += new System.EventHandler(this.selectButton_Click);
231      //
232      // detailsGroupBox
233      //
234      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
235                  | System.Windows.Forms.AnchorStyles.Left)
236                  | System.Windows.Forms.AnchorStyles.Right)));
237      this.detailsGroupBox.Controls.Add(this.detailsViewHost);
238      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
239      this.detailsGroupBox.Name = "detailsGroupBox";
240      this.detailsGroupBox.Size = new System.Drawing.Size(665, 161);
241      this.detailsGroupBox.TabIndex = 0;
242      this.detailsGroupBox.TabStop = false;
243      this.detailsGroupBox.Text = "Details";
244      //
245      // detailsViewHost
246      //
247      this.detailsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
248                  | System.Windows.Forms.AnchorStyles.Left)
249                  | System.Windows.Forms.AnchorStyles.Right)));
250      this.detailsViewHost.Caption = null;
251      this.detailsViewHost.Content = null;
252      this.detailsViewHost.Location = new System.Drawing.Point(3, 16);
253      this.detailsViewHost.Name = "detailsViewHost";
254      this.detailsViewHost.ReadOnly = false;
255      this.detailsViewHost.Size = new System.Drawing.Size(659, 142);
256      this.detailsViewHost.TabIndex = 0;
257      this.detailsViewHost.ViewType = null;
258      //
259      // OperatorGraphView
260      //
261      this.DragOver += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragEnterOver);
262      this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragDrop);
263      this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OperatorGraphView_DragEnterOver);
264      this.AllowDrop = true;
265      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
266      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
267      this.Controls.Add(this.splitContainer);
268      this.Name = "OperatorGraphView";
269      this.Size = new System.Drawing.Size(665, 444);
270      this.shapeContextMenu.ResumeLayout(false);
271      this.splitContainer.Panel1.ResumeLayout(false);
272      this.splitContainer.Panel2.ResumeLayout(false);
273      this.splitContainer.ResumeLayout(false);
274      this.detailsGroupBox.ResumeLayout(false);
275      this.ResumeLayout(false);
276
277    }
278    #endregion
279
280    private GraphVisualizationInfoView graphVisualizationInfoView;
281    private System.Windows.Forms.ContextMenuStrip shapeContextMenu;
282    private System.Windows.Forms.ToolStripMenuItem openViewToolStripMenuItem;
283    private System.Windows.Forms.ToolStripMenuItem initialToolStripMenuItem;
284    private System.Windows.Forms.ToolStripMenuItem breakPointToolStripMenuItem;
285    private System.Windows.Forms.SplitContainer splitContainer;
286    private System.Windows.Forms.GroupBox detailsGroupBox;
287    private HeuristicLab.MainForm.WindowsForms.ViewHost detailsViewHost;
288    private System.Windows.Forms.Button selectButton;
289    private System.Windows.Forms.Button zoomOutButton;
290    private System.Windows.Forms.Button zoomInButton;
291    private System.Windows.Forms.Button zoomToFitButton;
292    private System.Windows.Forms.Button relayoutButton;
293    private System.Windows.Forms.Button connectButton;
294    private System.Windows.Forms.Button panButton;
295    private System.Windows.Forms.Button screenshotButton;
296    private System.Windows.Forms.ToolTip buttonToolTip;
297  }
298}
Note: See TracBrowser for help on using the repository browser.