/* $Id: globals.h,v 1.4 2006/03/03 00:26:15 pturner Exp $ * * Global variables for gr * */ #ifndef __GLOBALS_H #define __GLOBALS_H #include "defines.h" /* * following for hardcopy device drivers */ extern int noerase; extern char ps_prstr[], mif_prstr[], gd_prstr[], noprint[]; extern int maxparms, maxfunc; /* declared in pars.y - symbol table lengths */ extern symtab_entry key[]; extern int density_flag; /* temp, for density plots, defined in * plotone.c */ extern int quality_flag; /* temp, for quality plots, defined in * plotone.c */ #ifdef MAIN char docname[512] = "NoName.acegr"; char workingdir[512]; int debuglevel = 0; int maxplot = MAXPLOT; int maxarr = MAXARR; int maxgraph = MAXGRAPH; int maxcolors = MAXCOLORS; int maxboxes = MAXBOXES; int maxlines = MAXLINES; int maxstr = MAXSTR; int dirtyflag = 0; /* has the current page been modified? */ int ptofile = 0; /* flag to indicate destination of hardcopy * output, ptofile = 0 means print to printer * non-zero print to file */ char printstr[1024] = "pout.dat";/* hardcopy to this file */ double *ax, *bx, *cx, *dx; /* scratch arrays used in scanner */ int hardcopyflag = FALSE; /* TRUE if printing out a hardcopy */ int inplotter = FALSE; /* TRUE if plotting the current graph */ int logwindow = FALSE; /* TRUE if results are displayed in the log window */ int showdefault = TRUE; /* display the default graph */ int labeldefault = FALSE; /* label the default graph */ char currentdir[1024]; /* current directory */ char acegrdir[1024]; /* location of ACE/gr home directory */ char help_file[256]; /* location of helpfile, relative to acegrdir */ char help_viewer[256]; /* HTML viewer */ int domodal; /* Make dialogs close on accept */ int nonlflag = 0; /* Turn on the non-linear curve fitting module */ int use_help = 2; /* experimenting with various help systems */ int canvasw = 800; /* drawing area width & height */ int canvash = 700; /* * named pipes */ int timer_delay = 1000; /* timer */ int named_pipe; /* true if named pipe is active */ char pipe_name[512]; /* path to named pipe */ /* * scroll amount */ int scrolling_islinked = 0; /* linked scroll */ double scrollper = 0.05; /* scroll fraction */ double shexper = 0.05; /* expand/shrink fraction */ int linked_zoom = 0; /* when zooming, apply to all graphs */ char plfile[MAX_STRING_LENGTH]; /* load parameters file name */ char fname[MAX_STRING_LENGTH]; /* last data file read */ int device; /* graphics device */ int tdevice = TDEV; /* default devices */ int hdevice = HDEV; int use_colors; /* number of bitplanes */ int monomode = 0; /* set mono mode */ int invert = 0; /* use GXxor or GXinvert for xor'ing */ int backingstore = 0; /* do backing store if requested */ int redraw_now = 0; /* hack for no refresh on startup */ int autoscale_onread = 0; /* autoscale after reading data from fileswin.c */ int allow_refresh = 0; /* if no backing store, then redraw to refresh */ int use_xvertext = 0; /* Use xvertext routines to draw text in xvlib.c */ int erronread = FALSE; /* in startup code was there an error on * reading a data file, assume not */ int noask = FALSE; /* if TRUE, assume yes for everything (dangerous) */ int readimage = FALSE; /* If true read an image */ int imagex; /* x in pixels of the location of the image */ int imagey; /* y in pixels of the location of the image */ char image_filename[MAX_STRING_LENGTH]; /* image file name */ char progname[MAX_STRING_LENGTH]; /* our name */ int gflag = FALSE; /* hacks for generic graphics drivers */ char gfile[MAX_STRING_LENGTH]; /* used if gflag set to true on command line */ char resfile[MAX_STRING_LENGTH];/* results to file resfile */ FILE *resfp; /* file for results */ int inwin = FALSE; /* true if running X */ int auto_redraw = TRUE; /* if true, redraw graph each time action is * performed */ int force_redraw = 0; /* if no auto draw and re-draw pressed */ char buf[1024]; /* a string used here and there */ char *curprint; /* the default printer */ int verify_action = 0; /* request verification of actions if TRUE */ int allow_dc = 1; /* allow double click ops */ defaults grdefaults; /* default properties */ /* graph definition */ graph *g; int cg = 0; /* the current graph */ /* region definition */ region rg[MAXREGION]; int nr = 0; /* the current region */ plotstr *pstr; /* strings */ boxtype *boxes; /* boxes */ linetype *lines; /* lines */ polytype *polys; /* polylines */ /* lines and boxes flags */ int box_color = 1; int box_lines = 1; int box_linew = 1; int box_fill = NONE; int box_fillpat = 1; int box_fillcolor = 1; int box_loctype = VIEW; int line_color = 1; int line_arrow = 0; int line_lines = 1; int line_linew = 1; int line_loctype = VIEW; double line_asize = 1.0; int line_atype = 0; /* default string parameters */ int string_color = 1; int string_linew = 1; int string_font = 4; int string_rot = 0; int string_just = 0; int string_fill = NONE; int string_fillpat = 1; int string_fillcolor = 1; int string_loctype = VIEW; double string_size = 1.0; int curset, curaxis; int focus_policy = CLICK; int use_defaultcmap = 1; int revflag = 0; int draw_focus_flag = ON; int graph_focus = 0; int slice_grid = 0; int slice_graph = 0; int slice_setno = 0; int slicepath_setno = 0; int slice_load = 0; int slice_npts = 0; int slice_first = TRUE; int page_layout = FREE; plotstr timestamp; /* timestamp */ /* * for the status popup */ int cur_statusitem = SETS; /* * used in the parser */ int cursource = DISK, curtype = XY; int format_types[] = { DECIMAL, EXPONENTIAL, POWER, GENERAL, DDMMYY, MMDDYY, MMYY, MMDD, MONTHDAY, DAYMONTH, MONTHS, MONTHL, DDMONTHSYYHHMMSS, DAYOFWEEKS, DAYOFWEEKL, DAYOFYEAR, HMS, HH, MMDDHMS, MMDDYYHMS, DEGREESLON, DEGREESMMLON, DEGREESMMSSLON, MMSSLON, DEGREESLAT, DEGREESMMLAT, DEGREESMMSSLAT, MMSSLAT, 0}; Isolparms curip; int hasmissing; double missing; #endif #ifndef MAIN extern int hasmissing; extern double missing; extern char *open_err_msg; extern char version[]; extern char docname[]; extern char workingdir[]; extern int debuglevel; extern int inwin; /* true if running X */ extern int ispipe; /* true if reading from stdin */ extern int maxarr, maxplot, maxgraph, maxcolors; extern int maxboxes; extern int maxlines; extern int maxstr; extern int dirtyflag; /* has the current page been modified? */ extern int ptofile; /* set to TRUE if printing to a file */ extern char printstr[]; /* print to this file */ extern int logwindow; /* TRUE if results are displayed in the log window */ extern char plfile[], psfile[]; extern char resfile[]; extern FILE *resfp; extern int device, tdevice, hdevice; extern int hardcopyflag; extern int use_colors; /* number of bitplanes */ extern int monomode; /* set mono mode */ extern int invert; /* use GXxor or GXinvert for xor'ing */ extern int backingstore; /* do backing store if requested */ extern int redraw_now; /* hack for no refresh on startup */ extern int autoscale_onread; /* autoscale after reading data from fileswin.c */ extern int allow_refresh; /* if no backingstore, then redraw to refresh */ extern int use_xvertext; /* Use xvertext routines to draw text in xvlib.c */ extern int noask; /* if TRUE, assume yes for everything (dangerous) */ extern int readimage; /* If true read an image */ extern int readimage; /* If true read an image */ extern int imagex; /* x in pixels of the location of the image */ extern int imagey; /* y in pixels of the location of the image */ extern char image_filename[]; /* image file name */ extern int inplotter; extern int showdefault; extern int labeldefault; extern char currentdir[]; /* current directory */ extern char acegrdir[]; /* location of ACE/gr home directory */ extern char help_file[]; /* location of helpfile, relative to acegrdir */ extern char help_viewer[]; /* help viewer */ extern int domodal; /* Make dialogs close on accept */ extern int nonlflag; /* Turn on the non-linear curve fitting module */ extern int use_help; /* experimenting with various help systems */ extern int canvasw; /* canvas dimensions */ extern int canvash; extern int timer_delay; /* timer */ extern int named_pipe; /* true if named pipe is active */ extern char pipe_name[]; /* path to named pipe */ extern int scrolling_islinked; /* linked scroll */ extern double scrollper; /* scroll fraction */ extern double shexper; /* expand/shrink fraction */ extern int linked_zoom; /* when zooming, apply to all graphs */ extern double errbarper; extern char fname[]; extern int nsets; extern char buf[]; extern char *curprint; extern int verify_action; /* request verification of actions if TRUE */ extern int allow_dc; /* allow double click ops */ extern double *ax, *bx, *cx, *dx; extern defaults grdefaults; /* default properties */ /* graph definition */ extern graph *g; extern int cg; /* region definition */ extern region rg[]; extern int nr; extern plotstr *pstr; /* strings */ extern boxtype *boxes; /* boxes */ extern linetype *lines; /* lines */ extern int box_color; extern int box_lines; extern int box_linew; extern int box_fill; extern int box_fillpat; extern int box_fillcolor; extern int box_loctype; extern int line_color; extern int line_arrow; extern int line_lines; extern int line_linew; extern int line_loctype; extern double line_asize; extern int line_atype; extern int string_color; extern int string_linew; extern int string_font; extern int string_rot; extern int string_just; extern int string_fill; extern int string_fillpat; extern int string_fillcolor; extern int string_loctype; extern double string_size; extern int auto_redraw; extern int force_redraw; extern double charsize, xlibcharsize; /* declared in draw.c and xlib.c resp. */ extern int curset, curaxis; extern int focus_policy; extern int draw_focus_flag; extern int graph_focus; extern int use_defaultcmap; extern int revflag; extern plotstr timestamp; /* timestamp */ extern int page_layout; extern int slice_grid; extern int slice_graph; extern int slice_setno; extern int slicepath_setno; extern int slice_load; extern int slice_npts; extern int slice_first; extern int cur_statusitem; extern int cursource, curtype; extern int format_types[]; extern Isolparms curip; #endif #endif /* __GLOBALS_H */