remove `declare' macro
[bpt/emacs.git] / src / w32gui.h
CommitLineData
b46a6a83 1/* Definitions and headers for communication on the Microsoft Windows API.
ba318903 2 Copyright (C) 1995, 2001-2014 Free Software Foundation, Inc.
ee78dc32
GV
3
4This file is part of GNU Emacs.
5
b9b1cc14 6GNU Emacs is free software: you can redistribute it and/or modify
ee78dc32 7it under the terms of the GNU General Public License as published by
b9b1cc14
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
ee78dc32
GV
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b9b1cc14 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ee78dc32 18
3b15de48
JR
19#ifndef EMACS_W32GUI_H
20#define EMACS_W32GUI_H
ee78dc32 21#include <windows.h>
c86a4064 22
1a1f3366
PE
23#include "systime.h" /* for Time */
24
5668fb88 25/* FIXME: old local memory management for menus. */
607db0aa
JR
26#define local_heap (GetProcessHeap ())
27#define local_alloc(n) (HeapAlloc (local_heap, HEAP_ZERO_MEMORY, (n)))
28#define local_free(p) (HeapFree (local_heap, 0, ((LPVOID) (p))))
29
5a048001
JR
30/* Emulate X GC's by keeping color and font info in a structure. */
31typedef struct _XGCValues
32{
33 COLORREF foreground;
34 COLORREF background;
bce485cc 35 struct font *font;
5a048001
JR
36} XGCValues;
37
38#define GCForeground 0x01
39#define GCBackground 0x02
40#define GCFont 0x03
41
ee78dc32
GV
42typedef HBITMAP Pixmap;
43typedef HBITMAP Bitmap;
5a048001 44
574bdd83
KS
45typedef char * XrmDatabase;
46
5a048001 47typedef XGCValues * GC;
ee78dc32 48typedef COLORREF Color;
ee78dc32 49typedef HWND Window;
f9aaed00 50typedef HDC Display; /* HDC so it doesn't conflict with xpm lib. */
ee78dc32
GV
51typedef HCURSOR Cursor;
52
d165fbde
KS
53#define No_Cursor (0)
54
e83074af
KS
55#define XChar2b wchar_t
56
57/* Dealing with bits of wchar_t as if they were an XChar2b. */
58#define STORE_XCHAR2B(chp, byte1, byte2) \
0269bd90 59 ((*(chp)) = ((XChar2b)((((byte1) & 0x00ff) << 8) | ((byte2) & 0x00ff))))
e83074af
KS
60
61#define XCHAR2B_BYTE1(chp) \
0269bd90 62 (((*(chp)) & 0xff00) >> 8)
e83074af
KS
63
64#define XCHAR2B_BYTE2(chp) \
0269bd90 65 ((*(chp)) & 0x00ff)
e83074af
KS
66
67
73e66133
JR
68/* Windows equivalent of XImage. */
69typedef struct _XImage
70{
71 unsigned char * data;
72 BITMAPINFO info;
73 /* Optional RGBQUAD array for palette follows (see BITMAPINFO docs). */
74} XImage;
56f508dd 75
ee78dc32
GV
76#define FACE_DEFAULT (~0)
77
78extern HINSTANCE hinst;
ee78dc32
GV
79
80/* Bit Gravity */
81
82#define ForgetGravity 0
83#define NorthWestGravity 1
84#define NorthGravity 2
85#define NorthEastGravity 3
86#define WestGravity 4
87#define CenterGravity 5
88#define EastGravity 6
89#define SouthWestGravity 7
90#define SouthGravity 8
91#define SouthEastGravity 9
92#define StaticGravity 10
93
94#define NoValue 0x0000
95#define XValue 0x0001
96#define YValue 0x0002
97#define WidthValue 0x0004
98#define HeightValue 0x0008
99#define AllValues 0x000F
100#define XNegative 0x0010
101#define YNegative 0x0020
102
103#define USPosition (1L << 0) /* user specified x, y */
104#define USSize (1L << 1) /* user specified width, height */
105
106#define PPosition (1L << 2) /* program specified position */
107#define PSize (1L << 3) /* program specified size */
108#define PMinSize (1L << 4) /* program specified minimum size */
109#define PMaxSize (1L << 5) /* program specified maximum size */
110#define PResizeInc (1L << 6) /* program specified resize increments */
111#define PAspect (1L << 7) /* program specified min and max aspect ratios */
112#define PBaseSize (1L << 8) /* program specified base for incrementing */
113#define PWinGravity (1L << 9) /* program specified window gravity */
114
d165fbde
KS
115typedef struct {
116 int x, y;
117 unsigned width, height;
118} XRectangle;
119
120#define NativeRectangle RECT
121
122#define CONVERT_TO_XRECT(xr,nr) \
123 ((xr).x = (nr).left, \
124 (xr).y = (nr).top, \
125 (xr).width = ((nr).right - (nr).left), \
126 (xr).height = ((nr).bottom - (nr).top))
127
128#define CONVERT_FROM_XRECT(xr,nr) \
129 ((nr).left = (xr).x, \
130 (nr).top = (xr).y, \
131 (nr).right = ((xr).x + (xr).width), \
132 (nr).bottom = ((xr).y + (xr).height))
133
134#define STORE_NATIVE_RECT(nr,x,y,width,height) \
135 ((nr).left = (x), \
136 (nr).top = (y), \
137 (nr).right = ((nr).left + (width)), \
138 (nr).bottom = ((nr).top + (height)))
139
140
3b15de48 141#endif /* EMACS_W32GUI_H */