annotate src/device-msw.c @ 294:4b85ae5eabfb r21-0b45

Import from CVS: tag r21-0b45
author cvs
date Mon, 13 Aug 2007 10:38:01 +0200
parents e11d67e05968
children 5a79be0ef6a8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1 /* Device functions for mswindows.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Free Software Foundation, Inc.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
4
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
5 This file is part of XEmacs.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
6
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
10 later version.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
11
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
15 for more details.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
16
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
21
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
23
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
24 /* Authorship:
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
25
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
26 Original authors: Jamie Zawinski and the FSF
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
27 Rewritten by Ben Wing and Chuck Thompson.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
28 Rewritten for mswindows by Jonathan Harris, November 1997 for 21.0.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
29 */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
30
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
31
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
32 #include <config.h>
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
33 #include "lisp.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
34
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
35 #include "console-msw.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
36 #include "console-stream.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
37 #include "events.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
38 #include "faces.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
39 #include "frame.h"
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
40 #include "sysdep.h"
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
41
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
42 #ifndef __CYGWIN32__
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
43 #include <commctrl.h>
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
44 #endif
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
45
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
46 /* win32 DDE management library globals */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
47 #ifdef HAVE_DRAGNDROP
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
48 DWORD mswindows_dde_mlid;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
49 HSZ mswindows_dde_service;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
50 HSZ mswindows_dde_topic_system;
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
51 HSZ mswindows_dde_item_open;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
52 #endif
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
53
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
54 /* Control conversion of upper case file names to lower case.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
55 nil means no, t means yes. */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
56 Lisp_Object Vmswindows_downcase_file_names;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
57
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
58 /* Control whether stat() attempts to determine file type and link count
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
59 exactly, at the expense of slower operation. Since true hard links
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
60 are supported on NTFS volumes, this is only relevant on NT. */
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
61 Lisp_Object Vmswindows_get_true_file_attributes;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
62
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
63 Lisp_Object Qinit_pre_mswindows_win, Qinit_post_mswindows_win;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
64
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
65 struct font_enum_t
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
66 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
67 HDC hdc;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
68 struct device *d;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
69 };
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
70
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
71
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
72 /************************************************************************/
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
73 /* helpers */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
74 /************************************************************************/
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
75
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
76 static int CALLBACK
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
77 font_enum_callback_2 (ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
78 int FontType, struct font_enum_t *font_enum)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
79 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
80 struct mswindows_font_enum *fontlist, **fonthead;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
81 char fontname[MSW_FONTSIZE];
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
82
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
83 /* The enumerated font weights are not to be trusted because:
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
84 * a) lpelfe->elfStyle is only filled in for TrueType fonts.
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
85 * b) Not all Bold and Italic styles of all fonts (inluding some Vector,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
86 * Truetype and Raster fonts) are enumerated.
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
87 * I guess that fonts for which Bold and Italic styles are generated
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
88 * 'on-the-fly' are not enumerated. It would be overly restrictive to
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
89 * disallow Bold And Italic weights for these fonts, so we just leave
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
90 * weights unspecified. This means that we have to weed out duplicates of
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
91 * those fonts that do get enumerated with different weights. */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
92
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
93 if (FontType == 0 /*vector*/ || FontType == TRUETYPE_FONTTYPE)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
94 /* Scalable, so leave pointsize blank */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
95 sprintf (fontname, "%s::::%s", lpelfe->elfLogFont.lfFaceName,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
96 lpelfe->elfScript);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
97 else
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
98 /* Formula for pointsize->height from LOGFONT docs in Platform SDK */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
99 sprintf (fontname, "%s::%d::%s", lpelfe->elfLogFont.lfFaceName,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
100 MulDiv (lpntme->ntmTm.tmHeight - lpntme->ntmTm.tmInternalLeading,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
101 72, DEVICE_MSWINDOWS_LOGPIXELSY (font_enum->d)),
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
102 lpelfe->elfScript);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
103
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
104 fonthead = &DEVICE_MSWINDOWS_FONTLIST (font_enum->d);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
105 fontlist = *fonthead;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
106 while (fontlist)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
107 if (!strcmp (fontname, fontlist->fontname))
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
108 return 1; /* found a duplicate */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
109 else
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
110 fontlist = fontlist->next;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
111
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
112 /* Insert entry at head */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
113 fontlist = *fonthead;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
114 *fonthead = xmalloc (sizeof (struct mswindows_font_enum));
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
115 if (*fonthead == NULL)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
116 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
117 *fonthead = fontlist;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
118 return 0;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
119 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
120 strcpy ((*fonthead)->fontname, fontname);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
121 (*fonthead)->next = fontlist;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
122 return 1;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
123 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
124
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
125 static int CALLBACK
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
126 font_enum_callback_1 (ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
127 int FontType, struct font_enum_t *font_enum)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
128 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
129 /* This function gets called once per facename per character set.
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
130 * We call a second callback to enumerate the fonts in each facename */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
131 return EnumFontFamiliesEx (font_enum->hdc, &lpelfe->elfLogFont,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
132 (FONTENUMPROC) font_enum_callback_2,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
133 (LPARAM) font_enum, 0);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
134 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
135
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
136 static Lisp_Object
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
137 build_syscolor_string (int index)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
138 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
139 DWORD clr;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
140 char buf[16];
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
141
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
142 if (index < 0)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
143 return Qnil;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
144
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
145 clr = GetSysColor (index);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
146 sprintf (buf, "#%02X%02X%02X",
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
147 GetRValue (clr),
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
148 GetGValue (clr),
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
149 GetBValue (clr));
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
150 return build_string (buf);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
151 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
152
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
153 static Lisp_Object
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
154 build_syscolor_cons (int index1, int index2)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
155 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
156 Lisp_Object color1, color2;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
157 struct gcpro gcpro1;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
158 GCPRO1 (color1);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
159 color1 = build_syscolor_string (index1);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
160 color2 = build_syscolor_string (index2);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
161 RETURN_UNGCPRO (Fcons (color1, color2));
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
162 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
163
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
164 static Lisp_Object
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
165 build_sysmetrics_cons (int index1, int index2)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
166 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
167 return Fcons (index1 < 0 ? Qnil : make_int (GetSystemMetrics (index1)),
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
168 index2 < 0 ? Qnil : make_int (GetSystemMetrics (index2)));
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
169 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
170
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
171
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
172
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
173 /************************************************************************/
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
174 /* methods */
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
175 /************************************************************************/
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
176
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
177 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
178 mswindows_init_device (struct device *d, Lisp_Object props)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
179 {
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
180 WNDCLASSEX wc;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
181 HDC hdc;
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
182 LOGFONT logfont;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
183 struct font_enum_t font_enum;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
184
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
185 DEVICE_CLASS (d) = Qcolor;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
186 DEVICE_INFD (d) = DEVICE_OUTFD (d) = -1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
187 init_baud_rate (d);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
188 init_one_device (d);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
189
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
190 d->device_data = xnew_and_zero (struct mswindows_device);
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
191 hdc = CreateCompatibleDC (NULL);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
192 assert (hdc!=NULL);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
193 DEVICE_MSWINDOWS_LOGPIXELSX(d) = GetDeviceCaps(hdc, LOGPIXELSX);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
194 DEVICE_MSWINDOWS_LOGPIXELSY(d) = GetDeviceCaps(hdc, LOGPIXELSY);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
195 DEVICE_MSWINDOWS_PLANES(d) = GetDeviceCaps(hdc, PLANES);
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
196 /* #### SIZEPALETTE only valid if RC_PALETTE bit set in RASTERCAPS,
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
197 what should we return for a non-palette-based device? */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
198 DEVICE_MSWINDOWS_CELLS(d) = GetDeviceCaps(hdc, SIZEPALETTE);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
199 DEVICE_MSWINDOWS_HORZRES(d) = GetDeviceCaps(hdc, HORZRES);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
200 DEVICE_MSWINDOWS_VERTRES(d) = GetDeviceCaps(hdc, VERTRES);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
201 DEVICE_MSWINDOWS_HORZSIZE(d) = GetDeviceCaps(hdc, HORZSIZE);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
202 DEVICE_MSWINDOWS_VERTSIZE(d) = GetDeviceCaps(hdc, VERTSIZE);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 263
diff changeset
203 DEVICE_MSWINDOWS_BITSPIXEL(d) = GetDeviceCaps(hdc, BITSPIXEL);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
204
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
205 DEVICE_MSWINDOWS_FONTLIST (d) = NULL;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
206 logfont.lfCharSet = DEFAULT_CHARSET;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
207 logfont.lfFaceName[0] = '\0';
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
208 logfont.lfPitchAndFamily = DEFAULT_PITCH;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
209 font_enum.hdc = hdc;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
210 font_enum.d = d;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
211 EnumFontFamiliesEx (hdc, &logfont, (FONTENUMPROC) font_enum_callback_1,
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
212 (LPARAM) (&font_enum), 0);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
213 DeleteDC (hdc);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
214
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
215 /* Register the main window class */
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
216 wc.cbSize = sizeof (WNDCLASSEX);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
217 wc.style = CS_OWNDC; /* One DC per window */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
218 wc.lpfnWndProc = (WNDPROC) mswindows_wnd_proc;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
219 wc.cbClsExtra = 0;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
220 wc.cbWndExtra = MSWINDOWS_WINDOW_EXTRA_BYTES;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
221 wc.hInstance = NULL; /* ? */
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
222 wc.hIcon = LoadIcon (GetModuleHandle(NULL), XEMACS_CLASS);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
223 wc.hCursor = LoadCursor (NULL, IDC_ARROW);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
224 /* Background brush is only used during sizing, when XEmacs cannot
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
225 take over */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
226 wc.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE + 1);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
227 wc.lpszMenuName = NULL;
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
228
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
229 wc.lpszClassName = XEMACS_CLASS;
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
230 wc.hIconSm = LoadImage (GetModuleHandle (NULL), XEMACS_CLASS,
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
231 IMAGE_ICON, 16, 16, 0);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
232 RegisterClassEx (&wc);
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 272
diff changeset
233 #ifdef HAVE_TOOLBARS
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 272
diff changeset
234 InitCommonControls ();
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 272
diff changeset
235 #endif
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
236 }
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
237
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
238 static void
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
239 mswindows_finish_init_device (struct device *d, Lisp_Object props)
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
240 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
241 /* Initialise DDE management library and our related globals. We execute a
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
242 * dde Open("file") by simulating a drop, so this depends on dnd support. */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
243 #ifdef HAVE_DRAGNDROP
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
244 mswindows_dde_mlid = 0;
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 272
diff changeset
245 DdeInitialize (&mswindows_dde_mlid, (PFNCALLBACK)mswindows_dde_callback,
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
246 APPCMD_FILTERINITS|CBF_FAIL_SELFCONNECTIONS|CBF_FAIL_ADVISES|
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
247 CBF_FAIL_POKES|CBF_FAIL_REQUESTS|CBF_SKIP_ALLNOTIFICATIONS, 0);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
248
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
249 mswindows_dde_service = DdeCreateStringHandle (mswindows_dde_mlid, XEMACS_CLASS, 0);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
250 mswindows_dde_topic_system = DdeCreateStringHandle (mswindows_dde_mlid, SZDDESYS_TOPIC, 0);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
251 mswindows_dde_item_open = DdeCreateStringHandle (mswindows_dde_mlid,
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
252 TEXT(MSWINDOWS_DDE_ITEM_OPEN), 0);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
253 DdeNameService (mswindows_dde_mlid, mswindows_dde_service, 0L, DNS_REGISTER);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
254 #endif
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
255 }
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
256
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
257 static void
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
258 mswindows_delete_device (struct device *d)
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
259 {
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
260 struct mswindows_font_enum *fontlist, *next;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
261
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
262 fontlist = DEVICE_MSWINDOWS_FONTLIST (d);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
263 while (fontlist)
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
264 {
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
265 next = fontlist->next;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
266 free (fontlist);
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
267 fontlist = next;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
268 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
269
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
270 #ifdef HAVE_DRAGNDROP
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
271 DdeNameService (mswindows_dde_mlid, 0L, 0L, DNS_REGISTER);
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
272 DdeUninitialize (mswindows_dde_mlid);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
273 #endif
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
274
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
275 free (d->device_data);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
276 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
277
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
278 static Lisp_Object
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
279 mswindows_device_system_metrics (struct device *d,
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
280 enum device_metrics m)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
281 {
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
282 switch (m)
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
283 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
284 case DM_size_device:
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
285 return Fcons (make_int (DEVICE_MSWINDOWS_HORZRES(d)),
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
286 make_int (DEVICE_MSWINDOWS_VERTRES(d)));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
287 break;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
288 case DM_size_device_mm:
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
289 return Fcons (make_int (DEVICE_MSWINDOWS_HORZSIZE(d)),
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
290 make_int (DEVICE_MSWINDOWS_VERTSIZE(d)));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
291 break;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
292 case DM_num_bit_planes:
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
293 /* this is what X means by bitplanes therefore we ought to be
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
294 consistent. num planes is always 1 under mswindows and
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
295 therefore useless */
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 284
diff changeset
296 return make_int (DEVICE_MSWINDOWS_BITSPIXEL(d));
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
297 break;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
298 case DM_num_color_cells:
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
299 return make_int (DEVICE_MSWINDOWS_CELLS(d));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
300 break;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
301
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
302 /*** Colors ***/
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
303 #define FROB(met, index1, index2) \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
304 case DM_##met: \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
305 return build_syscolor_cons (index1, index2);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
306
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
307 FROB (color_default, COLOR_WINDOW, COLOR_WINDOWTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
308 FROB (color_select, COLOR_HIGHLIGHT, COLOR_HIGHLIGHTTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
309 FROB (color_balloon, COLOR_INFOBK, COLOR_INFOTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
310 FROB (color_3d_face, COLOR_3DFACE, COLOR_BTNTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
311 FROB (color_3d_light, COLOR_3DLIGHT, COLOR_3DHILIGHT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
312 FROB (color_3d_dark, COLOR_3DSHADOW, COLOR_3DDKSHADOW);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
313 FROB (color_menu, COLOR_MENU, COLOR_MENUTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
314 FROB (color_menu_highlight, COLOR_HIGHLIGHT, COLOR_HIGHLIGHTTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
315 FROB (color_menu_button, COLOR_MENU, COLOR_MENUTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
316 FROB (color_menu_disabled, COLOR_MENU, COLOR_GRAYTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
317 FROB (color_toolbar, COLOR_BTNFACE, COLOR_BTNTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
318 FROB (color_scrollbar, COLOR_SCROLLBAR, COLOR_CAPTIONTEXT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
319 FROB (color_desktop, -1, COLOR_DESKTOP);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
320 FROB (color_workspace, -1, COLOR_APPWORKSPACE);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
321 #undef FROB
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
322
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
323 /*** Sizes ***/
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
324 #define FROB(met, index1, index2) \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
325 case DM_##met: \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
326 return build_sysmetrics_cons (index1, index2);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
327
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
328 FROB (size_cursor, SM_CXCURSOR, SM_CYCURSOR);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
329 FROB (size_scrollbar, SM_CXVSCROLL, SM_CYHSCROLL);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
330 FROB (size_menu, -1, SM_CYMENU);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
331 FROB (size_icon, SM_CXICON, SM_CYICON);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
332 FROB (size_icon_small, SM_CXSMICON, SM_CYSMICON);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
333 #undef FROB
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
334
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
335 case DM_size_workspace:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
336 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
337 RECT rc;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
338 SystemParametersInfo (SPI_GETWORKAREA, 0, &rc, 0);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
339 return Fcons (make_int (rc.right - rc.left),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
340 make_int (rc.bottom - rc.top));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
341 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
342 /*
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
343 case DM_size_toolbar:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
344 case DM_size_toolbar_button:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
345 case DM_size_toolbar_border:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
346 */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
347
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
348 /*** Features ***/
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
349 #define FROB(met, index) \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
350 case DM_##met: \
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
351 return make_int (GetSystemMetrics (index));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
352
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
353 FROB (mouse_buttons, SM_CMOUSEBUTTONS);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
354 FROB (swap_buttons, SM_SWAPBUTTON);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
355 FROB (show_sounds, SM_SHOWSOUNDS);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
356 FROB (slow_device, SM_SLOWMACHINE);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
357 FROB (security, SM_SECURE);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
358 #undef FROB
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
359
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
360 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
361
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
362 /* Do not know such property */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
363 return Qunbound;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
364 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
365
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
366 static unsigned int
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
367 mswindows_device_implementation_flags (void)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
368 {
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
369 return XDEVIMPF_PIXEL_GEOMETRY;
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
370 }
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
371
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
372
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
373 /************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
374 /* initialization */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
375 /************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
376
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
377 void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
378 syms_of_device_mswindows (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
379 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
380 defsymbol (&Qinit_pre_mswindows_win, "init-pre-mswindows-win");
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
381 defsymbol (&Qinit_post_mswindows_win, "init-post-mswindows-win");
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
382
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
383 DEFVAR_LISP ("mswindows-downcase-file-names", &Vmswindows_downcase_file_names /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
384 Non-nil means convert all-upper case file names to lower case.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
385 This applies when performing completions and file name expansion.*/ );
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
386 Vmswindows_downcase_file_names = Qnil;
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
387
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
388 DEFVAR_LISP ("mswindows-get-true-file-attributes", &Vmswindows_get_true_file_attributes /*
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
389 "Non-nil means determine accurate link count in file-attributes.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
390 This option slows down file-attributes noticeably, so is disabled by
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
391 default. Note that it is only useful for files on NTFS volumes,
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
392 where hard links are supported.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
393 */ );
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
394 Vmswindows_get_true_file_attributes = Qnil;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
395 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
396
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
397 void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
398 console_type_create_device_mswindows (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
399 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
400 CONSOLE_HAS_METHOD (mswindows, init_device);
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
401 CONSOLE_HAS_METHOD (mswindows, finish_init_device);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
402 /* CONSOLE_HAS_METHOD (mswindows, mark_device); */
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
403 CONSOLE_HAS_METHOD (mswindows, delete_device);
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
404 CONSOLE_HAS_METHOD (mswindows, device_system_metrics);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
405 CONSOLE_HAS_METHOD (mswindows, device_implementation_flags);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
406 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
407
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
408 void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
409 vars_of_device_mswindows (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
410 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
411 }