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