2001-11-06 04:06:26 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
2001-11-06 04:06:26 -08:00
|
|
|
/* */
|
|
|
|
/* Jacob Navia, after Xavier Leroy */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2001 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
2001-11-06 04:06:26 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
2002-04-16 03:00:33 -07:00
|
|
|
#include <windowsx.h>
|
2001-11-06 04:06:26 -08:00
|
|
|
|
|
|
|
struct canvas {
|
|
|
|
int w, h; /* Dimensions of the drawable */
|
|
|
|
HWND win; /* The drawable itself */
|
|
|
|
HDC gc; /* The associated graphics context */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern HWND grdisplay; /* The display connection */
|
|
|
|
extern COLORREF grbackground;
|
|
|
|
extern BOOL grdisplay_mode; /* Display-mode flag */
|
|
|
|
extern BOOL grremember_mode; /* Remember-mode flag */
|
|
|
|
extern int grx, gry; /* Coordinates of the current point */
|
|
|
|
extern int grcolor; /* Current *CAML* drawing color (can be -1) */
|
|
|
|
extern HFONT * grfont; /* Current font */
|
|
|
|
|
|
|
|
extern BOOL direct_rgb;
|
|
|
|
extern int byte_order;
|
|
|
|
extern int bitmap_unit;
|
|
|
|
extern int bits_per_pixel;
|
|
|
|
|
|
|
|
#define Wcvt(y) (grwindow.height - 1 - (y))
|
|
|
|
#define Bcvt(y) (grwindow.height - 1 - (y))
|
|
|
|
#define WtoB(y) ((y) + WindowRect.bottom - grwindow.h)
|
|
|
|
|
|
|
|
#define DEFAULT_SCREEN_WIDTH 1024
|
|
|
|
#define DEFAULT_SCREEN_HEIGHT 768
|
|
|
|
#define BORDER_WIDTH 2
|
2012-02-10 08:15:24 -08:00
|
|
|
#define WINDOW_NAME "OCaml graphics"
|
|
|
|
#define ICON_NAME "OCaml graphics"
|
2001-11-06 04:06:26 -08:00
|
|
|
#define SIZE_QUEUE 256
|
|
|
|
|
|
|
|
void gr_fail(char *fmt, char *arg);
|
|
|
|
void gr_check_open(void);
|
2004-03-24 07:36:19 -08:00
|
|
|
CAMLprim value caml_gr_set_color(value vcolor);
|
2001-11-06 04:06:26 -08:00
|
|
|
|
|
|
|
// Windows specific definitions
|
|
|
|
extern RECT WindowRect;
|
|
|
|
extern int grCurrentColor;
|
|
|
|
|
|
|
|
typedef struct tagWindow {
|
2002-07-23 07:12:03 -07:00
|
|
|
HDC gc;
|
|
|
|
HDC gcBitmap;
|
|
|
|
HWND hwnd;
|
|
|
|
HBRUSH CurrentBrush;
|
|
|
|
HPEN CurrentPen;
|
|
|
|
DWORD CurrentColor;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int grx;
|
|
|
|
int gry;
|
|
|
|
HBITMAP hBitmap;
|
|
|
|
HFONT CurrentFont;
|
|
|
|
int CurrentFontSize;
|
|
|
|
HDC tempDC; // For image operations;
|
2001-11-06 04:06:26 -08:00
|
|
|
} GR_WINDOW;
|
|
|
|
|
|
|
|
extern GR_WINDOW grwindow;
|
|
|
|
HFONT CreationFont(char *name);
|
2004-07-13 05:25:21 -07:00
|
|
|
extern void caml_gr_init_event_queue(void);
|
|
|
|
extern void caml_gr_handle_event(UINT msg, WPARAM wParam, LPARAM lParam);
|