Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2283 was 2139, checked in by gkronber, 15 years ago

Implemented filtering of result entries in bubble chart and table view. #691 (CEDMA result views should allow filtering of displayed results)

File size: 9.1 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.invertSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.filterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
57      this.clearSelectionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
58      this.showHiddenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
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      //
98      // moveToolStripMenuItem
99      //
100      this.moveToolStripMenuItem.Name = "moveToolStripMenuItem";
101      this.moveToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
102      this.moveToolStripMenuItem.Text = "Move";
103      this.moveToolStripMenuItem.Click += new System.EventHandler(this.moveToolStripMenuItem_Click);
104      //
105      // zoomToolStripMenuItem
106      //
107      this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
108      this.zoomToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
109      this.zoomToolStripMenuItem.Text = "&Zoom";
110      this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click);
111      //
112      // selectToolStripMenuItem
113      //
114      this.selectToolStripMenuItem.Name = "selectToolStripMenuItem";
115      this.selectToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
116      this.selectToolStripMenuItem.Text = "&Select";
117      this.selectToolStripMenuItem.Click += new System.EventHandler(this.selectToolStripMenuItem_Click);
118      //
119      // invertSelectionToolStripMenuItem
120      //
121      this.invertSelectionToolStripMenuItem.Name = "invertSelectionToolStripMenuItem";
122      this.invertSelectionToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
123      this.invertSelectionToolStripMenuItem.Text = "Invert selection";
124      this.invertSelectionToolStripMenuItem.Click += new System.EventHandler(this.invertSelectionToolStripMenuItem_Click);
125      //
126      // filterToolStripMenuItem
127      //
128      this.filterToolStripMenuItem.Name = "filterToolStripMenuItem";
129      this.filterToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
130      this.filterToolStripMenuItem.Text = "Hide selected";
131      this.filterToolStripMenuItem.Click += new System.EventHandler(this.hideSelectedToolStripMenuItem_Click);
132      //
133      // toolStripSeparator1
134      //
135      this.toolStripSeparator1.Name = "toolStripSeparator1";
136      this.toolStripSeparator1.Size = new System.Drawing.Size(151, 6);
137      //
138      // clearSelectionMenuItem
139      //
140      this.clearSelectionMenuItem.Name = "clearSelectionMenuItem";
141      this.clearSelectionMenuItem.Size = new System.Drawing.Size(154, 22);
142      this.clearSelectionMenuItem.Text = "Clear selection";
143      this.clearSelectionMenuItem.Click += new System.EventHandler(this.clearSelectionMenuItem_Click);
144      //
145      // showHiddenToolStripMenuItem
146      //
147      this.showHiddenToolStripMenuItem.Enabled = false;
148      this.showHiddenToolStripMenuItem.Name = "showHiddenToolStripMenuItem";
149      this.showHiddenToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
150      this.showHiddenToolStripMenuItem.Text = "Show hidden";
151      this.showHiddenToolStripMenuItem.Click += new System.EventHandler(this.showHiddenToolStripMenuItem_Click);
152      //
153      // BubbleChartControl
154      //
155      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
156      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
157      this.BackColor = System.Drawing.SystemColors.Control;
158      this.Controls.Add(this.pictureBox);
159      this.Name = "BubbleChartControl";
160      this.Size = new System.Drawing.Size(266, 236);
161      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
162      this.pictureBoxContextMenuStrip.ResumeLayout(false);
163      this.ResumeLayout(false);
164
165    }
166
167    #endregion
168
169    protected System.Windows.Forms.PictureBox pictureBox;
170    protected System.Windows.Forms.ToolTip toolTip;
171    protected System.Windows.Forms.ContextMenuStrip pictureBoxContextMenuStrip;
172    protected System.Windows.Forms.ToolStripMenuItem zoomToolStripMenuItem;
173    protected System.Windows.Forms.ToolStripMenuItem selectToolStripMenuItem;
174    private System.Windows.Forms.ToolStripMenuItem moveToolStripMenuItem;
175    private System.Windows.Forms.ToolStripMenuItem invertSelectionToolStripMenuItem;
176    private System.Windows.Forms.ToolStripMenuItem filterToolStripMenuItem;
177    private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
178    private System.Windows.Forms.ToolStripMenuItem clearSelectionMenuItem;
179    private System.Windows.Forms.ToolStripMenuItem showHiddenToolStripMenuItem;
180
181  }
182}
Note: See TracBrowser for help on using the repository browser.