RAIDA  1.9.0
IPlotterFactory.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_IPLOTTERFACTORY_H
8 #define AIDA_IPLOTTERFACTORY_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 namespace AIDA {
18 
19 class IAxisStyle;
20 class IDataStyle;
21 class IFillStyle;
22 class ILineStyle;
23 class IMarkerStyle;
24 class IPlotter;
25 class IPlotterStyle;
26 class ITextStyle;
27 class ITitleStyle;
28 
36 
37 public:
39  virtual ~IPlotterFactory() { /* nop */; }
40 
49  virtual IPlotter * create(const std::string & name = "") = 0;
50 
56  virtual IMarkerStyle * createMarkerStyle() = 0;
57 
58  virtual ITextStyle * createTextStyle() = 0;
59 
60  virtual ILineStyle * createLineStyle() = 0;
61 
62  virtual IFillStyle * createFillStyle() = 0;
63 
68  virtual IDataStyle * createDataStyle() = 0;
69 
70  virtual IAxisStyle * createAxisStyle() = 0;
71 
72  virtual ITitleStyle * createTitleStyle() = 0;
73 
78  virtual IPlotterStyle * createPlotterStyle() = 0;
79 }; // class
80 } // namespace AIDA
81 #endif /* ifndef AIDA_IPLOTTERFACTORY_H */
User level interface to plotter style.
Definition: IPlotterStyle.h:34
virtual ~IPlotterFactory()
Destructor.
Definition: IPlotterFactory.h:39
Style for all markers (histo representation, legend box etc.)
Definition: IMarkerStyle.h:28
virtual IMarkerStyle * createMarkerStyle()=0
Create various basic styles.
Factory for plotter and styles.
Definition: IPlotterFactory.h:35
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
User level interface to plotter.
Definition: IPlotter.h:40
Style for the part of the scene representing the data (then histograms, functions, data point sets).
Definition: IDataStyle.h:31
Style for the &quot;title scene part&quot; of a plotting region or for the global title of a plotting page...
Definition: ITitleStyle.h:29
Style for all filled areas (boxes, regions, histograms, etc.)
Definition: IFillStyle.h:28
virtual IPlotterStyle * createPlotterStyle()=0
Create a global plotter style.
Style for all text (e.g.
Definition: ITextStyle.h:28
virtual IPlotter * create(const std::string &name="")=0
virtual IDataStyle * createDataStyle()=0
Create various &quot;scene part&quot; styles.