home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xt-examples / part03 / GraphP.h < prev    next >
C/C++ Source or Header  |  1990-11-04  |  2KB  |  67 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 GRAPHP_H
  26. #define GRAPHP_H
  27.  
  28. /* Include the public header file for Graph */
  29. #include "Graph.h"
  30.  
  31. /* Graph is derived from Composite, so no need to include the
  32.    superclass private header file. */
  33.  
  34. /* Define the Graph instance part */
  35. typedef struct {
  36.     int        num_entries;    /* Number of entries to graph */
  37.     String    *labels;    /* Labels for values */
  38.     int        *values;    /* Graph values */
  39.     int        max_value;    /* Maximum graph value */
  40.     int        scale;        /* Scale factor for values */
  41. } GraphPart;
  42.  
  43. /* Define the full instance record */
  44. typedef struct _GraphRec {
  45.     CorePart        core;
  46.     CompositePart     composite;
  47.     GraphPart        graph;
  48. } GraphRec;
  49.  
  50. /* Define class part structure */
  51. typedef struct {
  52.     XtPointer        extension;
  53. } GraphClassPart;
  54.  
  55. /* Define the full class record */
  56. typedef struct _GraphClassRec {
  57.     CoreClassPart    core_class;
  58.     CompositeClassPart    composite_class;
  59.     GraphClassPart    graph_class;
  60. } GraphClassRec, *GraphWidgetClass;
  61.  
  62. /* External definition for class record */
  63. extern GraphClassRec graphClassRec;
  64.  
  65. /* End of preprocessor directives */
  66. #endif /* GRAPHP_H */
  67.