Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/OperatorTreeView.Designer.cs @ 2792

Last change on this file since 2792 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 6.3 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.Core.Views {
23  partial class OperatorTreeView {
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) {
35        if (graphTreeView.Nodes.Count > 0) {
36          RemoveTreeNode(graphTreeView.Nodes[0]);
37          graphTreeView.Nodes.Clear();
38        }
39        if (components != null) components.Dispose();
40      }
41      base.Dispose(disposing);
42    }
43
44    #region Component Designer generated code
45
46    /// <summary>
47    /// Required method for Designer support - do not modify
48    /// the contents of this method with the code editor.
49    /// </summary>
50    private void InitializeComponent() {
51      this.components = new System.ComponentModel.Container();
52      this.imageList = new System.Windows.Forms.ImageList(this.components);
53      this.graphTreeView = new System.Windows.Forms.TreeView();
54      this.graphContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
55      this.breakpointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
57      this.graphContextMenuStrip.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // imageList
61      //
62      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
63      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
64      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
65      //
66      // graphTreeView
67      //
68      this.graphTreeView.AllowDrop = true;
69      this.graphTreeView.ContextMenuStrip = this.graphContextMenuStrip;
70      this.graphTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
71      this.graphTreeView.HideSelection = false;
72      this.graphTreeView.ImageIndex = 0;
73      this.graphTreeView.ImageList = this.imageList;
74      this.graphTreeView.Location = new System.Drawing.Point(0, 0);
75      this.graphTreeView.Name = "graphTreeView";
76      this.graphTreeView.SelectedImageIndex = 0;
77      this.graphTreeView.ShowNodeToolTips = true;
78      this.graphTreeView.Size = new System.Drawing.Size(475, 291);
79      this.graphTreeView.TabIndex = 0;
80      this.graphTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.graphTreeView_BeforeExpand);
81      this.graphTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragDrop);
82      this.graphTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.graphTreeView_MouseDown);
83      this.graphTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragEnterOver);
84      this.graphTreeView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.graphTreeView_KeyDown);
85      this.graphTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.graphTreeView_ItemDrag);
86      this.graphTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.graphTreeView_DragEnterOver);
87      //
88      // graphContextMenuStrip
89      //
90      this.graphContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
91            this.breakpointToolStripMenuItem,
92            this.viewToolStripMenuItem});
93      this.graphContextMenuStrip.Name = "graphContextMenuStrip";
94      this.graphContextMenuStrip.Size = new System.Drawing.Size(132, 48);
95      this.graphContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.graphContextMenuStrip_Opening);
96      //
97      // breakpointToolStripMenuItem
98      //
99      this.breakpointToolStripMenuItem.CheckOnClick = true;
100      this.breakpointToolStripMenuItem.Name = "breakpointToolStripMenuItem";
101      this.breakpointToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
102      this.breakpointToolStripMenuItem.Text = "&Breakpoint";
103      this.breakpointToolStripMenuItem.ToolTipText = "Halt engine execution after executing the operator";
104      this.breakpointToolStripMenuItem.Click += new System.EventHandler(this.breakpointToolStripMenuItem_Click);
105      //
106      // viewToolStripMenuItem
107      //
108      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
109      this.viewToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
110      this.viewToolStripMenuItem.Text = "&View...";
111      this.viewToolStripMenuItem.ToolTipText = "View operator";
112      this.viewToolStripMenuItem.Click += new System.EventHandler(this.viewToolStripMenuItem_Click);
113      //
114      // OperatorTreeView
115      //
116      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
117      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118      this.Controls.Add(this.graphTreeView);
119      this.Name = "OperatorTreeView";
120      this.Size = new System.Drawing.Size(475, 291);
121      this.graphContextMenuStrip.ResumeLayout(false);
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127
128    private System.Windows.Forms.TreeView graphTreeView;
129    private System.Windows.Forms.ContextMenuStrip graphContextMenuStrip;
130    private System.Windows.Forms.ToolStripMenuItem breakpointToolStripMenuItem;
131    private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
132    private System.Windows.Forms.ImageList imageList;
133  }
134}
Note: See TracBrowser for help on using the repository browser.