/*****************************************************************/ /* */ /* Copyright (c) Quinn-Curtis, 1991, 1992 */ /* */ /* Filename: RTMETER.H */ /* Revision: 3.0 */ /* Date: 2/3/92 */ /* */ /* Description: -Routine for set up and update of needle, */ /* arc and pie meters */ /* */ /*****************************************************************/ #ifdef __cplusplus extern "C" { #endif #ifndef realtype #include "rtstdhdr.h" #include "rtgsubs.h" #endif void rtdrawmetercommonwindow(rtstattype *win, int uflag); void rtsetupmeter(rtstattype *win, realtype miny, realtype maxy, realtype cpx, realtype cpy, realtype radius,int start, int stop, realtype lalarm, realtype halarm, realtype stpnt, int decs, char *mtitle, char *munits,tagtype *mtags, alarmstrtype *alarmstr, int nt,int segs, int nthtic, int *lcolor, int *lfill); void rtupdatemeter(rtstattype *win, realtype *yy); void rtsetupclock(rtstattype *win, char *clocktitle, int nt, int segs, int nthtic, int *lcolor, int *lfill); void rtupdateclock(rtstattype *win, realtype *yy); void rtsetuppiemeter(rtstattype *win, realtype miny, realtype maxy, realtype cp, realtype cpx, realtype cpy, realtype radius, int start, int stop, realtype lalarm, realtype halarm, realtype stpnt, int decs, char *mtitle, char *munits, tagtype *mtags, alarmstrtype *alarmstr, int nt,int segs, int nthtic, int *lcolor, int *lfill); void rtupdatepiemeter(rtstattype *win, realtype *yy); void rtsetuparcmeter(rtstattype *win, realtype miny, realtype maxy, realtype cp, realtype cpx, realtype cpy, realtype radius, int start, int stop, realtype lalarm, realtype halarm, realtype stpnt, int decs, char *mtitle, char *munits, tagtype *mtags, alarmstrtype *alarmstr, int nt,int segs, int nthtic, int *lcolor, int *lfill); void rtupdatearcmeter(rtstattype *win, realtype *yy); void rtdrawclockwindow(rtstattype *win, int uflag); void rtdrawmeterwindow(rtstattype *win, int uflag); void rtdrawarcmeterwindow(rtstattype *win, int uflag); void rtdrawpiemeterwindow(rtstattype *win, int uflag); int rtgetmeterchannel(rtstattype *win, int xp, int yp); #ifdef __cplusplus } #endif