Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3281 was 3281, checked in by mkommend, 14 years ago

implemented showInViewHost and moved ViewHost from Core.Views to MainForm.WindowsForm (ticket #961)

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