Mercurial > emacs
annotate src/w32gui.h @ 27721:c2a9f4621f9a
(decode_mode_spec_coding): Delete superfluous code.
Allocate sufficient memory for eol_str in the case that eoltype is
Lisp_Int.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 17 Feb 2000 08:16:19 +0000 |
parents | 7ca771f4c076 |
children | 583f230183eb |
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; |
27632
7ca771f4c076
(struct W32FontStruct): Add ascent and descent slots.
Andrew Innes <andrewi@gnu.org>
parents:
27398
diff
changeset
|
31 int ascent; |
7ca771f4c076
(struct W32FontStruct): Add ascent and descent slots.
Andrew Innes <andrewi@gnu.org>
parents:
27398
diff
changeset
|
32 int descent; |
13434 | 33 } W32FontStruct; |
34 | |
27398
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
35 typedef struct W32FontStruct XFontStruct; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
36 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
37 /* Emulate X GC's by keeping color and font info in a structure. */ |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
38 typedef struct _XGCValues |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
39 { |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
40 COLORREF foreground; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
41 COLORREF background; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
42 XFontStruct * font; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
43 } XGCValues; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
44 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
45 #define GCForeground 0x01 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
46 #define GCBackground 0x02 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
47 #define GCFont 0x03 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
48 |
13434 | 49 typedef HBITMAP Pixmap; |
50 typedef HBITMAP Bitmap; | |
27398
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
51 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
52 typedef XGCValues * GC; |
13434 | 53 typedef COLORREF Color; |
54 typedef DWORD Time; | |
55 typedef HWND Window; | |
56 typedef HCURSOR Cursor; | |
57 | |
58 #define FACE_DEFAULT (~0) | |
59 | |
60 extern HINSTANCE hinst; | |
61 extern HINSTANCE hprevinst; | |
62 extern LPSTR lpCmdLine; | |
63 extern 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 | |
100 extern int XParseGeometry (); | |
101 | |
102 #endif |