home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xt-examples / part03 / BarDisplaP.h next >
C/C++ Source or Header  |  1990-11-04  |  2KB  |  65 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 BARDISPLAYP_H
  26. #define BARDISPLAYP_H
  27.  
  28. /* Include the public header file for BarDisplay */
  29. #include "BarDisplay.h"
  30.  
  31. /* Include the private header file for GraphDisplay */
  32. #include "GraphDispP.h"
  33.  
  34. /* Define the BarDisplay instance part */
  35. typedef struct {
  36.     Dimension    space;            /* Space between bars */
  37.     Dimension    default_graph_width;    /* Default width */
  38.     String    format;            /* For displaying value */
  39. } BarDisplayPart;
  40.  
  41. /* Define the full instance record */
  42. typedef struct _BarDisplayRec {
  43.     ObjectPart        object;
  44.     GraphDisplayPart    graphDisplay;
  45.     BarDisplayPart    barDisplay;
  46. } BarDisplayRec;
  47.  
  48. /* Define class part structure */
  49. typedef struct {
  50.     XtPointer        extension;
  51. } BarDisplayClassPart;
  52.  
  53. /* Define the full class record */
  54. typedef struct _BarDisplayClassRec {
  55.     ObjectClassPart        object_class;
  56.     GraphDisplayClassPart    graphDisplay_class;
  57.     BarDisplayClassPart        barDisplay_class;
  58. } BarDisplayClassRec, *BarDisplayObjectClass;
  59.  
  60. /* External definition for class record */
  61. extern BarDisplayClassRec barDisplayClassRec;
  62.  
  63. /* End of preprocessor directives */
  64. #endif /* BARDISPLAYP_H */
  65.