Changeset 10303
- Timestamp:
- 01/08/14 14:23:25 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 10 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10251 r10303 94 94 <Compile Include="Interfaces\ILineChartLogic.cs" /> 95 95 <Compile Include="Interfaces\ITransformationLogic.cs" /> 96 <Compile Include="Views\FilterView.cs"> 97 <SubType>UserControl</SubType> 98 </Compile> 99 <Compile Include="Views\FilterView.Designer.cs"> 100 <DependentUpon>FilterView.cs</DependentUpon> 101 </Compile> 96 102 <Compile Include="Views\DataPreprocessingView.cs"> 97 103 <SubType>UserControl</SubType> … … 99 105 <Compile Include="Views\DataPreprocessingView.designer.cs"> 100 106 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 107 </Compile> 108 <Compile Include="Views\HistogramView.cs"> 109 <SubType>UserControl</SubType> 110 </Compile> 111 <Compile Include="Views\HistogramView.Designer.cs"> 112 <DependentUpon>HistogramView.cs</DependentUpon> 113 </Compile> 114 <Compile Include="Views\LineChartView.cs"> 115 <SubType>UserControl</SubType> 116 </Compile> 117 <Compile Include="Views\LineChartView.Designer.cs"> 118 <DependentUpon>LineChartView.cs</DependentUpon> 119 </Compile> 120 <Compile Include="Views\StatisticsView.cs"> 121 <SubType>UserControl</SubType> 122 </Compile> 123 <Compile Include="Views\StatisticsView.Designer.cs"> 124 <DependentUpon>StatisticsView.cs</DependentUpon> 125 </Compile> 126 <Compile Include="Views\TransformationView.cs"> 127 <SubType>UserControl</SubType> 128 </Compile> 129 <Compile Include="Views\TransformationView.Designer.cs"> 130 <DependentUpon>TransformationView.cs</DependentUpon> 101 131 </Compile> 102 132 <None Include="Plugin.cs.frame" /> … … 188 218 </ProjectReference> 189 219 </ItemGroup> 220 <ItemGroup> 221 <EmbeddedResource Include="Views\DataPreprocessingView.resx"> 222 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 223 </EmbeddedResource> 224 </ItemGroup> 190 225 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 191 226 <PropertyGroup> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs
r10252 r10303 10 10 { 11 11 [Item("FilterContent", "Represents the filter grid.")] 12 class FilterContent : Item12 public class FilterContent : Item 13 13 { 14 14 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs
r10244 r10303 4 4 using System.Text; 5 5 6 namespace HeuristicLab.DataPreprocessing .Implementations6 namespace HeuristicLab.DataPreprocessing 7 7 { 8 8 public class FilterLogic : IFilterLogic -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10252 r10303 11 11 { 12 12 [Item("HistogramContent", "Represents the histogram grid.")] 13 class HistogramContent : Item13 public class HistogramContent : Item 14 14 { 15 15 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramLogic.cs
r10244 r10303 4 4 using System.Text; 5 5 6 namespace HeuristicLab.DataPreprocessing .Implementations6 namespace HeuristicLab.DataPreprocessing 7 7 { 8 8 public class HistogramLogic : IHistogramLogic -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
r10252 r10303 10 10 { 11 11 [Item("LineChartContent", "Represents the line chart grid.")] 12 class LineChartContent : Item12 public class LineChartContent : Item 13 13 { 14 14 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartLogic.cs
r10252 r10303 4 4 using System.Text; 5 5 6 namespace HeuristicLab.DataPreprocessing .Implementations6 namespace HeuristicLab.DataPreprocessing 7 7 { 8 8 public class LineChartLogic:ILineChartLogic -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs
r10252 r10303 10 10 { 11 11 [Item("StatisticsContent", "Represents the statistics grid.")] 12 class StatisticsContent : Item12 public class StatisticsContent : Item 13 13 { 14 14 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs
r10252 r10303 10 10 { 11 11 [Item("TransformationContent", "Represents the transformation grid.")] 12 class TransformationContent : Item12 public class TransformationContent : Item 13 13 { 14 14 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.cs
r10259 r10303 17 17 18 18 private DataGridContent dataGridContent; 19 private StatisticsContent statisticsContent; 20 private FilterContent filterContent; 21 private TransformationContent tranformationContent; 22 private LineChartContent lineChartContent; 23 private HistogramContent histogramContent; 24 19 25 private Dictionary<ListViewItem, IItem> listViewItemItemMapping; 20 26 … … 45 51 ISearchLogic searchLogic = new SearchLogic(data); 46 52 dataGridContent = new DataGridContent(new DataGridLogic(data), new PreprocessingDataManipulation(data, searchLogic, new StatisticsLogic(data, searchLogic))); 53 statisticsContent = new StatisticsContent(new StatisticsLogic(data, searchLogic)); 54 filterContent = new FilterContent(new FilterLogic()); 55 tranformationContent = new TransformationContent(new TransformationLogic()); 56 lineChartContent = new LineChartContent(new LineChartLogic()); 57 histogramContent = new HistogramContent(new HistogramLogic()); 47 58 48 59 listViewItemItemMapping = new Dictionary<ListViewItem, IItem>(); … … 50 61 listViewItemItemMapping[contentListViewItem] = dataGridContent; 51 62 63 ListViewItem statisticsListViewItem = CreateListViewItem(statisticsContent); 64 listViewItemItemMapping[statisticsListViewItem] = statisticsContent; 65 66 ListViewItem filterListViewItem = CreateListViewItem(filterContent); 67 listViewItemItemMapping[filterListViewItem] = filterContent; 68 69 ListViewItem transformationListViewItem = CreateListViewItem(tranformationContent); 70 listViewItemItemMapping[transformationListViewItem] = tranformationContent; 71 72 ListViewItem lineChartListViewItem = CreateListViewItem(lineChartContent); 73 listViewItemItemMapping[lineChartListViewItem] = lineChartContent; 74 75 ListViewItem histogramListViewItem = CreateListViewItem(histogramContent); 76 listViewItemItemMapping[histogramListViewItem] = histogramContent; 77 78 contentListView.Items.Add(statisticsListViewItem); 52 79 contentListView.Items.Add(contentListViewItem); 80 contentListView.Items.Add(filterListViewItem); 81 contentListView.Items.Add(transformationListViewItem); 82 contentListView.Items.Add(lineChartListViewItem); 83 contentListView.Items.Add(histogramListViewItem); 53 84 } 54 85 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.designer.cs
r10260 r10303 64 64 this.contentListView.TabIndex = 0; 65 65 this.contentListView.UseCompatibleStateImageBehavior = false; 66 this.contentListView.View = System.Windows.Forms.View.List; 66 67 this.contentListView.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); 67 68 this.contentListView.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
Note: See TracChangeset
for help on using the changeset viewer.