/*****************************************************************/ /* */ /* Copyright (c) Quinn-Curtis, 1991, 1992 */ /* */ /* Filename: RTTEXT.H */ /* Revision: 3.0 */ /* Date: 2/3/92 */ /* */ /* Description: -Routine for set up and update of real-time */ /* graphics text routines */ /* Functions: */ /* */ /*****************************************************************/ #ifdef __cplusplus extern "C" { #endif #ifndef realtype #include "rtstdhdr.h" #include "rtgsubs.h" #endif void rtdrawtextwindow(rtstattype *win, int uflag); void rtsetuptext(rtstattype *win, realtype *lalarm, realtype *halarm, realtype *stpnt, int decs, char *tgtitle, tagtype *tgunits, tagtype *tgtags, tagtype *halarms, tagtype *lalarms,tagtype *nalarms, messagetype *message, int nt,int *lcolor,int *farray); void rtupdatetext(rtstattype *win, realtype *yy); void rtdrawannunwindow(rtstattype *win, int uflag); void rtsetupannun(rtstattype *win, realtype *lalarm, realtype *halarm, realtype *stpnt, int decs, char *tgtitle, tagtype *tgunits, tagtype *tgtags, tagtype *halarms, tagtype *lalarms, tagtype *nalarms, int numrows,int numcolumns, int *lcolor, int *farray); void rtupdateannun(rtstattype *win, realtype *yy); void rtdrawpanelwindow(rtstattype *win, int uflag); void rtsetuppanel(rtstattype *win, int decs, char *tgtitle, tagtype *tgunits, tagtype *tgtags, int numrows, int numcolumns, int fontsize, int *lcolor); void rtupdatepanel(rtstattype *win, realtype *yy); void rtdrawgtextwindow(rtstattype *win, int uflag); void rtsetupgtext(rtstattype *win, char *tgtitle, messagetype *tgmessage, int numrows, int numcolumns, int *lcolor, int *lfill); void rtupdategtext(rtstattype *win, messagetype *tgmessage, int *lcolor, int *lfill); int rtgettextchannel(rtstattype *win, int xp, int yp); int rtgetannunchannel(rtstattype *win, int xp, int yp); int rtgetpanelchannel(rtstattype *win, int xp, int yp); int rtgetgtextchannel(rtstattype *win, int xp, int yp); #ifdef __cplusplus } #endif