RAIDA  1.9.0
IMarkerStyle.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_IMARKERSTYLE_H
8 #define AIDA_IMARKERSTYLE_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 #include <vector>
17 
18 #include "AIDA/IBrushStyle.h"
19 
20 namespace AIDA {
21 
28 class IMarkerStyle : virtual public IBrushStyle {
29 
30 public:
32  virtual ~IMarkerStyle() { /* nop */; }
33 
37  virtual std::vector<std::string> availableShapes() const = 0;
38 
42  virtual std::string shape() const = 0;
43 
48  virtual bool setShape(const std::string & shape) = 0;
49 }; // class
50 } // namespace AIDA
51 #endif /* ifndef AIDA_IMARKERSTYLE_H */
virtual bool setShape(const std::string &shape)=0
Set current marker shape, e.g.
Style for all markers (histo representation, legend box etc.)
Definition: IMarkerStyle.h:28
virtual ~IMarkerStyle()
Destructor.
Definition: IMarkerStyle.h:32
Superclass for anything which can be drawn in different colours and with (possibly) transparent/opaqu...
Definition: IBrushStyle.h:29
virtual std::string shape() const =0
Get current marker shape.
virtual std::vector< std::string > availableShapes() const =0
Get list of shapes available in this implementation.