home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / SOURCE / XDISPLAY.H < prev    next >
C/C++ Source or Header  |  1996-06-04  |  763b  |  30 lines

  1. /* Copyright 1991 Digital Equipment Corporation.
  2. ** All Rights Reserved.
  3. *****************************************************************/
  4. /*     $Id: xdisplaylist.h,v 1.2 1994/12/08 23:40:35 duchier Exp $     */
  5.  
  6. #ifdef X11
  7.  
  8. #include "list.h"
  9.  
  10. #define xDefaultFont -1
  11. #define xDefaultLineWidth -1
  12.  
  13. typedef enum {DRAW_LINE, DRAW_RECTANGLE, DRAW_ARC, DRAW_POLYGON,
  14.           FILL_RECTANGLE, FILL_ARC, FILL_POLYGON,
  15.               DRAW_STRING, DRAW_IMAGE_STRING} Action;
  16.  
  17.  
  18. extern ListHeader * x_display_list ();
  19. extern void x_set_gc ();
  20. extern void x_record_line ();
  21. extern void x_record_arc ();
  22. extern void x_record_rectangle ();
  23. extern void x_record_string ();
  24. extern void x_record_polygon ();
  25. extern void x_refresh_window ();
  26. extern void x_free_display_list ();
  27.  
  28. #endif
  29.  
  30.