home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xt-examples / part04 / GraphDispl.c < prev    next >
C/C++ Source or Header  |  1990-11-04  |  5KB  |  177 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. #include <X11/IntrinsicP.h>    /* Intrinsics header file */
  25. #include <X11/StringDefs.h>    /* Resource string definitions */
  26. #include "GraphDispP.h"        /* Graph display object */
  27.  
  28. #define Offset(field) XtOffsetOf(GraphDisplayRec, graphDisplay.field)
  29.  
  30. static XtResource resources[] = {
  31.     {XtNfont,  XtCFont, XtRFontStruct, sizeof(XFontStruct *),
  32.     Offset(font), XtRString, (XtPointer) XtDefaultFont},
  33.     {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
  34.     Offset(foreground), XtRString,
  35.     (XtPointer) XtDefaultForeground},
  36. };
  37. #undef Offset
  38.  
  39. /* Forward declarations */
  40.  
  41. static void ClassPartInitialize(), Initialize(), Destroy();
  42. static Boolean SetValues();
  43.  
  44. /* Class record declaration */
  45.  
  46. GraphDisplayClassRec graphDisplayClassRec = {
  47.     /* Object class part */
  48.   {
  49.     /* superclass         */    (WidgetClass) &objectClassRec,
  50.     /* class_name         */    "GraphDisplay",
  51.     /* widget_size         */    sizeof(GraphDisplayRec),
  52.     /* class_initialize      */ NULL,
  53.     /* class_part_initialize */    ClassPartInitialize,
  54.     /* class_inited          */    FALSE,
  55.     /* initialize         */    Initialize,
  56.     /* initialize_hook       */    NULL,        
  57.     /* obj1             */    NULL,
  58.     /* obj2             */    NULL,
  59.     /* obj3             */    0,
  60.     /* resources         */    resources,
  61.     /* num_resources         */    XtNumber(resources),
  62.     /* xrm_class         */    NULLQUARK,
  63.     /* obj4             */    0,
  64.     /* obj5             */    0,
  65.     /* obj6             */    0,
  66.     /* obj7             */    0,
  67.     /* destroy             */    Destroy,
  68.     /* obj8             */    NULL,
  69.     /* obj9             */    NULL,
  70.     /* set_values         */    SetValues,
  71.     /* set_values_hook       */    NULL,            
  72.     /* obj10             */    NULL,  
  73.     /* get_values_hook       */    NULL,            
  74.     /* obj11             */    NULL,
  75.     /* version             */    XtVersion,
  76.     /* callback offsets      */ NULL,
  77.     /* obj12             */ NULL,
  78.     /* obj13             */    NULL,
  79.     /* obj14             */ NULL,
  80.     /* extension             */ NULL
  81.   },
  82.     /* GraphDisplay class part    */
  83.   {
  84.     /* compute_size         */ NULL,
  85.     /* expose             */ NULL,
  86.     /* extension             */ NULL
  87.   }
  88. };
  89.  
  90. /* Class record pointer */
  91.  
  92. WidgetClass graphDisplayObjectClass =
  93.     (WidgetClass) &graphDisplayClassRec;
  94.  
  95. static void ClassPartInitialize(widgetClass)
  96.     WidgetClass widgetClass;
  97. {
  98.     register GraphDisplayObjectClass wc = 
  99.         (GraphDisplayObjectClass) widgetClass;
  100.     GraphDisplayObjectClass super =
  101.         (GraphDisplayObjectClass) wc->object_class.superclass;
  102.  
  103.     if (wc->graphDisplay_class.compute_size == InheritComputeSize) {
  104.     wc->graphDisplay_class.compute_size =
  105.         super->graphDisplay_class.compute_size;
  106.     }
  107.  
  108.     if (wc->graphDisplay_class.expose == XtInheritExpose) {
  109.     wc->graphDisplay_class.expose =
  110.         super->graphDisplay_class.expose;
  111.     }
  112. }
  113.  
  114. static GC GetGC(gd)
  115.     GraphDisplayObject gd;
  116. {
  117.     XGCValues    values;
  118.  
  119.     /* Allocate a graphics context with the foreground and font */
  120.  
  121.     values.foreground = gd->graphDisplay.foreground;
  122.     values.font = gd->graphDisplay.font->fid;
  123.  
  124.     return XtGetGC(XtParent((Widget) gd),
  125.         GCForeground | GCFont, &values);
  126. }
  127.  
  128. static void Initialize(request, new, args, num_args)
  129.     Widget request, new;
  130.     ArgList args;
  131.     Cardinal *num_args;
  132. {
  133.     GraphDisplayObject gd = (GraphDisplayObject) new;
  134.  
  135.     /* Get a graphics context */
  136.     gd->graphDisplay.gc = GetGC(gd);
  137. }
  138.  
  139. static Boolean SetValues(old, request, new, args, num_args)
  140.     Widget  old, request, new;
  141.     ArgList args;
  142.     Cardinal *num_args;
  143. {
  144.     GraphDisplayObject oldgd = (GraphDisplayObject) old;
  145.     GraphDisplayObject newgd = (GraphDisplayObject) new;
  146.  
  147. #define NE(field) (oldgd->field != newgd->field)
  148.  
  149.     /* If foreground or font has changed, update GC */
  150.  
  151.     if (NE(graphDisplay.foreground) || NE(graphDisplay.font->fid)) {
  152.     XtReleaseGC(newgd, oldgd->graphDisplay.gc);
  153.     newgd->graphDisplay.gc = GetGC(newgd);
  154.  
  155.     /* Kludge.  There's no way to tell the Intrinsics to
  156.        automatically redisplay, so clear the parent, causing
  157.        expose events.  Subclasses will do this too, but multiple
  158.        redisplays are avoided since the parent has
  159.        XtExposeCompressMultiple. */
  160.  
  161.     if (XtIsRealized(XtParent((Widget) newgd))) {
  162.         XClearArea(XtDisplayOfObject(newgd),
  163.             XtWindowOfObject(newgd), 0, 0, 0, 0, TRUE);
  164.     }
  165.     }
  166.  
  167.     return FALSE;
  168. #undef NE
  169. }
  170. static void Destroy(w)
  171.     Widget w;
  172. {
  173.     GraphDisplayObject gd = (GraphDisplayObject) w;
  174.  
  175.     XtReleaseGC(XtParent(w), gd->graphDisplay.gc);
  176. }
  177.