Mercurial > emacs
annotate src/w32gui.h @ 24763:c9362ef0817a
Delete some XEmacs compatibility code.
(bookmark-jump-noselect): Check vc-backend.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 23 May 1999 21:46:08 +0000 |
parents | 236627b268cc |
children | d6331257c601 |
rev | line source |
---|---|
16886
c686d4f3728a
Change all uses of win95, winnt, and win32 into Windows 95, Windows
Geoff Voelker <voelker@cs.washington.edu>
parents:
14186
diff
changeset
|
1 /* Definitions and headers for communication on the Microsoft W32 API. |
13434 | 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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13434
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
13434 | 20 |
16890
303cda7d14cb
Update include conditionals to use new name.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16886
diff
changeset
|
21 #ifndef __W32GUI_H__ |
303cda7d14cb
Update include conditionals to use new name.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16886
diff
changeset
|
22 #define __W32GUI_H__ |
13434 | 23 |
24 #include <windows.h> | |
24144
236627b268cc
Include w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16890
diff
changeset
|
25 #include "w32bdf.h" |
13434 | 26 |
27 typedef struct W32FontStruct { | |
28 TEXTMETRIC tm; | |
29 HFONT hfont; | |
24144
236627b268cc
Include w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16890
diff
changeset
|
30 bdffont *bdf; |
13434 | 31 } W32FontStruct; |
32 | |
33 typedef HBITMAP Pixmap; | |
34 typedef HBITMAP Bitmap; | |
35 typedef struct W32FontStruct XFontStruct; | |
36 typedef HDC GC; | |
37 typedef COLORREF Color; | |
38 typedef DWORD Time; | |
39 typedef HWND Window; | |
40 typedef HCURSOR Cursor; | |
41 | |
42 #define FACE_DEFAULT (~0) | |
43 | |
44 extern HINSTANCE hinst; | |
45 extern HINSTANCE hprevinst; | |
46 extern LPSTR lpCmdLine; | |
47 extern int nCmdShow; | |
48 | |
49 /* Bit Gravity */ | |
50 | |
51 #define ForgetGravity 0 | |
52 #define NorthWestGravity 1 | |
53 #define NorthGravity 2 | |
54 #define NorthEastGravity 3 | |
55 #define WestGravity 4 | |
56 #define CenterGravity 5 | |
57 #define EastGravity 6 | |
58 #define SouthWestGravity 7 | |
59 #define SouthGravity 8 | |
60 #define SouthEastGravity 9 | |
61 #define StaticGravity 10 | |
62 | |
63 #define NoValue 0x0000 | |
64 #define XValue 0x0001 | |
65 #define YValue 0x0002 | |
66 #define WidthValue 0x0004 | |
67 #define HeightValue 0x0008 | |
68 #define AllValues 0x000F | |
69 #define XNegative 0x0010 | |
70 #define YNegative 0x0020 | |
71 | |
72 #define USPosition (1L << 0) /* user specified x, y */ | |
73 #define USSize (1L << 1) /* user specified width, height */ | |
74 | |
75 #define PPosition (1L << 2) /* program specified position */ | |
76 #define PSize (1L << 3) /* program specified size */ | |
77 #define PMinSize (1L << 4) /* program specified minimum size */ | |
78 #define PMaxSize (1L << 5) /* program specified maximum size */ | |
79 #define PResizeInc (1L << 6) /* program specified resize increments */ | |
80 #define PAspect (1L << 7) /* program specified min and max aspect ratios */ | |
81 #define PBaseSize (1L << 8) /* program specified base for incrementing */ | |
82 #define PWinGravity (1L << 9) /* program specified window gravity */ | |
83 | |
84 extern int XParseGeometry (); | |
85 | |
86 #endif |