00001 #ifndef _WINC_COLORBAR
00002 #define _WINC_COLORBAR
00003
00004 #include <WXP/ColorFill.h>
00005 #include <WXP/Enhance.h>
00006 #include <WXP/Plot.h>
00007 #include <WXP/Range.h>
00008
00009 namespace WXP {
00010 class ColorBar {
00011 int orient;
00012 public:
00013
00014 ColorBar();
00015 int draw( Plot &plot, const char *loc, ColorFill &fill, Range range );
00016 int draw( Plot &plot, const char *loc, ColorFill &fill );
00017 int draw( Plot &plot, const char *loc, Enhance &enh );
00018 };
00019 }
00020 #endif