/* $Header: /afs/athena.mit.edu/astaff/project/atdev/src/drawarea/RCS/DrawingAreaP.h,v 1.1 90/09/15 23:29:33 crcraig Exp $ */

/* 
  Copyright (C) 1990 by the Massachusetts Institute of Technology

   Export of this software from the United States of America is assumed
   to require a specific license from the United States Government.
   It is the responsibility of any person or organization contemplating
   export to obtain such a license before exporting.

WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
distribute this software and its documentation for any purpose and
without fee is hereby granted, provided that the above copyright
notice appear in all copies and that both that copyright notice and
this permission notice appear in supporting documentation, and that
the name of M.I.T. not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior
permission.  M.I.T. makes no representations about the suitability of
this software for any purpose.  It is provided "as is" without express
or implied warranty.

  */


#ifndef _AtDrawingAreaP_h
#define _AtDrawingAreaP_h

#include "DrawingArea.h"
/* include superclass private header file */
#include <X11/CoreP.h>

/* define unique representation types not found in <X11/StringDefs.h> */

typedef struct {
    int blurble;
} AtDrawingAreaClassPart;

typedef struct _AtDrawingAreaClassRec {
    CoreClassPart	core_class;
    AtDrawingAreaClassPart	drawingarea_class;
} AtDrawingAreaClassRec;

extern AtDrawingAreaClassRec atDrawingAreaClassRec;

typedef struct {
    /* resources */
  Pixel foreground;
  XtCallbackList exposeCallback;
  XtCallbackList inputCallback;
  XtCallbackList resizeCallback;
    /* private state */
} AtDrawingAreaPart;

typedef struct _AtDrawingAreaRec {
    CorePart		core;
    AtDrawingAreaPart	draw;
} AtDrawingAreaRec;

#endif /* _AtDrawingAreaP_h */
