home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / caribbeanstud / vms_drawing.h < prev    next >
C/C++ Source or Header  |  1997-12-07  |  2KB  |  36 lines

  1. /*
  2.  * $XConsortium: Drawing.h,v 1.3 89/10/03 08:37:53 rws Exp $
  3.  *
  4.  * Copyright 1988 by the Massachusetts Institute of Technology
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted, provided 
  8.  * that the above copyright notice appear in all copies and that both that 
  9.  * copyright notice and this permission notice appear in supporting 
  10.  * documentation, and that the name of M.I.T. not be used in advertising
  11.  * or publicity pertaining to distribution of the software without specific, 
  12.  * written prior permission. M.I.T. makes no representations about the 
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * The X Window System is a Trademark of MIT.
  17.  *
  18.  * The interfaces described by this header file are for miscellaneous utilities
  19.  * and are not part of the Xlib standard.
  20.  */
  21.  
  22. #ifndef _XMU_DRAWING_H_
  23. #define _XMU_DRAWING_H_
  24. extern "C" {
  25. void XmuDrawRoundedRectangle(Display * _dpy, Window win, GC _gc, int x, int y,
  26.                              int width, int delta, int rh, int rw);
  27. void XmuFillRoundedRectangle(Display * _dpy, Window win, GC _gc, int x, int y,
  28.                              int width, int delta, int rh, int rw);
  29. void XmuDrawLogo();
  30. Pixmap XmuCreatePixmapFromBitmap();
  31. Pixmap XmuCreateStippledPixmap();
  32. Pixmap XmuLocateBitmapFile();
  33. int XmuReadBitmapData(), XmuReadBitmapDataFromFile();
  34. }
  35. #endif /* _XMU_DRAWING_H_ */
  36.