summaryrefslogtreecommitdiff
path: root/otherlibs/graph/libgraph.h
blob: 71204e3133cf8a82d6ba5938fdeeb922787690cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/***********************************************************************/
/*                                                                     */
/*                                OCaml                                */
/*                                                                     */
/*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         */
/*                                                                     */
/*  Copyright 1996 Institut National de Recherche en Informatique et   */
/*  en Automatique.  All rights reserved.  This file is distributed    */
/*  under the terms of the GNU Library General Public License, with    */
/*  the special exception on linking described in file ../../LICENSE.  */
/*                                                                     */
/***********************************************************************/

#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <mlvalues.h>
#include <misc.h>

struct canvas {
  int w, h;                     /* Dimensions of the drawable */
  Drawable win;                 /* The drawable itself */
  GC gc;                        /* The associated graphics context */
};

extern Display * caml_gr_display;     /* The display connection */
extern int caml_gr_screen;            /* The screen number */
extern Colormap caml_gr_colormap;     /* The color map */
extern struct canvas caml_gr_window;  /* The graphics window */
extern struct canvas caml_gr_bstore;  /* The pixmap used for backing store */
extern int caml_gr_white, caml_gr_black;    /* Black and white pixels for X */
extern int caml_gr_background;        /* Background color for X
                                     (used for CAML color -1) */
extern Bool caml_gr_display_modeflag;     /* Display-mode flag */
extern Bool caml_gr_remember_modeflag;    /* Remember-mode flag */
extern int caml_gr_x, caml_gr_y;      /* Coordinates of the current point */
extern int caml_gr_color;        /* Current *CAML* drawing color (can be -1) */
extern XFontStruct * caml_gr_font;    /* Current font */
extern long caml_gr_selected_events;  /* Events we are interested in */
extern Bool caml_gr_ignore_sigio;     /* Whether to consume events on sigio */

extern Bool caml_gr_direct_rgb;
extern int caml_gr_byte_order;
extern int caml_gr_bitmap_unit;
extern int caml_gr_bits_per_pixel;

#define Wcvt(y) (caml_gr_window.h - 1 - (y))
#define Bcvt(y) (caml_gr_bstore.h - 1 - (y))
#define WtoB(y) ((y) + caml_gr_bstore.h - caml_gr_window.h)
#define BtoW(y) ((y) + caml_gr_window.h - caml_gr_bstore.h)
#define min(a,b) ((a) < (b) ? (a) : (b))
#define max(a,b) ((a) > (b) ? (a) : (b))

#define DEFAULT_SCREEN_WIDTH 600
#define DEFAULT_SCREEN_HEIGHT 450
#define BORDER_WIDTH 2
#define DEFAULT_WINDOW_NAME "OCaml graphics"
#define DEFAULT_SELECTED_EVENTS \
            (ExposureMask | KeyPressMask | StructureNotifyMask)
#define DEFAULT_FONT "fixed"
#define SIZE_QUEUE 256

/* To handle events asynchronously */
#ifdef HAS_ASYNC_IO
#define USE_ASYNC_IO
#define EVENT_SIGNAL SIGIO
#else
#ifdef HAS_SETITIMER
#define USE_INTERVAL_TIMER
#define EVENT_SIGNAL SIGALRM
#else
#define USE_ALARM
#define EVENT_SIGNAL SIGALRM
#endif
#endif

extern void caml_gr_fail(char *fmt, char *arg) Noreturn;
extern void caml_gr_check_open(void);
extern unsigned long caml_gr_pixel_rgb(int rgb);
extern int caml_gr_rgb_pixel(long unsigned int pixel);
extern void caml_gr_handle_event(XEvent *e);
extern void caml_gr_init_color_cache(void);
extern void caml_gr_init_direct_rgb_to_pixel(void);
extern value caml_gr_id_of_window( Window w );