Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/20/18 13:52:40 (5 years ago)
Author:
pfleck
Message:

#2845 reverted the last merge (r16307) because some revisions were missing

Location:
branches/2845_EnhancedProgress
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2845_EnhancedProgress

  • branches/2845_EnhancedProgress/HeuristicLab.DataPreprocessing.Views

  • branches/2845_EnhancedProgress/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingView.cs

    r16307 r16308  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    4949      if (Content != null) {
    5050        var data = Content.Data;
     51        var filterLogic = new FilterLogic(data);
     52        var searchLogic = new SearchLogic(data, filterLogic);
     53        var statisticsLogic = new StatisticsLogic(data, searchLogic);
     54        var manipulationLogic = new ManipulationLogic(data, searchLogic, statisticsLogic);
    5155
    5256        var viewShortcuts = new ItemList<IViewShortcut> {
    53           new DataGridContent(data),
    54           new StatisticsContent(data),
     57          new DataGridContent(data, manipulationLogic, filterLogic),
     58          new StatisticsContent(data, statisticsLogic),
    5559
    5660          new LineChartContent(data),
     
    5963          new MultiScatterPlotContent(data),
    6064          new CorrelationMatrixContent(Content),
    61           new DataCompletenessChartContent(data),
    62 
    63           new FilterContent(data),
    64           new ManipulationContent(data),
    65           new TransformationContent(data)
     65          new DataCompletenessChartContent(searchLogic),
     66
     67          new FilterContent(filterLogic),
     68          new ManipulationContent(manipulationLogic, searchLogic, filterLogic),
     69          new TransformationContent(data, filterLogic)
    6670        };
    6771
Note: See TracChangeset for help on using the changeset viewer.