/*****************************************************************/ /* */ /* Copyright (c) Quinn-Curtis, 1991, 1992 */ /* */ /* Filename: RTGCOMMO.H */ /* Revision: 3.0 */ /* Date: 2/3/92 */ /* */ /* Description: -Routine for updating any R-T display for */ /* a single sample interval */ /* -Routines for determining if a point is within */ /* a R-T window, or channel */ /* */ /*****************************************************************/ #ifdef __cplusplus extern "C" { #endif #ifndef realtype #include "rtstdhdr.h" #include "rtgsubs.h" #endif void rtupdatedisplay(rtstattype *win, realtype *yy); int rtfindmousewin(rtstatpntr *rtstat, int start, int stop, int x, int y); int rtgetwindowchannel(rtstatpntr *rtstat, int startwin, int stopwin, int xp, int yp, int *winnum); void rtdrawsliderwindow(rtstattype *win, int uflag); void rtsetupslider(rtstattype *win, int decs, char *tgtitle, tagtype *tgunits, tagtype *tgtags, int numrows, int numcolumns, realtype *startval, realtype *min, realtype *max, realtype *increment, int fontsize, int *lcolor); int rtgetsliderstate(rtstattype *win, int xp, int yp, realtype *v); int rtgetslidervalues(rtstattype *win, int channel, realtype *yy); void rtdrawwindow(rtstattype *w, int uflag); void rthardcopyoutput(rtstatpntr *rtstat,int start, int stop); void rthardcopyreturn(rtstatpntr *rtstat, int start, int stop, int gdriver, int gmode,int prnport, int orient, int formfeed, char *filename, int redrawcrt, void (*userfunction) (void)); #ifdef __cplusplus } #endif