- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/ChartAnalysisView.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 173 173 174 174 private void addLineToChart_Click(object sender, EventArgs e) { 175 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToView(this, "Adding fitted lines to charts...");175 Progress.Show(this, "Adding fitted lines to charts...", ProgressMode.Indeterminate); 176 176 177 177 string resultName = (string)dataTableComboBox.SelectedItem; … … 181 181 182 182 task.ContinueWith((t) => { 183 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);183 Progress.Hide(this); 184 184 ErrorHandling.ShowErrorDialog("An error occured while adding lines to charts. ", t.Exception); 185 185 }, TaskContinuationOptions.OnlyOnFaulted); 186 186 187 187 task.ContinueWith((t) => { 188 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);188 Progress.Hide(this); 189 189 }, TaskContinuationOptions.OnlyOnRanToCompletion); 190 190 } … … 273 273 var task = Task.Factory.StartNew(() => { 274 274 sem.Wait(); 275 progress = MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToView(this, "Calculating values...");275 progress = Progress.Show(this, "Calculating values..."); 276 276 RebuildDataTable(resultName, rowName); 277 277 }); 278 278 279 279 task.ContinueWith((t) => { 280 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);280 Progress.Hide(this); 281 281 ErrorHandling.ShowErrorDialog("An error occured while calculating values. ", t.Exception); 282 282 sem.Release(); … … 284 284 285 285 task.ContinueWith((t) => { 286 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);286 Progress.Hide(this); 287 287 sem.Release(); 288 288 }, TaskContinuationOptions.OnlyOnRanToCompletion); -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/ChartAnalysisView.designer.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/CorrelationView.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/CorrelationView.designer.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/HeuristicLab.Analysis.Statistics.Views-3.3.csproj
r12817 r16723 11 11 <RootNamespace>HeuristicLab.Analysis.Statistics.Views</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Analysis.Statistics.Views-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/Plugin.cs.frame
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/Properties/AssemblyInfo.cs.frame
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/SampleSizeInfluenceView.Designer.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/SampleSizeInfluenceView.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsConfigurationDialog.Designer.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsConfigurationDialog.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 356 356 357 357 if (data != null && data.All(x => x != null)) { 358 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>() 359 .AddOperationProgressToView(this, "Calculating..."); 358 Progress.Show(this, "Calculating...", ProgressMode.Indeterminate); 360 359 361 360 string curItem = (string)groupCompComboBox.SelectedItem; … … 369 368 CalculatePairwiseTest(groupName); 370 369 371 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(this);370 Progress.Hide(this); 372 371 } 373 372 … … 377 376 return; 378 377 379 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().AddOperationProgressToView(pairwiseTestGroupBox, "Calculating...");378 Progress.ShowOnControl(pairwiseTestGroupBox, "Calculating...", ProgressMode.Indeterminate); 380 379 Task.Factory.StartNew(() => CalculatePairwiseAsync(groupName)); 381 380 } … … 384 383 CalculatePairwiseTest(groupName); 385 384 386 MainFormManager.GetMainForm<MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(pairwiseTestGroupBox);385 Progress.HideFromControl(pairwiseTestGroupBox); 387 386 } 388 387 -
branches/2521_ProblemRefactoring/HeuristicLab.Analysis.Statistics.Views/3.3/StatisticalTestsView.designer.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 102 102 // stringConvertibleMatrixView 103 103 // 104 this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 105 | System.Windows.Forms.AnchorStyles.Left) 104 this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 105 | System.Windows.Forms.AnchorStyles.Left) 106 106 | System.Windows.Forms.AnchorStyles.Right))); 107 107 this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; … … 152 152 // resultComboBox 153 153 // 154 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 154 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 155 155 | System.Windows.Forms.AnchorStyles.Right))); 156 156 this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 176 176 // pValTextBox 177 177 // 178 this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 178 this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 179 179 | System.Windows.Forms.AnchorStyles.Right))); 180 180 this.pValTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); … … 187 187 // groupComboBox 188 188 // 189 this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 189 this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 190 190 | System.Windows.Forms.AnchorStyles.Right))); 191 191 this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 200 200 // splitContainer1 201 201 // 202 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 203 | System.Windows.Forms.AnchorStyles.Left) 202 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 203 | System.Windows.Forms.AnchorStyles.Left) 204 204 | System.Windows.Forms.AnchorStyles.Right))); 205 205 this.splitContainer1.Location = new System.Drawing.Point(6, 19); … … 222 222 // splitContainer3 223 223 // 224 this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 225 | System.Windows.Forms.AnchorStyles.Left) 224 this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 225 | System.Windows.Forms.AnchorStyles.Left) 226 226 | System.Windows.Forms.AnchorStyles.Right))); 227 227 this.splitContainer3.Location = new System.Drawing.Point(6, 6); … … 241 241 // pairwiseTestGroupBox 242 242 // 243 this.pairwiseTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 244 | System.Windows.Forms.AnchorStyles.Left) 243 this.pairwiseTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 244 | System.Windows.Forms.AnchorStyles.Left) 245 245 | System.Windows.Forms.AnchorStyles.Right))); 246 246 this.pairwiseTestGroupBox.Controls.Add(this.pairwiseTextLabel); … … 271 271 // pairwiseStringConvertibleMatrixView 272 272 // 273 this.pairwiseStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 274 | System.Windows.Forms.AnchorStyles.Left) 273 this.pairwiseStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 274 | System.Windows.Forms.AnchorStyles.Left) 275 275 | System.Windows.Forms.AnchorStyles.Right))); 276 276 this.pairwiseStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; … … 308 308 // equalDistsTextBox 309 309 // 310 this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 310 this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 311 311 | System.Windows.Forms.AnchorStyles.Right))); 312 312 this.equalDistsTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); … … 329 329 // groupCompComboBox 330 330 // 331 this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 331 this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 332 332 | System.Windows.Forms.AnchorStyles.Right))); 333 333 this.groupCompComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 342 342 // allGroupTestGroupBox 343 343 // 344 this.allGroupTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 344 this.allGroupTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 345 345 | System.Windows.Forms.AnchorStyles.Right))); 346 346 this.allGroupTestGroupBox.Controls.Add(this.groupComTextLabel); … … 378 378 // normalityGroupBox 379 379 // 380 this.normalityGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 380 this.normalityGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 381 381 | System.Windows.Forms.AnchorStyles.Right))); 382 382 this.normalityGroupBox.Controls.Add(this.normalityTextLabel); … … 403 403 // normalityStringConvertibleMatrixView 404 404 // 405 this.normalityStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 406 | System.Windows.Forms.AnchorStyles.Left) 405 this.normalityStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 406 | System.Windows.Forms.AnchorStyles.Left) 407 407 | System.Windows.Forms.AnchorStyles.Right))); 408 408 this.normalityStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; … … 429 429 // selectDataGroupBox 430 430 // 431 this.selectDataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 431 this.selectDataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 432 432 | System.Windows.Forms.AnchorStyles.Right))); 433 433 this.selectDataGroupBox.Controls.Add(this.splitContainer1); … … 442 442 // tabControl 443 443 // 444 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 445 | System.Windows.Forms.AnchorStyles.Left) 444 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 445 | System.Windows.Forms.AnchorStyles.Left) 446 446 | System.Windows.Forms.AnchorStyles.Right))); 447 447 this.tabControl.Controls.Add(this.tabPage1); … … 455 455 // tabPage1 456 456 // 457 this.tabPage1.BackColor = System.Drawing.SystemColors.Window; 457 458 this.tabPage1.Controls.Add(this.splitContainer3); 458 459 this.tabPage1.Location = new System.Drawing.Point(4, 22); … … 462 463 this.tabPage1.TabIndex = 0; 463 464 this.tabPage1.Text = "Tests"; 464 this.tabPage1.UseVisualStyleBackColor = true;465 465 // 466 466 // tabPage2 467 467 // 468 this.tabPage2.BackColor = System.Drawing.SystemColors.Window; 468 469 this.tabPage2.Controls.Add(this.histogramControl); 469 470 this.tabPage2.Location = new System.Drawing.Point(4, 22); … … 473 474 this.tabPage2.TabIndex = 1; 474 475 this.tabPage2.Text = "Histogram"; 475 this.tabPage2.UseVisualStyleBackColor = true;476 476 // 477 477 // histogramControl 478 478 // 479 this.histogramControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 480 | System.Windows.Forms.AnchorStyles.Left) 479 this.histogramControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 480 | System.Windows.Forms.AnchorStyles.Left) 481 481 | System.Windows.Forms.AnchorStyles.Right))); 482 482 this.histogramControl.CalculateExactBins = false; … … 493 493 // splitContainer2 494 494 // 495 this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 496 | System.Windows.Forms.AnchorStyles.Left) 495 this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 496 | System.Windows.Forms.AnchorStyles.Left) 497 497 | System.Windows.Forms.AnchorStyles.Right))); 498 498 this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
Note: See TracChangeset
for help on using the changeset viewer.