Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifierView/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionTreeChart.Designer.cs @ 7372

Last change on this file since 7372 was 7372, checked in by bburlacu, 13 years ago

#1763: Intermediate commit with work done on the SymbolicExpressionTreeChart view (proxy right click events to nodes, methods for changing the weight/value of variable/constant nodes).

File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
22using System;
23using System.Windows.Forms;
24using HeuristicLab.Common;
25
26namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
27  partial class SymbolicExpressionTreeChart {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
34    /// Clean up any resources being used.
35    /// </summary>
36    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
37    protected override void Dispose(bool disposing) {
38      if (disposing && (components != null)) {
39        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.toolTip = new System.Windows.Forms.ToolTip(this.components);
53      this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
54      this.saveImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.changeValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
57      this.contextMenuStrip.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // contextMenuStrip
61      //
62      this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
63            this.saveImageToolStripMenuItem,
64            this.changeValueToolStripMenuItem});
65      this.contextMenuStrip.Name = "contextMenuStrip";
66      this.contextMenuStrip.Size = new System.Drawing.Size(153, 70);
67      this.contextMenuStrip.Opened += new System.EventHandler(this.contextMenuStrip_Opened);
68      //
69      // saveImageToolStripMenuItem
70      //
71      this.saveImageToolStripMenuItem.Name = "saveImageToolStripMenuItem";
72      this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
73      this.saveImageToolStripMenuItem.Text = "Save Image";
74      this.saveImageToolStripMenuItem.Click += new System.EventHandler(this.saveImageToolStripMenuItem_Click);
75      //
76      // changeValueToolStripMenuItem
77      //
78      this.changeValueToolStripMenuItem.Enabled = false;
79      this.changeValueToolStripMenuItem.Name = "changeValueToolStripMenuItem";
80      this.changeValueToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
81      this.changeValueToolStripMenuItem.Text = "Change Value";
82      this.changeValueToolStripMenuItem.Click += new System.EventHandler(this.changeValueToolStripMenuItem_Click);
83      //
84      // saveFileDialog
85      //
86      this.saveFileDialog.Filter = "Bitmap (*.bmp)|*.bmp|EMF (*.emf)|*.emf";
87      //
88      // SymbolicExpressionTreeChart
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.ContextMenuStrip = this.contextMenuStrip;
93      this.Name = "SymbolicExpressionTreeChart";
94      this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.SymbolicExpressionTreeChart_MouseClick);
95      this.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.SymbolicExpressionTreeChart_MouseDoubleClick);
96      this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SymbolicExpressionTreeChart_MouseDown);
97      this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SymbolicExpressionTreeChart_MouseMove);
98      this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SymbolicExpressionTreeChart_MouseUp);
99      this.contextMenuStrip.ResumeLayout(false);
100      this.ResumeLayout(false);
101
102    }
103
104    #endregion
105
106    private System.Windows.Forms.ToolTip toolTip;
107    private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
108    private System.Windows.Forms.ToolStripMenuItem saveImageToolStripMenuItem;
109    private System.Windows.Forms.SaveFileDialog saveFileDialog;
110    private System.Windows.Forms.ToolStripMenuItem changeValueToolStripMenuItem;
111  }
112}
Note: See TracBrowser for help on using the repository browser.