Last change
on this file since 10355 was
10313,
checked in by aesterer, 11 years ago
|
Changed buttons to icon buttons and added icons to content elements
|
File size:
1006 bytes
|
Rev | Line | |
---|
[10245] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 | using System.Drawing;
|
---|
[10242] | 4 | using System;
|
---|
| 5 | using System.Collections.Generic;
|
---|
[10245] | 6 |
|
---|
[10242] | 7 | using System.Linq;
|
---|
| 8 | using System.Text;
|
---|
| 9 |
|
---|
| 10 | namespace HeuristicLab.DataPreprocessing
|
---|
| 11 | {
|
---|
[10313] | 12 | [Item("Histogram", "Represents the histogram grid.")]
|
---|
[10303] | 13 | public class HistogramContent : Item
|
---|
[10242] | 14 | {
|
---|
[10252] | 15 |
|
---|
| 16 | private readonly IHistogramLogic histogramLogic;
|
---|
| 17 | public HistogramContent(IHistogramLogic theHistogramLogic)
|
---|
| 18 | {
|
---|
| 19 | histogramLogic = theHistogramLogic;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
[10245] | 22 | public HistogramContent(HistogramContent content, Cloner cloner)
|
---|
| 23 | : base(content, cloner)
|
---|
| 24 | {
|
---|
| 25 |
|
---|
| 26 | }
|
---|
| 27 |
|
---|
[10252] | 28 | public IHistogramLogic HistogramLogic
|
---|
| 29 | {
|
---|
| 30 | get
|
---|
| 31 | {
|
---|
| 32 | return histogramLogic;
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[10245] | 36 | public static new Image StaticItemImage
|
---|
| 37 | {
|
---|
[10313] | 38 | get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
|
---|
[10245] | 39 | }
|
---|
| 40 |
|
---|
| 41 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
| 42 | {
|
---|
| 43 | return new HistogramContent(this, cloner);
|
---|
| 44 | }
|
---|
[10242] | 45 | }
|
---|
| 46 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.