Changeset 10558
- Timestamp:
- 03/05/14 23:11:44 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.Designer.cs
r10557 r10558 1 namespace HeuristicLab.DataPreprocessing.Views 2 { 3 partial class ComparisonFilterView 4 { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DataPreprocessing.Views { 23 partial class ComparisonFilterView { 5 24 /// <summary> 6 25 /// Required designer variable. … … 12 31 /// </summary> 13 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 33 protected override void Dispose(bool disposing) { 34 if (disposing && (components != null)) { 18 35 components.Dispose(); 19 36 } … … 27 44 /// the contents of this method with the code editor. 28 45 /// </summary> 29 private void InitializeComponent() 30 { 46 private void InitializeComponent() { 31 47 this.label1 = new System.Windows.Forms.Label(); 32 48 this.SuspendLayout(); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.cs
r10557 r10558 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Linq; 6 using System.Text; 7 using System.Windows.Forms; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 8 22 using HeuristicLab.Core.Views; 23 using HeuristicLab.DataPreprocessing.Filter; 9 24 using HeuristicLab.MainForm; 10 using HeuristicLab.MainForm.WindowsForms;11 25 12 namespace HeuristicLab.DataPreprocessing.Views 13 { 26 namespace HeuristicLab.DataPreprocessing.Views { 14 27 [View("Comparison Filter View")] 15 28 [Content(typeof(ComparisonFilter), false)] 16 public partial class ComparisonFilterView : ItemView 17 { 18 public ComparisonFilterView() 19 { 29 public partial class ComparisonFilterView : ItemView { 30 public ComparisonFilterView() { 20 31 InitializeComponent(); 21 32 } 22 33 23 public new ComparisonFilter Content 24 { 34 public new ComparisonFilter Content { 25 35 get { return (ComparisonFilter)base.Content; } 26 36 set { base.Content = value; } 27 37 } 28 38 29 protected override void OnContentChanged() 30 { 39 protected override void OnContentChanged() { 31 40 base.OnContentChanged(); 32 41 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.Designer.cs
r10557 r10558 20 20 #endregion 21 21 22 namespace HeuristicLab.DataPreprocessing {22 namespace HeuristicLab.DataPreprocessing.Views { 23 23 partial class DataGridContentView { 24 24 /// <summary> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.cs
r10557 r10558 26 26 using HeuristicLab.Data.Views; 27 27 using HeuristicLab.MainForm; 28 using HeuristicLab.MainForm.WindowsForms;29 28 30 namespace HeuristicLab.DataPreprocessing {29 namespace HeuristicLab.DataPreprocessing.Views { 31 30 [View("Data Grid Content View")] 32 31 [Content(typeof(IDataGridContent), true)] -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs
r10557 r10558 27 27 using HeuristicLab.MainForm; 28 28 29 namespace HeuristicLab.DataPreprocessing {29 namespace HeuristicLab.DataPreprocessing.Views { 30 30 [View("DataPreprocessing View")] 31 31 [Content(typeof(IPreprocessingContext), true)] -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.designer.cs
r10557 r10558 19 19 */ 20 20 #endregion 21 namespace HeuristicLab.DataPreprocessing { 21 22 namespace HeuristicLab.DataPreprocessing.Views { 22 23 partial class DataPreprocessingView { 23 24 /// <summary> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.Designer.cs
r10557 r10558 20 20 #endregion 21 21 22 namespace HeuristicLab.DataPreprocessing {22 namespace HeuristicLab.DataPreprocessing.Views { 23 23 partial class FilterView { 24 24 /// <summary> … … 44 44 /// the contents of this method with the code editor. 45 45 /// </summary> 46 private void InitializeComponent() 47 { 46 private void InitializeComponent() { 48 47 this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 49 48 this.deleteFilter = new System.Windows.Forms.Button(); … … 102 101 // listView1 103 102 // 104 this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 105 | System.Windows.Forms.AnchorStyles.Left) 103 this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 104 | System.Windows.Forms.AnchorStyles.Left) 106 105 | System.Windows.Forms.AnchorStyles.Right))); 107 106 this.listView1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.cs
r10557 r10558 20 20 #endregion 21 21 22 using System; 23 using System.Collections.Generic; 24 using System.ComponentModel; 22 25 using System.Windows.Forms; 26 using HeuristicLab.Core; 23 27 using HeuristicLab.Core.Views; 28 using HeuristicLab.DataPreprocessing.Filter; 24 29 using HeuristicLab.MainForm; 25 using HeuristicLab.MainForm.WindowsForms;26 using HeuristicLab.Core;27 using System.Collections.Generic;28 using System;29 using System.ComponentModel;30 30 31 namespace HeuristicLab.DataPreprocessing 32 { 31 namespace HeuristicLab.DataPreprocessing.Views { 33 32 34 33 [View("Filter View")] 35 34 [Content(typeof(FilterContent), false)] 36 public partial class FilterView : ItemView 37 { 35 public partial class FilterView : ItemView { 38 36 39 public new FilterContent Content 40 { 37 public new FilterContent Content { 41 38 get { return (FilterContent)base.Content; } 42 39 set { base.Content = value; } 43 40 } 44 41 45 public FilterView() 46 { 42 public FilterView() { 47 43 InitializeComponent(); 48 44 listView1.SmallImageList = new ImageList(); 49 45 } 50 46 51 protected override void OnContentChanged() 52 { 47 protected override void OnContentChanged() { 53 48 base.OnContentChanged(); 54 49 } … … 57 52 private IDictionary<IFilter, ListViewItem> filters = new Dictionary<IFilter, ListViewItem>(); 58 53 59 private void listView1_DoubleClick(object sender, EventArgs e) 60 { 54 private void listView1_DoubleClick(object sender, EventArgs e) { 61 55 62 56 } 63 57 64 private void newFilter_Click(object sender, EventArgs e) 65 { 58 private void newFilter_Click(object sender, EventArgs e) { 66 59 //TODO Filter Choose View... 67 60 IFilter filter = new ComparisonFilter(); … … 77 70 } 78 71 79 private void filter_PropertyChanged(object sender, PropertyChangedEventArgs e) 80 { 72 private void filter_PropertyChanged(object sender, PropertyChangedEventArgs e) { 81 73 ListViewItem listViewItem; 82 try 83 { 74 try { 84 75 IFilter filter = (IFilter)sender; 85 76 filters.TryGetValue(filter, out listViewItem); 86 77 listViewItem.Name = filter.ItemName; 87 } 88 catch (KeyNotFoundException) 89 { 78 } catch (KeyNotFoundException) { 90 79 //nothing to do 91 80 } … … 93 82 } 94 83 95 private ListViewItem CreateListViewItem(IFilter filter) 96 { 84 private ListViewItem CreateListViewItem(IFilter filter) { 97 85 ListViewItem listViewItem = new ListViewItem(); 98 86 … … 104 92 } 105 93 106 private void deleteFilter_Click(object sender, EventArgs e) 107 { 94 private void deleteFilter_Click(object sender, EventArgs e) { 108 95 //delete view item of filter 109 96 //listView1.Items.Remove(); 110 97 //select top filter 111 if (listView1.Items.Count > 0) 112 { 98 if (listView1.Items.Count > 0) { 113 99 listView1.SelectedItems[0].Remove(); 114 100 } 115 if (listView1.Items.Count > 0) 116 { 101 if (listView1.Items.Count > 0) { 117 102 listView1.SelectedIndices.Add(0); 118 103 } 119 104 } 120 105 121 private void listView1_SelectedIndexChanged(object sender, EventArgs e) 122 { 123 if (listView1.SelectedItems.Count > 0) 124 { 106 private void listView1_SelectedIndexChanged(object sender, EventArgs e) { 107 if (listView1.SelectedItems.Count > 0) { 125 108 ListViewItem listViewItem = (ListViewItem)listView1.SelectedItems[0]; 126 109 this.viewHost.Content = (IItem)listViewItem.Tag; … … 128 111 } 129 112 130 private void listView1_DoubleClick_1(object sender, EventArgs e) 131 { 132 if (listView1.SelectedItems.Count > 0) 133 { 113 private void listView1_DoubleClick_1(object sender, EventArgs e) { 114 if (listView1.SelectedItems.Count > 0) { 134 115 ListViewItem listViewItem = (ListViewItem)listView1.SelectedItems[0]; 135 116 MainFormManager.MainForm.ShowContent((IItem)listViewItem.Tag); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj
r10557 r10558 8 8 <OutputType>Library</OutputType> 9 9 <AppDesignerFolder>Properties</AppDesignerFolder> 10 <RootNamespace>HeuristicLab.DataPreprocessing.Views _3._3</RootNamespace>10 <RootNamespace>HeuristicLab.DataPreprocessing.Views</RootNamespace> 11 11 <AssemblyName>HeuristicLab.DataPreprocessing.Views-3.3</AssemblyName> 12 12 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.Designer.cs
r10557 r10558 1 namespace HeuristicLab.DataPreprocessing.Views { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DataPreprocessing.Views { 2 23 partial class HistogramView { 3 24 /// <summary> … … 33 54 // groupBoxAttributs 34 55 // 35 this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 56 this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 36 57 | System.Windows.Forms.AnchorStyles.Left))); 37 58 this.groupBoxAttributs.Controls.Add(this.variablesListBox); … … 45 66 // variablesListBox 46 67 // 47 this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 48 | System.Windows.Forms.AnchorStyles.Left) 68 this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 69 | System.Windows.Forms.AnchorStyles.Left) 49 70 | System.Windows.Forms.AnchorStyles.Right))); 50 71 this.variablesListBox.FormattingEnabled = true; … … 67 88 // viewHost 68 89 // 69 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 70 | System.Windows.Forms.AnchorStyles.Left) 90 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 91 | System.Windows.Forms.AnchorStyles.Left) 71 92 | System.Windows.Forms.AnchorStyles.Right))); 72 93 this.viewHost.Caption = "View"; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.cs
r10557 r10558 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Linq; 6 using System.Text; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 7 22 using System.Windows.Forms; 8 23 using HeuristicLab.Core.Views; 9 24 using HeuristicLab.MainForm; 10 using HeuristicLab.MainForm.WindowsForms;11 using HeuristicLab.Data.Views;12 25 13 26 namespace HeuristicLab.DataPreprocessing.Views { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.Designer.cs
r10557 r10558 54 54 // viewHost 55 55 // 56 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 57 | System.Windows.Forms.AnchorStyles.Left) 56 this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 57 | System.Windows.Forms.AnchorStyles.Left) 58 58 | System.Windows.Forms.AnchorStyles.Right))); 59 59 this.viewHost.Caption = "View"; … … 70 70 // variablesListBox 71 71 // 72 this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 73 | System.Windows.Forms.AnchorStyles.Left) 72 this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 73 | System.Windows.Forms.AnchorStyles.Left) 74 74 | System.Windows.Forms.AnchorStyles.Right))); 75 75 this.variablesListBox.FormattingEnabled = true; … … 82 82 // groupBoxAttributs 83 83 // 84 this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 84 this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 85 85 | System.Windows.Forms.AnchorStyles.Left))); 86 86 this.groupBoxAttributs.Controls.Add(this.variablesListBox); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs
r10557 r10558 23 23 using HeuristicLab.Core.Views; 24 24 using HeuristicLab.MainForm; 25 using HeuristicLab.MainForm.WindowsForms;26 25 27 26 namespace HeuristicLab.DataPreprocessing.Views { … … 35 34 } 36 35 37 private void InitDataTable() { 36 private void InitDataTable() { 38 37 ILineChartLogic logic = Content.LineChartLogic; 39 38 viewHost.Content = logic.GetDataTable(); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingDataTableView.Designer.cs
r10557 r10558 1 namespace HeuristicLab.DataPreprocessing.Views { 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 namespace HeuristicLab.DataPreprocessing.Views { 2 23 partial class PreprocessingDataTableView { 3 24 /// <summary> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingDataTableView.cs
r10557 r10558 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Linq; 6 using System.Text; 7 using System.Windows.Forms; 8 using HeuristicLab.Core.Views; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 9 22 using HeuristicLab.MainForm; 10 using HeuristicLab.MainForm.WindowsForms;11 using HeuristicLab.Data.Views;12 23 using HeuristicLab.Analysis; 13 24 using HeuristicLab.Analysis.Views; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/StatisticsView.Designer.cs
r10557 r10558 20 20 #endregion 21 21 22 namespace HeuristicLab.DataPreprocessing {22 namespace HeuristicLab.DataPreprocessing.Views { 23 23 partial class StatisticsView { 24 24 /// <summary> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/StatisticsView.cs
r10557 r10558 25 25 using HeuristicLab.Core.Views; 26 26 using HeuristicLab.MainForm; 27 using HeuristicLab.MainForm.WindowsForms; 28 29 namespace HeuristicLab.DataPreprocessing { 27 28 namespace HeuristicLab.DataPreprocessing.Views { 30 29 31 30 [View("Statistics View")] -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/TransformationView.cs
r10557 r10558 20 20 #endregion 21 21 22 using System.Windows.Forms;23 22 using HeuristicLab.Core.Views; 24 23 using HeuristicLab.MainForm; 25 using HeuristicLab.MainForm.WindowsForms;26 24 27 25 namespace HeuristicLab.DataPreprocessing.Views { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10557 r10558 70 70 <Reference Include="System.Drawing" /> 71 71 <Reference Include="System.Windows.Forms" /> 72 <Reference Include="System.Windows.Forms.DataVisualization" />73 <Reference Include="System.Xml.Linq" />74 <Reference Include="System.Data.DataSetExtensions" />75 <Reference Include="Microsoft.CSharp" />76 <Reference Include="System.Data" />77 <Reference Include="System.Xml" />78 72 </ItemGroup> 79 73 <ItemGroup> … … 119 113 </ItemGroup> 120 114 <ItemGroup> 121 <ProjectReference Include="..\..\HeuristicLab.Analysis.Views\3.3\HeuristicLab.Analysis.Views-3.3.csproj">122 <Project>{76945d76-ca61-4147-9dc2-0acdcddf87f9}</Project>123 <Name>HeuristicLab.Analysis.Views-3.3</Name>124 </ProjectReference>125 115 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj"> 126 116 <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project> … … 142 132 </ProjectReference> 143 133 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 144 <Project>{ e226881d-315f-423d-b419-a766fe0d8685}</Project>134 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 145 135 <Name>HeuristicLab.Core.Views-3.3</Name> 146 136 </ProjectReference> … … 149 139 <Name>HeuristicLab.Core-3.3</Name> 150 140 <Private>False</Private> 151 </ProjectReference>152 <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj">153 <Project>{72104a0b-90e7-42f3-9abe-9bbbadd4b943}</Project>154 <Name>HeuristicLab.Data.Views-3.3</Name>155 141 </ProjectReference> 156 142 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> … … 170 156 <Name>HeuristicLab.Optimization-3.3</Name> 171 157 </ProjectReference> 172 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">173 <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>174 <Name>HeuristicLab.Persistence-3.3</Name>175 <Private>False</Private>176 </ProjectReference>177 158 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 178 159 <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project> … … 181 162 </ProjectReference> 182 163 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Views\3.4\HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj"> 183 <Project>{3 e9e8944-44ff-40bb-a622-3a4a7dd0f198}</Project>164 <Project>{3E9E8944-44FF-40BB-A622-3A4A7DD0F198}</Project> 184 165 <Name>HeuristicLab.Problems.DataAnalysis.Views-3.4</Name> 185 166 </ProjectReference> … … 187 168 <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project> 188 169 <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name> 189 </ProjectReference>190 <ProjectReference Include="..\..\HeuristicLab.Visualization.ChartControlsExtensions\3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.csproj">191 <Project>{315bda09-3f4f-49b3-9790-b37cfc1c5750}</Project>192 <Name>HeuristicLab.Visualization.ChartControlsExtensions-3.3</Name>193 170 </ProjectReference> 194 171 </ItemGroup> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs
r10539 r10558 29 29 30 30 [Item("DataGrid", "Represents a data grid.")] 31 public class DataGridContent : Item, IDataGridContent , IContent{31 public class DataGridContent : Item, IDataGridContent { 32 32 33 33 private readonly IDataGridLogic dataGridLogic; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataPreprocessorStarter.cs
r10383 r10558 20 20 #endregion 21 21 22 using System.Windows.Forms; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Core.Views; 24 25 using HeuristicLab.MainForm; 25 using HeuristicLab.MainForm.WindowsForms;26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Problems.DataAnalysis; 28 28 using HeuristicLab.Problems.DataAnalysis.Views; 29 using Control = System.Windows.Forms.Control;29 using View = HeuristicLab.MainForm.WindowsForms.View; 30 30 31 31 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10549 r10558 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using HeuristicLab.Common; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System.Drawing; 23 using HeuristicLab.Common.Resources; 6 24 using HeuristicLab.Core; 7 25 8 namespace HeuristicLab.DataPreprocessing 9 { 26 namespace HeuristicLab.DataPreprocessing.Filter { 10 27 [Item("ComparisonFilter", "Represents the comparison Filter.")] 11 public class ComparisonFilter : ComparisonConstraint, IFilter 12 { 13 public override string ItemName 14 { 15 get 16 { 17 return "ComparisonFilter"; 18 } 28 public class ComparisonFilter : ComparisonConstraint, IFilter { 29 public override string ItemName { 30 get { return "ComparisonFilter"; } 19 31 } 20 32 21 public override System.Drawing.Image ItemImage 22 { 23 get 24 { 25 return HeuristicLab.Common.Resources.VSImageLibrary.Filter; 26 } 33 public override Image ItemImage { 34 get { return VSImageLibrary.Filter; } 27 35 } 28 36 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs
r10557 r10558 1 using HeuristicLab.Common; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 2 22 using HeuristicLab.Core; 3 using System;4 using System.Collections.Generic;5 using System.Linq;6 using System.Text;7 23 8 namespace HeuristicLab.DataPreprocessing 9 { 10 public interface IFilter : IItem, IContent 11 { 12 24 namespace HeuristicLab.DataPreprocessing.Filter { 25 public interface IFilter : IItem { 13 26 } 14 27 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs
r10539 r10558 20 20 #endregion 21 21 22 23 22 namespace HeuristicLab.DataPreprocessing { 24 23 public class FilterLogic : IFilterLogic { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10539 r10558 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 26 25 27 26 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramLogic.cs
r10552 r10558 20 20 #endregion 21 21 22 23 22 using System; 24 23 using System.Collections.Generic; … … 27 26 namespace HeuristicLab.DataPreprocessing { 28 27 public class HistogramLogic : IHistogramLogic { 29 28 private IPreprocessingData preprocessingData; 30 29 private DataTable dataTable; 31 30 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationLogic.cs
r10539 r10558 21 21 22 22 using System; 23 23 24 namespace HeuristicLab.DataPreprocessing { 24 25 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs
r10539 r10558 21 21 22 22 using System.Collections.Generic; 23 23 24 namespace HeuristicLab.DataPreprocessing { 24 25 public interface IDataGridLogic { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs
r10539 r10558 20 20 #endregion 21 21 22 23 22 namespace HeuristicLab.DataPreprocessing { 24 23 public interface IFilterLogic { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IHistogramLogic.cs
r10552 r10558 20 20 #endregion 21 21 22 23 22 using System.Collections.Generic; 24 23 using HeuristicLab.Analysis; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs
r10539 r10558 22 22 using System; 23 23 using System.Collections.Generic; 24 24 25 namespace HeuristicLab.DataPreprocessing { 25 26 public interface IManipulationLogic {
Note: See TracChangeset
for help on using the changeset viewer.