Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

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