Mercurial > emacs
annotate src/w32gui.h @ 32184:ab059a552fa2
Missing paren.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 05 Oct 2000 22:28:23 +0000 |
parents | 1c1c5d1eb49c |
children | 22afed8d7e3f |
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 |
29605
beb7f126f175
(EMACS_W32GUI_H): Renamed from __W32GUI_H__
Jason Rumney <jasonr@gnu.org>
parents:
29318
diff
changeset
|
21 #ifndef EMACS_W32GUI_H |
beb7f126f175
(EMACS_W32GUI_H): Renamed from __W32GUI_H__
Jason Rumney <jasonr@gnu.org>
parents:
29318
diff
changeset
|
22 #define EMACS_W32GUI_H |
13434 | 23 #include <windows.h> |
31112 | 24 /* Emacs takes care of ensuring that these are defined. */ |
25 #ifdef max | |
26 #undef max | |
27 #undef min | |
28 #endif | |
29 | |
24144
236627b268cc
Include w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16890
diff
changeset
|
30 #include "w32bdf.h" |
13434 | 31 |
32 typedef struct W32FontStruct { | |
33 TEXTMETRIC tm; | |
34 HFONT hfont; | |
24144
236627b268cc
Include w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16890
diff
changeset
|
35 bdffont *bdf; |
29318
d54d4038df20
(W32FontStruct): Add double_byte_p member.
Jason Rumney <jasonr@gnu.org>
parents:
27895
diff
changeset
|
36 int double_byte_p; |
13434 | 37 } W32FontStruct; |
38 | |
27398
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
39 typedef struct W32FontStruct XFontStruct; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
40 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
41 /* 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
|
42 typedef struct _XGCValues |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
43 { |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
44 COLORREF foreground; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
45 COLORREF background; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
46 XFontStruct * font; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
47 } XGCValues; |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
48 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
49 #define GCForeground 0x01 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
50 #define GCBackground 0x02 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
51 #define GCFont 0x03 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
52 |
13434 | 53 typedef HBITMAP Pixmap; |
54 typedef HBITMAP Bitmap; | |
27398
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
55 |
d6331257c601
(XGCValue): New struct for emulating X GCs.
Jason Rumney <jasonr@gnu.org>
parents:
24144
diff
changeset
|
56 typedef XGCValues * GC; |
13434 | 57 typedef COLORREF Color; |
58 typedef DWORD Time; | |
59 typedef HWND Window; | |
60 typedef HCURSOR Cursor; | |
61 | |
62 #define FACE_DEFAULT (~0) | |
63 | |
64 extern HINSTANCE hinst; | |
65 extern HINSTANCE hprevinst; | |
66 extern LPSTR lpCmdLine; | |
67 extern int nCmdShow; | |
68 | |
69 /* Bit Gravity */ | |
70 | |
71 #define ForgetGravity 0 | |
72 #define NorthWestGravity 1 | |
73 #define NorthGravity 2 | |
74 #define NorthEastGravity 3 | |
75 #define WestGravity 4 | |
76 #define CenterGravity 5 | |
77 #define EastGravity 6 | |
78 #define SouthWestGravity 7 | |
79 #define SouthGravity 8 | |
80 #define SouthEastGravity 9 | |
81 #define StaticGravity 10 | |
82 | |
83 #define NoValue 0x0000 | |
84 #define XValue 0x0001 | |
85 #define YValue 0x0002 | |
86 #define WidthValue 0x0004 | |
87 #define HeightValue 0x0008 | |
88 #define AllValues 0x000F | |
89 #define XNegative 0x0010 | |
90 #define YNegative 0x0020 | |
91 | |
92 #define USPosition (1L << 0) /* user specified x, y */ | |
93 #define USSize (1L << 1) /* user specified width, height */ | |
94 | |
95 #define PPosition (1L << 2) /* program specified position */ | |
96 #define PSize (1L << 3) /* program specified size */ | |
97 #define PMinSize (1L << 4) /* program specified minimum size */ | |
98 #define PMaxSize (1L << 5) /* program specified maximum size */ | |
99 #define PResizeInc (1L << 6) /* program specified resize increments */ | |
100 #define PAspect (1L << 7) /* program specified min and max aspect ratios */ | |
101 #define PBaseSize (1L << 8) /* program specified base for incrementing */ | |
102 #define PWinGravity (1L << 9) /* program specified window gravity */ | |
103 | |
104 extern int XParseGeometry (); | |
105 | |
29605
beb7f126f175
(EMACS_W32GUI_H): Renamed from __W32GUI_H__
Jason Rumney <jasonr@gnu.org>
parents:
29318
diff
changeset
|
106 #endif /* EMACS_W32GUI_H */ |