RAIDA  1.9.0
IDataStyle.h
1 // -*- C++ -*-
2 // AID-GENERATED
3 // =========================================================================
4 // This class was generated by AID - Abstract Interface Definition
5 // DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it.
6 // =========================================================================
7 #ifndef AIDA_IDATASTYLE_H
8 #define AIDA_IDATASTYLE_H 1
9 
10 // This file is part of the AIDA library
11 // Copyright (C) 2002 by the AIDA team. All rights reserved.
12 // This library is free software and under the terms of the
13 // GNU Library General Public License described in the LGPL.txt
14 
15 #include "AIDA/IBaseStyle.h"
16 
17 namespace AIDA {
18 
19 class IFillStyle;
20 class ILineStyle;
21 class IMarkerStyle;
22 
31 class IDataStyle : virtual public IBaseStyle {
32 
33 public:
35  virtual ~IDataStyle() { /* nop */; }
36 
41  virtual ILineStyle & lineStyle() = 0;
42 
43  virtual IMarkerStyle & markerStyle() = 0;
44 
45  virtual IFillStyle & fillStyle() = 0;
46 
50  virtual bool setLineStyle(const ILineStyle & lineStyle) = 0;
51 
52  virtual bool setMarkerStyle(const IMarkerStyle & markerStyle) = 0;
53 
54  virtual bool setFillStyle(const IFillStyle & fillStyle) = 0;
55 }; // class
56 } // namespace AIDA
57 #endif /* ifndef AIDA_IDATASTYLE_H */
Style for all markers (histo representation, legend box etc.)
Definition: IMarkerStyle.h:28
virtual bool setLineStyle(const ILineStyle &lineStyle)=0
Set various basic style on the data style.
Superclass for all styles in AIDA Plotting package.
Definition: IBaseStyle.h:38
Style for all lines (axis lines, legend box outlines, etc.)
Definition: ILineStyle.h:28
Style for the part of the scene representing the data (then histograms, functions, data point sets).
Definition: IDataStyle.h:31
Style for all filled areas (boxes, regions, histograms, etc.)
Definition: IFillStyle.h:28
virtual ~IDataStyle()
Destructor.
Definition: IDataStyle.h:35
virtual ILineStyle & lineStyle()=0
Return various styles that may be used to customize the data representation.