Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.MainForm/3.3/Interfaces/IConfigureableView.cs @ 6115

Last change on this file since 6115 was 6115, checked in by abeham, 13 years ago

#1465

  • Added new interface IConfigureableView to HeuristicLab.MainForm
  • Adapted ViewHost to show a configuration button when its ActiveView is of type IConfigureableView
  • Changed DataTableHistoryView to be an IConfigureableView
  • When changing the configuration of a history view the configuration will be applied to every frame
  • Fixed a bug in calculating the histogram (when all values were the same)
  • Added preceeding and trailing 0-bar in the histogram to prevent cutting the first and last column in the view
  • Added a method Replace(IEnumerable<T>) to the ObservableList to do Clear() and AddRange() with just a single event notification
    • Calling that method from the QualityDistributionAnalyzer (otherwise the result view is flickering)
  • Fixing a bug regarding axis labels in the QualityDistributionAnalyzer
  • Removed double AfterDeserializationHook in QAP
File size: 128 bytes
Line 
1
2namespace HeuristicLab.MainForm {
3  public interface IConfigureableView : IView {
4    void ShowConfiguration();
5  }
6}
Note: See TracBrowser for help on using the repository browser.