Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/09/09 18:05:03 (16 years ago)
Author:
gkronber
Message:

worked on presentation layer for CEDMA. Added a results view that displays data in a simple DataGrid. (#419)

Location:
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Charting
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Charting/BubbleChart.cs

    r573 r1106  
    2727using HeuristicLab.Charting;
    2828using System.Windows.Forms;
     29using HeuristicLab.CEDMA.Core;
    2930
    3031namespace HeuristicLab.CEDMA.Charting {
     
    5051    private double maxY = double.NegativeInfinity;
    5152    private List<Record> records;
    52     private ResultList results;
     53    private Results results;
    5354    private Dictionary<IPrimitive, Record> primitiveToRecordDictionary;
    5455    private Dictionary<Record, IPrimitive> recordToPrimitiveDictionary;
     
    5657    private Group points;
    5758
    58     public BubbleChart(ResultList results, PointD lowerLeft, PointD upperRight)
     59    public BubbleChart(Results results, PointD lowerLeft, PointD upperRight)
    5960      : base(lowerLeft, upperRight) {
    6061      records = new List<Record>();
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Charting/HeuristicLab.CEDMA.Charting.csproj

    r1075 r1106  
    6666  </ItemGroup>
    6767  <ItemGroup>
    68     <Compile Include="BubbleChart.cs" />
    69     <Compile Include="BubbleChartControl.cs">
    70       <SubType>UserControl</SubType>
    71     </Compile>
    72     <Compile Include="BubbleChartControl.Designer.cs">
    73       <DependentUpon>BubbleChartControl.cs</DependentUpon>
    74     </Compile>
    75     <Compile Include="Histogram.cs" />
    76     <Compile Include="HistogramControl.cs">
    77       <SubType>UserControl</SubType>
    78     </Compile>
    79     <Compile Include="HistogramControl.Designer.cs">
    80       <DependentUpon>HistogramControl.cs</DependentUpon>
    81     </Compile>
    82     <Compile Include="ModelView.cs">
    83       <SubType>UserControl</SubType>
    84     </Compile>
    85     <Compile Include="ModelView.Designer.cs">
    86       <DependentUpon>ModelView.cs</DependentUpon>
    87     </Compile>
    8868    <Compile Include="HeuristicLabCedmaChartingPlugin.cs" />
    8969    <Compile Include="Properties\AssemblyInfo.cs" />
    9070  </ItemGroup>
    9171  <ItemGroup>
     72    <ProjectReference Include="..\HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj">
     73      <Project>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</Project>
     74      <Name>HeuristicLab.CEDMA.Core</Name>
     75    </ProjectReference>
    9276    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
    9377      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
     
    135119    <None Include="Properties\AssemblyInfo.frame" />
    136120  </ItemGroup>
    137   <ItemGroup>
    138     <EmbeddedResource Include="BubbleChartControl.resx">
    139       <DependentUpon>BubbleChartControl.cs</DependentUpon>
    140       <SubType>Designer</SubType>
    141     </EmbeddedResource>
    142     <EmbeddedResource Include="HistogramControl.resx">
    143       <DependentUpon>HistogramControl.cs</DependentUpon>
    144       <SubType>Designer</SubType>
    145     </EmbeddedResource>
    146     <EmbeddedResource Include="ModelView.resx">
    147       <DependentUpon>ModelView.cs</DependentUpon>
    148       <SubType>Designer</SubType>
    149     </EmbeddedResource>
    150   </ItemGroup>
    151121  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    152122  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset for help on using the changeset viewer.