/*
 * Copyright (1987) Jeff Elman.  University of California, San Diego
 * This software may be redistributed without charge; this notice
 * should be preserved.
 */
/*
 * box.h
 *
 * specific data required for window repaints.
 *
 */

struct boxinfo {
	int what;	/* output/hidden */
	int boxwidth;	/* sizes of individual boxes */
	int boxheight;
	int lwidth;	/* # boxes wide */
	int lheight;	/* # boxes high */
	char name[32];
	int bitwidth;	/* # bits wide */
	int bitheight;	/* # bits high */
	int mapx;	/* x,y offset of bitmap */
	int mapy;
	char *map;
	char **rowlabels;
	char **collabels;
};

#define	BOX_HID		1
#define BOX_OUT		2

#define BOX_NAMEHEIGHT	16
#define BOX_WIDTH	24
#define	BOX_HEIGHT	24
