Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/14 16:24:17 (11 years ago)
Author:
aesterer
Message:

Changed buttons to icon buttons and added icons to content elements

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs

    r10312 r10313  
    77namespace HeuristicLab.DataPreprocessing {
    88
    9   [Item("DataGridContent", "Represents a data grid.")]
     9  [Item("DataGrid", "Represents a data grid.")]
    1010  public class DataGridContent : Item, IDataGridContent, IContent {
    1111
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs

    r10303 r10313  
    99namespace HeuristicLab.DataPreprocessing
    1010{
    11   [Item("FilterContent", "Represents the filter grid.")]
     11  [Item("Filter", "Represents the filter grid.")]
    1212  public class FilterContent : Item
    1313  {
     14
     15    public static new Image StaticItemImage {
     16      get { return HeuristicLab.Common.Resources.VSImageLibrary.Filter; }
     17    }
    1418
    1519    private readonly IFilterLogic filterLogic;
     
    3236    }
    3337
    34     public static new Image StaticItemImage
    35     {
    36       get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
    37     }
    38 
    3938    public override IDeepCloneable Clone(Cloner cloner)
    4039    {
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10303 r10313  
    1010namespace HeuristicLab.DataPreprocessing
    1111{
    12   [Item("HistogramContent", "Represents the histogram grid.")]
     12  [Item("Histogram", "Represents the histogram grid.")]
    1313  public class HistogramContent : Item
    1414  {
     
    3636    public static new Image StaticItemImage
    3737    {
    38       get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     38      get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
    3939    }
    4040
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs

    r10303 r10313  
    99namespace HeuristicLab.DataPreprocessing
    1010{
    11   [Item("LineChartContent", "Represents the line chart grid.")]
     11  [Item("LineChart", "Represents the line chart grid.")]
    1212  public class LineChartContent : Item
    1313  {
     
    3535    public static new Image StaticItemImage
    3636    {
    37       get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     37      get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
    3838    }
    3939
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs

    r10303 r10313  
    99namespace HeuristicLab.DataPreprocessing
    1010{
    11   [Item("StatisticsContent", "Represents the statistics grid.")]
     11  [Item("Statistics", "Represents the statistics grid.")]
    1212  public class StatisticsContent : Item
    1313  {
     
    3535    public static new Image StaticItemImage
    3636    {
    37       get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     37      get { return HeuristicLab.Common.Resources.VSImageLibrary.Statistics; }
    3838    }
    3939
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs

    r10303 r10313  
    99namespace HeuristicLab.DataPreprocessing
    1010{
    11   [Item("TransformationContent", "Represents the transformation grid.")]
     11  [Item("Transformation", "Represents the transformation grid.")]
    1212  public class TransformationContent : Item
    1313  {
     
    3535    public static new Image StaticItemImage
    3636    {
    37       get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     37      get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
    3838    }
    3939
Note: See TracChangeset for help on using the changeset viewer.