Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2709

  • Improved Check/Uncheck of variables.
    • Instead of removing whole columns/rows from the tablelayout, the tablelayout stays the same with the column/rows width/height set to zero.
    • Hidden charts are not updated to avoid unnessecary calculations.
  • Added a check (messagebox) if >20 variables should be displayed in the multi scatterplot or reduced to 20.
  • Added configuration for point size/opacity and (histogram)aggregation.
File size: 8.0 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10539]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 {
[14381]23  partial class PreprocessingCheckedVariablesView {
[10303]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() {
[14381]47      this.components = new System.ComponentModel.Container();
[14268]48      this.splitContainer = new System.Windows.Forms.SplitContainer();
[14514]49      this.variablesGroupBox = new System.Windows.Forms.GroupBox();
[14511]50      this.uncheckAllButton = new System.Windows.Forms.Button();
51      this.checkAllButton = new System.Windows.Forms.Button();
52      this.checkInputsTargetButton = new System.Windows.Forms.Button();
53      this.variablesListView = new System.Windows.Forms.ListView();
54      this.columnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
[14268]56      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
57      this.splitContainer.Panel1.SuspendLayout();
58      this.splitContainer.SuspendLayout();
[14514]59      this.variablesGroupBox.SuspendLayout();
[10377]60      this.SuspendLayout();
61      //
[14268]62      // splitContainer
[10717]63      //
[14268]64      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
[14511]65      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
[14268]66      this.splitContainer.Location = new System.Drawing.Point(0, 0);
67      this.splitContainer.Name = "splitContainer";
[10717]68      //
[14268]69      // splitContainer.Panel1
70      //
[14514]71      this.splitContainer.Panel1.Controls.Add(this.variablesGroupBox);
[14268]72      this.splitContainer.Size = new System.Drawing.Size(654, 403);
[14511]73      this.splitContainer.SplitterDistance = 180;
[14268]74      this.splitContainer.TabIndex = 7;
75      //
[14514]76      // variablesGroupBox
[10628]77      //
[14514]78      this.variablesGroupBox.Controls.Add(this.uncheckAllButton);
79      this.variablesGroupBox.Controls.Add(this.checkAllButton);
80      this.variablesGroupBox.Controls.Add(this.checkInputsTargetButton);
81      this.variablesGroupBox.Controls.Add(this.variablesListView);
82      this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
83      this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
84      this.variablesGroupBox.Name = "variablesGroupBox";
85      this.variablesGroupBox.Size = new System.Drawing.Size(180, 403);
86      this.variablesGroupBox.TabIndex = 7;
87      this.variablesGroupBox.TabStop = false;
88      this.variablesGroupBox.Text = "Variables";
[10628]89      //
[14511]90      // uncheckAllButton
[10658]91      //
[14917]92      this.uncheckAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.None;
[14511]93      this.uncheckAllButton.Location = new System.Drawing.Point(66, 19);
94      this.uncheckAllButton.Name = "uncheckAllButton";
95      this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
[14975]96      this.uncheckAllButton.TabIndex = 9;
[14917]97      this.toolTip.SetToolTip(this.uncheckAllButton, "None");
[14511]98      this.uncheckAllButton.UseVisualStyleBackColor = true;
99      this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
[14381]100      //
[14511]101      // checkAllButton
[14381]102      //
[14917]103      this.checkAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.All;
104      this.checkAllButton.Location = new System.Drawing.Point(6, 19);
[14511]105      this.checkAllButton.Name = "checkAllButton";
106      this.checkAllButton.Size = new System.Drawing.Size(24, 24);
107      this.checkAllButton.TabIndex = 7;
[14917]108      this.toolTip.SetToolTip(this.checkAllButton, "All");
[14511]109      this.checkAllButton.UseVisualStyleBackColor = true;
110      this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
[14381]111      //
[14511]112      // checkInputsTargetButton
[14381]113      //
[14917]114      this.checkInputsTargetButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.Inputs;
115      this.checkInputsTargetButton.Location = new System.Drawing.Point(36, 19);
[14511]116      this.checkInputsTargetButton.Name = "checkInputsTargetButton";
117      this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
[14975]118      this.checkInputsTargetButton.TabIndex = 8;
[14917]119      this.toolTip.SetToolTip(this.checkInputsTargetButton, "Inputs & Target");
[14511]120      this.checkInputsTargetButton.UseVisualStyleBackColor = true;
121      this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
[14381]122      //
[14511]123      // variablesListView
[14381]124      //
[14511]125      this.variablesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
126            | System.Windows.Forms.AnchorStyles.Left)
127            | System.Windows.Forms.AnchorStyles.Right)));
128      this.variablesListView.CheckBoxes = true;
129      this.variablesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
130            this.columnHeader});
131      this.variablesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
132      this.variablesListView.HideSelection = false;
133      this.variablesListView.Location = new System.Drawing.Point(6, 49);
134      this.variablesListView.Name = "variablesListView";
135      this.variablesListView.Size = new System.Drawing.Size(168, 348);
[14975]136      this.variablesListView.TabIndex = 12;
[14511]137      this.variablesListView.UseCompatibleStateImageBehavior = false;
138      this.variablesListView.View = System.Windows.Forms.View.Details;
[14381]139      //
[14511]140      // columnHeader
[14381]141      //
[14511]142      this.columnHeader.Text = "";
143      this.columnHeader.Width = 164;
[14381]144      //
145      // PreprocessingCheckedVariablesView
146      //
[10377]147      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[10303]148      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[14268]149      this.Controls.Add(this.splitContainer);
[14381]150      this.Name = "PreprocessingCheckedVariablesView";
[10552]151      this.Size = new System.Drawing.Size(654, 403);
[14268]152      this.splitContainer.Panel1.ResumeLayout(false);
153      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
154      this.splitContainer.ResumeLayout(false);
[14514]155      this.variablesGroupBox.ResumeLayout(false);
[10377]156      this.ResumeLayout(false);
157
[10303]158    }
159
160    #endregion
[14268]161    protected System.Windows.Forms.SplitContainer splitContainer;
[14511]162    private System.Windows.Forms.ListView variablesListView;
[14514]163    private System.Windows.Forms.GroupBox variablesGroupBox;
[14511]164    private System.Windows.Forms.ToolTip toolTip;
165    private System.Windows.Forms.ColumnHeader columnHeader;
166    private System.Windows.Forms.Button checkInputsTargetButton;
167    private System.Windows.Forms.Button uncheckAllButton;
168    private System.Windows.Forms.Button checkAllButton;
[10303]169  }
170}
Note: See TracBrowser for help on using the repository browser.