RAIDA  1.9.0
IAxisStyle.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_IAXISSTYLE_H
8 #define AIDA_IAXISSTYLE_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 <string>
16 
17 #include "AIDA/IBaseStyle.h"
18 
19 namespace AIDA {
20 
21 class ILineStyle;
22 class ITextStyle;
23 
32 class IAxisStyle : virtual public IBaseStyle {
33 
34 public:
36  virtual ~IAxisStyle() { /* nop */; }
37 
38  virtual ILineStyle & lineStyle() = 0;
39 
40  virtual ITextStyle & tickLabelStyle() = 0;
41 
42  virtual ITextStyle & labelStyle() = 0;
43 
44  virtual bool setlineStyle(const ILineStyle & lineStyle) = 0;
45 
46  virtual bool setTickLabelStyle(const ITextStyle & tickLabelStyle) = 0;
47 
48  virtual bool setLabelStyle(const ITextStyle & labelStyle) = 0;
49 
50  virtual void setLabel(const std::string & label) = 0;
51 }; // class
52 } // namespace AIDA
53 #endif /* ifndef AIDA_IAXISSTYLE_H */
Superclass for all styles in AIDA Plotting package.
Definition: IBaseStyle.h:38
Style for the part of the scene representing the data (then histograms, functions, data point sets).
Definition: IAxisStyle.h:32
Style for all lines (axis lines, legend box outlines, etc.)
Definition: ILineStyle.h:28
Style for all text (e.g.
Definition: ITextStyle.h:28
virtual ~IAxisStyle()
Destructor.
Definition: IAxisStyle.h:36