/*****************************************************************/ /* Copyright (c) Quinn-Curtis, 1991, 1992 */ /* */ /* Filename: RTBARGR.H */ /* Revision: 3.0 */ /* Date: 2/3/92 */ /* */ /* Description: -Routines for Horizontal & Vertical Bars */ /* */ /*****************************************************************/ #ifdef __cplusplus extern "C" { #endif #ifndef realtype #include "rtstdhdr.h" #include "rtgsubs.h" #endif void rthbargraphalarms(rtstattype *win, realtype la,realtype ha,realtype sp); void rtdrawhbarwindow(rtstattype *win, int uflag); void rtsetuphbargraph(rtstattype *win, realtype minx, realtype maxx, realtype centerpoint, realtype lalarm, realtype halarm, realtype stpnt, int decs, char *bgtitle, char *bgunits, tagtype *bgtags,alarmstrtype *alarmstr, int nt, int *lcolor, int *lfill); void rtvbargraphalarms(rtstattype *win, realtype la, realtype ha, realtype sp); void rtdrawvbarwindow(rtstattype *win, int uflag); void rtsetupvbargraph(rtstattype *win, realtype miny, realtype maxy, realtype centerpoint,realtype lalarm, realtype halarm, realtype stpnt, int decs, char *bgtitle, char *bgunits, tagtype *bgtags, alarmstrtype *alarmstr, int nt, int *lcolor, int *lfill); void rtdrawpidbarwindow(rtstattype *win, int uflag); void rtsetuppidbargraph(rtstattype *win, realtype miny1, realtype maxy1,realtype cp1, realtype miny2, realtype maxy2, realtype cp2, realtype lalarm1, realtype halarm1, realtype lalarm2, realtype halarm2, int decs1, int decs2, char *bgtitle, char *bgunits1, char *bgunits2, tagtype *bgtags, alarmstrtype *alarmstr1, alarmstrtype *alarmstr2, int *lcolor, int *lfill); void rtupdatehbargraph(rtstattype *win, realtype *yy); void rtupdatevbargraph(rtstattype *win, realtype *yy); void rtupdatepidbargraph(rtstattype *win, realtype *yy); int rtgethbargraphchannel(rtstattype *win, int xp, int yp); int rtgetvbargraphchannel(rtstattype *win, int xp, int yp); #ifdef __cplusplus } #endif