WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
ColorBar.h
1#ifndef _WINC_COLORBAR
2#define _WINC_COLORBAR
3
4#include <WXP/ColorFill.h>
5#include <WXP/Enhance.h>
6#include <WXP/Range.h>
7
8namespace WXP {
9 struct ColorBar {
10 int type;
11 ColorFill fill;
12 Enhance enh;
13 int orient;
14 Range range;
15 char loc[10];
16
17 ColorBar();
18 int init();
19 int setParam( const char *str );
20 int setLocate( const char *str );
21 int setFill( ColorFill &rfill );
22 int setEnhance( Enhance &renh );
23 int setRange( Range &rrange );
24 int print();
25
26 enum Type {
27 FILL,
28 ENHANCE
29 };
30 };
31}
32#endif
This class sets up color fill parameters.
Definition: ColorFill.h:8
This class creates and accesses satellite enhancement files.
Definition: Enhance.h:7
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This class holds data to plot a color bar.
Definition: ColorBar.h:9
This struct defines a simple range of values.
Definition: Range.h:5