f6637e2c7dce3f1efe92f025edc0de387d6382e6
[xscreensaver] / OSX / jwxyz.h
1 /* xscreensaver, Copyright (c) 1991-2012 Jamie Zawinski <jwz@jwz.org>
2  *
3  * Permission to use, copy, modify, distribute, and sell this software and its
4  * documentation for any purpose is hereby granted without fee, provided that
5  * the above copyright notice appear in all copies and that both that
6  * copyright notice and this permission notice appear in supporting
7  * documentation.  No representations are made about the suitability of this
8  * software for any purpose.  It is provided "as is" without express or 
9  * implied warranty.
10  */
11
12 /* JWXYZ Is Not Xlib.
13
14    But it's a bunch of function definitions that bear some resemblance to
15    Xlib and that do Cocoa-ish things that bear some resemblance to the
16    things that Xlib might have done.
17  */
18
19 #ifndef __JWXYZ_H__
20 #define __JWXYZ_H__
21
22 extern void jwxyz_abort(const char *fmt, ...) __dead2;
23 #define abort() jwxyz_abort("abort in %s:%d", __FUNCTION__, __LINE__)
24
25 typedef int Bool;
26 typedef int Status;
27 typedef void * XPointer;
28 typedef unsigned long Time;
29 typedef unsigned int KeySym;
30 typedef unsigned int KeyCode;
31 typedef unsigned int VisualID;
32
33 typedef struct jwxyz_Display            Display;
34 typedef struct jwxyz_Screen             Screen;
35 typedef struct jwxyz_Visual             Visual;
36 typedef struct jwxyz_Drawable *         Drawable;
37 typedef struct jwxyz_Colormap *         Colormap;
38 typedef struct jwxyz_GC *               GC;
39 typedef struct jwxyz_XColor             XColor;
40 typedef struct jwxyz_XGCValues          XGCValues;
41 typedef struct jwxyz_XPoint             XPoint;
42 typedef struct jwxyz_XSegment           XSegment;
43 typedef struct jwxyz_XRectangle         XRectangle;
44 typedef struct jwxyz_XArc               XArc;
45 typedef struct jwxyz_XWindowAttributes  XWindowAttributes;
46 typedef struct jwxyz_XrmOptionDescRec   XrmOptionDescRec;
47 typedef struct jwxyz_XrmDatabase *      XrmDatabase;
48 typedef struct jwxyz_XImage             XImage;
49 typedef struct jwxyz_XFontStruct        XFontStruct;
50 typedef struct jwxyz_Font *             Font;
51 typedef struct jwxyz_XCharStruct        XCharStruct;
52 typedef struct jwxyz_XComposeStatus     XComposeStatus;
53 typedef struct jwxyz_XPixmapFormatValues XPixmapFormatValues;
54
55 typedef union  jwxyz_XEvent             XEvent;
56 typedef struct jwxyz_XAnyEvent          XAnyEvent;
57 typedef struct jwxyz_XKeyEvent          XKeyEvent;
58 typedef struct jwxyz_XMotionEvent       XMotionEvent;
59 typedef struct jwxyz_XButtonEvent       XButtonEvent;
60 typedef XKeyEvent                       XKeyPressedEvent;
61 typedef XKeyEvent                       XKeyReleasedEvent;
62 typedef XMotionEvent                    XPointerMovedEvent;
63 typedef XButtonEvent                    XButtonPressedEvent;
64 typedef XButtonEvent                    XButtonReleasedEvent;
65
66
67 /* Not technically Xlib... */
68 typedef struct jwxyz_GLXContext *       GLXContext;
69 typedef struct jwxyz_XtAppContext *     XtAppContext;
70 typedef struct jwxyz_XtIntervalId *     XtIntervalId;
71 typedef struct jwxyz_XtInputId *        XtInputId;
72 typedef void *                          XtPointer;
73 typedef unsigned long                   XtInputMask;
74 #define XtInputReadMask                 (1L<<0)
75 #define XtInputWriteMask                (1L<<1)
76 #define XtInputExceptMask               (1L<<2)
77 #define XtIMXEvent                      1
78 #define XtIMTimer                       2
79 #define XtIMAlternateInput              4
80 #define XtIMSignal                      8
81 #define XtIMAll (XtIMXEvent | XtIMTimer | XtIMAlternateInput | XtIMSignal)
82
83 #define True 1
84 #define TRUE 1
85 #define False 0
86 #define FALSE 0
87 #define None 0
88
89 #define Window Drawable
90 #define Pixmap Drawable
91
92 #define XrmoptionNoArg  0
93 #define XrmoptionSepArg 1
94
95 #define CoordModeOrigin         0
96 #define CoordModePrevious       1
97
98 #define LineSolid               0
99 #define LineOnOffDash           1
100 #define LineDoubleDash          2
101
102 #define CapNotLast              0
103 #define CapButt                 1
104 #define CapRound                2
105 #define CapProjecting           3
106
107 #define JoinMiter               0
108 #define JoinRound               1
109 #define JoinBevel               2
110
111 #define FillSolid               0
112 #define FillTiled               1
113 #define FillStippled            2
114 #define FillOpaqueStippled      3
115
116 #define EvenOddRule             0
117 #define WindingRule             1
118
119 #define Complex                 0
120 #define Nonconvex               1
121 #define Convex                  2
122
123 #define XYBitmap                0
124 #define XYPixmap                1
125 #define ZPixmap                 2
126
127 #define AllocNone               0
128 #define AllocAll                1
129
130 #define StaticGray              0
131 #define GrayScale               1
132 #define StaticColor             2
133 #define PseudoColor             3
134 #define TrueColor               4
135 #define DirectColor             5
136
137 #define LSBFirst                0
138 #define MSBFirst                1
139
140 #define DoRed                   (1<<0)
141 #define DoGreen                 (1<<1)
142 #define DoBlue                  (1<<2)
143
144 #define GCFunction              (1L<<0)
145 #define GCPlaneMask             (1L<<1)
146 #define GCForeground            (1L<<2)
147 #define GCBackground            (1L<<3)
148 #define GCLineWidth             (1L<<4)
149 #define GCLineStyle             (1L<<5)
150 #define GCCapStyle              (1L<<6)
151 #define GCJoinStyle             (1L<<7)
152 #define GCFillStyle             (1L<<8)
153 #define GCFillRule              (1L<<9) 
154 #define GCTile                  (1L<<10)
155 #define GCStipple               (1L<<11)
156 #define GCTileStipXOrigin       (1L<<12)
157 #define GCTileStipYOrigin       (1L<<13)
158 #define GCFont                  (1L<<14)
159 #define GCSubwindowMode         (1L<<15)
160 #define GCGraphicsExposures     (1L<<16)
161 #define GCClipXOrigin           (1L<<17)
162 #define GCClipYOrigin           (1L<<18)
163 #define GCClipMask              (1L<<19)
164 #define GCDashOffset            (1L<<20)
165 #define GCDashList              (1L<<21)
166 #define GCArcMode               (1L<<22)
167
168 #define KeyPress                2
169 #define KeyRelease              3
170 #define ButtonPress             4
171 #define ButtonRelease           5
172 #define MotionNotify            6
173 #define Expose                  12
174 #define GraphicsExpose          13
175 #define NoExpose                14
176 #define VisibilityNotify        15
177
178 #define ClipByChildren          0
179 #define IncludeInferiors        1
180
181 #define KeyPressMask            (1L<<0)
182 #define KeyReleaseMask          (1L<<1)
183 #define ButtonPressMask         (1L<<2)
184 #define ButtonReleaseMask       (1L<<3)
185 #define PointerMotionMask       (1L<<6)
186
187 #define Button1                 1
188 #define Button2                 2
189 #define Button3                 3
190 #define Button4                 4
191 #define Button5                 5
192
193 #define ShiftMask               (1<<0)
194 #define LockMask                (1<<1)
195 #define ControlMask             (1<<2)
196 #define Mod1Mask                (1<<3)
197 #define Mod2Mask                (1<<4)
198 #define Mod3Mask                (1<<5)
199 #define Mod4Mask                (1<<6)
200 #define Mod5Mask                (1<<7)
201 #define Button1Mask             (1<<8)
202 #define Button2Mask             (1<<9)
203 #define Button3Mask             (1<<10)
204 #define Button4Mask             (1<<11)
205 #define Button5Mask             (1<<12)
206
207 #define XK_Shift_L              0xFFE1
208 #define XK_Shift_R              0xFFE2
209 #define XK_Control_L            0xFFE3
210 #define XK_Control_R            0xFFE4
211 #define XK_Caps_Lock            0xFFE5
212 #define XK_Shift_Lock           0xFFE6
213 #define XK_Meta_L               0xFFE7
214 #define XK_Meta_R               0xFFE8
215 #define XK_Alt_L                0xFFE9
216 #define XK_Alt_R                0xFFEA
217 #define XK_Super_L              0xFFEB
218 #define XK_Super_R              0xFFEC
219 #define XK_Hyper_L              0xFFED
220 #define XK_Hyper_R              0xFFEE
221
222 #define XK_Home                 0xFF50
223 #define XK_Left                 0xFF51
224 #define XK_Up                   0xFF52
225 #define XK_Right                0xFF53
226 #define XK_Down                 0xFF54
227 #define XK_Prior                0xFF55
228 #define XK_Page_Up              0xFF55
229 #define XK_Next                 0xFF56
230 #define XK_Page_Down            0xFF56
231 #define XK_End                  0xFF57
232 #define XK_Begin                0xFF58
233
234 #define GXclear                 0x0             /* 0 */
235 #define GXand                   0x1             /* src AND dst */
236 // #define GXandReverse         0x2             /* src AND NOT dst */
237 #define GXcopy                  0x3             /* src */
238 // #define GXandInverted        0x4             /* NOT src AND dst */
239 // #define GXnoop               0x5             /* dst */
240 #define GXxor                   0x6             /* src XOR dst */
241 #define GXor                    0x7             /* src OR dst */
242 // #define GXnor                0x8             /* NOT src AND NOT dst */
243 // #define GXequiv              0x9             /* NOT src XOR dst */
244 // #define GXinvert             0xa             /* NOT dst */
245 // #define GXorReverse          0xb             /* src OR NOT dst */
246 // #define GXcopyInverted       0xc             /* NOT src */
247 // #define GXorInverted         0xd             /* NOT src OR dst */
248 // #define GXnand               0xe             /* NOT src OR NOT dst */
249 #define GXset                   0xf             /* 1 */
250
251 #define DefaultScreen(dpy) (0)
252 #define BlackPixelOfScreen(s) (0xFF000000)
253 #define WhitePixelOfScreen(s) (0xFFFFFFFF)
254 #define BlackPixel(dpy,n) BlackPixelOfScreen(0)
255 #define WhitePixel(dpy,n) WhitePixelOfScreen(0)
256 #define CellsOfScreen(s) (0x00FFFFFF)
257 #define XFree(x) free(x)
258 #define BitmapPad(dpy) (8)
259 #define BitmapBitOrder(dpy) (MSBFirst)
260 #define ImageByteOrder(dpy) (MSBFirst)
261 #define DisplayOfScreen XDisplayOfScreen
262 #define DefaultScreenOfDisplay XDefaultScreenOfDisplay
263 #define ScreenOfDisplay(dpy,n) DefaultScreenOfDisplay(dpy)
264 #define DefaultVisualOfScreen XDefaultVisualOfScreen
265 #define DefaultColormapOfScreen(s) (0)
266 #define RootWindow XRootWindow
267 #define RootWindowOfScreen(s) RootWindow(DisplayOfScreen(s),0)
268 #define DisplayWidth XDisplayWidth
269 #define DisplayHeight XDisplayHeight
270 #define XMaxRequestSize(dpy) (65535)
271
272 extern Display *jwxyz_make_display (void *nsview, void *cgc);
273 extern void jwxyz_free_display (Display *);
274 extern void *jwxyz_window_view (Window);
275 extern void jwxyz_window_resized (Display *, Window,
276                                   int, int, int, int,
277                                   void *cgc);
278 extern void jwxyz_mouse_moved (Display *, Window, int x, int y);
279 extern void jwxyz_flush_context (Display *);
280
281 extern Window XRootWindow (Display *, int screen);
282 extern Screen *XDefaultScreenOfDisplay (Display *);
283 extern Visual *XDefaultVisualOfScreen (Screen *);
284 extern Display *XDisplayOfScreen (Screen *);
285 extern int XDisplayNumberOfScreen (Screen *);
286 extern int XScreenNumberOfScreen (Screen *);
287 extern int XDisplayWidth (Display *, int);
288 extern int XDisplayHeight (Display *, int);
289
290 extern int XDrawPoint (Display *, Drawable, GC, int x, int y);
291 extern int XDrawPoints (Display *, Drawable, GC, XPoint *, int n, int mode);
292 extern int XDrawSegments (Display *, Drawable, GC, XSegment *, int n);
293
294 extern GC XCreateGC (Display *, Drawable, unsigned long mask, XGCValues *);
295 extern int XChangeGC (Display *, GC, unsigned long mask, XGCValues *);
296 extern int XFreeGC (Display *, GC);
297
298 extern int XClearWindow (Display *, Window);
299 extern int XClearArea (Display *, Window, int x, int y, int w, int h,Bool exp);
300 extern int XSetWindowBackground (Display *, Window, unsigned long);
301 extern Status XGetWindowAttributes (Display *, Window, XWindowAttributes *);
302 extern Status XGetGeometry (Display *, Drawable, Window *root_ret,
303                             int *x_ret, int *y_ret, 
304                             unsigned int *w_ret, unsigned int *h_ret,
305                             unsigned int *bw_ret, unsigned int *depth_ret);
306 extern Status XAllocColor (Display *, Colormap, XColor *);
307 extern Status XAllocColorCells (Display *, Colormap, Bool contig,
308                                 unsigned long *pmret, unsigned int npl,
309                                 unsigned long *pxret, unsigned int npx);
310 extern int XStoreColors (Display *, Colormap, XColor *, int n);
311 extern int XStoreColor (Display *, Colormap, XColor *);
312 extern Status XParseColor(Display *, Colormap, const char *spec, XColor *ret);
313 extern Status XAllocNamedColor (Display *, Colormap, char *name,
314                                 XColor *screen_ret, XColor *exact_ret);
315 extern int XQueryColor (Display *, Colormap, XColor *);
316 extern int XQueryColors(Display *, Colormap colormap, XColor *, int ncolors);
317
318 extern int XSetForeground (Display *, GC, unsigned long);
319 extern int XSetBackground (Display *, GC, unsigned long);
320 extern int XSetFunction (Display *, GC, int);
321 extern int XSetSubwindowMode (Display *, GC, int);
322 extern int XSetLineAttributes (Display *, GC, unsigned int line_width,
323                                int line_style, int cap_style, int join_style);
324 extern int XSetClipMask (Display *, GC, Pixmap);
325 extern int XSetClipOrigin (Display *, GC, int x, int y);
326 extern int jwxyz_XSetAlphaAllowed (Display *, GC, Bool);
327 extern int jwxyz_XSetAntiAliasing (Display *, GC, Bool);
328
329 extern int XFlush (Display *);
330 extern int XSync (Display *, Bool);
331 extern int XFreeColors (Display *, Colormap, unsigned long *px, int n,
332                         unsigned long planes);
333 extern int XFillPolygon (Display *, Drawable, GC, 
334                          XPoint * points, int npoints, int shape, int mode);
335 extern int XCopyArea (Display *, Drawable src, Drawable dest, GC, 
336                       int src_x, int src_y, 
337                       unsigned int width, unsigned int height, 
338                       int dest_x, int dest_y);
339 extern int XCopyPlane (Display *, Drawable, Drawable, GC,
340                        int src_x, int src_y,
341                        unsigned width, int height,
342                        int dest_x, int dest_y,
343                        unsigned long plane);
344
345 extern int XDrawLine (Display *, Drawable, GC, int x1, int y1, int x2, int y2);
346 extern int XDrawLines (Display *, Drawable, GC, XPoint *, int n, int mode);
347 extern int XDrawArc (Display *, Drawable, GC, int x, int y, 
348                      unsigned int width, unsigned int height,
349                      int angle1, int angle2);
350 extern int XFillArc (Display *, Drawable, GC, int x, int y, 
351                      unsigned int width, unsigned int height,
352                      int angle1, int angle2);
353 extern int XDrawArcs (Display *, Drawable, GC, XArc *arcs, int narcs);
354 extern int XFillArcs (Display *, Drawable, GC, XArc *arcs, int narcs);
355 extern int XDrawRectangle (Display *, Drawable, GC, int x, int y, 
356                            unsigned int width, unsigned int height);
357 extern int XFillRectangle (Display *, Drawable, GC, int x, int y, 
358                            unsigned int width, unsigned int height);
359 extern int XFillRectangles (Display *, Drawable, GC, XRectangle *, int n);
360
361 extern int XDrawString (Display *, Drawable, GC, int x, int y, const char *,
362                         int len);
363 extern int XDrawImageString (Display *, Drawable, GC, int x, int y, 
364                              const char *, int len);
365
366 extern Bool XQueryPointer (Display *, Window, Window *root_ret,
367                            Window *child_ret,
368                            int *root_x_ret, int *root_y_ret,
369                            int *win_x_ret, int *win_y_ret,
370                            unsigned int *mask_ret);
371 extern int XLookupString (XKeyEvent *, char *ret, int size, KeySym *ks_ret,
372                           XComposeStatus *);
373 extern KeySym XKeycodeToKeysym (Display *, KeyCode, int index);
374
375 extern Status XInitImage (XImage *);
376 extern XImage *XCreateImage (Display *, Visual *, unsigned int depth,
377                              int format, int offset, char *data,
378                              unsigned int width, unsigned int height,
379                              int bitmap_pad, int bytes_per_line);
380 extern XImage *XSubImage (XImage *, int x, int y, 
381                           unsigned int w, unsigned int h);
382
383 extern unsigned long XGetPixel (XImage *, int x, int y);
384 extern int XPutPixel (XImage *, int x, int y, unsigned long);
385 extern int XDestroyImage (XImage *);
386 extern int XPutImage (Display *, Drawable, GC, XImage *, 
387                       int src_x, int src_y, int dest_x, int dest_y,
388                       unsigned int w, unsigned int h);
389 extern XImage *XGetImage (Display *, Drawable, int x, int y,
390                           unsigned int w, unsigned int h,
391                           unsigned long pm, int fmt);
392 extern Pixmap XCreatePixmapFromBitmapData (Display *, Drawable,
393                                            const char *data,
394                                            unsigned int w, unsigned int h,
395                                            unsigned long fg,
396                                            unsigned int bg,
397                                            unsigned int depth);
398 extern XPixmapFormatValues *XListPixmapFormats (Display *, int *count_ret);
399
400 extern void jwxyz_draw_NSImage_or_CGImage (Display *, Drawable, 
401                                            Bool nsimg_p, void *NSImage_arg,
402                                            XRectangle *geom_ret, 
403                                            int exif_rotation);
404
405 extern int XSetGraphicsExposures (Display *, GC, Bool);
406 extern Bool XTranslateCoordinates (Display *, Window src_w, Window dest_w,
407                                    int src_x, int src_y,
408                                    int *dest_x_ret, int *dest_y_ret,
409                                    Window *child_ret);
410
411 extern Font XLoadFont (Display *, const char *);
412 extern XFontStruct * XQueryFont (Display *, Font);
413 extern XFontStruct * XLoadQueryFont (Display *, const char *);
414 extern int XFreeFontInfo (char **names, XFontStruct *info, int n);
415 extern int XFreeFont (Display *, XFontStruct *);
416 extern int XUnloadFont (Display *, Font);
417 extern int XTextExtents (XFontStruct *, const char *, int length,
418                          int *dir_ret, int *ascent_ret, int *descent_ret,
419                          XCharStruct *overall_ret);
420 extern int XTextWidth (XFontStruct *, const char *, int length);
421 extern int XSetFont (Display *, GC, Font);
422
423 extern Pixmap XCreatePixmap (Display *, Drawable,
424                              unsigned int width, unsigned int height,
425                              unsigned int depth);
426 extern int XFreePixmap (Display *, Pixmap);
427
428 // Xt timers and fds
429 extern XtAppContext XtDisplayToApplicationContext (Display *);
430 typedef void (*XtTimerCallbackProc) (XtPointer closure, XtIntervalId *);
431 typedef void (*XtInputCallbackProc) (XtPointer closure, int *fd, XtInputId *);
432 extern XtIntervalId XtAppAddTimeOut (XtAppContext, unsigned long usecs,
433                                      XtTimerCallbackProc, XtPointer closure);
434 extern void XtRemoveTimeOut (XtIntervalId);
435 extern XtInputId XtAppAddInput (XtAppContext, int fd, XtPointer flags,
436                                XtInputCallbackProc, XtPointer closure);
437 extern void XtRemoveInput (XtInputId);
438 extern XtInputMask XtAppPending (XtAppContext);
439 extern void XtAppProcessEvent (XtAppContext, XtInputMask);
440 extern struct jwxyz_sources_data *display_sources_data (Display *);
441
442 // Some GLX stuff that also doesn't technically belong here...
443 // from XScreenSaverGLView.m
444 extern void glXSwapBuffers (Display *, Window);
445 extern void glXMakeCurrent (Display *, Window, GLXContext);
446
447 // also declared in utils/visual.h
448 extern int has_writable_cells (Screen *, Visual *);
449 extern int visual_depth (Screen *, Visual *);
450 extern int visual_cells (Screen *, Visual *);
451 extern int visual_class (Screen *, Visual *);
452
453 // also declared in utils/grabclient.h
454 extern Bool use_subwindow_mode_p (Screen *, Window);
455
456
457 struct jwxyz_Visual {
458   VisualID visualid;    /* visual id of this visual */
459   int class;            /* class of screen (monochrome, etc.) */
460   unsigned long red_mask, green_mask, blue_mask;        /* mask values */
461   int bits_per_rgb;     /* log base 2 of distinct color values */
462 //  int map_entries;    /* color map entries */
463 };
464
465 struct jwxyz_XGCValues {
466   int function;         /* logical operation */
467 #if 0
468   unsigned long plane_mask;/* plane mask */
469 #endif
470   unsigned long foreground;/* foreground pixel */
471   unsigned long background;/* background pixel */
472   int line_width;       /* line width */
473 #if 0
474   int line_style;       /* LineSolid, LineOnOffDash, LineDoubleDash */
475 #endif
476   int cap_style;        /* CapNotLast, CapButt, CapRound, CapProjecting */
477   int join_style;       /* JoinMiter, JoinRound, JoinBevel */
478 #if 0
479   int fill_style;       /* FillSolid, FillTiled, 
480                            FillStippled, FillOpaeueStippled */
481 #endif
482   int fill_rule;        /* EvenOddRule, WindingRule */
483 #if 0
484   int arc_mode;         /* ArcChord, ArcPieSlice */
485   Pixmap tile;          /* tile pixmap for tiling operations */
486   Pixmap stipple;       /* stipple 1 plane pixmap for stipping */
487   int ts_x_origin;      /* offset for tile or stipple operations */
488   int ts_y_origin;
489 #endif
490   Font font;            /* default text font for text operations */
491   int subwindow_mode;     /* ClipByChildren, IncludeInferiors */
492 #if 0
493   Bool graphics_exposures;/* boolean, should exposures be generated */
494 #endif
495   int clip_x_origin;    /* origin for clipping */
496   int clip_y_origin;
497   Pixmap clip_mask;     /* bitmap clipping; other calls for rects */
498 #if 0
499   int dash_offset;      /* patterned/dashed line information */
500   char dashes;
501 #endif
502
503   Bool alpha_allowed_p; /* jwxyz extension: whether pixel values may have
504                            a non-opaque alpha component. */
505   Bool antialias_p;     /* jwxyz extension: whether Quartz should draw
506                            with antialiasing. */
507 };
508
509 struct jwxyz_XWindowAttributes {
510     int x, y;                   /* location of window */
511     int width, height;          /* width and height of window */
512     int border_width;           /* border width of window */
513     int depth;                  /* depth of window */
514     Visual *visual;             /* the associated visual structure */
515 #if 0
516     Window root;                /* root of screen containing window */
517     int class;                  /* InputOutput, InputOnly*/
518     int bit_gravity;            /* one of bit gravity values */
519     int win_gravity;            /* one of the window gravity values */
520     int backing_store;          /* NotUseful, WhenMapped, Always */
521     unsigned long backing_planes;/* planes to be preserved if possible */
522     unsigned long backing_pixel;/* value to be used when restoring planes */
523     Bool save_under;            /* boolean, should bits under be saved? */
524 #endif
525     Colormap colormap;          /* color map to be associated with window */
526 #if 0
527     Bool map_installed;         /* boolean, is color map currently installed*/
528     int map_state;              /* IsUnmapped, IsUnviewable, IsViewable */
529     long all_event_masks;       /* set of events all people have interest in*/
530     long your_event_mask;       /* my event mask */
531     long do_not_propagate_mask; /* set of events that should not propagate */
532     Bool override_redirect;     /* boolean value for override-redirect */
533 #endif
534     Screen *screen;             /* back pointer to correct screen */
535 };
536
537 struct jwxyz_XColor {
538   unsigned long pixel;
539   unsigned short red, green, blue;
540   char flags;  /* do_red, do_green, do_blue */
541   char pad;
542 };
543
544 struct jwxyz_XPoint {
545   short x, y;
546 };
547
548 struct jwxyz_XSegment {
549   short x1, y1, x2, y2;
550 };
551
552 struct jwxyz_XRectangle {
553   short x, y;
554   unsigned short width, height;
555 };
556
557 struct jwxyz_XArc {
558   short x, y;
559   unsigned short width, height;
560   short angle1, angle2;
561 };
562
563
564 struct jwxyz_XrmOptionDescRec {
565   char *option;
566   char *specifier;
567   int argKind;
568   void *value;
569 };
570
571 struct jwxyz_XAnyEvent {
572   int type;
573 #if 0
574   unsigned long serial;
575   Bool send_event;
576   Display *display;
577   Window window;
578 #endif
579 };
580
581 struct jwxyz_XKeyEvent {
582   int type;
583 #if 0
584   unsigned long serial;
585   Bool send_event;
586   Display *display;
587   Window window;
588   Window root;
589   Window subwindow;
590   Time time;
591   int x, y;
592   int x_root, y_root;
593 #endif
594   unsigned int state;
595   unsigned int keycode;
596 #if 0
597   Bool same_screen;
598 #endif
599 };
600
601 struct jwxyz_XButtonEvent {
602   int type;
603 #if 0
604   unsigned long serial;
605   Bool send_event;
606   Display *display;
607   Window window;
608   Window root;
609   Window subwindow;
610   Time time;
611 #endif
612   int x, y;
613 #if 0
614   int x_root, y_root;
615 #endif
616   unsigned int state;
617   unsigned int button;
618 #if 0
619   Bool same_screen;
620 #endif
621 };
622
623 struct jwxyz_XMotionEvent {
624   int type;
625 #if 0
626   unsigned long serial;
627   Bool send_event;
628   Display *display;
629   Window window;
630   Window root;
631   Window subwindow;
632   Time time;
633 #endif
634   int x, y;
635 #if 0
636   int x_root, y_root;
637 #endif
638   unsigned int state;
639 #if 0
640   char is_hint;
641   Bool same_screen;
642 #endif
643 };
644
645 union jwxyz_XEvent {
646   int type;
647   XAnyEvent xany;
648   XKeyEvent xkey;
649   XButtonEvent xbutton;
650   XMotionEvent xmotion;
651 };
652
653 struct jwxyz_XImage {
654     int width, height;          /* size of image */
655     int xoffset;                /* number of pixels offset in X direction */
656     int format;                 /* XYBitmap, XYPixmap, ZPixmap */
657     char *data;                 /* pointer to image data */
658     int byte_order;             /* data byte order, LSBFirst, MSBFirst */
659     int bitmap_unit;            /* quant. of scanline 8, 16, 32 */
660     int bitmap_bit_order;       /* LSBFirst, MSBFirst */
661     int bitmap_pad;             /* 8, 16, 32 either XY or ZPixmap */
662     int depth;                  /* depth of image */
663     int bytes_per_line;         /* accelarator to next line */
664     int bits_per_pixel;         /* bits per pixel (ZPixmap) */
665     unsigned long red_mask;     /* bits in z arrangment */
666     unsigned long green_mask;
667     unsigned long blue_mask;
668 //  XPointer obdata;            /* hook for the object routines to hang on */
669     struct funcs {              /* image manipulation routines */
670 #if 0
671       XImage *(*create_image)(
672                 Display*        /* display */,
673                 Visual*         /* visual */,
674                 unsigned int    /* depth */,
675                 int             /* format */,
676                 int             /* offset */,
677                 char*           /* data */,
678                 unsigned int    /* width */,
679                 unsigned int    /* height */,
680                 int             /* bitmap_pad */,
681                 int             /* bytes_per_line */);
682         int (*destroy_image)        (XImage *);
683 #endif
684         unsigned long (*get_pixel)  (XImage *, int, int);
685         int (*put_pixel)            (XImage *, int, int, unsigned long);
686 #if 0
687         XImage *(*sub_image)        (XImage *, int, int, unsigned int, unsigned int);
688         int (*add_pixel)            (XImage *, long);
689 #endif
690     } f;
691 };
692
693 struct jwxyz_XCharStruct {
694   short lbearing;       /* origin to left edge of raster */
695   short rbearing;       /* origin to right edge of raster */
696   short width;          /* advance to next char's origin */
697   short ascent;         /* baseline to top edge of raster */
698   short descent;        /* baseline to bottom edge of raster */
699 #if 0
700   unsigned short attributes;    /* per char flags (not predefined) */
701 #endif
702 };
703
704 struct jwxyz_XFontStruct {
705 #if 0
706   XExtData      *ext_data;      /* hook for extension to hang data */
707 #endif
708   Font          fid;            /* Font id for this font */
709 #if 0
710   unsigned      direction;      /* hint about direction the font is painted */
711 #endif
712   unsigned      min_char_or_byte2;      /* first character */
713   unsigned      max_char_or_byte2;      /* last character */
714 #if 0
715   unsigned      min_byte1;      /* first row that exists */
716   unsigned      max_byte1;      /* last row that exists */
717   Bool  all_chars_exist;        /* flag if all characters have non-zero size*/
718 #endif
719   unsigned      default_char;   /* char to print for undefined character */
720 #if 0
721   int         n_properties;   /* how many properties there are */
722   XFontProp     *properties;    /* pointer to array of additional properties*/
723 #endif
724   XCharStruct   min_bounds;     /* minimum bounds over all existing char*/
725   XCharStruct   max_bounds;     /* maximum bounds over all existing char*/
726   XCharStruct   *per_char;      /* first_char to last_char information */
727   int           ascent;         /* log. extent above baseline for spacing */
728   int           descent;        /* log. descent below baseline for spacing */
729 };
730
731 struct jwxyz_XComposeStatus {
732   char dummy;
733 };
734
735 struct  jwxyz_XPixmapFormatValues {
736   int depth;
737   int bits_per_pixel;
738   int scanline_pad;
739 };
740
741 #endif /* __JWXYZ_H__ */