/* WindowP.h--------------------------------------------------------*/ #ifndef _WindowP_h #define _WindowP_h #include "Window.h" /* include superclass private header file */ #include /* define unique representation types not found in */ #define XtRWindowResource "WindowResource" typedef struct { int empty; } WindowClassPart; typedef struct _WindowClassRec { CoreClassPart core_class; WindowClassPart window_class; } WindowClassRec; extern WindowClassRec windowClassRec; typedef struct { /* resources */ Pixel color_1; Pixel color_2; XFontStruct *font; XtCallbackList expose_callback; XtCallbackList input_callback; /* private state */ /* none */ } WindowPart; typedef struct _WindowRec { CorePart core; WindowPart window; } WindowRec; #endif /* _WindowP_h */