Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10558


Ignore:
Timestamp:
03/05/14 23:11:44 (11 years ago)
Author:
pfleck
Message:
  • removed unnecessary references and using
  • added missing license header
  • formatted code according to HL standards
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
     22namespace HeuristicLab.DataPreprocessing.Views {
     23  partial class ComparisonFilterView {
    524    /// <summary>
    625    /// Required designer variable.
     
    1231    /// </summary>
    1332    /// <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)) {
    1835        components.Dispose();
    1936      }
     
    2744    /// the contents of this method with the code editor.
    2845    /// </summary>
    29     private void InitializeComponent()
    30     {
     46    private void InitializeComponent() {
    3147      this.label1 = new System.Windows.Forms.Label();
    3248      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
    822using HeuristicLab.Core.Views;
     23using HeuristicLab.DataPreprocessing.Filter;
    924using HeuristicLab.MainForm;
    10 using HeuristicLab.MainForm.WindowsForms;
    1125
    12 namespace HeuristicLab.DataPreprocessing.Views
    13 {
     26namespace HeuristicLab.DataPreprocessing.Views {
    1427  [View("Comparison Filter View")]
    1528  [Content(typeof(ComparisonFilter), false)]
    16   public partial class ComparisonFilterView : ItemView
    17   {
    18     public ComparisonFilterView()
    19     {
     29  public partial class ComparisonFilterView : ItemView {
     30    public ComparisonFilterView() {
    2031      InitializeComponent();
    2132    }
    2233
    23     public new ComparisonFilter Content
    24     {
     34    public new ComparisonFilter Content {
    2535      get { return (ComparisonFilter)base.Content; }
    2636      set { base.Content = value; }
    2737    }
    2838
    29     protected override void OnContentChanged()
    30     {
     39    protected override void OnContentChanged() {
    3140      base.OnContentChanged();
    3241    }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.Designer.cs

    r10557 r10558  
    2020#endregion
    2121
    22 namespace HeuristicLab.DataPreprocessing {
     22namespace HeuristicLab.DataPreprocessing.Views {
    2323  partial class DataGridContentView {
    2424    /// <summary>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.cs

    r10557 r10558  
    2626using HeuristicLab.Data.Views;
    2727using HeuristicLab.MainForm;
    28 using HeuristicLab.MainForm.WindowsForms;
    2928
    30 namespace HeuristicLab.DataPreprocessing {
     29namespace HeuristicLab.DataPreprocessing.Views {
    3130  [View("Data Grid Content View")]
    3231  [Content(typeof(IDataGridContent), true)]
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs

    r10557 r10558  
    2727using HeuristicLab.MainForm;
    2828
    29 namespace HeuristicLab.DataPreprocessing {
     29namespace HeuristicLab.DataPreprocessing.Views {
    3030  [View("DataPreprocessing View")]
    3131  [Content(typeof(IPreprocessingContext), true)]
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.designer.cs

    r10557 r10558  
    1919 */
    2020#endregion
    21 namespace HeuristicLab.DataPreprocessing {
     21
     22namespace HeuristicLab.DataPreprocessing.Views {
    2223  partial class DataPreprocessingView {
    2324    /// <summary>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.Designer.cs

    r10557 r10558  
    2020#endregion
    2121
    22 namespace HeuristicLab.DataPreprocessing {
     22namespace HeuristicLab.DataPreprocessing.Views {
    2323  partial class FilterView {
    2424    /// <summary>
     
    4444    /// the contents of this method with the code editor.
    4545    /// </summary>
    46     private void InitializeComponent()
    47     {
     46    private void InitializeComponent() {
    4847      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    4948      this.deleteFilter = new System.Windows.Forms.Button();
     
    102101      // listView1
    103102      //
    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)
    106105            | System.Windows.Forms.AnchorStyles.Right)));
    107106      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  
    2020#endregion
    2121
     22using System;
     23using System.Collections.Generic;
     24using System.ComponentModel;
    2225using System.Windows.Forms;
     26using HeuristicLab.Core;
    2327using HeuristicLab.Core.Views;
     28using HeuristicLab.DataPreprocessing.Filter;
    2429using HeuristicLab.MainForm;
    25 using HeuristicLab.MainForm.WindowsForms;
    26 using HeuristicLab.Core;
    27 using System.Collections.Generic;
    28 using System;
    29 using System.ComponentModel;
    3030
    31 namespace HeuristicLab.DataPreprocessing
    32 {
     31namespace HeuristicLab.DataPreprocessing.Views {
    3332
    3433  [View("Filter View")]
    3534  [Content(typeof(FilterContent), false)]
    36   public partial class FilterView : ItemView
    37   {
     35  public partial class FilterView : ItemView {
    3836
    39     public new FilterContent Content
    40     {
     37    public new FilterContent Content {
    4138      get { return (FilterContent)base.Content; }
    4239      set { base.Content = value; }
    4340    }
    4441
    45     public FilterView()
    46     {
     42    public FilterView() {
    4743      InitializeComponent();
    4844      listView1.SmallImageList = new ImageList();
    4945    }
    5046
    51     protected override void OnContentChanged()
    52     {
     47    protected override void OnContentChanged() {
    5348      base.OnContentChanged();
    5449    }
     
    5752    private IDictionary<IFilter, ListViewItem> filters = new Dictionary<IFilter, ListViewItem>();
    5853
    59     private void listView1_DoubleClick(object sender, EventArgs e)
    60     {
     54    private void listView1_DoubleClick(object sender, EventArgs e) {
    6155
    6256    }
    6357
    64     private void newFilter_Click(object sender, EventArgs e)
    65     {
     58    private void newFilter_Click(object sender, EventArgs e) {
    6659      //TODO Filter Choose View...
    6760      IFilter filter = new ComparisonFilter();
     
    7770    }
    7871
    79     private void filter_PropertyChanged(object sender, PropertyChangedEventArgs e)
    80     {
     72    private void filter_PropertyChanged(object sender, PropertyChangedEventArgs e) {
    8173      ListViewItem listViewItem;
    82       try
    83       {
     74      try {
    8475        IFilter filter = (IFilter)sender;
    8576        filters.TryGetValue(filter, out listViewItem);
    8677        listViewItem.Name = filter.ItemName;
    87       }
    88       catch (KeyNotFoundException)
    89       {
     78      } catch (KeyNotFoundException) {
    9079        //nothing to do
    9180      }
     
    9382    }
    9483
    95     private ListViewItem CreateListViewItem(IFilter filter)
    96     {
     84    private ListViewItem CreateListViewItem(IFilter filter) {
    9785      ListViewItem listViewItem = new ListViewItem();
    9886
     
    10492    }
    10593
    106     private void deleteFilter_Click(object sender, EventArgs e)
    107     {
     94    private void deleteFilter_Click(object sender, EventArgs e) {
    10895      //delete view item of filter
    10996      //listView1.Items.Remove();
    11097      //select top filter
    111       if (listView1.Items.Count > 0)
    112       {
     98      if (listView1.Items.Count > 0) {
    11399        listView1.SelectedItems[0].Remove();
    114100      }
    115       if (listView1.Items.Count > 0)
    116       {
     101      if (listView1.Items.Count > 0) {
    117102        listView1.SelectedIndices.Add(0);
    118103      }
    119104    }
    120105
    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) {
    125108        ListViewItem listViewItem = (ListViewItem)listView1.SelectedItems[0];
    126109        this.viewHost.Content = (IItem)listViewItem.Tag;
     
    128111    }
    129112
    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) {
    134115        ListViewItem listViewItem = (ListViewItem)listView1.SelectedItems[0];
    135116        MainFormManager.MainForm.ShowContent((IItem)listViewItem.Tag);
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj

    r10557 r10558  
    88    <OutputType>Library</OutputType>
    99    <AppDesignerFolder>Properties</AppDesignerFolder>
    10     <RootNamespace>HeuristicLab.DataPreprocessing.Views_3._3</RootNamespace>
     10    <RootNamespace>HeuristicLab.DataPreprocessing.Views</RootNamespace>
    1111    <AssemblyName>HeuristicLab.DataPreprocessing.Views-3.3</AssemblyName>
    1212    <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
     22namespace HeuristicLab.DataPreprocessing.Views {
    223  partial class HistogramView {
    324    /// <summary>
     
    3354      // groupBoxAttributs
    3455      //
    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)
    3657            | System.Windows.Forms.AnchorStyles.Left)));
    3758      this.groupBoxAttributs.Controls.Add(this.variablesListBox);
     
    4566      // variablesListBox
    4667      //
    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)
    4970            | System.Windows.Forms.AnchorStyles.Right)));
    5071      this.variablesListBox.FormattingEnabled = true;
     
    6788      // viewHost
    6889      //
    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)
    7192            | System.Windows.Forms.AnchorStyles.Right)));
    7293      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
    722using System.Windows.Forms;
    823using HeuristicLab.Core.Views;
    924using HeuristicLab.MainForm;
    10 using HeuristicLab.MainForm.WindowsForms;
    11 using HeuristicLab.Data.Views;
    1225
    1326namespace HeuristicLab.DataPreprocessing.Views {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.Designer.cs

    r10557 r10558  
    5454      // viewHost
    5555      //
    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)
    5858            | System.Windows.Forms.AnchorStyles.Right)));
    5959      this.viewHost.Caption = "View";
     
    7070      // variablesListBox
    7171      //
    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)
    7474            | System.Windows.Forms.AnchorStyles.Right)));
    7575      this.variablesListBox.FormattingEnabled = true;
     
    8282      // groupBoxAttributs
    8383      //
    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)
    8585            | System.Windows.Forms.AnchorStyles.Left)));
    8686      this.groupBoxAttributs.Controls.Add(this.variablesListBox);
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs

    r10557 r10558  
    2323using HeuristicLab.Core.Views;
    2424using HeuristicLab.MainForm;
    25 using HeuristicLab.MainForm.WindowsForms;
    2625
    2726namespace HeuristicLab.DataPreprocessing.Views {
     
    3534    }
    3635
    37     private void InitDataTable() { 
     36    private void InitDataTable() {
    3837      ILineChartLogic logic = Content.LineChartLogic;
    3938      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
     22namespace HeuristicLab.DataPreprocessing.Views {
    223  partial class PreprocessingDataTableView {
    324    /// <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
    922using HeuristicLab.MainForm;
    10 using HeuristicLab.MainForm.WindowsForms;
    11 using HeuristicLab.Data.Views;
    1223using HeuristicLab.Analysis;
    1324using HeuristicLab.Analysis.Views;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/StatisticsView.Designer.cs

    r10557 r10558  
    2020#endregion
    2121
    22 namespace HeuristicLab.DataPreprocessing {
     22namespace HeuristicLab.DataPreprocessing.Views {
    2323  partial class StatisticsView {
    2424    /// <summary>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/StatisticsView.cs

    r10557 r10558  
    2525using HeuristicLab.Core.Views;
    2626using HeuristicLab.MainForm;
    27 using HeuristicLab.MainForm.WindowsForms;
    28 
    29 namespace HeuristicLab.DataPreprocessing {
     27
     28namespace HeuristicLab.DataPreprocessing.Views {
    3029
    3130  [View("Statistics View")]
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/TransformationView.cs

    r10557 r10558  
    2020#endregion
    2121
    22 using System.Windows.Forms;
    2322using HeuristicLab.Core.Views;
    2423using HeuristicLab.MainForm;
    25 using HeuristicLab.MainForm.WindowsForms;
    2624
    2725namespace HeuristicLab.DataPreprocessing.Views {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10557 r10558  
    7070    <Reference Include="System.Drawing" />
    7171    <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" />
    7872  </ItemGroup>
    7973  <ItemGroup>
     
    119113  </ItemGroup>
    120114  <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>
    125115    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
    126116      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
     
    142132    </ProjectReference>
    143133    <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>
    145135      <Name>HeuristicLab.Core.Views-3.3</Name>
    146136    </ProjectReference>
     
    149139      <Name>HeuristicLab.Core-3.3</Name>
    150140      <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>
    155141    </ProjectReference>
    156142    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
     
    170156      <Name>HeuristicLab.Optimization-3.3</Name>
    171157    </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>
    177158    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
    178159      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
     
    181162    </ProjectReference>
    182163    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Views\3.4\HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj">
    183       <Project>{3e9e8944-44ff-40bb-a622-3a4a7dd0f198}</Project>
     164      <Project>{3E9E8944-44FF-40BB-A622-3A4A7DD0F198}</Project>
    184165      <Name>HeuristicLab.Problems.DataAnalysis.Views-3.4</Name>
    185166    </ProjectReference>
     
    187168      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
    188169      <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>
    193170    </ProjectReference>
    194171  </ItemGroup>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs

    r10539 r10558  
    2929
    3030  [Item("DataGrid", "Represents a data grid.")]
    31   public class DataGridContent : Item, IDataGridContent, IContent {
     31  public class DataGridContent : Item, IDataGridContent {
    3232
    3333    private readonly IDataGridLogic dataGridLogic;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataPreprocessorStarter.cs

    r10383 r10558  
    2020#endregion
    2121
     22using System.Windows.Forms;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Core.Views;
    2425using HeuristicLab.MainForm;
    25 using HeuristicLab.MainForm.WindowsForms;
    2626using HeuristicLab.Optimization;
    2727using HeuristicLab.Problems.DataAnalysis;
    2828using HeuristicLab.Problems.DataAnalysis.Views;
    29 using Control = System.Windows.Forms.Control;
     29using View = HeuristicLab.MainForm.WindowsForms.View;
    3030
    3131namespace 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
     22using System.Drawing;
     23using HeuristicLab.Common.Resources;
    624using HeuristicLab.Core;
    725
    8 namespace HeuristicLab.DataPreprocessing
    9 {
     26namespace HeuristicLab.DataPreprocessing.Filter {
    1027  [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"; }
    1931    }
    2032
    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; }
    2735    }
    2836  }
  • 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
    222using HeuristicLab.Core;
    3 using System;
    4 using System.Collections.Generic;
    5 using System.Linq;
    6 using System.Text;
    723
    8 namespace HeuristicLab.DataPreprocessing
    9 {
    10   public interface IFilter : IItem, IContent
    11   {
    12 
     24namespace HeuristicLab.DataPreprocessing.Filter {
     25  public interface IFilter : IItem {
    1326  }
    1427}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs

    r10539 r10558  
    2020#endregion
    2121
    22 
    2322namespace HeuristicLab.DataPreprocessing {
    2423  public class FilterLogic : IFilterLogic {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10539 r10558  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 
    2625
    2726namespace HeuristicLab.DataPreprocessing {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramLogic.cs

    r10552 r10558  
    2020#endregion
    2121
    22 
    2322using System;
    2423using System.Collections.Generic;
     
    2726namespace HeuristicLab.DataPreprocessing {
    2827  public class HistogramLogic : IHistogramLogic {
    29         private IPreprocessingData preprocessingData;
     28    private IPreprocessingData preprocessingData;
    3029    private DataTable dataTable;
    3130
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationLogic.cs

    r10539 r10558  
    2121
    2222using System;
     23
    2324namespace HeuristicLab.DataPreprocessing {
    2425
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs

    r10539 r10558  
    2121
    2222using System.Collections.Generic;
     23
    2324namespace HeuristicLab.DataPreprocessing {
    2425  public interface IDataGridLogic {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs

    r10539 r10558  
    2020#endregion
    2121
    22 
    2322namespace HeuristicLab.DataPreprocessing {
    2423  public interface IFilterLogic {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IHistogramLogic.cs

    r10552 r10558  
    2020#endregion
    2121
    22 
    2322using System.Collections.Generic;
    2423using HeuristicLab.Analysis;
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs

    r10539 r10558  
    2222using System;
    2323using System.Collections.Generic;
     24
    2425namespace HeuristicLab.DataPreprocessing {
    2526  public interface IManipulationLogic {
Note: See TracChangeset for help on using the changeset viewer.