Remove `LISP_FLOAT_TYPE' and `standalone'.
[bpt/emacs.git] / src / w32gui.h
CommitLineData
de31b97a 1/* Definitions and headers for communication on the Microsoft W32 API.
ee78dc32
GV
2 Copyright (C) 1995 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
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
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
ee78dc32 20
5fba49f0
GV
21#ifndef __W32GUI_H__
22#define __W32GUI_H__
ee78dc32
GV
23
24#include <windows.h>
640ea3c5 25#include "w32bdf.h"
ee78dc32
GV
26
27typedef struct W32FontStruct {
28 TEXTMETRIC tm;
29 HFONT hfont;
640ea3c5 30 bdffont *bdf;
0052a264
AI
31 int ascent;
32 int descent;
ee78dc32
GV
33} W32FontStruct;
34
5a048001
JR
35typedef struct W32FontStruct XFontStruct;
36
37/* Emulate X GC's by keeping color and font info in a structure. */
38typedef struct _XGCValues
39{
40 COLORREF foreground;
41 COLORREF background;
42 XFontStruct * font;
43} XGCValues;
44
45#define GCForeground 0x01
46#define GCBackground 0x02
47#define GCFont 0x03
48
ee78dc32
GV
49typedef HBITMAP Pixmap;
50typedef HBITMAP Bitmap;
5a048001
JR
51
52typedef XGCValues * GC;
ee78dc32
GV
53typedef COLORREF Color;
54typedef DWORD Time;
55typedef HWND Window;
56typedef HCURSOR Cursor;
57
58#define FACE_DEFAULT (~0)
59
60extern HINSTANCE hinst;
61extern HINSTANCE hprevinst;
62extern LPSTR lpCmdLine;
63extern int nCmdShow;
64
65/* Bit Gravity */
66
67#define ForgetGravity 0
68#define NorthWestGravity 1
69#define NorthGravity 2
70#define NorthEastGravity 3
71#define WestGravity 4
72#define CenterGravity 5
73#define EastGravity 6
74#define SouthWestGravity 7
75#define SouthGravity 8
76#define SouthEastGravity 9
77#define StaticGravity 10
78
79#define NoValue 0x0000
80#define XValue 0x0001
81#define YValue 0x0002
82#define WidthValue 0x0004
83#define HeightValue 0x0008
84#define AllValues 0x000F
85#define XNegative 0x0010
86#define YNegative 0x0020
87
88#define USPosition (1L << 0) /* user specified x, y */
89#define USSize (1L << 1) /* user specified width, height */
90
91#define PPosition (1L << 2) /* program specified position */
92#define PSize (1L << 3) /* program specified size */
93#define PMinSize (1L << 4) /* program specified minimum size */
94#define PMaxSize (1L << 5) /* program specified maximum size */
95#define PResizeInc (1L << 6) /* program specified resize increments */
96#define PAspect (1L << 7) /* program specified min and max aspect ratios */
97#define PBaseSize (1L << 8) /* program specified base for incrementing */
98#define PWinGravity (1L << 9) /* program specified window gravity */
99
100extern int XParseGeometry ();
101
102#endif