home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xt-examples / part03 / LabelGadgP.h < prev    next >
C/C++ Source or Header  |  1990-11-04  |  3KB  |  84 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 LABEL_GADGETP_H
  26. #define LABEL_GADGETP_H
  27.  
  28. /* Include the public header file for LabelGadget */
  29. #include "LabelGadge.h"
  30.  
  31. /* LabelGadget is derived from RectObj, so no need to include the
  32.    superclass private header file.  No internal types need to be
  33.    defined. */
  34.  
  35. /* Define the LabelGadget instance part */
  36. typedef struct {
  37.   /* New resource fields */
  38.     String    label;        /* Text to display */
  39.     Pixel    foreground;    /* Foreground pixel value */
  40.     XFontStruct    *font;        /* Font to display in */
  41.     Justify    justify;    /* The justification value */
  42.     Dimension    space;        /* Inner padding value */
  43.     Pixel    background;    /* Background pixel value */
  44.     Pixel    border;        /* Border pixel value */
  45.  
  46.   /* New internal fields */
  47.     GC        gc;        /* Graphics context for displaying */
  48.     GC        background_gc;    /* Graphics context for background */
  49.     GC        border_gc;    /* Graphics context for border */
  50.     Dimension    old_border;    /* Previous border width */
  51.     Dimension    label_width;    /* The calculated width */
  52.     Dimension    label_height;    /* The calculated height */
  53.     Cardinal    label_len;    /* The length of the text string */
  54.     Boolean    size_computed;    /* Whether the size was computed */
  55.     Dimension    desired_width;    /* The width the widget wants to be */
  56.     Dimension    desired_height;    /* The height the widget wants to be */
  57.     GC        current_gc;    /* GC we are currently using */
  58.     GC        current_bg_gc;    /* GC for current background */
  59. } LabelGadgetPart;
  60.  
  61. /* Define the full instance record */
  62. typedef struct _LabelGadgetRec {
  63.     ObjectPart        object;
  64.     RectObjPart        rectObj;
  65.     LabelGadgetPart    label;
  66. } LabelGadgetRec;
  67.  
  68. /* Define class part structure */
  69. typedef struct {
  70.     XtPointer        extension;
  71. } LabelGadgetClassPart;
  72.  
  73. /* Define the full class record */
  74. typedef struct _LabelGadgetClassRec {
  75.     RectObjClassPart        rect_class;
  76.     LabelGadgetClassPart    label_class;
  77. } LabelGadgetClassRec, *LabelGadgetClass;
  78.  
  79. /* External definition for class record */
  80. extern LabelGadgetClassRec labelGadgetClassRec;
  81.  
  82. /* End of preprocessor directives */
  83. #endif /* LABEL_GADGETP_H */
  84.