Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingCheckedVariablesView.Designer.cs @ 14467

Last change on this file since 14467 was 14381, checked in by pfleck, 7 years ago

#2698

  • Refactored CheckedVariablesView out of the ChartView to allow reuse of the checked variables list.
    • The new list visualizes the non-input/target variables in gray.
    • Added context menu to quickly (un)check all variables or only the inputs+target variables.
  • In the Multi-Scatterplot
    • New structure and layout of the single charts to support fixed header rows and columns (for the variable names). Instead, removed the legend of each plot for better usage of plot area.
    • Adapted the new CheckedVariablesView (but hidden until (un)checking is implemented).
File size: 7.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.DataPreprocessing.Views {
23  partial class PreprocessingCheckedVariablesView {
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.splitContainer = new System.Windows.Forms.SplitContainer();
49      this.checkedItemList = new HeuristicLab.DataPreprocessing.Views.PreprocessingCheckedItemListView();
50      this.variablesListcontextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
51      this.checkInputsTargetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.checkOnlyInputsTargetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.checkAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.uncheckAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
56      this.splitContainer.Panel1.SuspendLayout();
57      this.splitContainer.SuspendLayout();
58      this.variablesListcontextMenuStrip.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // splitContainer
62      //
63      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
64      this.splitContainer.Location = new System.Drawing.Point(0, 0);
65      this.splitContainer.Name = "splitContainer";
66      //
67      // splitContainer.Panel1
68      //
69      this.splitContainer.Panel1.Controls.Add(this.checkedItemList);
70      this.splitContainer.Size = new System.Drawing.Size(654, 403);
71      this.splitContainer.SplitterDistance = 91;
72      this.splitContainer.TabIndex = 7;
73      //
74      // checkedItemList
75      //
76      this.checkedItemList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77            | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
79      this.checkedItemList.Caption = "View";
80      this.checkedItemList.Content = null;
81      this.checkedItemList.ContextMenuStrip = this.variablesListcontextMenuStrip;
82      this.checkedItemList.Location = new System.Drawing.Point(4, 4);
83      this.checkedItemList.Name = "checkedItemList";
84      this.checkedItemList.ReadOnly = false;
85      this.checkedItemList.Size = new System.Drawing.Size(84, 252);
86      this.checkedItemList.TabIndex = 4;
87      //
88      // variablesListcontextMenuStrip
89      //
90      this.variablesListcontextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
91            this.checkInputsTargetToolStripMenuItem,
92            this.checkOnlyInputsTargetToolStripMenuItem,
93            this.checkAllToolStripMenuItem,
94            this.uncheckAllToolStripMenuItem});
95      this.variablesListcontextMenuStrip.Name = "variablesListcontextMenuStrip";
96      this.variablesListcontextMenuStrip.Size = new System.Drawing.Size(211, 92);
97      this.variablesListcontextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.variablesListcontextMenuStrip_Opening);
98      //
99      // checkInputsTargetToolStripMenuItem
100      //
101      this.checkInputsTargetToolStripMenuItem.Name = "checkInputsTargetToolStripMenuItem";
102      this.checkInputsTargetToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
103      this.checkInputsTargetToolStripMenuItem.Text = "Check Inputs+Target";
104      this.checkInputsTargetToolStripMenuItem.Click += new System.EventHandler(this.checkInputsTargetToolStripMenuItem_Click);
105      //
106      // checkOnlyInputsTargetToolStripMenuItem
107      //
108      this.checkOnlyInputsTargetToolStripMenuItem.Name = "checkOnlyInputsTargetToolStripMenuItem";
109      this.checkOnlyInputsTargetToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
110      this.checkOnlyInputsTargetToolStripMenuItem.Text = "Check only Inputs+Target";
111      this.checkOnlyInputsTargetToolStripMenuItem.Click += new System.EventHandler(this.checkOnlyInputsTargetToolStripMenuItem_Click);
112      //
113      // checkAllToolStripMenuItem
114      //
115      this.checkAllToolStripMenuItem.Name = "checkAllToolStripMenuItem";
116      this.checkAllToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
117      this.checkAllToolStripMenuItem.Text = "Check All";
118      this.checkAllToolStripMenuItem.Click += new System.EventHandler(this.checkAllToolStripMenuItem_Click);
119      //
120      // uncheckAllToolStripMenuItem
121      //
122      this.uncheckAllToolStripMenuItem.Name = "uncheckAllToolStripMenuItem";
123      this.uncheckAllToolStripMenuItem.Size = new System.Drawing.Size(210, 22);
124      this.uncheckAllToolStripMenuItem.Text = "Uncheck All";
125      this.uncheckAllToolStripMenuItem.Click += new System.EventHandler(this.uncheckAllToolStripMenuItem_Click);
126      //
127      // PreprocessingCheckedVariablesView
128      //
129      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
130      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
131      this.Controls.Add(this.splitContainer);
132      this.Name = "PreprocessingCheckedVariablesView";
133      this.Size = new System.Drawing.Size(654, 403);
134      this.splitContainer.Panel1.ResumeLayout(false);
135      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
136      this.splitContainer.ResumeLayout(false);
137      this.variablesListcontextMenuStrip.ResumeLayout(false);
138      this.ResumeLayout(false);
139
140    }
141
142    #endregion
143
144    protected PreprocessingCheckedItemListView checkedItemList;
145    protected System.Windows.Forms.SplitContainer splitContainer;
146    private System.Windows.Forms.ContextMenuStrip variablesListcontextMenuStrip;
147    private System.Windows.Forms.ToolStripMenuItem checkInputsTargetToolStripMenuItem;
148    private System.Windows.Forms.ToolStripMenuItem checkAllToolStripMenuItem;
149    private System.Windows.Forms.ToolStripMenuItem uncheckAllToolStripMenuItem;
150    private System.Windows.Forms.ToolStripMenuItem checkOnlyInputsTargetToolStripMenuItem;
151  }
152}
Note: See TracBrowser for help on using the repository browser.