home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xt-examples / part03 / GraphDispP.h < prev    next >
C/C++ Source or Header  |  1990-11-04  |  3KB  |  73 lines

  1. /***********************************************************
  2. Copyright 1990 by Digital Equipment Corporation, Maynard, Massachusetts.
  3.  
  4.                         All Rights Reserved
  5.  
  6. Permission to use, copy, modify, and distribute these examples for any
  7. purpose and without fee is hereby granted, provided that the above
  8. copyright notice appear in all copies and that both that copyright
  9. notice and this permission notice appear in supporting documentation,
  10. and that the name of Digital not be used in advertising or publicity
  11. pertaining to distribution of the software without specific, written
  12. prior permission.
  13.  
  14. DIGITAL AND THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
  15. SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  16. FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT
  17. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  18. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  19. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  20. OR PERFORMANCE OF THIS SOFTWARE.
  21.  
  22. ******************************************************************/
  23.  
  24. /* Make it safe to include this file more than once. */
  25. #ifndef GRAPHDISPLAYP_H
  26. #define GRAPHDISPLAYP_H
  27.  
  28. /* Include the public header file for GraphDisplay */
  29. #include "GraphDispl.h"
  30.  
  31. /* GraphDisplay is derived from Object, so no need to include the
  32.    superclass private header file. */
  33.  
  34. /* Define the GraphDisplay instance part */
  35. typedef struct {
  36.     Pixel    foreground;    /* Foreground pixel value */
  37.     XFontStruct    *font;        /* Font to display in */
  38.     GC        gc;        /* Graphics context for displaying */
  39. } GraphDisplayPart;
  40.  
  41. /* Define the full instance record */
  42. typedef struct _GraphDisplayRec {
  43.     ObjectPart        object;
  44.     GraphDisplayPart    graphDisplay;
  45. } GraphDisplayRec;
  46.  
  47. /* Define new type for the compute_size method */
  48. typedef void (*ComputeSizeProc)();
  49.     /* GraphWidget    w; */
  50.  
  51. /* Define class part structure */
  52. typedef struct {
  53.     ComputeSizeProc    compute_size;
  54.     XtExposeProc    expose;
  55.     XtPointer        extension;
  56. } GraphDisplayClassPart;
  57.  
  58. /* Define the full class record */
  59. typedef struct _GraphDisplayClassRec {
  60.     ObjectClassPart        object_class;
  61.     GraphDisplayClassPart    graphDisplay_class;
  62. } GraphDisplayClassRec, *GraphDisplayObjectClass;
  63.  
  64. /* External definition for class record */
  65. extern GraphDisplayClassRec graphDisplayClassRec;
  66.  
  67. /* Inheritance constant for compute_size method */
  68.  
  69. #define InheritComputeSize ((ComputeSizeProc) _XtInherit)
  70.  
  71. /* End of preprocessor directives */
  72. #endif /* GRAPHDISPLAYP_H */
  73.