Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15019


Ignore:
Timestamp:
06/01/17 14:44:48 (7 years ago)
Author:
pfleck
Message:

#2709

  • renamed Column -> Variable, Row -> Datarow.
  • scatterplot using regular comboboxes for variables.
  • adapted sizing and small layouting in multiscatterplot, histogram, statistics and datagrid.
Location:
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.Designer.cs

    r14915 r15019  
    7575      this.SuspendLayout();
    7676      //
     77      // rowsLabel
     78      //
     79      this.rowsLabel.Size = new System.Drawing.Size(55, 13);
     80      this.rowsLabel.Text = "Datarows:";
     81      //
    7782      // rowsTextBox
    7883      //
     
    8792      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
    8893      //
     94      // columnsLabel
     95      //
     96      this.columnsLabel.Size = new System.Drawing.Size(53, 13);
     97      this.columnsLabel.Text = "Variables:";
     98      //
    8999      // statisticsTextBox
    90100      //
     
    93103      // btnApplySort
    94104      //
    95       this.btnApplySort.Location = new System.Drawing.Point(234, 0);
     105      this.btnApplySort.Location = new System.Drawing.Point(228, 0);
    96106      this.btnApplySort.Name = "btnApplySort";
    97107      this.btnApplySort.Size = new System.Drawing.Size(104, 23);
     
    121131      this.replaceValueOverColumnToolStripMenuItem.Name = "replaceValueOverColumnToolStripMenuItem";
    122132      this.replaceValueOverColumnToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
    123       this.replaceValueOverColumnToolStripMenuItem.Text = "Replace Value over Column";
     133      this.replaceValueOverColumnToolStripMenuItem.Text = "Replace Value over Variable";
    124134      //
    125135      // averageToolStripMenuItem_Column
     
    206216      // btnSearch
    207217      //
    208       this.btnSearch.Location = new System.Drawing.Point(173, 0);
     218      this.btnSearch.Location = new System.Drawing.Point(167, 0);
    209219      this.btnSearch.Name = "btnSearch";
    210220      this.btnSearch.Size = new System.Drawing.Size(55, 23);
     
    217227      // btnReplace
    218228      //
    219       this.btnReplace.Location = new System.Drawing.Point(173, 26);
     229      this.btnReplace.Location = new System.Drawing.Point(167, 26);
    220230      this.btnReplace.Name = "btnReplace";
    221231      this.btnReplace.Size = new System.Drawing.Size(55, 23);
     
    233243      this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
    234244      this.checkInputsTargetButton.TabIndex = 14;
    235       this.toolTip.SetToolTip(this.checkInputsTargetButton, "Inputs & Target");
     245      this.toolTip.SetToolTip(this.checkInputsTargetButton, "Select Inputs & Target");
    236246      this.checkInputsTargetButton.UseVisualStyleBackColor = true;
    237247      this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
     
    244254      this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
    245255      this.uncheckAllButton.TabIndex = 12;
    246       this.toolTip.SetToolTip(this.uncheckAllButton, "None");
     256      this.toolTip.SetToolTip(this.uncheckAllButton, "Select None");
    247257      this.uncheckAllButton.UseVisualStyleBackColor = true;
    248258      this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
     
    255265      this.checkAllButton.Size = new System.Drawing.Size(24, 24);
    256266      this.checkAllButton.TabIndex = 13;
    257       this.toolTip.SetToolTip(this.checkAllButton, "All");
     267      this.toolTip.SetToolTip(this.checkAllButton, "Select All");
    258268      this.checkAllButton.UseVisualStyleBackColor = true;
    259269      this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
     
    261271      // addRowButton
    262272      //
    263       this.addRowButton.Location = new System.Drawing.Point(344, 26);
     273      this.addRowButton.Location = new System.Drawing.Point(338, 26);
    264274      this.addRowButton.Name = "addRowButton";
    265       this.addRowButton.Size = new System.Drawing.Size(76, 23);
     275      this.addRowButton.Size = new System.Drawing.Size(83, 23);
    266276      this.addRowButton.TabIndex = 10;
    267       this.addRowButton.Text = "Add Row";
     277      this.addRowButton.Text = "Add Datarow";
    268278      this.addRowButton.UseVisualStyleBackColor = true;
    269279      this.addRowButton.Click += new System.EventHandler(this.addRowButton_Click);
     
    271281      // addColumnButton
    272282      //
    273       this.addColumnButton.Location = new System.Drawing.Point(344, 0);
     283      this.addColumnButton.Location = new System.Drawing.Point(338, 0);
    274284      this.addColumnButton.Name = "addColumnButton";
    275       this.addColumnButton.Size = new System.Drawing.Size(76, 23);
     285      this.addColumnButton.Size = new System.Drawing.Size(83, 23);
    276286      this.addColumnButton.TabIndex = 10;
    277       this.addColumnButton.Text = "Add Column";
     287      this.addColumnButton.Text = "Add Variable";
    278288      this.addColumnButton.UseVisualStyleBackColor = true;
    279289      this.addColumnButton.Click += new System.EventHandler(this.addColumnButton_Click);
     
    281291      // renameColumnsButton
    282292      //
    283       this.renameColumnsButton.Location = new System.Drawing.Point(234, 26);
     293      this.renameColumnsButton.Location = new System.Drawing.Point(228, 26);
    284294      this.renameColumnsButton.Name = "renameColumnsButton";
    285295      this.renameColumnsButton.Size = new System.Drawing.Size(104, 23);
    286296      this.renameColumnsButton.TabIndex = 11;
    287       this.renameColumnsButton.Text = "Rename Columns";
     297      this.renameColumnsButton.Text = "Rename Variables";
    288298      this.renameColumnsButton.UseVisualStyleBackColor = true;
    289299      this.renameColumnsButton.Click += new System.EventHandler(this.renameColumnsButton_Click);
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/LineChartView.cs

    r14996 r15019  
    7272      if (Content.AllInOneMode) {
    7373        if (allInOneDataTableView == null)
    74           allInOneDataTableView = new DataTableView() { Content = allInOneDataTable };
     74          allInOneDataTableView = new DataTableView() { Content = allInOneDataTable, ShowName = false };
    7575        return new[] { allInOneDataTableView };
    7676      }
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingCheckedVariablesView.Designer.cs

    r14975 r15019  
    7070      //
    7171      this.splitContainer.Panel1.Controls.Add(this.variablesGroupBox);
    72       this.splitContainer.Size = new System.Drawing.Size(654, 403);
     72      this.splitContainer.Size = new System.Drawing.Size(940, 698);
    7373      this.splitContainer.SplitterDistance = 180;
    7474      this.splitContainer.TabIndex = 7;
     
    8383      this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
    8484      this.variablesGroupBox.Name = "variablesGroupBox";
    85       this.variablesGroupBox.Size = new System.Drawing.Size(180, 403);
     85      this.variablesGroupBox.Size = new System.Drawing.Size(180, 698);
    8686      this.variablesGroupBox.TabIndex = 7;
    8787      this.variablesGroupBox.TabStop = false;
     
    9595      this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
    9696      this.uncheckAllButton.TabIndex = 9;
    97       this.toolTip.SetToolTip(this.uncheckAllButton, "None");
     97      this.toolTip.SetToolTip(this.uncheckAllButton, "Show None");
    9898      this.uncheckAllButton.UseVisualStyleBackColor = true;
    9999      this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
     
    106106      this.checkAllButton.Size = new System.Drawing.Size(24, 24);
    107107      this.checkAllButton.TabIndex = 7;
    108       this.toolTip.SetToolTip(this.checkAllButton, "All");
     108      this.toolTip.SetToolTip(this.checkAllButton, "Show All");
    109109      this.checkAllButton.UseVisualStyleBackColor = true;
    110110      this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
     
    117117      this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
    118118      this.checkInputsTargetButton.TabIndex = 8;
    119       this.toolTip.SetToolTip(this.checkInputsTargetButton, "Inputs & Target");
     119      this.toolTip.SetToolTip(this.checkInputsTargetButton, "Show Inputs & Target");
    120120      this.checkInputsTargetButton.UseVisualStyleBackColor = true;
    121121      this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
     
    133133      this.variablesListView.Location = new System.Drawing.Point(6, 49);
    134134      this.variablesListView.Name = "variablesListView";
    135       this.variablesListView.Size = new System.Drawing.Size(168, 348);
     135      this.variablesListView.Size = new System.Drawing.Size(168, 643);
    136136      this.variablesListView.TabIndex = 12;
    137137      this.variablesListView.UseCompatibleStateImageBehavior = false;
     
    149149      this.Controls.Add(this.splitContainer);
    150150      this.Name = "PreprocessingCheckedVariablesView";
    151       this.Size = new System.Drawing.Size(654, 403);
     151      this.Size = new System.Drawing.Size(940, 698);
    152152      this.splitContainer.Panel1.ResumeLayout(false);
    153153      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
     
    160160    #endregion
    161161    protected System.Windows.Forms.SplitContainer splitContainer;
    162     private System.Windows.Forms.ListView variablesListView;
    163     private System.Windows.Forms.GroupBox variablesGroupBox;
    164162    private System.Windows.Forms.ToolTip toolTip;
    165163    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;
     164    protected System.Windows.Forms.ListView variablesListView;
     165    protected System.Windows.Forms.GroupBox variablesGroupBox;
     166    protected System.Windows.Forms.Button checkInputsTargetButton;
     167    protected System.Windows.Forms.Button uncheckAllButton;
     168    protected System.Windows.Forms.Button checkAllButton;
    169169  }
    170170}
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.Designer.cs

    r14993 r15019  
    8080      this.splitContainer.Panel2.SuspendLayout();
    8181      this.splitContainer.SuspendLayout();
     82      this.variablesGroupBox.SuspendLayout();
    8283      this.frameTableLayoutPanel.SuspendLayout();
    8384      this.columnHeaderScrollPanel.SuspendLayout();
     
    109110      //
    110111      this.splitContainer.Panel2.Controls.Add(this.frameTableLayoutPanel);
     112      this.splitContainer.Size = new System.Drawing.Size(940, 698);
     113      //
     114      // variablesListView
     115      //
     116      this.variablesListView.Size = new System.Drawing.Size(168, 270);
     117      //
     118      // variablesGroupBox
     119      //
     120      this.variablesGroupBox.Size = new System.Drawing.Size(180, 325);
    111121      //
    112122      // frameTableLayoutPanel
     
    124134      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
    125135      this.frameTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
    126       this.frameTableLayoutPanel.Size = new System.Drawing.Size(470, 403);
     136      this.frameTableLayoutPanel.Size = new System.Drawing.Size(756, 698);
    127137      this.frameTableLayoutPanel.TabIndex = 0;
    128138      //
     
    134144      this.columnHeaderScrollPanel.Margin = new System.Windows.Forms.Padding(0);
    135145      this.columnHeaderScrollPanel.Name = "columnHeaderScrollPanel";
    136       this.columnHeaderScrollPanel.Size = new System.Drawing.Size(699, 40);
     146      this.columnHeaderScrollPanel.Size = new System.Drawing.Size(716, 40);
    137147      this.columnHeaderScrollPanel.TabIndex = 3;
    138148      //
     
    161171      this.rowHeaderScrollPanel.Margin = new System.Windows.Forms.Padding(0);
    162172      this.rowHeaderScrollPanel.Name = "rowHeaderScrollPanel";
    163       this.rowHeaderScrollPanel.Size = new System.Drawing.Size(40, 480);
     173      this.rowHeaderScrollPanel.Size = new System.Drawing.Size(40, 658);
    164174      this.rowHeaderScrollPanel.TabIndex = 4;
    165175      //
     
    189199      this.bodyScrollPanel.Margin = new System.Windows.Forms.Padding(0);
    190200      this.bodyScrollPanel.Name = "bodyScrollPanel";
    191       this.bodyScrollPanel.Size = new System.Drawing.Size(699, 480);
     201      this.bodyScrollPanel.Size = new System.Drawing.Size(716, 658);
    192202      this.bodyScrollPanel.TabIndex = 5;
    193203      this.bodyScrollPanel.Scroll += new System.Windows.Forms.ScrollEventHandler(this.bodyScrollPanel_Scroll);
     
    217227      this.sizeGroupBox.Controls.Add(this.lockAspectCheckBox);
    218228      this.sizeGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
    219       this.sizeGroupBox.Location = new System.Drawing.Point(0, 30);
     229      this.sizeGroupBox.Location = new System.Drawing.Point(0, 325);
    220230      this.sizeGroupBox.Name = "sizeGroupBox";
    221       this.sizeGroupBox.Size = new System.Drawing.Size(180, 94);
     231      this.sizeGroupBox.Size = new System.Drawing.Size(180, 98);
    222232      this.sizeGroupBox.TabIndex = 5;
    223233      this.sizeGroupBox.TabStop = false;
     
    233243            0,
    234244            0});
    235       this.heightNumericUpDown.Location = new System.Drawing.Point(50, 40);
     245      this.heightNumericUpDown.Location = new System.Drawing.Point(50, 46);
    236246      this.heightNumericUpDown.Maximum = new decimal(new int[] {
    237247            100000,
     
    258268            0,
    259269            0});
    260       this.widthNumericUpDown.Location = new System.Drawing.Point(50, 14);
     270      this.widthNumericUpDown.Location = new System.Drawing.Point(50, 20);
    261271      this.widthNumericUpDown.Maximum = new decimal(new int[] {
    262272            10000,
     
    277287      //
    278288      this.heightLabel.AutoSize = true;
    279       this.heightLabel.Location = new System.Drawing.Point(6, 42);
     289      this.heightLabel.Location = new System.Drawing.Point(6, 48);
    280290      this.heightLabel.Name = "heightLabel";
    281291      this.heightLabel.Size = new System.Drawing.Size(41, 13);
     
    286296      //
    287297      this.widthLabel.AutoSize = true;
    288       this.widthLabel.Location = new System.Drawing.Point(6, 16);
     298      this.widthLabel.Location = new System.Drawing.Point(6, 22);
    289299      this.widthLabel.Name = "widthLabel";
    290300      this.widthLabel.Size = new System.Drawing.Size(38, 13);
     
    297307      this.lockAspectCheckBox.Checked = true;
    298308      this.lockAspectCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    299       this.lockAspectCheckBox.Location = new System.Drawing.Point(50, 66);
     309      this.lockAspectCheckBox.Location = new System.Drawing.Point(50, 73);
    300310      this.lockAspectCheckBox.Name = "lockAspectCheckBox";
    301311      this.lockAspectCheckBox.Size = new System.Drawing.Size(114, 17);
     
    345355      this.regressionGroupBox.Controls.Add(this.regressionTyleLabel);
    346356      this.regressionGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
    347       this.regressionGroupBox.Location = new System.Drawing.Point(0, 322);
     357      this.regressionGroupBox.Location = new System.Drawing.Point(0, 623);
    348358      this.regressionGroupBox.Name = "regressionGroupBox";
    349       this.regressionGroupBox.Size = new System.Drawing.Size(180, 81);
     359      this.regressionGroupBox.Size = new System.Drawing.Size(180, 75);
    350360      this.regressionGroupBox.TabIndex = 3;
    351361      this.regressionGroupBox.TabStop = false;
     
    415425      this.groupingOptionsBox.Controls.Add(this.groupingComboBox);
    416426      this.groupingOptionsBox.Dock = System.Windows.Forms.DockStyle.Bottom;
    417       this.groupingOptionsBox.Location = new System.Drawing.Point(0, 193);
     427      this.groupingOptionsBox.Location = new System.Drawing.Point(0, 492);
    418428      this.groupingOptionsBox.Name = "groupingOptionsBox";
    419       this.groupingOptionsBox.Size = new System.Drawing.Size(180, 129);
     429      this.groupingOptionsBox.Size = new System.Drawing.Size(180, 131);
    420430      this.groupingOptionsBox.TabIndex = 8;
    421431      this.groupingOptionsBox.TabStop = false;
     
    428438      this.legendGroupBox.Controls.Add(this.legendOrderLabel);
    429439      this.legendGroupBox.Enabled = false;
    430       this.legendGroupBox.Location = new System.Drawing.Point(9, 73);
     440      this.legendGroupBox.Location = new System.Drawing.Point(6, 73);
    431441      this.legendGroupBox.Name = "legendGroupBox";
    432       this.legendGroupBox.Size = new System.Drawing.Size(164, 50);
     442      this.legendGroupBox.Size = new System.Drawing.Size(167, 50);
    433443      this.legendGroupBox.TabIndex = 7;
    434444      this.legendGroupBox.TabStop = false;
     
    545555      this.pointsGroupBox.Controls.Add(this.opacityLabel);
    546556      this.pointsGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
    547       this.pointsGroupBox.Location = new System.Drawing.Point(0, 124);
     557      this.pointsGroupBox.Location = new System.Drawing.Point(0, 423);
    548558      this.pointsGroupBox.Name = "pointsGroupBox";
    549559      this.pointsGroupBox.Size = new System.Drawing.Size(180, 69);
     
    557567      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    558568      this.Name = "ScatterPlotMultiView";
     569      this.Size = new System.Drawing.Size(940, 698);
    559570      this.splitContainer.Panel1.ResumeLayout(false);
    560571      this.splitContainer.Panel2.ResumeLayout(false);
    561572      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
    562573      this.splitContainer.ResumeLayout(false);
     574      this.variablesGroupBox.ResumeLayout(false);
    563575      this.frameTableLayoutPanel.ResumeLayout(false);
    564576      this.columnHeaderScrollPanel.ResumeLayout(false);
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotSingleView.Designer.cs

    r14993 r15019  
    8686      this.scatterPlotView.Name = "scatterPlotView";
    8787      this.scatterPlotView.ReadOnly = false;
    88       this.scatterPlotView.ShowName = true;
     88      this.scatterPlotView.ShowName = false;
    8989      this.scatterPlotView.Size = new System.Drawing.Size(618, 517);
    9090      this.scatterPlotView.TabIndex = 0;
     
    188188      this.comboBoxYVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
    189189      this.comboBoxYVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     190      this.comboBoxYVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    190191      this.comboBoxYVariable.FormattingEnabled = true;
    191192      this.comboBoxYVariable.Location = new System.Drawing.Point(51, 60);
     
    202203      this.comboBoxXVariable.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
    203204      this.comboBoxXVariable.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     205      this.comboBoxXVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    204206      this.comboBoxXVariable.FormattingEnabled = true;
    205207      this.comboBoxXVariable.Location = new System.Drawing.Point(51, 26);
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/StatisticsView.Designer.cs

    r14915 r15019  
    8181      this.lblRows.Location = new System.Drawing.Point(3, 0);
    8282      this.lblRows.Name = "lblRows";
    83       this.lblRows.Size = new System.Drawing.Size(47, 26);
     83      this.lblRows.Size = new System.Drawing.Size(52, 26);
    8484      this.lblRows.TabIndex = 0;
    85       this.lblRows.Text = "Rows";
     85      this.lblRows.Text = "Datarows";
    8686      this.lblRows.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
    8787      //
     
    9292      this.lblColumns.Location = new System.Drawing.Point(3, 26);
    9393      this.lblColumns.Name = "lblColumns";
    94       this.lblColumns.Size = new System.Drawing.Size(47, 26);
     94      this.lblColumns.Size = new System.Drawing.Size(52, 26);
    9595      this.lblColumns.TabIndex = 2;
    96       this.lblColumns.Text = "Columns";
     96      this.lblColumns.Text = "Variables";
    9797      this.lblColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
    9898      //
     
    101101      this.lblMissingValuesTotal.AutoSize = true;
    102102      this.lblMissingValuesTotal.Dock = System.Windows.Forms.DockStyle.Fill;
    103       this.lblMissingValuesTotal.Location = new System.Drawing.Point(233, 26);
     103      this.lblMissingValuesTotal.Location = new System.Drawing.Point(237, 26);
    104104      this.lblMissingValuesTotal.Name = "lblMissingValuesTotal";
    105105      this.lblMissingValuesTotal.Size = new System.Drawing.Size(77, 26);
     
    112112      this.lblNumericColumns.AutoSize = true;
    113113      this.lblNumericColumns.Dock = System.Windows.Forms.DockStyle.Fill;
    114       this.lblNumericColumns.Location = new System.Drawing.Point(97, 0);
     114      this.lblNumericColumns.Location = new System.Drawing.Point(100, 0);
    115115      this.lblNumericColumns.Name = "lblNumericColumns";
    116       this.lblNumericColumns.Size = new System.Drawing.Size(89, 26);
     116      this.lblNumericColumns.Size = new System.Drawing.Size(92, 26);
    117117      this.lblNumericColumns.TabIndex = 3;
    118       this.lblNumericColumns.Text = "Numeric Columns";
     118      this.lblNumericColumns.Text = "Numeric Variables";
    119119      this.lblNumericColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
    120120      //
     
    123123      this.lblNominalColumns.AutoSize = true;
    124124      this.lblNominalColumns.Dock = System.Windows.Forms.DockStyle.Fill;
    125       this.lblNominalColumns.Location = new System.Drawing.Point(97, 26);
     125      this.lblNominalColumns.Location = new System.Drawing.Point(100, 26);
    126126      this.lblNominalColumns.Name = "lblNominalColumns";
    127       this.lblNominalColumns.Size = new System.Drawing.Size(89, 26);
     127      this.lblNominalColumns.Size = new System.Drawing.Size(92, 26);
    128128      this.lblNominalColumns.TabIndex = 3;
    129       this.lblNominalColumns.Text = "Nominal Columns";
     129      this.lblNominalColumns.Text = "Nominal Variables";
    130130      this.lblNominalColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
    131131      //
     
    152152      this.showVariablesGroupBox.Location = new System.Drawing.Point(393, 0);
    153153      this.showVariablesGroupBox.Name = "showVariablesGroupBox";
    154       this.showVariablesGroupBox.Size = new System.Drawing.Size(97, 55);
     154      this.showVariablesGroupBox.Size = new System.Drawing.Size(97, 71);
    155155      this.showVariablesGroupBox.TabIndex = 16;
    156156      this.showVariablesGroupBox.TabStop = false;
     
    164164      this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
    165165      this.checkInputsTargetButton.TabIndex = 14;
    166       this.toolTip.SetToolTip(this.checkInputsTargetButton, "Inputs & Target");
     166      this.toolTip.SetToolTip(this.checkInputsTargetButton, "Show Inputs & Target");
    167167      this.checkInputsTargetButton.UseVisualStyleBackColor = true;
    168168      this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
     
    175175      this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
    176176      this.uncheckAllButton.TabIndex = 12;
    177       this.toolTip.SetToolTip(this.uncheckAllButton, "None");
     177      this.toolTip.SetToolTip(this.uncheckAllButton, "Show None");
    178178      this.uncheckAllButton.UseVisualStyleBackColor = true;
    179179      this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
     
    186186      this.checkAllButton.Size = new System.Drawing.Size(24, 24);
    187187      this.checkAllButton.TabIndex = 13;
    188       this.toolTip.SetToolTip(this.checkAllButton, "All");
     188      this.toolTip.SetToolTip(this.checkAllButton, "Show All");
    189189      this.checkAllButton.UseVisualStyleBackColor = true;
    190190      this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
     
    194194      this.lblTNumValues.AutoSize = true;
    195195      this.lblTNumValues.Dock = System.Windows.Forms.DockStyle.Fill;
    196       this.lblTNumValues.Location = new System.Drawing.Point(233, 0);
     196      this.lblTNumValues.Location = new System.Drawing.Point(237, 0);
    197197      this.lblTNumValues.Name = "lblTNumValues";
    198198      this.lblTNumValues.Size = new System.Drawing.Size(77, 26);
     
    208208      this.orientationGroupBox.Location = new System.Drawing.Point(496, 0);
    209209      this.orientationGroupBox.Name = "orientationGroupBox";
    210       this.orientationGroupBox.Size = new System.Drawing.Size(94, 55);
     210      this.orientationGroupBox.Size = new System.Drawing.Size(94, 71);
    211211      this.orientationGroupBox.TabIndex = 17;
    212212      this.orientationGroupBox.TabStop = false;
     
    241241      //
    242242      this.rowsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    243       this.rowsTextBox.Location = new System.Drawing.Point(56, 3);
     243      this.rowsTextBox.Location = new System.Drawing.Point(61, 3);
    244244      this.rowsTextBox.Name = "rowsTextBox";
    245245      this.rowsTextBox.ReadOnly = true;
    246       this.rowsTextBox.Size = new System.Drawing.Size(35, 20);
     246      this.rowsTextBox.Size = new System.Drawing.Size(33, 20);
    247247      this.rowsTextBox.TabIndex = 18;
    248248      //
     
    250250      //
    251251      this.columnsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    252       this.columnsTextBox.Location = new System.Drawing.Point(56, 29);
     252      this.columnsTextBox.Location = new System.Drawing.Point(61, 29);
    253253      this.columnsTextBox.Name = "columnsTextBox";
    254254      this.columnsTextBox.ReadOnly = true;
    255       this.columnsTextBox.Size = new System.Drawing.Size(35, 20);
     255      this.columnsTextBox.Size = new System.Drawing.Size(33, 20);
    256256      this.columnsTextBox.TabIndex = 18;
    257257      //
     
    259259      //
    260260      this.totalValuesTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    261       this.totalValuesTextBox.Location = new System.Drawing.Point(316, 3);
     261      this.totalValuesTextBox.Location = new System.Drawing.Point(320, 3);
    262262      this.totalValuesTextBox.Name = "totalValuesTextBox";
    263263      this.totalValuesTextBox.ReadOnly = true;
    264       this.totalValuesTextBox.Size = new System.Drawing.Size(59, 20);
     264      this.totalValuesTextBox.Size = new System.Drawing.Size(55, 20);
    265265      this.totalValuesTextBox.TabIndex = 18;
    266266      //
     
    299299      //
    300300      this.numericColumnsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    301       this.numericColumnsTextBox.Location = new System.Drawing.Point(192, 3);
     301      this.numericColumnsTextBox.Location = new System.Drawing.Point(198, 3);
    302302      this.numericColumnsTextBox.Name = "numericColumnsTextBox";
    303303      this.numericColumnsTextBox.ReadOnly = true;
    304       this.numericColumnsTextBox.Size = new System.Drawing.Size(35, 20);
     304      this.numericColumnsTextBox.Size = new System.Drawing.Size(33, 20);
    305305      this.numericColumnsTextBox.TabIndex = 18;
    306306      //
     
    308308      //
    309309      this.nominalColumnsTextBox5.Dock = System.Windows.Forms.DockStyle.Fill;
    310       this.nominalColumnsTextBox5.Location = new System.Drawing.Point(192, 29);
     310      this.nominalColumnsTextBox5.Location = new System.Drawing.Point(198, 29);
    311311      this.nominalColumnsTextBox5.Name = "nominalColumnsTextBox5";
    312312      this.nominalColumnsTextBox5.ReadOnly = true;
    313       this.nominalColumnsTextBox5.Size = new System.Drawing.Size(35, 20);
     313      this.nominalColumnsTextBox5.Size = new System.Drawing.Size(33, 20);
    314314      this.nominalColumnsTextBox5.TabIndex = 18;
    315315      //
     
    317317      //
    318318      this.missingValuesTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
    319       this.missingValuesTextBox.Location = new System.Drawing.Point(316, 29);
     319      this.missingValuesTextBox.Location = new System.Drawing.Point(320, 29);
    320320      this.missingValuesTextBox.Name = "missingValuesTextBox";
    321321      this.missingValuesTextBox.ReadOnly = true;
    322       this.missingValuesTextBox.Size = new System.Drawing.Size(59, 20);
     322      this.missingValuesTextBox.Size = new System.Drawing.Size(55, 20);
    323323      this.missingValuesTextBox.TabIndex = 18;
    324324      //
Note: See TracChangeset for help on using the changeset viewer.