Subversion Repositories f9daq

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef _HDRAW_H_
  2. #define _HDRAW_H_
  3. #include "toolbox.h"
  4.  
  5. typedef struct {
  6.   ColorMapEntry *array;
  7.   int numberofColors;
  8.   int HiColor;
  9. } HColorMap;
  10.  
  11. HColorMap *GetColorMapPtr(void);
  12. int InitColors(void);
  13. int RangeColors(double min, double max);
  14.  
  15. int H3DDrawSliceXY(int histogram,int slice,int panel, int control, int *plothandle);
  16. int H2DDraw(int histogram,int panel, int control, int *plothandle);
  17. int H1DDraw(int histogram,int panel, int control, int *plothandle);
  18. int EstimatedFinish(int panel, int slider,int txt, time_t start, double fraction);
  19. #endif _HDRAW_H_
  20.