From http://www.jwz.org/xscreensaver/xscreensaver-5.27.tar.gz
[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 extern int get_bits_per_pixel (Display *, int);
453
454 // also declared in utils/grabclient.h
455 extern Bool use_subwindow_mode_p (Screen *, Window);
456
457
458 struct jwxyz_Visual {
459   VisualID visualid;    /* visual id of this visual */
460   int class;            /* class of screen (monochrome, etc.) */
461   unsigned long red_mask, green_mask, blue_mask;        /* mask values */
462   int bits_per_rgb;     /* log base 2 of distinct color values */
463 //  int map_entries;    /* color map entries */
464 };
465
466 struct jwxyz_XGCValues {
467   int function;         /* logical operation */
468 #if 0
469   unsigned long plane_mask;/* plane mask */
470 #endif
471   unsigned long foreground;/* foreground pixel */
472   unsigned long background;/* background pixel */
473   int line_width;       /* line width */
474 #if 0
475   int line_style;       /* LineSolid, LineOnOffDash, LineDoubleDash */
476 #endif
477   int cap_style;        /* CapNotLast, CapButt, CapRound, CapProjecting */
478   int join_style;       /* JoinMiter, JoinRound, JoinBevel */
479 #if 0
480   int fill_style;       /* FillSolid, FillTiled, 
481                            FillStippled, FillOpaeueStippled */
482 #endif
483   int fill_rule;        /* EvenOddRule, WindingRule */
484 #if 0
485   int arc_mode;         /* ArcChord, ArcPieSlice */
486   Pixmap tile;          /* tile pixmap for tiling operations */
487   Pixmap stipple;       /* stipple 1 plane pixmap for stipping */
488   int ts_x_origin;      /* offset for tile or stipple operations */
489   int ts_y_origin;
490 #endif
491   Font font;            /* default text font for text operations */
492   int subwindow_mode;     /* ClipByChildren, IncludeInferiors */
493 #if 0
494   Bool graphics_exposures;/* boolean, should exposures be generated */
495 #endif
496   int clip_x_origin;    /* origin for clipping */
497   int clip_y_origin;
498   Pixmap clip_mask;     /* bitmap clipping; other calls for rects */
499 #if 0
500   int dash_offset;      /* patterned/dashed line information */
501   char dashes;
502 #endif
503
504   Bool alpha_allowed_p; /* jwxyz extension: whether pixel values may have
505                            a non-opaque alpha component. */
506   Bool antialias_p;     /* jwxyz extension: whether Quartz should draw
507                            with antialiasing. */
508 };
509
510 struct jwxyz_XWindowAttributes {
511     int x, y;                   /* location of window */
512     int width, height;          /* width and height of window */
513     int border_width;           /* border width of window */
514     int depth;                  /* depth of window */
515     Visual *visual;             /* the associated visual structure */
516 #if 0
517     Window root;                /* root of screen containing window */
518     int class;                  /* InputOutput, InputOnly*/
519     int bit_gravity;            /* one of bit gravity values */
520     int win_gravity;            /* one of the window gravity values */
521     int backing_store;          /* NotUseful, WhenMapped, Always */
522     unsigned long backing_planes;/* planes to be preserved if possible */
523     unsigned long backing_pixel;/* value to be used when restoring planes */
524     Bool save_under;            /* boolean, should bits under be saved? */
525 #endif
526     Colormap colormap;          /* color map to be associated with window */
527 #if 0
528     Bool map_installed;         /* boolean, is color map currently installed*/
529     int map_state;              /* IsUnmapped, IsUnviewable, IsViewable */
530     long all_event_masks;       /* set of events all people have interest in*/
531     long your_event_mask;       /* my event mask */
532     long do_not_propagate_mask; /* set of events that should not propagate */
533     Bool override_redirect;     /* boolean value for override-redirect */
534 #endif
535     Screen *screen;             /* back pointer to correct screen */
536 };
537
538 struct jwxyz_XColor {
539   unsigned long pixel;
540   unsigned short red, green, blue;
541   char flags;  /* do_red, do_green, do_blue */
542   char pad;
543 };
544
545 struct jwxyz_XPoint {
546   short x, y;
547 };
548
549 struct jwxyz_XSegment {
550   short x1, y1, x2, y2;
551 };
552
553 struct jwxyz_XRectangle {
554   short x, y;
555   unsigned short width, height;
556 };
557
558 struct jwxyz_XArc {
559   short x, y;
560   unsigned short width, height;
561   short angle1, angle2;
562 };
563
564
565 struct jwxyz_XrmOptionDescRec {
566   char *option;
567   char *specifier;
568   int argKind;
569   void *value;
570 };
571
572 struct jwxyz_XAnyEvent {
573   int type;
574 #if 0
575   unsigned long serial;
576   Bool send_event;
577   Display *display;
578   Window window;
579 #endif
580 };
581
582 struct jwxyz_XKeyEvent {
583   int type;
584 #if 0
585   unsigned long serial;
586   Bool send_event;
587   Display *display;
588   Window window;
589   Window root;
590   Window subwindow;
591   Time time;
592   int x, y;
593   int x_root, y_root;
594 #endif
595   unsigned int state;
596   unsigned int keycode;
597 #if 0
598   Bool same_screen;
599 #endif
600 };
601
602 struct jwxyz_XButtonEvent {
603   int type;
604 #if 0
605   unsigned long serial;
606   Bool send_event;
607   Display *display;
608   Window window;
609   Window root;
610   Window subwindow;
611   Time time;
612 #endif
613   int x, y;
614 #if 0
615   int x_root, y_root;
616 #endif
617   unsigned int state;
618   unsigned int button;
619 #if 0
620   Bool same_screen;
621 #endif
622 };
623
624 struct jwxyz_XMotionEvent {
625   int type;
626 #if 0
627   unsigned long serial;
628   Bool send_event;
629   Display *display;
630   Window window;
631   Window root;
632   Window subwindow;
633   Time time;
634 #endif
635   int x, y;
636 #if 0
637   int x_root, y_root;
638 #endif
639   unsigned int state;
640 #if 0
641   char is_hint;
642   Bool same_screen;
643 #endif
644 };
645
646 union jwxyz_XEvent {
647   int type;
648   XAnyEvent xany;
649   XKeyEvent xkey;
650   XButtonEvent xbutton;
651   XMotionEvent xmotion;
652 };
653
654 struct jwxyz_XImage {
655     int width, height;          /* size of image */
656     int xoffset;                /* number of pixels offset in X direction */
657     int format;                 /* XYBitmap, XYPixmap, ZPixmap */
658     char *data;                 /* pointer to image data */
659     int byte_order;             /* data byte order, LSBFirst, MSBFirst */
660     int bitmap_unit;            /* quant. of scanline 8, 16, 32 */
661     int bitmap_bit_order;       /* LSBFirst, MSBFirst */
662     int bitmap_pad;             /* 8, 16, 32 either XY or ZPixmap */
663     int depth;                  /* depth of image */
664     int bytes_per_line;         /* accelarator to next line */
665     int bits_per_pixel;         /* bits per pixel (ZPixmap) */
666     unsigned long red_mask;     /* bits in z arrangment */
667     unsigned long green_mask;
668     unsigned long blue_mask;
669 //  XPointer obdata;            /* hook for the object routines to hang on */
670     struct funcs {              /* image manipulation routines */
671 #if 0
672       XImage *(*create_image)(
673                 Display*        /* display */,
674                 Visual*         /* visual */,
675                 unsigned int    /* depth */,
676                 int             /* format */,
677                 int             /* offset */,
678                 char*           /* data */,
679                 unsigned int    /* width */,
680                 unsigned int    /* height */,
681                 int             /* bitmap_pad */,
682                 int             /* bytes_per_line */);
683         int (*destroy_image)        (XImage *);
684 #endif
685         unsigned long (*get_pixel)  (XImage *, int, int);
686         int (*put_pixel)            (XImage *, int, int, unsigned long);
687 #if 0
688         XImage *(*sub_image)        (XImage *, int, int, unsigned int, unsigned int);
689         int (*add_pixel)            (XImage *, long);
690 #endif
691     } f;
692 };
693
694 struct jwxyz_XCharStruct {
695   short lbearing;       /* origin to left edge of raster */
696   short rbearing;       /* origin to right edge of raster */
697   short width;          /* advance to next char's origin */
698   short ascent;         /* baseline to top edge of raster */
699   short descent;        /* baseline to bottom edge of raster */
700 #if 0
701   unsigned short attributes;    /* per char flags (not predefined) */
702 #endif
703 };
704
705 struct jwxyz_XFontStruct {
706 #if 0
707   XExtData      *ext_data;      /* hook for extension to hang data */
708 #endif
709   Font          fid;            /* Font id for this font */
710 #if 0
711   unsigned      direction;      /* hint about direction the font is painted */
712 #endif
713   unsigned      min_char_or_byte2;      /* first character */
714   unsigned      max_char_or_byte2;      /* last character */
715 #if 0
716   unsigned      min_byte1;      /* first row that exists */
717   unsigned      max_byte1;      /* last row that exists */
718   Bool  all_chars_exist;        /* flag if all characters have non-zero size*/
719 #endif
720   unsigned      default_char;   /* char to print for undefined character */
721 #if 0
722   int         n_properties;   /* how many properties there are */
723   XFontProp     *properties;    /* pointer to array of additional properties*/
724 #endif
725   XCharStruct   min_bounds;     /* minimum bounds over all existing char*/
726   XCharStruct   max_bounds;     /* maximum bounds over all existing char*/
727   XCharStruct   *per_char;      /* first_char to last_char information */
728   int           ascent;         /* log. extent above baseline for spacing */
729   int           descent;        /* log. descent below baseline for spacing */
730 };
731
732 struct jwxyz_XComposeStatus {
733   char dummy;
734 };
735
736 struct  jwxyz_XPixmapFormatValues {
737   int depth;
738   int bits_per_pixel;
739   int scanline_pad;
740 };
741
742 #endif /* __JWXYZ_H__ */