/* Time-stamp: <97/01/17 12:44:45 john> */

/* 
# Purpose: exports for <a href="#graphics.c">graphics.c</a>
 */

extern struct entry *all_graphics;

/* return all the graphics specifications for this sort of object
 */

extern struct entry *get_graphics(struct entry *object,
				  struct style *style);

/* return a graphic property of the object, or for that sort of object
   if the individual object doesn't specify anything */

extern char *get_graphic(struct entry *object,
			 char *property,
			 struct style *style);

extern char *get_colour(struct entry *object,
			char *colourspace,
			struct style *style);

extern struct entry *get_graphics_by_type(char *type);
extern char *get_type_generic_attribute(char *type, char *attribute);

/* end of graphics.h */
