00001
00002
00003
00004
00005
00006
00007 #ifndef AIDA_IBRUSHSTYLE_H
00008 #define AIDA_IBRUSHSTYLE_H 1
00009
00010
00011
00012
00013
00014
00015 #include <string>
00016 #include <vector>
00017
00018 #include "AIDA/IBaseStyle.h"
00019
00020 namespace AIDA {
00021
00029 class IBrushStyle : virtual public IBaseStyle {
00030
00031 public:
00033 virtual ~IBrushStyle() { ; }
00034
00038 virtual std::vector<std::string> availableColors() const = 0;
00039
00043 virtual std::string color() const = 0;
00044
00048 virtual double opacity() const = 0;
00049
00054 virtual bool setColor(const std::string & newColor) = 0;
00055
00061 virtual bool setOpacity(double newOpacity) = 0;
00062 };
00063 };
00064 #endif