Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Charting/3.3/BubbleChartControl.Designer.cs @ 2351

Last change on this file since 2351 was 2289, checked in by mkommend, 15 years ago
  • added VisualMatrix to represent data in BubbleChart
  • made BubbleChart abstract and added inherited ModelingBubbleChart, which reacts as the BubbleChart
  • moved classes between CEDMA.Core and CEDMA.Charting
  • deleted unnecessary classes (results, resultsentry)

(ticket #723)

File size: 9.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.CEDMA.Charting {
23  partial class BubbleChartControl {
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      this.pictureBox = new System.Windows.Forms.PictureBox();
49      this.pictureBoxContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
50      this.moveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.selectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
54      this.clearSelectionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.invertSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.filterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
57      this.showHiddenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
59      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
60      this.pictureBoxContextMenuStrip.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // pictureBox
64      //
65      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
66                  | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.pictureBox.BackColor = System.Drawing.Color.White;
69      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
70      this.pictureBox.ContextMenuStrip = this.pictureBoxContextMenuStrip;
71      this.pictureBox.Location = new System.Drawing.Point(0, 0);
72      this.pictureBox.Name = "pictureBox";
73      this.pictureBox.Size = new System.Drawing.Size(266, 236);
74      this.pictureBox.TabIndex = 0;
75      this.pictureBox.TabStop = false;
76      this.pictureBox.VisibleChanged += new System.EventHandler(this.pictureBox_VisibleChanged);
77      this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove);
78      this.pictureBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseDoubleClick);
79      this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseClick);
80      this.pictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseDown);
81      this.pictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseUp);
82      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
83      //
84      // pictureBoxContextMenuStrip
85      //
86      this.pictureBoxContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
87            this.moveToolStripMenuItem,
88            this.zoomToolStripMenuItem,
89            this.selectToolStripMenuItem,
90            this.toolStripSeparator1,
91            this.clearSelectionMenuItem,
92            this.invertSelectionToolStripMenuItem,
93            this.filterToolStripMenuItem,
94            this.showHiddenToolStripMenuItem});
95      this.pictureBoxContextMenuStrip.Name = "pictureBoxContextMenuStrip";
96      this.pictureBoxContextMenuStrip.Size = new System.Drawing.Size(155, 186);
97      this.pictureBoxContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.pictureBoxContextMenuStrip_Opening);
98      //
99      // moveToolStripMenuItem
100      //
101      this.moveToolStripMenuItem.Name = "moveToolStripMenuItem";
102      this.moveToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
103      this.moveToolStripMenuItem.Text = "Move";
104      this.moveToolStripMenuItem.Click += new System.EventHandler(this.moveToolStripMenuItem_Click);
105      //
106      // zoomToolStripMenuItem
107      //
108      this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
109      this.zoomToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
110      this.zoomToolStripMenuItem.Text = "&Zoom";
111      this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click);
112      //
113      // selectToolStripMenuItem
114      //
115      this.selectToolStripMenuItem.Name = "selectToolStripMenuItem";
116      this.selectToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
117      this.selectToolStripMenuItem.Text = "&Select";
118      this.selectToolStripMenuItem.Click += new System.EventHandler(this.selectToolStripMenuItem_Click);
119      //
120      // toolStripSeparator1
121      //
122      this.toolStripSeparator1.Name = "toolStripSeparator1";
123      this.toolStripSeparator1.Size = new System.Drawing.Size(151, 6);
124      //
125      // clearSelectionMenuItem
126      //
127      this.clearSelectionMenuItem.Name = "clearSelectionMenuItem";
128      this.clearSelectionMenuItem.Size = new System.Drawing.Size(154, 22);
129      this.clearSelectionMenuItem.Text = "Clear selection";
130      this.clearSelectionMenuItem.Click += new System.EventHandler(this.clearSelectionMenuItem_Click);
131      //
132      // invertSelectionToolStripMenuItem
133      //
134      this.invertSelectionToolStripMenuItem.Name = "invertSelectionToolStripMenuItem";
135      this.invertSelectionToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
136      this.invertSelectionToolStripMenuItem.Text = "Invert selection";
137      this.invertSelectionToolStripMenuItem.Click += new System.EventHandler(this.invertSelectionToolStripMenuItem_Click);
138      //
139      // filterToolStripMenuItem
140      //
141      this.filterToolStripMenuItem.Name = "filterToolStripMenuItem";
142      this.filterToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
143      this.filterToolStripMenuItem.Text = "Hide selected";
144      this.filterToolStripMenuItem.Click += new System.EventHandler(this.hideSelectedToolStripMenuItem_Click);
145      //
146      // showHiddenToolStripMenuItem
147      //
148      this.showHiddenToolStripMenuItem.Enabled = false;
149      this.showHiddenToolStripMenuItem.Name = "showHiddenToolStripMenuItem";
150      this.showHiddenToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
151      this.showHiddenToolStripMenuItem.Text = "Show hidden";
152      this.showHiddenToolStripMenuItem.Click += new System.EventHandler(this.showHiddenToolStripMenuItem_Click);
153      //
154      // toolTip
155      //
156      this.toolTip.Popup += new System.Windows.Forms.PopupEventHandler(this.toolTip_Popup);
157      //
158      // BubbleChartControl
159      //
160      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
161      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
162      this.BackColor = System.Drawing.SystemColors.Control;
163      this.Controls.Add(this.pictureBox);
164      this.Name = "BubbleChartControl";
165      this.Size = new System.Drawing.Size(266, 236);
166      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
167      this.pictureBoxContextMenuStrip.ResumeLayout(false);
168      this.ResumeLayout(false);
169
170    }
171
172    #endregion
173
174    protected System.Windows.Forms.PictureBox pictureBox;
175    protected System.Windows.Forms.ToolTip toolTip;
176    protected System.Windows.Forms.ContextMenuStrip pictureBoxContextMenuStrip;
177    protected System.Windows.Forms.ToolStripMenuItem zoomToolStripMenuItem;
178    protected System.Windows.Forms.ToolStripMenuItem selectToolStripMenuItem;
179    private System.Windows.Forms.ToolStripMenuItem moveToolStripMenuItem;
180    private System.Windows.Forms.ToolStripMenuItem invertSelectionToolStripMenuItem;
181    private System.Windows.Forms.ToolStripMenuItem filterToolStripMenuItem;
182    private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
183    private System.Windows.Forms.ToolStripMenuItem clearSelectionMenuItem;
184    private System.Windows.Forms.ToolStripMenuItem showHiddenToolStripMenuItem;
185
186  }
187}
Note: See TracBrowser for help on using the repository browser.