Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/14 22:38:09 (10 years ago)
Author:
bburlacu
Message:

#1837: SVN-renamed SlidingWindowBestSolutionsCollectionHeatMapView to SlidingWindowBestSolutionsCollectionHeatMapControl, and added SlidingWindowBestSolutionsCollectionHeatMapView which extends HeatMapView and provides a reversed Y-axis.

Location:
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj

    r10686 r10722  
    217217    </Compile>
    218218    <Compile Include="Plugin.cs" />
     219    <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.cs">
     220      <SubType>UserControl</SubType>
     221    </Compile>
     222    <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs">
     223      <DependentUpon>SlidingWindowBestSolutionsCollectionHeatMapControl.cs</DependentUpon>
     224    </Compile>
    219225    <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapView.cs">
    220226      <SubType>UserControl</SubType>
     
    343349  <ItemGroup>
    344350    <Folder Include="Exporters\" />
     351  </ItemGroup>
     352  <ItemGroup>
     353    <EmbeddedResource Include="SlidingWindowBestSolutionsCollectionView.resx">
     354      <DependentUpon>SlidingWindowBestSolutionsCollectionView.cs</DependentUpon>
     355    </EmbeddedResource>
    345356  </ItemGroup>
    346357  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs

    r10721 r10722  
    2424namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
    2525
    26   public partial class SlidingWindowBestSolutionsCollectionHeatMapView {
     26  public partial class SlidingWindowBestSolutionsCollectionHeatMapControl {
    2727    /// <summary>
    2828    /// Required designer variable.
     
    4848    /// </summary>
    4949    private void InitializeComponent() {
    50       this.heatMapView = new HeuristicLab.Analysis.Views.HeatMapView();
     50      this.heatMapView = new SlidingWindowBestSolutionsCollectionHeatMapView();
    5151      this.comboBox1 = new System.Windows.Forms.ComboBox();
    5252      this.label1 = new System.Windows.Forms.Label();
     
    105105    #endregion
    106106
    107     private HeuristicLab.Analysis.Views.HeatMapView heatMapView;
     107    private SlidingWindowBestSolutionsCollectionHeatMapView heatMapView;
    108108    private System.Windows.Forms.ComboBox comboBox1;
    109109    private System.Windows.Forms.Label label1;
  • branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowBestSolutionsCollectionHeatMapControl.cs

    r10721 r10722  
    3333  [View("Sliding Window Best Solutions HeatMap View")]
    3434  [Content(typeof(SlidingWindowBestSolutionsCollection), false)]
    35   public partial class SlidingWindowBestSolutionsCollectionHeatMapView : ItemView {
     35  public partial class SlidingWindowBestSolutionsCollectionHeatMapControl : ItemView {
    3636    public new SlidingWindowBestSolutionsCollection Content {
    3737      get { return (SlidingWindowBestSolutionsCollection)base.Content; }
     
    6161    private readonly IProgress progress; // use this to show some progress when the sliding window qualities are calculated for each model
    6262
    63     public SlidingWindowBestSolutionsCollectionHeatMapView() {
     63    public SlidingWindowBestSolutionsCollectionHeatMapControl() {
    6464      InitializeComponent();
    6565      progress = new Progress();
Note: See TracChangeset for help on using the changeset viewer.