("latin-8-prefix", "latin-9-prefix"): New.
[emacs.git] / src / w32fns.c
blob3ccfdeef61d1f146520432237f7179fde605ae7e
1 /* Graphical user interface functions for the Microsoft W32 API.
2 Copyright (C) 1989, 92, 93, 94, 95, 1996, 1997, 1998, 1999
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Added by Kevin Gallo */
24 #include <config.h>
26 #include <signal.h>
27 #include <stdio.h>
28 #include <limits.h>
29 #include <errno.h>
31 #include "lisp.h"
32 #include "charset.h"
33 #include "dispextern.h"
34 #include "w32term.h"
35 #include "frame.h"
36 #include "window.h"
37 #include "buffer.h"
38 #include "fontset.h"
39 #include "intervals.h"
40 #include "keyboard.h"
41 #include "blockinput.h"
42 #include "epaths.h"
43 #include "w32heap.h"
44 #include "termhooks.h"
45 #include "coding.h"
46 #include "ccl.h"
47 #include "systime.h"
49 #include "bitmaps/gray.xbm"
51 #include <commdlg.h>
52 #include <shellapi.h>
53 #include <ctype.h>
55 #define max(a, b) ((a) > (b) ? (a) : (b))
57 extern void free_frame_menubar ();
58 extern double atof ();
59 extern int w32_console_toggle_lock_key (int vk_code, Lisp_Object new_state);
60 extern int quit_char;
62 /* A definition of XColor for non-X frames. */
63 #ifndef HAVE_X_WINDOWS
64 typedef struct {
65 unsigned long pixel;
66 unsigned short red, green, blue;
67 char flags;
68 char pad;
69 } XColor;
70 #endif
72 extern char *lispy_function_keys[];
74 /* The gray bitmap `bitmaps/gray'. This is done because w32term.c uses
75 it, and including `bitmaps/gray' more than once is a problem when
76 config.h defines `static' as an empty replacement string. */
78 int gray_bitmap_width = gray_width;
79 int gray_bitmap_height = gray_height;
80 unsigned char *gray_bitmap_bits = gray_bits;
82 /* The colormap for converting color names to RGB values */
83 Lisp_Object Vw32_color_map;
85 /* Non nil if alt key presses are passed on to Windows. */
86 Lisp_Object Vw32_pass_alt_to_system;
88 /* Non nil if alt key is translated to meta_modifier, nil if it is translated
89 to alt_modifier. */
90 Lisp_Object Vw32_alt_is_meta;
92 /* If non-zero, the windows virtual key code for an alternative quit key. */
93 Lisp_Object Vw32_quit_key;
95 /* Non nil if left window key events are passed on to Windows (this only
96 affects whether "tapping" the key opens the Start menu). */
97 Lisp_Object Vw32_pass_lwindow_to_system;
99 /* Non nil if right window key events are passed on to Windows (this
100 only affects whether "tapping" the key opens the Start menu). */
101 Lisp_Object Vw32_pass_rwindow_to_system;
103 /* Virtual key code used to generate "phantom" key presses in order
104 to stop system from acting on Windows key events. */
105 Lisp_Object Vw32_phantom_key_code;
107 /* Modifier associated with the left "Windows" key, or nil to act as a
108 normal key. */
109 Lisp_Object Vw32_lwindow_modifier;
111 /* Modifier associated with the right "Windows" key, or nil to act as a
112 normal key. */
113 Lisp_Object Vw32_rwindow_modifier;
115 /* Modifier associated with the "Apps" key, or nil to act as a normal
116 key. */
117 Lisp_Object Vw32_apps_modifier;
119 /* Value is nil if Num Lock acts as a function key. */
120 Lisp_Object Vw32_enable_num_lock;
122 /* Value is nil if Caps Lock acts as a function key. */
123 Lisp_Object Vw32_enable_caps_lock;
125 /* Modifier associated with Scroll Lock, or nil to act as a normal key. */
126 Lisp_Object Vw32_scroll_lock_modifier;
128 /* Switch to control whether we inhibit requests for synthesized bold
129 and italic versions of fonts. */
130 Lisp_Object Vw32_enable_synthesized_fonts;
132 /* Enable palette management. */
133 Lisp_Object Vw32_enable_palette;
135 /* Control how close left/right button down events must be to
136 be converted to a middle button down event. */
137 Lisp_Object Vw32_mouse_button_tolerance;
139 /* Minimum interval between mouse movement (and scroll bar drag)
140 events that are passed on to the event loop. */
141 Lisp_Object Vw32_mouse_move_interval;
143 /* The name we're using in resource queries. */
144 Lisp_Object Vx_resource_name;
146 /* Non nil if no window manager is in use. */
147 Lisp_Object Vx_no_window_manager;
149 /* Non-zero means we're allowed to display a busy cursor. */
151 int display_busy_cursor_p;
153 /* The background and shape of the mouse pointer, and shape when not
154 over text or in the modeline. */
156 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
157 Lisp_Object Vx_busy_pointer_shape;
159 /* The shape when over mouse-sensitive text. */
161 Lisp_Object Vx_sensitive_text_pointer_shape;
163 /* Color of chars displayed in cursor box. */
165 Lisp_Object Vx_cursor_fore_pixel;
167 /* Nonzero if using Windows. */
169 static int w32_in_use;
171 /* Search path for bitmap files. */
173 Lisp_Object Vx_bitmap_file_path;
175 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
177 Lisp_Object Vx_pixel_size_width_font_regexp;
179 /* Alist of bdf fonts and the files that define them. */
180 Lisp_Object Vw32_bdf_filename_alist;
182 Lisp_Object Vw32_system_coding_system;
184 /* A flag to control whether fonts are matched strictly or not. */
185 int w32_strict_fontnames;
187 /* A flag to control whether we should only repaint if GetUpdateRect
188 indicates there is an update region. */
189 int w32_strict_painting;
191 /* Associative list linking character set strings to Windows codepages. */
192 Lisp_Object Vw32_charset_info_alist;
194 /* VIETNAMESE_CHARSET is not defined in some versions of MSVC. */
195 #ifndef VIETNAMESE_CHARSET
196 #define VIETNAMESE_CHARSET 163
197 #endif
200 /* Evaluate this expression to rebuild the section of syms_of_w32fns
201 that initializes and staticpros the symbols declared below. Note
202 that Emacs 18 has a bug that keeps C-x C-e from being able to
203 evaluate this expression.
205 (progn
206 ;; Accumulate a list of the symbols we want to initialize from the
207 ;; declarations at the top of the file.
208 (goto-char (point-min))
209 (search-forward "/\*&&& symbols declared here &&&*\/\n")
210 (let (symbol-list)
211 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
212 (setq symbol-list
213 (cons (buffer-substring (match-beginning 1) (match-end 1))
214 symbol-list))
215 (forward-line 1))
216 (setq symbol-list (nreverse symbol-list))
217 ;; Delete the section of syms_of_... where we initialize the symbols.
218 (search-forward "\n /\*&&& init symbols here &&&*\/\n")
219 (let ((start (point)))
220 (while (looking-at "^ Q")
221 (forward-line 2))
222 (kill-region start (point)))
223 ;; Write a new symbol initialization section.
224 (while symbol-list
225 (insert (format " %s = intern (\"" (car symbol-list)))
226 (let ((start (point)))
227 (insert (substring (car symbol-list) 1))
228 (subst-char-in-region start (point) ?_ ?-))
229 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
230 (setq symbol-list (cdr symbol-list)))))
234 /*&&& symbols declared here &&&*/
235 Lisp_Object Qauto_raise;
236 Lisp_Object Qauto_lower;
237 Lisp_Object Qbar;
238 Lisp_Object Qborder_color;
239 Lisp_Object Qborder_width;
240 Lisp_Object Qbox;
241 Lisp_Object Qcursor_color;
242 Lisp_Object Qcursor_type;
243 Lisp_Object Qgeometry;
244 Lisp_Object Qicon_left;
245 Lisp_Object Qicon_top;
246 Lisp_Object Qicon_type;
247 Lisp_Object Qicon_name;
248 Lisp_Object Qinternal_border_width;
249 Lisp_Object Qleft;
250 Lisp_Object Qright;
251 Lisp_Object Qmouse_color;
252 Lisp_Object Qnone;
253 Lisp_Object Qparent_id;
254 Lisp_Object Qscroll_bar_width;
255 Lisp_Object Qsuppress_icon;
256 Lisp_Object Qundefined_color;
257 Lisp_Object Qvertical_scroll_bars;
258 Lisp_Object Qvisibility;
259 Lisp_Object Qwindow_id;
260 Lisp_Object Qx_frame_parameter;
261 Lisp_Object Qx_resource_name;
262 Lisp_Object Quser_position;
263 Lisp_Object Quser_size;
264 Lisp_Object Qscreen_gamma;
265 Lisp_Object Qline_spacing;
266 Lisp_Object Qcenter;
267 Lisp_Object Qhyper;
268 Lisp_Object Qsuper;
269 Lisp_Object Qmeta;
270 Lisp_Object Qalt;
271 Lisp_Object Qctrl;
272 Lisp_Object Qcontrol;
273 Lisp_Object Qshift;
275 Lisp_Object Qw32_charset_ansi;
276 Lisp_Object Qw32_charset_default;
277 Lisp_Object Qw32_charset_symbol;
278 Lisp_Object Qw32_charset_shiftjis;
279 Lisp_Object Qw32_charset_hangul;
280 Lisp_Object Qw32_charset_gb2312;
281 Lisp_Object Qw32_charset_chinesebig5;
282 Lisp_Object Qw32_charset_oem;
284 #ifndef JOHAB_CHARSET
285 #define JOHAB_CHARSET 130
286 #endif
287 #ifdef JOHAB_CHARSET
288 Lisp_Object Qw32_charset_easteurope;
289 Lisp_Object Qw32_charset_turkish;
290 Lisp_Object Qw32_charset_baltic;
291 Lisp_Object Qw32_charset_russian;
292 Lisp_Object Qw32_charset_arabic;
293 Lisp_Object Qw32_charset_greek;
294 Lisp_Object Qw32_charset_hebrew;
295 Lisp_Object Qw32_charset_thai;
296 Lisp_Object Qw32_charset_johab;
297 Lisp_Object Qw32_charset_mac;
298 #endif
300 #ifdef UNICODE_CHARSET
301 Lisp_Object Qw32_charset_unicode;
302 #endif
304 extern Lisp_Object Qtop;
305 extern Lisp_Object Qdisplay;
306 extern Lisp_Object Qtool_bar_lines;
308 /* State variables for emulating a three button mouse. */
309 #define LMOUSE 1
310 #define MMOUSE 2
311 #define RMOUSE 4
313 static int button_state = 0;
314 static W32Msg saved_mouse_button_msg;
315 static unsigned mouse_button_timer; /* non-zero when timer is active */
316 static W32Msg saved_mouse_move_msg;
317 static unsigned mouse_move_timer;
319 /* W95 mousewheel handler */
320 unsigned int msh_mousewheel = 0;
322 #define MOUSE_BUTTON_ID 1
323 #define MOUSE_MOVE_ID 2
325 /* The below are defined in frame.c. */
327 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
328 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
329 extern Lisp_Object Qtool_bar_lines;
331 extern Lisp_Object Vwindow_system_version;
333 Lisp_Object Qface_set_after_frame_default;
335 /* From w32term.c. */
336 extern Lisp_Object Vw32_num_mouse_buttons;
337 extern Lisp_Object Vw32_recognize_altgr;
340 /* Error if we are not connected to MS-Windows. */
341 void
342 check_w32 ()
344 if (! w32_in_use)
345 error ("MS-Windows not in use or not initialized");
348 /* Nonzero if we can use mouse menus.
349 You should not call this unless HAVE_MENUS is defined. */
352 have_menus_p ()
354 return w32_in_use;
357 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
358 and checking validity for W32. */
360 FRAME_PTR
361 check_x_frame (frame)
362 Lisp_Object frame;
364 FRAME_PTR f;
366 if (NILP (frame))
367 frame = selected_frame;
368 CHECK_LIVE_FRAME (frame, 0);
369 f = XFRAME (frame);
370 if (! FRAME_W32_P (f))
371 error ("non-w32 frame used");
372 return f;
375 /* Let the user specify an display with a frame.
376 nil stands for the selected frame--or, if that is not a w32 frame,
377 the first display on the list. */
379 static struct w32_display_info *
380 check_x_display_info (frame)
381 Lisp_Object frame;
383 if (NILP (frame))
385 struct frame *sf = XFRAME (selected_frame);
387 if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
388 return FRAME_W32_DISPLAY_INFO (sf);
389 else
390 return &one_w32_display_info;
392 else if (STRINGP (frame))
393 return x_display_info_for_name (frame);
394 else
396 FRAME_PTR f;
398 CHECK_LIVE_FRAME (frame, 0);
399 f = XFRAME (frame);
400 if (! FRAME_W32_P (f))
401 error ("non-w32 frame used");
402 return FRAME_W32_DISPLAY_INFO (f);
406 /* Return the Emacs frame-object corresponding to an w32 window.
407 It could be the frame's main window or an icon window. */
409 /* This function can be called during GC, so use GC_xxx type test macros. */
411 struct frame *
412 x_window_to_frame (dpyinfo, wdesc)
413 struct w32_display_info *dpyinfo;
414 HWND wdesc;
416 Lisp_Object tail, frame;
417 struct frame *f;
419 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
421 frame = XCAR (tail);
422 if (!GC_FRAMEP (frame))
423 continue;
424 f = XFRAME (frame);
425 if (!FRAME_W32_P (f) || FRAME_W32_DISPLAY_INFO (f) != dpyinfo)
426 continue;
427 if (f->output_data.w32->busy_window == wdesc)
428 return f;
430 /* NTEMACS_TODO: Check tooltips when supported. */
431 if (FRAME_W32_WINDOW (f) == wdesc)
432 return f;
434 return 0;
439 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
440 id, which is just an int that this section returns. Bitmaps are
441 reference counted so they can be shared among frames.
443 Bitmap indices are guaranteed to be > 0, so a negative number can
444 be used to indicate no bitmap.
446 If you use x_create_bitmap_from_data, then you must keep track of
447 the bitmaps yourself. That is, creating a bitmap from the same
448 data more than once will not be caught. */
451 /* Functions to access the contents of a bitmap, given an id. */
454 x_bitmap_height (f, id)
455 FRAME_PTR f;
456 int id;
458 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].height;
462 x_bitmap_width (f, id)
463 FRAME_PTR f;
464 int id;
466 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].width;
470 x_bitmap_pixmap (f, id)
471 FRAME_PTR f;
472 int id;
474 return (int) FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
478 /* Allocate a new bitmap record. Returns index of new record. */
480 static int
481 x_allocate_bitmap_record (f)
482 FRAME_PTR f;
484 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
485 int i;
487 if (dpyinfo->bitmaps == NULL)
489 dpyinfo->bitmaps_size = 10;
490 dpyinfo->bitmaps
491 = (struct w32_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
492 dpyinfo->bitmaps_last = 1;
493 return 1;
496 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
497 return ++dpyinfo->bitmaps_last;
499 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
500 if (dpyinfo->bitmaps[i].refcount == 0)
501 return i + 1;
503 dpyinfo->bitmaps_size *= 2;
504 dpyinfo->bitmaps
505 = (struct w32_bitmap_record *) xrealloc (dpyinfo->bitmaps,
506 dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
507 return ++dpyinfo->bitmaps_last;
510 /* Add one reference to the reference count of the bitmap with id ID. */
512 void
513 x_reference_bitmap (f, id)
514 FRAME_PTR f;
515 int id;
517 ++FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
520 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
523 x_create_bitmap_from_data (f, bits, width, height)
524 struct frame *f;
525 char *bits;
526 unsigned int width, height;
528 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
529 Pixmap bitmap;
530 int id;
532 bitmap = CreateBitmap (width, height,
533 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_planes,
534 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_cbits,
535 bits);
537 if (! bitmap)
538 return -1;
540 id = x_allocate_bitmap_record (f);
541 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
542 dpyinfo->bitmaps[id - 1].file = NULL;
543 dpyinfo->bitmaps[id - 1].hinst = NULL;
544 dpyinfo->bitmaps[id - 1].refcount = 1;
545 dpyinfo->bitmaps[id - 1].depth = 1;
546 dpyinfo->bitmaps[id - 1].height = height;
547 dpyinfo->bitmaps[id - 1].width = width;
549 return id;
552 /* Create bitmap from file FILE for frame F. */
555 x_create_bitmap_from_file (f, file)
556 struct frame *f;
557 Lisp_Object file;
559 return -1;
560 #if 0 /* NTEMACS_TODO : bitmap support */
561 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
562 unsigned int width, height;
563 HBITMAP bitmap;
564 int xhot, yhot, result, id;
565 Lisp_Object found;
566 int fd;
567 char *filename;
568 HINSTANCE hinst;
570 /* Look for an existing bitmap with the same name. */
571 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
573 if (dpyinfo->bitmaps[id].refcount
574 && dpyinfo->bitmaps[id].file
575 && !strcmp (dpyinfo->bitmaps[id].file, (char *) XSTRING (file)->data))
577 ++dpyinfo->bitmaps[id].refcount;
578 return id + 1;
582 /* Search bitmap-file-path for the file, if appropriate. */
583 fd = openp (Vx_bitmap_file_path, file, "", &found, 0);
584 if (fd < 0)
585 return -1;
586 /* LoadLibraryEx won't handle special files handled by Emacs handler. */
587 if (fd == 0)
588 return -1;
589 emacs_close (fd);
591 filename = (char *) XSTRING (found)->data;
593 hinst = LoadLibraryEx (filename, NULL, LOAD_LIBRARY_AS_DATAFILE);
595 if (hinst == NULL)
596 return -1;
599 result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
600 filename, &width, &height, &bitmap, &xhot, &yhot);
601 if (result != BitmapSuccess)
602 return -1;
604 id = x_allocate_bitmap_record (f);
605 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
606 dpyinfo->bitmaps[id - 1].refcount = 1;
607 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (XSTRING (file)->size + 1);
608 dpyinfo->bitmaps[id - 1].depth = 1;
609 dpyinfo->bitmaps[id - 1].height = height;
610 dpyinfo->bitmaps[id - 1].width = width;
611 strcpy (dpyinfo->bitmaps[id - 1].file, XSTRING (file)->data);
613 return id;
614 #endif /* NTEMACS_TODO */
617 /* Remove reference to bitmap with id number ID. */
619 void
620 x_destroy_bitmap (f, id)
621 FRAME_PTR f;
622 int id;
624 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
626 if (id > 0)
628 --dpyinfo->bitmaps[id - 1].refcount;
629 if (dpyinfo->bitmaps[id - 1].refcount == 0)
631 BLOCK_INPUT;
632 DeleteObject (dpyinfo->bitmaps[id - 1].pixmap);
633 if (dpyinfo->bitmaps[id - 1].file)
635 xfree (dpyinfo->bitmaps[id - 1].file);
636 dpyinfo->bitmaps[id - 1].file = NULL;
638 UNBLOCK_INPUT;
643 /* Free all the bitmaps for the display specified by DPYINFO. */
645 static void
646 x_destroy_all_bitmaps (dpyinfo)
647 struct w32_display_info *dpyinfo;
649 int i;
650 for (i = 0; i < dpyinfo->bitmaps_last; i++)
651 if (dpyinfo->bitmaps[i].refcount > 0)
653 DeleteObject (dpyinfo->bitmaps[i].pixmap);
654 if (dpyinfo->bitmaps[i].file)
655 xfree (dpyinfo->bitmaps[i].file);
657 dpyinfo->bitmaps_last = 0;
660 /* Connect the frame-parameter names for W32 frames
661 to the ways of passing the parameter values to the window system.
663 The name of a parameter, as a Lisp symbol,
664 has an `x-frame-parameter' property which is an integer in Lisp
665 but can be interpreted as an `enum x_frame_parm' in C. */
667 enum x_frame_parm
669 X_PARM_FOREGROUND_COLOR,
670 X_PARM_BACKGROUND_COLOR,
671 X_PARM_MOUSE_COLOR,
672 X_PARM_CURSOR_COLOR,
673 X_PARM_BORDER_COLOR,
674 X_PARM_ICON_TYPE,
675 X_PARM_FONT,
676 X_PARM_BORDER_WIDTH,
677 X_PARM_INTERNAL_BORDER_WIDTH,
678 X_PARM_NAME,
679 X_PARM_AUTORAISE,
680 X_PARM_AUTOLOWER,
681 X_PARM_VERT_SCROLL_BAR,
682 X_PARM_VISIBILITY,
683 X_PARM_MENU_BAR_LINES
687 struct x_frame_parm_table
689 char *name;
690 void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object));
693 /* NTEMACS_TODO: Native Input Method support; see x_create_im. */
694 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
695 static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
696 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
697 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
698 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
699 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
700 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
701 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
702 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
703 void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
704 void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
705 void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
706 Lisp_Object));
707 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
708 void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
709 void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
710 void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
711 Lisp_Object));
712 void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
713 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
714 void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
715 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
716 void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
717 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
718 static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
720 static struct x_frame_parm_table x_frame_parms[] =
722 "auto-raise", x_set_autoraise,
723 "auto-lower", x_set_autolower,
724 "background-color", x_set_background_color,
725 "border-color", x_set_border_color,
726 "border-width", x_set_border_width,
727 "cursor-color", x_set_cursor_color,
728 "cursor-type", x_set_cursor_type,
729 "font", x_set_font,
730 "foreground-color", x_set_foreground_color,
731 "icon-name", x_set_icon_name,
732 "icon-type", x_set_icon_type,
733 "internal-border-width", x_set_internal_border_width,
734 "menu-bar-lines", x_set_menu_bar_lines,
735 "mouse-color", x_set_mouse_color,
736 "name", x_explicitly_set_name,
737 "scroll-bar-width", x_set_scroll_bar_width,
738 "title", x_set_title,
739 "unsplittable", x_set_unsplittable,
740 "vertical-scroll-bars", x_set_vertical_scroll_bars,
741 "visibility", x_set_visibility,
742 "tool-bar-lines", x_set_tool_bar_lines,
743 "screen-gamma", x_set_screen_gamma,
744 "line-spacing", x_set_line_spacing
747 /* Attach the `x-frame-parameter' properties to
748 the Lisp symbol names of parameters relevant to W32. */
750 void
751 init_x_parm_symbols ()
753 int i;
755 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++)
756 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter,
757 make_number (i));
760 /* Change the parameters of frame F as specified by ALIST.
761 If a parameter is not specially recognized, do nothing;
762 otherwise call the `x_set_...' function for that parameter. */
764 void
765 x_set_frame_parameters (f, alist)
766 FRAME_PTR f;
767 Lisp_Object alist;
769 Lisp_Object tail;
771 /* If both of these parameters are present, it's more efficient to
772 set them both at once. So we wait until we've looked at the
773 entire list before we set them. */
774 int width, height;
776 /* Same here. */
777 Lisp_Object left, top;
779 /* Same with these. */
780 Lisp_Object icon_left, icon_top;
782 /* Record in these vectors all the parms specified. */
783 Lisp_Object *parms;
784 Lisp_Object *values;
785 int i, p;
786 int left_no_change = 0, top_no_change = 0;
787 int icon_left_no_change = 0, icon_top_no_change = 0;
789 struct gcpro gcpro1, gcpro2;
791 i = 0;
792 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
793 i++;
795 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
796 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
798 /* Extract parm names and values into those vectors. */
800 i = 0;
801 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
803 Lisp_Object elt;
805 elt = Fcar (tail);
806 parms[i] = Fcar (elt);
807 values[i] = Fcdr (elt);
808 i++;
810 /* TAIL and ALIST are not used again below here. */
811 alist = tail = Qnil;
813 GCPRO2 (*parms, *values);
814 gcpro1.nvars = i;
815 gcpro2.nvars = i;
817 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
818 because their values appear in VALUES and strings are not valid. */
819 top = left = Qunbound;
820 icon_left = icon_top = Qunbound;
822 /* Provide default values for HEIGHT and WIDTH. */
823 if (FRAME_NEW_WIDTH (f))
824 width = FRAME_NEW_WIDTH (f);
825 else
826 width = FRAME_WIDTH (f);
828 if (FRAME_NEW_HEIGHT (f))
829 height = FRAME_NEW_HEIGHT (f);
830 else
831 height = FRAME_HEIGHT (f);
833 /* Process foreground_color and background_color before anything else.
834 They are independent of other properties, but other properties (e.g.,
835 cursor_color) are dependent upon them. */
836 for (p = 0; p < i; p++)
838 Lisp_Object prop, val;
840 prop = parms[p];
841 val = values[p];
842 if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
844 register Lisp_Object param_index, old_value;
846 param_index = Fget (prop, Qx_frame_parameter);
847 old_value = get_frame_param (f, prop);
848 store_frame_param (f, prop, val);
849 if (NATNUMP (param_index)
850 && (XFASTINT (param_index)
851 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
852 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
856 /* Now process them in reverse of specified order. */
857 for (i--; i >= 0; i--)
859 Lisp_Object prop, val;
861 prop = parms[i];
862 val = values[i];
864 if (EQ (prop, Qwidth) && NUMBERP (val))
865 width = XFASTINT (val);
866 else if (EQ (prop, Qheight) && NUMBERP (val))
867 height = XFASTINT (val);
868 else if (EQ (prop, Qtop))
869 top = val;
870 else if (EQ (prop, Qleft))
871 left = val;
872 else if (EQ (prop, Qicon_top))
873 icon_top = val;
874 else if (EQ (prop, Qicon_left))
875 icon_left = val;
876 else if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
877 /* Processed above. */
878 continue;
879 else
881 register Lisp_Object param_index, old_value;
883 param_index = Fget (prop, Qx_frame_parameter);
884 old_value = get_frame_param (f, prop);
885 store_frame_param (f, prop, val);
886 if (NATNUMP (param_index)
887 && (XFASTINT (param_index)
888 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
889 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
893 /* Don't die if just one of these was set. */
894 if (EQ (left, Qunbound))
896 left_no_change = 1;
897 if (f->output_data.w32->left_pos < 0)
898 left = Fcons (Qplus, Fcons (make_number (f->output_data.w32->left_pos), Qnil));
899 else
900 XSETINT (left, f->output_data.w32->left_pos);
902 if (EQ (top, Qunbound))
904 top_no_change = 1;
905 if (f->output_data.w32->top_pos < 0)
906 top = Fcons (Qplus, Fcons (make_number (f->output_data.w32->top_pos), Qnil));
907 else
908 XSETINT (top, f->output_data.w32->top_pos);
911 /* If one of the icon positions was not set, preserve or default it. */
912 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
914 icon_left_no_change = 1;
915 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
916 if (NILP (icon_left))
917 XSETINT (icon_left, 0);
919 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
921 icon_top_no_change = 1;
922 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
923 if (NILP (icon_top))
924 XSETINT (icon_top, 0);
927 /* Don't set these parameters unless they've been explicitly
928 specified. The window might be mapped or resized while we're in
929 this function, and we don't want to override that unless the lisp
930 code has asked for it.
932 Don't set these parameters unless they actually differ from the
933 window's current parameters; the window may not actually exist
934 yet. */
936 Lisp_Object frame;
938 check_frame_size (f, &height, &width);
940 XSETFRAME (frame, f);
942 if (width != FRAME_WIDTH (f)
943 || height != FRAME_HEIGHT (f)
944 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
945 Fset_frame_size (frame, make_number (width), make_number (height));
947 if ((!NILP (left) || !NILP (top))
948 && ! (left_no_change && top_no_change)
949 && ! (NUMBERP (left) && XINT (left) == f->output_data.w32->left_pos
950 && NUMBERP (top) && XINT (top) == f->output_data.w32->top_pos))
952 int leftpos = 0;
953 int toppos = 0;
955 /* Record the signs. */
956 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
957 if (EQ (left, Qminus))
958 f->output_data.w32->size_hint_flags |= XNegative;
959 else if (INTEGERP (left))
961 leftpos = XINT (left);
962 if (leftpos < 0)
963 f->output_data.w32->size_hint_flags |= XNegative;
965 else if (CONSP (left) && EQ (XCAR (left), Qminus)
966 && CONSP (XCDR (left))
967 && INTEGERP (XCAR (XCDR (left))))
969 leftpos = - XINT (XCAR (XCDR (left)));
970 f->output_data.w32->size_hint_flags |= XNegative;
972 else if (CONSP (left) && EQ (XCAR (left), Qplus)
973 && CONSP (XCDR (left))
974 && INTEGERP (XCAR (XCDR (left))))
976 leftpos = XINT (XCAR (XCDR (left)));
979 if (EQ (top, Qminus))
980 f->output_data.w32->size_hint_flags |= YNegative;
981 else if (INTEGERP (top))
983 toppos = XINT (top);
984 if (toppos < 0)
985 f->output_data.w32->size_hint_flags |= YNegative;
987 else if (CONSP (top) && EQ (XCAR (top), Qminus)
988 && CONSP (XCDR (top))
989 && INTEGERP (XCAR (XCDR (top))))
991 toppos = - XINT (XCAR (XCDR (top)));
992 f->output_data.w32->size_hint_flags |= YNegative;
994 else if (CONSP (top) && EQ (XCAR (top), Qplus)
995 && CONSP (XCDR (top))
996 && INTEGERP (XCAR (XCDR (top))))
998 toppos = XINT (XCAR (XCDR (top)));
1002 /* Store the numeric value of the position. */
1003 f->output_data.w32->top_pos = toppos;
1004 f->output_data.w32->left_pos = leftpos;
1006 f->output_data.w32->win_gravity = NorthWestGravity;
1008 /* Actually set that position, and convert to absolute. */
1009 x_set_offset (f, leftpos, toppos, -1);
1012 if ((!NILP (icon_left) || !NILP (icon_top))
1013 && ! (icon_left_no_change && icon_top_no_change))
1014 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
1017 UNGCPRO;
1020 /* Store the screen positions of frame F into XPTR and YPTR.
1021 These are the positions of the containing window manager window,
1022 not Emacs's own window. */
1024 void
1025 x_real_positions (f, xptr, yptr)
1026 FRAME_PTR f;
1027 int *xptr, *yptr;
1029 POINT pt;
1032 RECT rect;
1034 GetClientRect(FRAME_W32_WINDOW(f), &rect);
1035 AdjustWindowRect(&rect, f->output_data.w32->dwStyle, FRAME_EXTERNAL_MENU_BAR(f));
1037 pt.x = rect.left;
1038 pt.y = rect.top;
1041 ClientToScreen (FRAME_W32_WINDOW(f), &pt);
1043 *xptr = pt.x;
1044 *yptr = pt.y;
1047 /* Insert a description of internally-recorded parameters of frame X
1048 into the parameter alist *ALISTPTR that is to be given to the user.
1049 Only parameters that are specific to W32
1050 and whose values are not correctly recorded in the frame's
1051 param_alist need to be considered here. */
1053 void
1054 x_report_frame_params (f, alistptr)
1055 struct frame *f;
1056 Lisp_Object *alistptr;
1058 char buf[16];
1059 Lisp_Object tem;
1061 /* Represent negative positions (off the top or left screen edge)
1062 in a way that Fmodify_frame_parameters will understand correctly. */
1063 XSETINT (tem, f->output_data.w32->left_pos);
1064 if (f->output_data.w32->left_pos >= 0)
1065 store_in_alist (alistptr, Qleft, tem);
1066 else
1067 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
1069 XSETINT (tem, f->output_data.w32->top_pos);
1070 if (f->output_data.w32->top_pos >= 0)
1071 store_in_alist (alistptr, Qtop, tem);
1072 else
1073 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
1075 store_in_alist (alistptr, Qborder_width,
1076 make_number (f->output_data.w32->border_width));
1077 store_in_alist (alistptr, Qinternal_border_width,
1078 make_number (f->output_data.w32->internal_border_width));
1079 sprintf (buf, "%ld", (long) FRAME_W32_WINDOW (f));
1080 store_in_alist (alistptr, Qwindow_id,
1081 build_string (buf));
1082 store_in_alist (alistptr, Qicon_name, f->icon_name);
1083 FRAME_SAMPLE_VISIBILITY (f);
1084 store_in_alist (alistptr, Qvisibility,
1085 (FRAME_VISIBLE_P (f) ? Qt
1086 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
1087 store_in_alist (alistptr, Qdisplay,
1088 XCAR (FRAME_W32_DISPLAY_INFO (f)->name_list_element));
1092 DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color, Sw32_define_rgb_color, 4, 4, 0,
1093 "Convert RGB numbers to a windows color reference and associate with NAME (a string).\n\
1094 This adds or updates a named color to w32-color-map, making it available for use.\n\
1095 The original entry's RGB ref is returned, or nil if the entry is new.")
1096 (red, green, blue, name)
1097 Lisp_Object red, green, blue, name;
1099 Lisp_Object rgb;
1100 Lisp_Object oldrgb = Qnil;
1101 Lisp_Object entry;
1103 CHECK_NUMBER (red, 0);
1104 CHECK_NUMBER (green, 0);
1105 CHECK_NUMBER (blue, 0);
1106 CHECK_STRING (name, 0);
1108 XSET (rgb, Lisp_Int, RGB(XUINT (red), XUINT (green), XUINT (blue)));
1110 BLOCK_INPUT;
1112 /* replace existing entry in w32-color-map or add new entry. */
1113 entry = Fassoc (name, Vw32_color_map);
1114 if (NILP (entry))
1116 entry = Fcons (name, rgb);
1117 Vw32_color_map = Fcons (entry, Vw32_color_map);
1119 else
1121 oldrgb = Fcdr (entry);
1122 Fsetcdr (entry, rgb);
1125 UNBLOCK_INPUT;
1127 return (oldrgb);
1130 DEFUN ("w32-load-color-file", Fw32_load_color_file, Sw32_load_color_file, 1, 1, 0,
1131 "Create an alist of color entries from an external file (ie. rgb.txt).\n\
1132 Assign this value to w32-color-map to replace the existing color map.\n\
1134 The file should define one named RGB color per line like so:\
1135 R G B name\n\
1136 where R,G,B are numbers between 0 and 255 and name is an arbitrary string.")
1137 (filename)
1138 Lisp_Object filename;
1140 FILE *fp;
1141 Lisp_Object cmap = Qnil;
1142 Lisp_Object abspath;
1144 CHECK_STRING (filename, 0);
1145 abspath = Fexpand_file_name (filename, Qnil);
1147 fp = fopen (XSTRING (filename)->data, "rt");
1148 if (fp)
1150 char buf[512];
1151 int red, green, blue;
1152 int num;
1154 BLOCK_INPUT;
1156 while (fgets (buf, sizeof (buf), fp) != NULL) {
1157 if (sscanf (buf, "%u %u %u %n", &red, &green, &blue, &num) == 3)
1159 char *name = buf + num;
1160 num = strlen (name) - 1;
1161 if (name[num] == '\n')
1162 name[num] = 0;
1163 cmap = Fcons (Fcons (build_string (name),
1164 make_number (RGB (red, green, blue))),
1165 cmap);
1168 fclose (fp);
1170 UNBLOCK_INPUT;
1173 return cmap;
1176 /* The default colors for the w32 color map */
1177 typedef struct colormap_t
1179 char *name;
1180 COLORREF colorref;
1181 } colormap_t;
1183 colormap_t w32_color_map[] =
1185 {"snow" , PALETTERGB (255,250,250)},
1186 {"ghost white" , PALETTERGB (248,248,255)},
1187 {"GhostWhite" , PALETTERGB (248,248,255)},
1188 {"white smoke" , PALETTERGB (245,245,245)},
1189 {"WhiteSmoke" , PALETTERGB (245,245,245)},
1190 {"gainsboro" , PALETTERGB (220,220,220)},
1191 {"floral white" , PALETTERGB (255,250,240)},
1192 {"FloralWhite" , PALETTERGB (255,250,240)},
1193 {"old lace" , PALETTERGB (253,245,230)},
1194 {"OldLace" , PALETTERGB (253,245,230)},
1195 {"linen" , PALETTERGB (250,240,230)},
1196 {"antique white" , PALETTERGB (250,235,215)},
1197 {"AntiqueWhite" , PALETTERGB (250,235,215)},
1198 {"papaya whip" , PALETTERGB (255,239,213)},
1199 {"PapayaWhip" , PALETTERGB (255,239,213)},
1200 {"blanched almond" , PALETTERGB (255,235,205)},
1201 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
1202 {"bisque" , PALETTERGB (255,228,196)},
1203 {"peach puff" , PALETTERGB (255,218,185)},
1204 {"PeachPuff" , PALETTERGB (255,218,185)},
1205 {"navajo white" , PALETTERGB (255,222,173)},
1206 {"NavajoWhite" , PALETTERGB (255,222,173)},
1207 {"moccasin" , PALETTERGB (255,228,181)},
1208 {"cornsilk" , PALETTERGB (255,248,220)},
1209 {"ivory" , PALETTERGB (255,255,240)},
1210 {"lemon chiffon" , PALETTERGB (255,250,205)},
1211 {"LemonChiffon" , PALETTERGB (255,250,205)},
1212 {"seashell" , PALETTERGB (255,245,238)},
1213 {"honeydew" , PALETTERGB (240,255,240)},
1214 {"mint cream" , PALETTERGB (245,255,250)},
1215 {"MintCream" , PALETTERGB (245,255,250)},
1216 {"azure" , PALETTERGB (240,255,255)},
1217 {"alice blue" , PALETTERGB (240,248,255)},
1218 {"AliceBlue" , PALETTERGB (240,248,255)},
1219 {"lavender" , PALETTERGB (230,230,250)},
1220 {"lavender blush" , PALETTERGB (255,240,245)},
1221 {"LavenderBlush" , PALETTERGB (255,240,245)},
1222 {"misty rose" , PALETTERGB (255,228,225)},
1223 {"MistyRose" , PALETTERGB (255,228,225)},
1224 {"white" , PALETTERGB (255,255,255)},
1225 {"black" , PALETTERGB ( 0, 0, 0)},
1226 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
1227 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
1228 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
1229 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
1230 {"dim gray" , PALETTERGB (105,105,105)},
1231 {"DimGray" , PALETTERGB (105,105,105)},
1232 {"dim grey" , PALETTERGB (105,105,105)},
1233 {"DimGrey" , PALETTERGB (105,105,105)},
1234 {"slate gray" , PALETTERGB (112,128,144)},
1235 {"SlateGray" , PALETTERGB (112,128,144)},
1236 {"slate grey" , PALETTERGB (112,128,144)},
1237 {"SlateGrey" , PALETTERGB (112,128,144)},
1238 {"light slate gray" , PALETTERGB (119,136,153)},
1239 {"LightSlateGray" , PALETTERGB (119,136,153)},
1240 {"light slate grey" , PALETTERGB (119,136,153)},
1241 {"LightSlateGrey" , PALETTERGB (119,136,153)},
1242 {"gray" , PALETTERGB (190,190,190)},
1243 {"grey" , PALETTERGB (190,190,190)},
1244 {"light grey" , PALETTERGB (211,211,211)},
1245 {"LightGrey" , PALETTERGB (211,211,211)},
1246 {"light gray" , PALETTERGB (211,211,211)},
1247 {"LightGray" , PALETTERGB (211,211,211)},
1248 {"midnight blue" , PALETTERGB ( 25, 25,112)},
1249 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
1250 {"navy" , PALETTERGB ( 0, 0,128)},
1251 {"navy blue" , PALETTERGB ( 0, 0,128)},
1252 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
1253 {"cornflower blue" , PALETTERGB (100,149,237)},
1254 {"CornflowerBlue" , PALETTERGB (100,149,237)},
1255 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
1256 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
1257 {"slate blue" , PALETTERGB (106, 90,205)},
1258 {"SlateBlue" , PALETTERGB (106, 90,205)},
1259 {"medium slate blue" , PALETTERGB (123,104,238)},
1260 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
1261 {"light slate blue" , PALETTERGB (132,112,255)},
1262 {"LightSlateBlue" , PALETTERGB (132,112,255)},
1263 {"medium blue" , PALETTERGB ( 0, 0,205)},
1264 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
1265 {"royal blue" , PALETTERGB ( 65,105,225)},
1266 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
1267 {"blue" , PALETTERGB ( 0, 0,255)},
1268 {"dodger blue" , PALETTERGB ( 30,144,255)},
1269 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
1270 {"deep sky blue" , PALETTERGB ( 0,191,255)},
1271 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
1272 {"sky blue" , PALETTERGB (135,206,235)},
1273 {"SkyBlue" , PALETTERGB (135,206,235)},
1274 {"light sky blue" , PALETTERGB (135,206,250)},
1275 {"LightSkyBlue" , PALETTERGB (135,206,250)},
1276 {"steel blue" , PALETTERGB ( 70,130,180)},
1277 {"SteelBlue" , PALETTERGB ( 70,130,180)},
1278 {"light steel blue" , PALETTERGB (176,196,222)},
1279 {"LightSteelBlue" , PALETTERGB (176,196,222)},
1280 {"light blue" , PALETTERGB (173,216,230)},
1281 {"LightBlue" , PALETTERGB (173,216,230)},
1282 {"powder blue" , PALETTERGB (176,224,230)},
1283 {"PowderBlue" , PALETTERGB (176,224,230)},
1284 {"pale turquoise" , PALETTERGB (175,238,238)},
1285 {"PaleTurquoise" , PALETTERGB (175,238,238)},
1286 {"dark turquoise" , PALETTERGB ( 0,206,209)},
1287 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
1288 {"medium turquoise" , PALETTERGB ( 72,209,204)},
1289 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
1290 {"turquoise" , PALETTERGB ( 64,224,208)},
1291 {"cyan" , PALETTERGB ( 0,255,255)},
1292 {"light cyan" , PALETTERGB (224,255,255)},
1293 {"LightCyan" , PALETTERGB (224,255,255)},
1294 {"cadet blue" , PALETTERGB ( 95,158,160)},
1295 {"CadetBlue" , PALETTERGB ( 95,158,160)},
1296 {"medium aquamarine" , PALETTERGB (102,205,170)},
1297 {"MediumAquamarine" , PALETTERGB (102,205,170)},
1298 {"aquamarine" , PALETTERGB (127,255,212)},
1299 {"dark green" , PALETTERGB ( 0,100, 0)},
1300 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
1301 {"dark olive green" , PALETTERGB ( 85,107, 47)},
1302 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
1303 {"dark sea green" , PALETTERGB (143,188,143)},
1304 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
1305 {"sea green" , PALETTERGB ( 46,139, 87)},
1306 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
1307 {"medium sea green" , PALETTERGB ( 60,179,113)},
1308 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
1309 {"light sea green" , PALETTERGB ( 32,178,170)},
1310 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
1311 {"pale green" , PALETTERGB (152,251,152)},
1312 {"PaleGreen" , PALETTERGB (152,251,152)},
1313 {"spring green" , PALETTERGB ( 0,255,127)},
1314 {"SpringGreen" , PALETTERGB ( 0,255,127)},
1315 {"lawn green" , PALETTERGB (124,252, 0)},
1316 {"LawnGreen" , PALETTERGB (124,252, 0)},
1317 {"green" , PALETTERGB ( 0,255, 0)},
1318 {"chartreuse" , PALETTERGB (127,255, 0)},
1319 {"medium spring green" , PALETTERGB ( 0,250,154)},
1320 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
1321 {"green yellow" , PALETTERGB (173,255, 47)},
1322 {"GreenYellow" , PALETTERGB (173,255, 47)},
1323 {"lime green" , PALETTERGB ( 50,205, 50)},
1324 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
1325 {"yellow green" , PALETTERGB (154,205, 50)},
1326 {"YellowGreen" , PALETTERGB (154,205, 50)},
1327 {"forest green" , PALETTERGB ( 34,139, 34)},
1328 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
1329 {"olive drab" , PALETTERGB (107,142, 35)},
1330 {"OliveDrab" , PALETTERGB (107,142, 35)},
1331 {"dark khaki" , PALETTERGB (189,183,107)},
1332 {"DarkKhaki" , PALETTERGB (189,183,107)},
1333 {"khaki" , PALETTERGB (240,230,140)},
1334 {"pale goldenrod" , PALETTERGB (238,232,170)},
1335 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
1336 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
1337 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
1338 {"light yellow" , PALETTERGB (255,255,224)},
1339 {"LightYellow" , PALETTERGB (255,255,224)},
1340 {"yellow" , PALETTERGB (255,255, 0)},
1341 {"gold" , PALETTERGB (255,215, 0)},
1342 {"light goldenrod" , PALETTERGB (238,221,130)},
1343 {"LightGoldenrod" , PALETTERGB (238,221,130)},
1344 {"goldenrod" , PALETTERGB (218,165, 32)},
1345 {"dark goldenrod" , PALETTERGB (184,134, 11)},
1346 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
1347 {"rosy brown" , PALETTERGB (188,143,143)},
1348 {"RosyBrown" , PALETTERGB (188,143,143)},
1349 {"indian red" , PALETTERGB (205, 92, 92)},
1350 {"IndianRed" , PALETTERGB (205, 92, 92)},
1351 {"saddle brown" , PALETTERGB (139, 69, 19)},
1352 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
1353 {"sienna" , PALETTERGB (160, 82, 45)},
1354 {"peru" , PALETTERGB (205,133, 63)},
1355 {"burlywood" , PALETTERGB (222,184,135)},
1356 {"beige" , PALETTERGB (245,245,220)},
1357 {"wheat" , PALETTERGB (245,222,179)},
1358 {"sandy brown" , PALETTERGB (244,164, 96)},
1359 {"SandyBrown" , PALETTERGB (244,164, 96)},
1360 {"tan" , PALETTERGB (210,180,140)},
1361 {"chocolate" , PALETTERGB (210,105, 30)},
1362 {"firebrick" , PALETTERGB (178,34, 34)},
1363 {"brown" , PALETTERGB (165,42, 42)},
1364 {"dark salmon" , PALETTERGB (233,150,122)},
1365 {"DarkSalmon" , PALETTERGB (233,150,122)},
1366 {"salmon" , PALETTERGB (250,128,114)},
1367 {"light salmon" , PALETTERGB (255,160,122)},
1368 {"LightSalmon" , PALETTERGB (255,160,122)},
1369 {"orange" , PALETTERGB (255,165, 0)},
1370 {"dark orange" , PALETTERGB (255,140, 0)},
1371 {"DarkOrange" , PALETTERGB (255,140, 0)},
1372 {"coral" , PALETTERGB (255,127, 80)},
1373 {"light coral" , PALETTERGB (240,128,128)},
1374 {"LightCoral" , PALETTERGB (240,128,128)},
1375 {"tomato" , PALETTERGB (255, 99, 71)},
1376 {"orange red" , PALETTERGB (255, 69, 0)},
1377 {"OrangeRed" , PALETTERGB (255, 69, 0)},
1378 {"red" , PALETTERGB (255, 0, 0)},
1379 {"hot pink" , PALETTERGB (255,105,180)},
1380 {"HotPink" , PALETTERGB (255,105,180)},
1381 {"deep pink" , PALETTERGB (255, 20,147)},
1382 {"DeepPink" , PALETTERGB (255, 20,147)},
1383 {"pink" , PALETTERGB (255,192,203)},
1384 {"light pink" , PALETTERGB (255,182,193)},
1385 {"LightPink" , PALETTERGB (255,182,193)},
1386 {"pale violet red" , PALETTERGB (219,112,147)},
1387 {"PaleVioletRed" , PALETTERGB (219,112,147)},
1388 {"maroon" , PALETTERGB (176, 48, 96)},
1389 {"medium violet red" , PALETTERGB (199, 21,133)},
1390 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
1391 {"violet red" , PALETTERGB (208, 32,144)},
1392 {"VioletRed" , PALETTERGB (208, 32,144)},
1393 {"magenta" , PALETTERGB (255, 0,255)},
1394 {"violet" , PALETTERGB (238,130,238)},
1395 {"plum" , PALETTERGB (221,160,221)},
1396 {"orchid" , PALETTERGB (218,112,214)},
1397 {"medium orchid" , PALETTERGB (186, 85,211)},
1398 {"MediumOrchid" , PALETTERGB (186, 85,211)},
1399 {"dark orchid" , PALETTERGB (153, 50,204)},
1400 {"DarkOrchid" , PALETTERGB (153, 50,204)},
1401 {"dark violet" , PALETTERGB (148, 0,211)},
1402 {"DarkViolet" , PALETTERGB (148, 0,211)},
1403 {"blue violet" , PALETTERGB (138, 43,226)},
1404 {"BlueViolet" , PALETTERGB (138, 43,226)},
1405 {"purple" , PALETTERGB (160, 32,240)},
1406 {"medium purple" , PALETTERGB (147,112,219)},
1407 {"MediumPurple" , PALETTERGB (147,112,219)},
1408 {"thistle" , PALETTERGB (216,191,216)},
1409 {"gray0" , PALETTERGB ( 0, 0, 0)},
1410 {"grey0" , PALETTERGB ( 0, 0, 0)},
1411 {"dark grey" , PALETTERGB (169,169,169)},
1412 {"DarkGrey" , PALETTERGB (169,169,169)},
1413 {"dark gray" , PALETTERGB (169,169,169)},
1414 {"DarkGray" , PALETTERGB (169,169,169)},
1415 {"dark blue" , PALETTERGB ( 0, 0,139)},
1416 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
1417 {"dark cyan" , PALETTERGB ( 0,139,139)},
1418 {"DarkCyan" , PALETTERGB ( 0,139,139)},
1419 {"dark magenta" , PALETTERGB (139, 0,139)},
1420 {"DarkMagenta" , PALETTERGB (139, 0,139)},
1421 {"dark red" , PALETTERGB (139, 0, 0)},
1422 {"DarkRed" , PALETTERGB (139, 0, 0)},
1423 {"light green" , PALETTERGB (144,238,144)},
1424 {"LightGreen" , PALETTERGB (144,238,144)},
1427 DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map,
1428 0, 0, 0, "Return the default color map.")
1431 int i;
1432 colormap_t *pc = w32_color_map;
1433 Lisp_Object cmap;
1435 BLOCK_INPUT;
1437 cmap = Qnil;
1439 for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
1440 pc++, i++)
1441 cmap = Fcons (Fcons (build_string (pc->name),
1442 make_number (pc->colorref)),
1443 cmap);
1445 UNBLOCK_INPUT;
1447 return (cmap);
1450 Lisp_Object
1451 w32_to_x_color (rgb)
1452 Lisp_Object rgb;
1454 Lisp_Object color;
1456 CHECK_NUMBER (rgb, 0);
1458 BLOCK_INPUT;
1460 color = Frassq (rgb, Vw32_color_map);
1462 UNBLOCK_INPUT;
1464 if (!NILP (color))
1465 return (Fcar (color));
1466 else
1467 return Qnil;
1470 COLORREF
1471 w32_color_map_lookup (colorname)
1472 char *colorname;
1474 Lisp_Object tail, ret = Qnil;
1476 BLOCK_INPUT;
1478 for (tail = Vw32_color_map; !NILP (tail); tail = Fcdr (tail))
1480 register Lisp_Object elt, tem;
1482 elt = Fcar (tail);
1483 if (!CONSP (elt)) continue;
1485 tem = Fcar (elt);
1487 if (lstrcmpi (XSTRING (tem)->data, colorname) == 0)
1489 ret = XUINT (Fcdr (elt));
1490 break;
1493 QUIT;
1497 UNBLOCK_INPUT;
1499 return ret;
1502 COLORREF
1503 x_to_w32_color (colorname)
1504 char * colorname;
1506 register Lisp_Object tail, ret = Qnil;
1508 BLOCK_INPUT;
1510 if (colorname[0] == '#')
1512 /* Could be an old-style RGB Device specification. */
1513 char *color;
1514 int size;
1515 color = colorname + 1;
1517 size = strlen(color);
1518 if (size == 3 || size == 6 || size == 9 || size == 12)
1520 UINT colorval;
1521 int i, pos;
1522 pos = 0;
1523 size /= 3;
1524 colorval = 0;
1526 for (i = 0; i < 3; i++)
1528 char *end;
1529 char t;
1530 unsigned long value;
1532 /* The check for 'x' in the following conditional takes into
1533 account the fact that strtol allows a "0x" in front of
1534 our numbers, and we don't. */
1535 if (!isxdigit(color[0]) || color[1] == 'x')
1536 break;
1537 t = color[size];
1538 color[size] = '\0';
1539 value = strtoul(color, &end, 16);
1540 color[size] = t;
1541 if (errno == ERANGE || end - color != size)
1542 break;
1543 switch (size)
1545 case 1:
1546 value = value * 0x10;
1547 break;
1548 case 2:
1549 break;
1550 case 3:
1551 value /= 0x10;
1552 break;
1553 case 4:
1554 value /= 0x100;
1555 break;
1557 colorval |= (value << pos);
1558 pos += 0x8;
1559 if (i == 2)
1561 UNBLOCK_INPUT;
1562 return (colorval);
1564 color = end;
1568 else if (strnicmp(colorname, "rgb:", 4) == 0)
1570 char *color;
1571 UINT colorval;
1572 int i, pos;
1573 pos = 0;
1575 colorval = 0;
1576 color = colorname + 4;
1577 for (i = 0; i < 3; i++)
1579 char *end;
1580 unsigned long value;
1582 /* The check for 'x' in the following conditional takes into
1583 account the fact that strtol allows a "0x" in front of
1584 our numbers, and we don't. */
1585 if (!isxdigit(color[0]) || color[1] == 'x')
1586 break;
1587 value = strtoul(color, &end, 16);
1588 if (errno == ERANGE)
1589 break;
1590 switch (end - color)
1592 case 1:
1593 value = value * 0x10 + value;
1594 break;
1595 case 2:
1596 break;
1597 case 3:
1598 value /= 0x10;
1599 break;
1600 case 4:
1601 value /= 0x100;
1602 break;
1603 default:
1604 value = ULONG_MAX;
1606 if (value == ULONG_MAX)
1607 break;
1608 colorval |= (value << pos);
1609 pos += 0x8;
1610 if (i == 2)
1612 if (*end != '\0')
1613 break;
1614 UNBLOCK_INPUT;
1615 return (colorval);
1617 if (*end != '/')
1618 break;
1619 color = end + 1;
1622 else if (strnicmp(colorname, "rgbi:", 5) == 0)
1624 /* This is an RGB Intensity specification. */
1625 char *color;
1626 UINT colorval;
1627 int i, pos;
1628 pos = 0;
1630 colorval = 0;
1631 color = colorname + 5;
1632 for (i = 0; i < 3; i++)
1634 char *end;
1635 double value;
1636 UINT val;
1638 value = strtod(color, &end);
1639 if (errno == ERANGE)
1640 break;
1641 if (value < 0.0 || value > 1.0)
1642 break;
1643 val = (UINT)(0x100 * value);
1644 /* We used 0x100 instead of 0xFF to give an continuous
1645 range between 0.0 and 1.0 inclusive. The next statement
1646 fixes the 1.0 case. */
1647 if (val == 0x100)
1648 val = 0xFF;
1649 colorval |= (val << pos);
1650 pos += 0x8;
1651 if (i == 2)
1653 if (*end != '\0')
1654 break;
1655 UNBLOCK_INPUT;
1656 return (colorval);
1658 if (*end != '/')
1659 break;
1660 color = end + 1;
1663 /* I am not going to attempt to handle any of the CIE color schemes
1664 or TekHVC, since I don't know the algorithms for conversion to
1665 RGB. */
1667 /* If we fail to lookup the color name in w32_color_map, then check the
1668 colorname to see if it can be crudely approximated: If the X color
1669 ends in a number (e.g., "darkseagreen2"), strip the number and
1670 return the result of looking up the base color name. */
1671 ret = w32_color_map_lookup (colorname);
1672 if (NILP (ret))
1674 int len = strlen (colorname);
1676 if (isdigit (colorname[len - 1]))
1678 char *ptr, *approx = alloca (len);
1680 strcpy (approx, colorname);
1681 ptr = &approx[len - 1];
1682 while (ptr > approx && isdigit (*ptr))
1683 *ptr-- = '\0';
1685 ret = w32_color_map_lookup (approx);
1689 UNBLOCK_INPUT;
1690 return ret;
1694 void
1695 w32_regenerate_palette (FRAME_PTR f)
1697 struct w32_palette_entry * list;
1698 LOGPALETTE * log_palette;
1699 HPALETTE new_palette;
1700 int i;
1702 /* don't bother trying to create palette if not supported */
1703 if (! FRAME_W32_DISPLAY_INFO (f)->has_palette)
1704 return;
1706 log_palette = (LOGPALETTE *)
1707 alloca (sizeof (LOGPALETTE) +
1708 FRAME_W32_DISPLAY_INFO (f)->num_colors * sizeof (PALETTEENTRY));
1709 log_palette->palVersion = 0x300;
1710 log_palette->palNumEntries = FRAME_W32_DISPLAY_INFO (f)->num_colors;
1712 list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1713 for (i = 0;
1714 i < FRAME_W32_DISPLAY_INFO (f)->num_colors;
1715 i++, list = list->next)
1716 log_palette->palPalEntry[i] = list->entry;
1718 new_palette = CreatePalette (log_palette);
1720 enter_crit ();
1722 if (FRAME_W32_DISPLAY_INFO (f)->palette)
1723 DeleteObject (FRAME_W32_DISPLAY_INFO (f)->palette);
1724 FRAME_W32_DISPLAY_INFO (f)->palette = new_palette;
1726 /* Realize display palette and garbage all frames. */
1727 release_frame_dc (f, get_frame_dc (f));
1729 leave_crit ();
1732 #define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1733 #define SET_W32_COLOR(pe, color) \
1734 do \
1736 pe.peRed = GetRValue (color); \
1737 pe.peGreen = GetGValue (color); \
1738 pe.peBlue = GetBValue (color); \
1739 pe.peFlags = 0; \
1740 } while (0)
1742 #if 0
1743 /* Keep these around in case we ever want to track color usage. */
1744 void
1745 w32_map_color (FRAME_PTR f, COLORREF color)
1747 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1749 if (NILP (Vw32_enable_palette))
1750 return;
1752 /* check if color is already mapped */
1753 while (list)
1755 if (W32_COLOR (list->entry) == color)
1757 ++list->refcount;
1758 return;
1760 list = list->next;
1763 /* not already mapped, so add to list and recreate Windows palette */
1764 list = (struct w32_palette_entry *)
1765 xmalloc (sizeof (struct w32_palette_entry));
1766 SET_W32_COLOR (list->entry, color);
1767 list->refcount = 1;
1768 list->next = FRAME_W32_DISPLAY_INFO (f)->color_list;
1769 FRAME_W32_DISPLAY_INFO (f)->color_list = list;
1770 FRAME_W32_DISPLAY_INFO (f)->num_colors++;
1772 /* set flag that palette must be regenerated */
1773 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1776 void
1777 w32_unmap_color (FRAME_PTR f, COLORREF color)
1779 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1780 struct w32_palette_entry **prev = &FRAME_W32_DISPLAY_INFO (f)->color_list;
1782 if (NILP (Vw32_enable_palette))
1783 return;
1785 /* check if color is already mapped */
1786 while (list)
1788 if (W32_COLOR (list->entry) == color)
1790 if (--list->refcount == 0)
1792 *prev = list->next;
1793 xfree (list);
1794 FRAME_W32_DISPLAY_INFO (f)->num_colors--;
1795 break;
1797 else
1798 return;
1800 prev = &list->next;
1801 list = list->next;
1804 /* set flag that palette must be regenerated */
1805 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1807 #endif
1810 /* Gamma-correct COLOR on frame F. */
1812 void
1813 gamma_correct (f, color)
1814 struct frame *f;
1815 COLORREF *color;
1817 if (f->gamma)
1819 *color = PALETTERGB (
1820 pow (GetRValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1821 pow (GetGValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1822 pow (GetBValue (*color) / 255.0, f->gamma) * 255.0 + 0.5);
1827 /* Decide if color named COLOR is valid for the display associated with
1828 the selected frame; if so, return the rgb values in COLOR_DEF.
1829 If ALLOC is nonzero, allocate a new colormap cell. */
1832 w32_defined_color (f, color, color_def, alloc)
1833 FRAME_PTR f;
1834 char *color;
1835 XColor *color_def;
1836 int alloc;
1838 register Lisp_Object tem;
1839 COLORREF w32_color_ref;
1841 tem = x_to_w32_color (color);
1843 if (!NILP (tem))
1845 if (f)
1847 /* Apply gamma correction. */
1848 w32_color_ref = XUINT (tem);
1849 gamma_correct (f, &w32_color_ref);
1850 XSETINT (tem, w32_color_ref);
1853 /* Map this color to the palette if it is enabled. */
1854 if (!NILP (Vw32_enable_palette))
1856 struct w32_palette_entry * entry =
1857 one_w32_display_info.color_list;
1858 struct w32_palette_entry ** prev =
1859 &one_w32_display_info.color_list;
1861 /* check if color is already mapped */
1862 while (entry)
1864 if (W32_COLOR (entry->entry) == XUINT (tem))
1865 break;
1866 prev = &entry->next;
1867 entry = entry->next;
1870 if (entry == NULL && alloc)
1872 /* not already mapped, so add to list */
1873 entry = (struct w32_palette_entry *)
1874 xmalloc (sizeof (struct w32_palette_entry));
1875 SET_W32_COLOR (entry->entry, XUINT (tem));
1876 entry->next = NULL;
1877 *prev = entry;
1878 one_w32_display_info.num_colors++;
1880 /* set flag that palette must be regenerated */
1881 one_w32_display_info.regen_palette = TRUE;
1884 /* Ensure COLORREF value is snapped to nearest color in (default)
1885 palette by simulating the PALETTERGB macro. This works whether
1886 or not the display device has a palette. */
1887 w32_color_ref = XUINT (tem) | 0x2000000;
1889 color_def->pixel = w32_color_ref;
1890 color_def->red = GetRValue (w32_color_ref);
1891 color_def->green = GetGValue (w32_color_ref);
1892 color_def->blue = GetBValue (w32_color_ref);
1894 return 1;
1896 else
1898 return 0;
1902 /* Given a string ARG naming a color, compute a pixel value from it
1903 suitable for screen F.
1904 If F is not a color screen, return DEF (default) regardless of what
1905 ARG says. */
1908 x_decode_color (f, arg, def)
1909 FRAME_PTR f;
1910 Lisp_Object arg;
1911 int def;
1913 XColor cdef;
1915 CHECK_STRING (arg, 0);
1917 if (strcmp (XSTRING (arg)->data, "black") == 0)
1918 return BLACK_PIX_DEFAULT (f);
1919 else if (strcmp (XSTRING (arg)->data, "white") == 0)
1920 return WHITE_PIX_DEFAULT (f);
1922 if ((FRAME_W32_DISPLAY_INFO (f)->n_planes * FRAME_W32_DISPLAY_INFO (f)->n_cbits) == 1)
1923 return def;
1925 /* w32_defined_color is responsible for coping with failures
1926 by looking for a near-miss. */
1927 if (w32_defined_color (f, XSTRING (arg)->data, &cdef, 1))
1928 return cdef.pixel;
1930 /* defined_color failed; return an ultimate default. */
1931 return def;
1934 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1935 the previous value of that parameter, NEW_VALUE is the new value. */
1937 static void
1938 x_set_line_spacing (f, new_value, old_value)
1939 struct frame *f;
1940 Lisp_Object new_value, old_value;
1942 if (NILP (new_value))
1943 f->extra_line_spacing = 0;
1944 else if (NATNUMP (new_value))
1945 f->extra_line_spacing = XFASTINT (new_value);
1946 else
1947 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
1948 Fcons (new_value, Qnil)));
1949 if (FRAME_VISIBLE_P (f))
1950 redraw_frame (f);
1954 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1955 the previous value of that parameter, NEW_VALUE is the new value. */
1957 static void
1958 x_set_screen_gamma (f, new_value, old_value)
1959 struct frame *f;
1960 Lisp_Object new_value, old_value;
1962 if (NILP (new_value))
1963 f->gamma = 0;
1964 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
1965 /* The value 0.4545 is the normal viewing gamma. */
1966 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
1967 else
1968 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
1969 Fcons (new_value, Qnil)));
1971 clear_face_cache (0);
1975 /* Functions called only from `x_set_frame_param'
1976 to set individual parameters.
1978 If FRAME_W32_WINDOW (f) is 0,
1979 the frame is being created and its window does not exist yet.
1980 In that case, just record the parameter's new value
1981 in the standard place; do not attempt to change the window. */
1983 void
1984 x_set_foreground_color (f, arg, oldval)
1985 struct frame *f;
1986 Lisp_Object arg, oldval;
1988 FRAME_FOREGROUND_PIXEL (f)
1989 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1991 if (FRAME_W32_WINDOW (f) != 0)
1993 update_face_from_frame_parameter (f, Qforeground_color, arg);
1994 if (FRAME_VISIBLE_P (f))
1995 redraw_frame (f);
1999 void
2000 x_set_background_color (f, arg, oldval)
2001 struct frame *f;
2002 Lisp_Object arg, oldval;
2004 FRAME_BACKGROUND_PIXEL (f)
2005 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
2007 if (FRAME_W32_WINDOW (f) != 0)
2009 SetWindowLong (FRAME_W32_WINDOW (f), WND_BACKGROUND_INDEX,
2010 FRAME_BACKGROUND_PIXEL (f));
2012 update_face_from_frame_parameter (f, Qbackground_color, arg);
2014 if (FRAME_VISIBLE_P (f))
2015 redraw_frame (f);
2019 void
2020 x_set_mouse_color (f, arg, oldval)
2021 struct frame *f;
2022 Lisp_Object arg, oldval;
2025 Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
2026 int count;
2027 int mask_color;
2029 if (!EQ (Qnil, arg))
2030 f->output_data.w32->mouse_pixel
2031 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2032 mask_color = FRAME_BACKGROUND_PIXEL (f);
2034 /* Don't let pointers be invisible. */
2035 if (mask_color == f->output_data.w32->mouse_pixel
2036 && mask_color == FRAME_BACKGROUND_PIXEL (f))
2037 f->output_data.w32->mouse_pixel = FRAME_FOREGROUND_PIXEL (f);
2039 #if 0 /* NTEMACS_TODO : cursor changes */
2040 BLOCK_INPUT;
2042 /* It's not okay to crash if the user selects a screwy cursor. */
2043 count = x_catch_errors (FRAME_W32_DISPLAY (f));
2045 if (!EQ (Qnil, Vx_pointer_shape))
2047 CHECK_NUMBER (Vx_pointer_shape, 0);
2048 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape));
2050 else
2051 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2052 x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s");
2054 if (!EQ (Qnil, Vx_nontext_pointer_shape))
2056 CHECK_NUMBER (Vx_nontext_pointer_shape, 0);
2057 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2058 XINT (Vx_nontext_pointer_shape));
2060 else
2061 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr);
2062 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2064 if (!EQ (Qnil, Vx_busy_pointer_shape))
2066 CHECK_NUMBER (Vx_busy_pointer_shape, 0);
2067 busy_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2068 XINT (Vx_busy_pointer_shape));
2070 else
2071 busy_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
2072 x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
2074 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2075 if (!EQ (Qnil, Vx_mode_pointer_shape))
2077 CHECK_NUMBER (Vx_mode_pointer_shape, 0);
2078 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2079 XINT (Vx_mode_pointer_shape));
2081 else
2082 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2083 x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s");
2085 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
2087 CHECK_NUMBER (Vx_sensitive_text_pointer_shape, 0);
2088 cross_cursor
2089 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2090 XINT (Vx_sensitive_text_pointer_shape));
2092 else
2093 cross_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair);
2095 /* Check and report errors with the above calls. */
2096 x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
2097 x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
2100 XColor fore_color, back_color;
2102 fore_color.pixel = f->output_data.w32->mouse_pixel;
2103 back_color.pixel = mask_color;
2104 XQueryColor (FRAME_W32_DISPLAY (f),
2105 DefaultColormap (FRAME_W32_DISPLAY (f),
2106 DefaultScreen (FRAME_W32_DISPLAY (f))),
2107 &fore_color);
2108 XQueryColor (FRAME_W32_DISPLAY (f),
2109 DefaultColormap (FRAME_W32_DISPLAY (f),
2110 DefaultScreen (FRAME_W32_DISPLAY (f))),
2111 &back_color);
2112 XRecolorCursor (FRAME_W32_DISPLAY (f), cursor,
2113 &fore_color, &back_color);
2114 XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor,
2115 &fore_color, &back_color);
2116 XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor,
2117 &fore_color, &back_color);
2118 XRecolorCursor (FRAME_W32_DISPLAY (f), cross_cursor,
2119 &fore_color, &back_color);
2120 XRecolorCursor (FRAME_W32_DISPLAY (f), busy_cursor,
2121 &fore_color, &back_color);
2124 if (FRAME_W32_WINDOW (f) != 0)
2125 XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor);
2127 if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0)
2128 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor);
2129 f->output_data.w32->text_cursor = cursor;
2131 if (nontext_cursor != f->output_data.w32->nontext_cursor
2132 && f->output_data.w32->nontext_cursor != 0)
2133 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor);
2134 f->output_data.w32->nontext_cursor = nontext_cursor;
2136 if (busy_cursor != f->output_data.w32->busy_cursor
2137 && f->output_data.w32->busy_cursor != 0)
2138 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->busy_cursor);
2139 f->output_data.w32->busy_cursor = busy_cursor;
2141 if (mode_cursor != f->output_data.w32->modeline_cursor
2142 && f->output_data.w32->modeline_cursor != 0)
2143 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
2144 f->output_data.w32->modeline_cursor = mode_cursor;
2146 if (cross_cursor != f->output_data.w32->cross_cursor
2147 && f->output_data.w32->cross_cursor != 0)
2148 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor);
2149 f->output_data.w32->cross_cursor = cross_cursor;
2151 XFlush (FRAME_W32_DISPLAY (f));
2152 UNBLOCK_INPUT;
2154 update_face_from_frame_parameter (f, Qmouse_color, arg);
2155 #endif /* NTEMACS_TODO */
2158 void
2159 x_set_cursor_color (f, arg, oldval)
2160 struct frame *f;
2161 Lisp_Object arg, oldval;
2163 unsigned long fore_pixel;
2165 if (!NILP (Vx_cursor_fore_pixel))
2166 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
2167 WHITE_PIX_DEFAULT (f));
2168 else
2169 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2170 f->output_data.w32->cursor_pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2172 /* Make sure that the cursor color differs from the background color. */
2173 if (f->output_data.w32->cursor_pixel == FRAME_BACKGROUND_PIXEL (f))
2175 f->output_data.w32->cursor_pixel = f->output_data.w32->mouse_pixel;
2176 if (f->output_data.w32->cursor_pixel == fore_pixel)
2177 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2179 FRAME_FOREGROUND_PIXEL (f) = fore_pixel;
2181 if (FRAME_W32_WINDOW (f) != 0)
2183 if (FRAME_VISIBLE_P (f))
2185 x_display_cursor (f, 0);
2186 x_display_cursor (f, 1);
2190 update_face_from_frame_parameter (f, Qcursor_color, arg);
2193 /* Set the border-color of frame F to pixel value PIX.
2194 Note that this does not fully take effect if done before
2195 F has an window. */
2196 void
2197 x_set_border_pixel (f, pix)
2198 struct frame *f;
2199 int pix;
2201 f->output_data.w32->border_pixel = pix;
2203 if (FRAME_W32_WINDOW (f) != 0 && f->output_data.w32->border_width > 0)
2205 if (FRAME_VISIBLE_P (f))
2206 redraw_frame (f);
2210 /* Set the border-color of frame F to value described by ARG.
2211 ARG can be a string naming a color.
2212 The border-color is used for the border that is drawn by the server.
2213 Note that this does not fully take effect if done before
2214 F has a window; it must be redone when the window is created. */
2216 void
2217 x_set_border_color (f, arg, oldval)
2218 struct frame *f;
2219 Lisp_Object arg, oldval;
2221 int pix;
2223 CHECK_STRING (arg, 0);
2224 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2225 x_set_border_pixel (f, pix);
2226 update_face_from_frame_parameter (f, Qborder_color, arg);
2229 /* Value is the internal representation of the specified cursor type
2230 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
2231 of the bar cursor. */
2233 enum text_cursor_kinds
2234 x_specified_cursor_type (arg, width)
2235 Lisp_Object arg;
2236 int *width;
2238 enum text_cursor_kinds type;
2240 if (EQ (arg, Qbar))
2242 type = BAR_CURSOR;
2243 *width = 2;
2245 else if (CONSP (arg)
2246 && EQ (XCAR (arg), Qbar)
2247 && INTEGERP (XCDR (arg))
2248 && XINT (XCDR (arg)) >= 0)
2250 type = BAR_CURSOR;
2251 *width = XINT (XCDR (arg));
2253 else if (NILP (arg))
2254 type = NO_CURSOR;
2255 else
2256 /* Treat anything unknown as "box cursor".
2257 It was bad to signal an error; people have trouble fixing
2258 .Xdefaults with Emacs, when it has something bad in it. */
2259 type = FILLED_BOX_CURSOR;
2261 return type;
2264 void
2265 x_set_cursor_type (f, arg, oldval)
2266 FRAME_PTR f;
2267 Lisp_Object arg, oldval;
2269 int width;
2271 FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width);
2272 f->output_data.w32->cursor_width = width;
2274 /* Make sure the cursor gets redrawn. This is overkill, but how
2275 often do people change cursor types? */
2276 update_mode_lines++;
2279 void
2280 x_set_icon_type (f, arg, oldval)
2281 struct frame *f;
2282 Lisp_Object arg, oldval;
2284 int result;
2286 if (NILP (arg) && NILP (oldval))
2287 return;
2289 if (STRINGP (arg) && STRINGP (oldval)
2290 && EQ (Fstring_equal (oldval, arg), Qt))
2291 return;
2293 if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval))
2294 return;
2296 BLOCK_INPUT;
2298 result = x_bitmap_icon (f, arg);
2299 if (result)
2301 UNBLOCK_INPUT;
2302 error ("No icon window available");
2305 UNBLOCK_INPUT;
2308 /* Return non-nil if frame F wants a bitmap icon. */
2310 Lisp_Object
2311 x_icon_type (f)
2312 FRAME_PTR f;
2314 Lisp_Object tem;
2316 tem = assq_no_quit (Qicon_type, f->param_alist);
2317 if (CONSP (tem))
2318 return XCDR (tem);
2319 else
2320 return Qnil;
2323 void
2324 x_set_icon_name (f, arg, oldval)
2325 struct frame *f;
2326 Lisp_Object arg, oldval;
2328 int result;
2330 if (STRINGP (arg))
2332 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
2333 return;
2335 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
2336 return;
2338 f->icon_name = arg;
2340 #if 0
2341 if (f->output_data.w32->icon_bitmap != 0)
2342 return;
2344 BLOCK_INPUT;
2346 result = x_text_icon (f,
2347 (char *) XSTRING ((!NILP (f->icon_name)
2348 ? f->icon_name
2349 : !NILP (f->title)
2350 ? f->title
2351 : f->name))->data);
2353 if (result)
2355 UNBLOCK_INPUT;
2356 error ("No icon window available");
2359 /* If the window was unmapped (and its icon was mapped),
2360 the new icon is not mapped, so map the window in its stead. */
2361 if (FRAME_VISIBLE_P (f))
2363 #ifdef USE_X_TOOLKIT
2364 XtPopup (f->output_data.w32->widget, XtGrabNone);
2365 #endif
2366 XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f));
2369 XFlush (FRAME_W32_DISPLAY (f));
2370 UNBLOCK_INPUT;
2371 #endif
2374 extern Lisp_Object x_new_font ();
2375 extern Lisp_Object x_new_fontset();
2377 void
2378 x_set_font (f, arg, oldval)
2379 struct frame *f;
2380 Lisp_Object arg, oldval;
2382 Lisp_Object result;
2383 Lisp_Object fontset_name;
2384 Lisp_Object frame;
2386 CHECK_STRING (arg, 1);
2388 fontset_name = Fquery_fontset (arg, Qnil);
2390 BLOCK_INPUT;
2391 result = (STRINGP (fontset_name)
2392 ? x_new_fontset (f, XSTRING (fontset_name)->data)
2393 : x_new_font (f, XSTRING (arg)->data));
2394 UNBLOCK_INPUT;
2396 if (EQ (result, Qnil))
2397 error ("Font `%s' is not defined", XSTRING (arg)->data);
2398 else if (EQ (result, Qt))
2399 error ("The characters of the given font have varying widths");
2400 else if (STRINGP (result))
2402 store_frame_param (f, Qfont, result);
2403 recompute_basic_faces (f);
2405 else
2406 abort ();
2408 do_pending_window_change (0);
2410 /* Don't call `face-set-after-frame-default' when faces haven't been
2411 initialized yet. This is the case when called from
2412 Fx_create_frame. In that case, the X widget or window doesn't
2413 exist either, and we can end up in x_report_frame_params with a
2414 null widget which gives a segfault. */
2415 if (FRAME_FACE_CACHE (f))
2417 XSETFRAME (frame, f);
2418 call1 (Qface_set_after_frame_default, frame);
2422 void
2423 x_set_border_width (f, arg, oldval)
2424 struct frame *f;
2425 Lisp_Object arg, oldval;
2427 CHECK_NUMBER (arg, 0);
2429 if (XINT (arg) == f->output_data.w32->border_width)
2430 return;
2432 if (FRAME_W32_WINDOW (f) != 0)
2433 error ("Cannot change the border width of a window");
2435 f->output_data.w32->border_width = XINT (arg);
2438 void
2439 x_set_internal_border_width (f, arg, oldval)
2440 struct frame *f;
2441 Lisp_Object arg, oldval;
2443 int old = f->output_data.w32->internal_border_width;
2445 CHECK_NUMBER (arg, 0);
2446 f->output_data.w32->internal_border_width = XINT (arg);
2447 if (f->output_data.w32->internal_border_width < 0)
2448 f->output_data.w32->internal_border_width = 0;
2450 if (f->output_data.w32->internal_border_width == old)
2451 return;
2453 if (FRAME_W32_WINDOW (f) != 0)
2455 x_set_window_size (f, 0, f->width, f->height);
2456 SET_FRAME_GARBAGED (f);
2457 do_pending_window_change (0);
2461 void
2462 x_set_visibility (f, value, oldval)
2463 struct frame *f;
2464 Lisp_Object value, oldval;
2466 Lisp_Object frame;
2467 XSETFRAME (frame, f);
2469 if (NILP (value))
2470 Fmake_frame_invisible (frame, Qt);
2471 else if (EQ (value, Qicon))
2472 Ficonify_frame (frame);
2473 else
2474 Fmake_frame_visible (frame);
2477 void
2478 x_set_menu_bar_lines (f, value, oldval)
2479 struct frame *f;
2480 Lisp_Object value, oldval;
2482 int nlines;
2483 int olines = FRAME_MENU_BAR_LINES (f);
2485 /* Right now, menu bars don't work properly in minibuf-only frames;
2486 most of the commands try to apply themselves to the minibuffer
2487 frame itself, and get an error because you can't switch buffers
2488 in or split the minibuffer window. */
2489 if (FRAME_MINIBUF_ONLY_P (f))
2490 return;
2492 if (INTEGERP (value))
2493 nlines = XINT (value);
2494 else
2495 nlines = 0;
2497 FRAME_MENU_BAR_LINES (f) = 0;
2498 if (nlines)
2499 FRAME_EXTERNAL_MENU_BAR (f) = 1;
2500 else
2502 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
2503 free_frame_menubar (f);
2504 FRAME_EXTERNAL_MENU_BAR (f) = 0;
2506 /* Adjust the frame size so that the client (text) dimensions
2507 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
2508 set correctly. */
2509 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2510 do_pending_window_change (0);
2512 adjust_glyphs (f);
2516 /* Set the number of lines used for the tool bar of frame F to VALUE.
2517 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2518 is the old number of tool bar lines. This function changes the
2519 height of all windows on frame F to match the new tool bar height.
2520 The frame's height doesn't change. */
2522 void
2523 x_set_tool_bar_lines (f, value, oldval)
2524 struct frame *f;
2525 Lisp_Object value, oldval;
2527 int delta, nlines;
2529 /* Use VALUE only if an integer >= 0. */
2530 if (INTEGERP (value) && XINT (value) >= 0)
2531 nlines = XFASTINT (value);
2532 else
2533 nlines = 0;
2535 /* Make sure we redisplay all windows in this frame. */
2536 ++windows_or_buffers_changed;
2538 delta = nlines - FRAME_TOOL_BAR_LINES (f);
2539 FRAME_TOOL_BAR_LINES (f) = nlines;
2540 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2541 do_pending_window_change (0);
2542 adjust_glyphs (f);
2546 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2547 w32_id_name.
2549 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2550 name; if NAME is a string, set F's name to NAME and set
2551 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2553 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2554 suggesting a new name, which lisp code should override; if
2555 F->explicit_name is set, ignore the new name; otherwise, set it. */
2557 void
2558 x_set_name (f, name, explicit)
2559 struct frame *f;
2560 Lisp_Object name;
2561 int explicit;
2563 /* Make sure that requests from lisp code override requests from
2564 Emacs redisplay code. */
2565 if (explicit)
2567 /* If we're switching from explicit to implicit, we had better
2568 update the mode lines and thereby update the title. */
2569 if (f->explicit_name && NILP (name))
2570 update_mode_lines = 1;
2572 f->explicit_name = ! NILP (name);
2574 else if (f->explicit_name)
2575 return;
2577 /* If NAME is nil, set the name to the w32_id_name. */
2578 if (NILP (name))
2580 /* Check for no change needed in this very common case
2581 before we do any consing. */
2582 if (!strcmp (FRAME_W32_DISPLAY_INFO (f)->w32_id_name,
2583 XSTRING (f->name)->data))
2584 return;
2585 name = build_string (FRAME_W32_DISPLAY_INFO (f)->w32_id_name);
2587 else
2588 CHECK_STRING (name, 0);
2590 /* Don't change the name if it's already NAME. */
2591 if (! NILP (Fstring_equal (name, f->name)))
2592 return;
2594 f->name = name;
2596 /* For setting the frame title, the title parameter should override
2597 the name parameter. */
2598 if (! NILP (f->title))
2599 name = f->title;
2601 if (FRAME_W32_WINDOW (f))
2603 if (STRING_MULTIBYTE (name))
2604 name = ENCODE_SYSTEM (name);
2606 BLOCK_INPUT;
2607 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2608 UNBLOCK_INPUT;
2612 /* This function should be called when the user's lisp code has
2613 specified a name for the frame; the name will override any set by the
2614 redisplay code. */
2615 void
2616 x_explicitly_set_name (f, arg, oldval)
2617 FRAME_PTR f;
2618 Lisp_Object arg, oldval;
2620 x_set_name (f, arg, 1);
2623 /* This function should be called by Emacs redisplay code to set the
2624 name; names set this way will never override names set by the user's
2625 lisp code. */
2626 void
2627 x_implicitly_set_name (f, arg, oldval)
2628 FRAME_PTR f;
2629 Lisp_Object arg, oldval;
2631 x_set_name (f, arg, 0);
2634 /* Change the title of frame F to NAME.
2635 If NAME is nil, use the frame name as the title.
2637 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2638 name; if NAME is a string, set F's name to NAME and set
2639 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2641 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2642 suggesting a new name, which lisp code should override; if
2643 F->explicit_name is set, ignore the new name; otherwise, set it. */
2645 void
2646 x_set_title (f, name, old_name)
2647 struct frame *f;
2648 Lisp_Object name, old_name;
2650 /* Don't change the title if it's already NAME. */
2651 if (EQ (name, f->title))
2652 return;
2654 update_mode_lines = 1;
2656 f->title = name;
2658 if (NILP (name))
2659 name = f->name;
2661 if (FRAME_W32_WINDOW (f))
2663 if (STRING_MULTIBYTE (name))
2664 name = ENCODE_SYSTEM (name);
2666 BLOCK_INPUT;
2667 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2668 UNBLOCK_INPUT;
2672 void
2673 x_set_autoraise (f, arg, oldval)
2674 struct frame *f;
2675 Lisp_Object arg, oldval;
2677 f->auto_raise = !EQ (Qnil, arg);
2680 void
2681 x_set_autolower (f, arg, oldval)
2682 struct frame *f;
2683 Lisp_Object arg, oldval;
2685 f->auto_lower = !EQ (Qnil, arg);
2688 void
2689 x_set_unsplittable (f, arg, oldval)
2690 struct frame *f;
2691 Lisp_Object arg, oldval;
2693 f->no_split = !NILP (arg);
2696 void
2697 x_set_vertical_scroll_bars (f, arg, oldval)
2698 struct frame *f;
2699 Lisp_Object arg, oldval;
2701 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
2702 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
2703 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2704 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
2706 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = NILP (arg) ?
2707 vertical_scroll_bar_none :
2708 /* Put scroll bars on the right by default, as is conventional
2709 on MS-Windows. */
2710 EQ (Qleft, arg)
2711 ? vertical_scroll_bar_left
2712 : vertical_scroll_bar_right;
2714 /* We set this parameter before creating the window for the
2715 frame, so we can get the geometry right from the start.
2716 However, if the window hasn't been created yet, we shouldn't
2717 call x_set_window_size. */
2718 if (FRAME_W32_WINDOW (f))
2719 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2720 do_pending_window_change (0);
2724 void
2725 x_set_scroll_bar_width (f, arg, oldval)
2726 struct frame *f;
2727 Lisp_Object arg, oldval;
2729 int wid = FONT_WIDTH (f->output_data.w32->font);
2731 if (NILP (arg))
2733 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = GetSystemMetrics (SM_CXVSCROLL);
2734 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) +
2735 wid - 1) / wid;
2736 if (FRAME_W32_WINDOW (f))
2737 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2738 do_pending_window_change (0);
2740 else if (INTEGERP (arg) && XINT (arg) > 0
2741 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
2743 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg);
2744 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
2745 + wid-1) / wid;
2746 if (FRAME_W32_WINDOW (f))
2747 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2748 do_pending_window_change (0);
2750 change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
2751 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
2752 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
2755 /* Subroutines of creating an frame. */
2757 /* Make sure that Vx_resource_name is set to a reasonable value.
2758 Fix it up, or set it to `emacs' if it is too hopeless. */
2760 static void
2761 validate_x_resource_name ()
2763 int len = 0;
2764 /* Number of valid characters in the resource name. */
2765 int good_count = 0;
2766 /* Number of invalid characters in the resource name. */
2767 int bad_count = 0;
2768 Lisp_Object new;
2769 int i;
2771 if (STRINGP (Vx_resource_name))
2773 unsigned char *p = XSTRING (Vx_resource_name)->data;
2774 int i;
2776 len = STRING_BYTES (XSTRING (Vx_resource_name));
2778 /* Only letters, digits, - and _ are valid in resource names.
2779 Count the valid characters and count the invalid ones. */
2780 for (i = 0; i < len; i++)
2782 int c = p[i];
2783 if (! ((c >= 'a' && c <= 'z')
2784 || (c >= 'A' && c <= 'Z')
2785 || (c >= '0' && c <= '9')
2786 || c == '-' || c == '_'))
2787 bad_count++;
2788 else
2789 good_count++;
2792 else
2793 /* Not a string => completely invalid. */
2794 bad_count = 5, good_count = 0;
2796 /* If name is valid already, return. */
2797 if (bad_count == 0)
2798 return;
2800 /* If name is entirely invalid, or nearly so, use `emacs'. */
2801 if (good_count == 0
2802 || (good_count == 1 && bad_count > 0))
2804 Vx_resource_name = build_string ("emacs");
2805 return;
2808 /* Name is partly valid. Copy it and replace the invalid characters
2809 with underscores. */
2811 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
2813 for (i = 0; i < len; i++)
2815 int c = XSTRING (new)->data[i];
2816 if (! ((c >= 'a' && c <= 'z')
2817 || (c >= 'A' && c <= 'Z')
2818 || (c >= '0' && c <= '9')
2819 || c == '-' || c == '_'))
2820 XSTRING (new)->data[i] = '_';
2825 extern char *x_get_string_resource ();
2827 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
2828 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\
2829 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\
2830 class, where INSTANCE is the name under which Emacs was invoked, or\n\
2831 the name specified by the `-name' or `-rn' command-line arguments.\n\
2833 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\
2834 class, respectively. You must specify both of them or neither.\n\
2835 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\
2836 and the class is `Emacs.CLASS.SUBCLASS'.")
2837 (attribute, class, component, subclass)
2838 Lisp_Object attribute, class, component, subclass;
2840 register char *value;
2841 char *name_key;
2842 char *class_key;
2844 CHECK_STRING (attribute, 0);
2845 CHECK_STRING (class, 0);
2847 if (!NILP (component))
2848 CHECK_STRING (component, 1);
2849 if (!NILP (subclass))
2850 CHECK_STRING (subclass, 2);
2851 if (NILP (component) != NILP (subclass))
2852 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2854 validate_x_resource_name ();
2856 /* Allocate space for the components, the dots which separate them,
2857 and the final '\0'. Make them big enough for the worst case. */
2858 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name))
2859 + (STRINGP (component)
2860 ? STRING_BYTES (XSTRING (component)) : 0)
2861 + STRING_BYTES (XSTRING (attribute))
2862 + 3);
2864 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
2865 + STRING_BYTES (XSTRING (class))
2866 + (STRINGP (subclass)
2867 ? STRING_BYTES (XSTRING (subclass)) : 0)
2868 + 3);
2870 /* Start with emacs.FRAMENAME for the name (the specific one)
2871 and with `Emacs' for the class key (the general one). */
2872 strcpy (name_key, XSTRING (Vx_resource_name)->data);
2873 strcpy (class_key, EMACS_CLASS);
2875 strcat (class_key, ".");
2876 strcat (class_key, XSTRING (class)->data);
2878 if (!NILP (component))
2880 strcat (class_key, ".");
2881 strcat (class_key, XSTRING (subclass)->data);
2883 strcat (name_key, ".");
2884 strcat (name_key, XSTRING (component)->data);
2887 strcat (name_key, ".");
2888 strcat (name_key, XSTRING (attribute)->data);
2890 value = x_get_string_resource (Qnil,
2891 name_key, class_key);
2893 if (value != (char *) 0)
2894 return build_string (value);
2895 else
2896 return Qnil;
2899 /* Used when C code wants a resource value. */
2901 char *
2902 x_get_resource_string (attribute, class)
2903 char *attribute, *class;
2905 char *name_key;
2906 char *class_key;
2907 struct frame *sf = SELECTED_FRAME ();
2909 /* Allocate space for the components, the dots which separate them,
2910 and the final '\0'. */
2911 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name))
2912 + strlen (attribute) + 2);
2913 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
2914 + strlen (class) + 2);
2916 sprintf (name_key, "%s.%s",
2917 XSTRING (Vinvocation_name)->data,
2918 attribute);
2919 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
2921 return x_get_string_resource (sf, name_key, class_key);
2924 /* Types we might convert a resource string into. */
2925 enum resource_types
2927 RES_TYPE_NUMBER,
2928 RES_TYPE_FLOAT,
2929 RES_TYPE_BOOLEAN,
2930 RES_TYPE_STRING,
2931 RES_TYPE_SYMBOL
2934 /* Return the value of parameter PARAM.
2936 First search ALIST, then Vdefault_frame_alist, then the X defaults
2937 database, using ATTRIBUTE as the attribute name and CLASS as its class.
2939 Convert the resource to the type specified by desired_type.
2941 If no default is specified, return Qunbound. If you call
2942 w32_get_arg, make sure you deal with Qunbound in a reasonable way,
2943 and don't let it get stored in any Lisp-visible variables! */
2945 static Lisp_Object
2946 w32_get_arg (alist, param, attribute, class, type)
2947 Lisp_Object alist, param;
2948 char *attribute;
2949 char *class;
2950 enum resource_types type;
2952 register Lisp_Object tem;
2954 tem = Fassq (param, alist);
2955 if (EQ (tem, Qnil))
2956 tem = Fassq (param, Vdefault_frame_alist);
2957 if (EQ (tem, Qnil))
2960 if (attribute)
2962 tem = Fx_get_resource (build_string (attribute),
2963 build_string (class),
2964 Qnil, Qnil);
2966 if (NILP (tem))
2967 return Qunbound;
2969 switch (type)
2971 case RES_TYPE_NUMBER:
2972 return make_number (atoi (XSTRING (tem)->data));
2974 case RES_TYPE_FLOAT:
2975 return make_float (atof (XSTRING (tem)->data));
2977 case RES_TYPE_BOOLEAN:
2978 tem = Fdowncase (tem);
2979 if (!strcmp (XSTRING (tem)->data, "on")
2980 || !strcmp (XSTRING (tem)->data, "true"))
2981 return Qt;
2982 else
2983 return Qnil;
2985 case RES_TYPE_STRING:
2986 return tem;
2988 case RES_TYPE_SYMBOL:
2989 /* As a special case, we map the values `true' and `on'
2990 to Qt, and `false' and `off' to Qnil. */
2992 Lisp_Object lower;
2993 lower = Fdowncase (tem);
2994 if (!strcmp (XSTRING (lower)->data, "on")
2995 || !strcmp (XSTRING (lower)->data, "true"))
2996 return Qt;
2997 else if (!strcmp (XSTRING (lower)->data, "off")
2998 || !strcmp (XSTRING (lower)->data, "false"))
2999 return Qnil;
3000 else
3001 return Fintern (tem, Qnil);
3004 default:
3005 abort ();
3008 else
3009 return Qunbound;
3011 return Fcdr (tem);
3014 /* Record in frame F the specified or default value according to ALIST
3015 of the parameter named PROP (a Lisp symbol).
3016 If no value is specified for PROP, look for an X default for XPROP
3017 on the frame named NAME.
3018 If that is not found either, use the value DEFLT. */
3020 static Lisp_Object
3021 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3022 struct frame *f;
3023 Lisp_Object alist;
3024 Lisp_Object prop;
3025 Lisp_Object deflt;
3026 char *xprop;
3027 char *xclass;
3028 enum resource_types type;
3030 Lisp_Object tem;
3032 tem = w32_get_arg (alist, prop, xprop, xclass, type);
3033 if (EQ (tem, Qunbound))
3034 tem = deflt;
3035 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3036 return tem;
3039 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3040 "Parse an X-style geometry string STRING.\n\
3041 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\
3042 The properties returned may include `top', `left', `height', and `width'.\n\
3043 The value of `left' or `top' may be an integer,\n\
3044 or a list (+ N) meaning N pixels relative to top/left corner,\n\
3045 or a list (- N) meaning -N pixels relative to bottom/right corner.")
3046 (string)
3047 Lisp_Object string;
3049 int geometry, x, y;
3050 unsigned int width, height;
3051 Lisp_Object result;
3053 CHECK_STRING (string, 0);
3055 geometry = XParseGeometry ((char *) XSTRING (string)->data,
3056 &x, &y, &width, &height);
3058 result = Qnil;
3059 if (geometry & XValue)
3061 Lisp_Object element;
3063 if (x >= 0 && (geometry & XNegative))
3064 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3065 else if (x < 0 && ! (geometry & XNegative))
3066 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3067 else
3068 element = Fcons (Qleft, make_number (x));
3069 result = Fcons (element, result);
3072 if (geometry & YValue)
3074 Lisp_Object element;
3076 if (y >= 0 && (geometry & YNegative))
3077 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3078 else if (y < 0 && ! (geometry & YNegative))
3079 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3080 else
3081 element = Fcons (Qtop, make_number (y));
3082 result = Fcons (element, result);
3085 if (geometry & WidthValue)
3086 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3087 if (geometry & HeightValue)
3088 result = Fcons (Fcons (Qheight, make_number (height)), result);
3090 return result;
3093 /* Calculate the desired size and position of this window,
3094 and return the flags saying which aspects were specified.
3096 This function does not make the coordinates positive. */
3098 #define DEFAULT_ROWS 40
3099 #define DEFAULT_COLS 80
3101 static int
3102 x_figure_window_size (f, parms)
3103 struct frame *f;
3104 Lisp_Object parms;
3106 register Lisp_Object tem0, tem1, tem2;
3107 long window_prompting = 0;
3109 /* Default values if we fall through.
3110 Actually, if that happens we should get
3111 window manager prompting. */
3112 SET_FRAME_WIDTH (f, DEFAULT_COLS);
3113 f->height = DEFAULT_ROWS;
3114 /* Window managers expect that if program-specified
3115 positions are not (0,0), they're intentional, not defaults. */
3116 f->output_data.w32->top_pos = 0;
3117 f->output_data.w32->left_pos = 0;
3119 tem0 = w32_get_arg (parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3120 tem1 = w32_get_arg (parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3121 tem2 = w32_get_arg (parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3122 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3124 if (!EQ (tem0, Qunbound))
3126 CHECK_NUMBER (tem0, 0);
3127 f->height = XINT (tem0);
3129 if (!EQ (tem1, Qunbound))
3131 CHECK_NUMBER (tem1, 0);
3132 SET_FRAME_WIDTH (f, XINT (tem1));
3134 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3135 window_prompting |= USSize;
3136 else
3137 window_prompting |= PSize;
3140 f->output_data.w32->vertical_scroll_bar_extra
3141 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3143 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
3144 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
3145 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.w32->font)));
3146 f->output_data.w32->flags_areas_extra
3147 = FRAME_FLAGS_AREA_WIDTH (f);
3148 f->output_data.w32->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3149 f->output_data.w32->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3151 tem0 = w32_get_arg (parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3152 tem1 = w32_get_arg (parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3153 tem2 = w32_get_arg (parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3154 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3156 if (EQ (tem0, Qminus))
3158 f->output_data.w32->top_pos = 0;
3159 window_prompting |= YNegative;
3161 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3162 && CONSP (XCDR (tem0))
3163 && INTEGERP (XCAR (XCDR (tem0))))
3165 f->output_data.w32->top_pos = - XINT (XCAR (XCDR (tem0)));
3166 window_prompting |= YNegative;
3168 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3169 && CONSP (XCDR (tem0))
3170 && INTEGERP (XCAR (XCDR (tem0))))
3172 f->output_data.w32->top_pos = XINT (XCAR (XCDR (tem0)));
3174 else if (EQ (tem0, Qunbound))
3175 f->output_data.w32->top_pos = 0;
3176 else
3178 CHECK_NUMBER (tem0, 0);
3179 f->output_data.w32->top_pos = XINT (tem0);
3180 if (f->output_data.w32->top_pos < 0)
3181 window_prompting |= YNegative;
3184 if (EQ (tem1, Qminus))
3186 f->output_data.w32->left_pos = 0;
3187 window_prompting |= XNegative;
3189 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3190 && CONSP (XCDR (tem1))
3191 && INTEGERP (XCAR (XCDR (tem1))))
3193 f->output_data.w32->left_pos = - XINT (XCAR (XCDR (tem1)));
3194 window_prompting |= XNegative;
3196 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3197 && CONSP (XCDR (tem1))
3198 && INTEGERP (XCAR (XCDR (tem1))))
3200 f->output_data.w32->left_pos = XINT (XCAR (XCDR (tem1)));
3202 else if (EQ (tem1, Qunbound))
3203 f->output_data.w32->left_pos = 0;
3204 else
3206 CHECK_NUMBER (tem1, 0);
3207 f->output_data.w32->left_pos = XINT (tem1);
3208 if (f->output_data.w32->left_pos < 0)
3209 window_prompting |= XNegative;
3212 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3213 window_prompting |= USPosition;
3214 else
3215 window_prompting |= PPosition;
3218 return window_prompting;
3223 extern LRESULT CALLBACK w32_wnd_proc ();
3225 BOOL
3226 w32_init_class (hinst)
3227 HINSTANCE hinst;
3229 WNDCLASS wc;
3231 wc.style = CS_HREDRAW | CS_VREDRAW;
3232 wc.lpfnWndProc = (WNDPROC) w32_wnd_proc;
3233 wc.cbClsExtra = 0;
3234 wc.cbWndExtra = WND_EXTRA_BYTES;
3235 wc.hInstance = hinst;
3236 wc.hIcon = LoadIcon (hinst, EMACS_CLASS);
3237 wc.hCursor = LoadCursor (NULL, IDC_ARROW);
3238 wc.hbrBackground = NULL; /* GetStockObject (WHITE_BRUSH); */
3239 wc.lpszMenuName = NULL;
3240 wc.lpszClassName = EMACS_CLASS;
3242 return (RegisterClass (&wc));
3245 HWND
3246 w32_createscrollbar (f, bar)
3247 struct frame *f;
3248 struct scroll_bar * bar;
3250 return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
3251 /* Position and size of scroll bar. */
3252 XINT(bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3253 XINT(bar->top),
3254 XINT(bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3255 XINT(bar->height),
3256 FRAME_W32_WINDOW (f),
3257 NULL,
3258 hinst,
3259 NULL));
3262 void
3263 w32_createwindow (f)
3264 struct frame *f;
3266 HWND hwnd;
3267 RECT rect;
3269 rect.left = rect.top = 0;
3270 rect.right = PIXEL_WIDTH (f);
3271 rect.bottom = PIXEL_HEIGHT (f);
3273 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
3274 FRAME_EXTERNAL_MENU_BAR (f));
3276 /* Do first time app init */
3278 if (!hprevinst)
3280 w32_init_class (hinst);
3283 FRAME_W32_WINDOW (f) = hwnd
3284 = CreateWindow (EMACS_CLASS,
3285 f->namebuf,
3286 f->output_data.w32->dwStyle | WS_CLIPCHILDREN,
3287 f->output_data.w32->left_pos,
3288 f->output_data.w32->top_pos,
3289 rect.right - rect.left,
3290 rect.bottom - rect.top,
3291 NULL,
3292 NULL,
3293 hinst,
3294 NULL);
3296 if (hwnd)
3298 SetWindowLong (hwnd, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
3299 SetWindowLong (hwnd, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
3300 SetWindowLong (hwnd, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
3301 SetWindowLong (hwnd, WND_SCROLLBAR_INDEX, f->output_data.w32->vertical_scroll_bar_extra);
3302 SetWindowLong (hwnd, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
3304 /* Enable drag-n-drop. */
3305 DragAcceptFiles (hwnd, TRUE);
3307 /* Do this to discard the default setting specified by our parent. */
3308 ShowWindow (hwnd, SW_HIDE);
3312 void
3313 my_post_msg (wmsg, hwnd, msg, wParam, lParam)
3314 W32Msg * wmsg;
3315 HWND hwnd;
3316 UINT msg;
3317 WPARAM wParam;
3318 LPARAM lParam;
3320 wmsg->msg.hwnd = hwnd;
3321 wmsg->msg.message = msg;
3322 wmsg->msg.wParam = wParam;
3323 wmsg->msg.lParam = lParam;
3324 wmsg->msg.time = GetMessageTime ();
3326 post_msg (wmsg);
3329 /* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
3330 between left and right keys as advertised. We test for this
3331 support dynamically, and set a flag when the support is absent. If
3332 absent, we keep track of the left and right control and alt keys
3333 ourselves. This is particularly necessary on keyboards that rely
3334 upon the AltGr key, which is represented as having the left control
3335 and right alt keys pressed. For these keyboards, we need to know
3336 when the left alt key has been pressed in addition to the AltGr key
3337 so that we can properly support M-AltGr-key sequences (such as M-@
3338 on Swedish keyboards). */
3340 #define EMACS_LCONTROL 0
3341 #define EMACS_RCONTROL 1
3342 #define EMACS_LMENU 2
3343 #define EMACS_RMENU 3
3345 static int modifiers[4];
3346 static int modifiers_recorded;
3347 static int modifier_key_support_tested;
3349 static void
3350 test_modifier_support (unsigned int wparam)
3352 unsigned int l, r;
3354 if (wparam != VK_CONTROL && wparam != VK_MENU)
3355 return;
3356 if (wparam == VK_CONTROL)
3358 l = VK_LCONTROL;
3359 r = VK_RCONTROL;
3361 else
3363 l = VK_LMENU;
3364 r = VK_RMENU;
3366 if (!(GetKeyState (l) & 0x8000) && !(GetKeyState (r) & 0x8000))
3367 modifiers_recorded = 1;
3368 else
3369 modifiers_recorded = 0;
3370 modifier_key_support_tested = 1;
3373 static void
3374 record_keydown (unsigned int wparam, unsigned int lparam)
3376 int i;
3378 if (!modifier_key_support_tested)
3379 test_modifier_support (wparam);
3381 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3382 return;
3384 if (wparam == VK_CONTROL)
3385 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3386 else
3387 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3389 modifiers[i] = 1;
3392 static void
3393 record_keyup (unsigned int wparam, unsigned int lparam)
3395 int i;
3397 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3398 return;
3400 if (wparam == VK_CONTROL)
3401 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3402 else
3403 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3405 modifiers[i] = 0;
3408 /* Emacs can lose focus while a modifier key has been pressed. When
3409 it regains focus, be conservative and clear all modifiers since
3410 we cannot reconstruct the left and right modifier state. */
3411 static void
3412 reset_modifiers ()
3414 SHORT ctrl, alt;
3416 if (GetFocus () == NULL)
3417 /* Emacs doesn't have keyboard focus. Do nothing. */
3418 return;
3420 ctrl = GetAsyncKeyState (VK_CONTROL);
3421 alt = GetAsyncKeyState (VK_MENU);
3423 if (!(ctrl & 0x08000))
3424 /* Clear any recorded control modifier state. */
3425 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3427 if (!(alt & 0x08000))
3428 /* Clear any recorded alt modifier state. */
3429 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3431 /* Update the state of all modifier keys, because modifiers used in
3432 hot-key combinations can get stuck on if Emacs loses focus as a
3433 result of a hot-key being pressed. */
3435 BYTE keystate[256];
3437 #define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
3439 GetKeyboardState (keystate);
3440 keystate[VK_SHIFT] = CURRENT_STATE (VK_SHIFT);
3441 keystate[VK_CONTROL] = CURRENT_STATE (VK_CONTROL);
3442 keystate[VK_LCONTROL] = CURRENT_STATE (VK_LCONTROL);
3443 keystate[VK_RCONTROL] = CURRENT_STATE (VK_RCONTROL);
3444 keystate[VK_MENU] = CURRENT_STATE (VK_MENU);
3445 keystate[VK_LMENU] = CURRENT_STATE (VK_LMENU);
3446 keystate[VK_RMENU] = CURRENT_STATE (VK_RMENU);
3447 keystate[VK_LWIN] = CURRENT_STATE (VK_LWIN);
3448 keystate[VK_RWIN] = CURRENT_STATE (VK_RWIN);
3449 keystate[VK_APPS] = CURRENT_STATE (VK_APPS);
3450 SetKeyboardState (keystate);
3454 /* Synchronize modifier state with what is reported with the current
3455 keystroke. Even if we cannot distinguish between left and right
3456 modifier keys, we know that, if no modifiers are set, then neither
3457 the left or right modifier should be set. */
3458 static void
3459 sync_modifiers ()
3461 if (!modifiers_recorded)
3462 return;
3464 if (!(GetKeyState (VK_CONTROL) & 0x8000))
3465 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3467 if (!(GetKeyState (VK_MENU) & 0x8000))
3468 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3471 static int
3472 modifier_set (int vkey)
3474 if (vkey == VK_CAPITAL || vkey == VK_SCROLL)
3475 return (GetKeyState (vkey) & 0x1);
3476 if (!modifiers_recorded)
3477 return (GetKeyState (vkey) & 0x8000);
3479 switch (vkey)
3481 case VK_LCONTROL:
3482 return modifiers[EMACS_LCONTROL];
3483 case VK_RCONTROL:
3484 return modifiers[EMACS_RCONTROL];
3485 case VK_LMENU:
3486 return modifiers[EMACS_LMENU];
3487 case VK_RMENU:
3488 return modifiers[EMACS_RMENU];
3490 return (GetKeyState (vkey) & 0x8000);
3493 /* Convert between the modifier bits W32 uses and the modifier bits
3494 Emacs uses. */
3496 unsigned int
3497 w32_key_to_modifier (int key)
3499 Lisp_Object key_mapping;
3501 switch (key)
3503 case VK_LWIN:
3504 key_mapping = Vw32_lwindow_modifier;
3505 break;
3506 case VK_RWIN:
3507 key_mapping = Vw32_rwindow_modifier;
3508 break;
3509 case VK_APPS:
3510 key_mapping = Vw32_apps_modifier;
3511 break;
3512 case VK_SCROLL:
3513 key_mapping = Vw32_scroll_lock_modifier;
3514 break;
3515 default:
3516 key_mapping = Qnil;
3519 /* NB. This code runs in the input thread, asychronously to the lisp
3520 thread, so we must be careful to ensure access to lisp data is
3521 thread-safe. The following code is safe because the modifier
3522 variable values are updated atomically from lisp and symbols are
3523 not relocated by GC. Also, we don't have to worry about seeing GC
3524 markbits here. */
3525 if (EQ (key_mapping, Qhyper))
3526 return hyper_modifier;
3527 if (EQ (key_mapping, Qsuper))
3528 return super_modifier;
3529 if (EQ (key_mapping, Qmeta))
3530 return meta_modifier;
3531 if (EQ (key_mapping, Qalt))
3532 return alt_modifier;
3533 if (EQ (key_mapping, Qctrl))
3534 return ctrl_modifier;
3535 if (EQ (key_mapping, Qcontrol)) /* synonym for ctrl */
3536 return ctrl_modifier;
3537 if (EQ (key_mapping, Qshift))
3538 return shift_modifier;
3540 /* Don't generate any modifier if not explicitly requested. */
3541 return 0;
3544 unsigned int
3545 w32_get_modifiers ()
3547 return ((modifier_set (VK_SHIFT) ? shift_modifier : 0) |
3548 (modifier_set (VK_CONTROL) ? ctrl_modifier : 0) |
3549 (modifier_set (VK_LWIN) ? w32_key_to_modifier (VK_LWIN) : 0) |
3550 (modifier_set (VK_RWIN) ? w32_key_to_modifier (VK_RWIN) : 0) |
3551 (modifier_set (VK_APPS) ? w32_key_to_modifier (VK_APPS) : 0) |
3552 (modifier_set (VK_SCROLL) ? w32_key_to_modifier (VK_SCROLL) : 0) |
3553 (modifier_set (VK_MENU) ?
3554 ((NILP (Vw32_alt_is_meta)) ? alt_modifier : meta_modifier) : 0));
3557 /* We map the VK_* modifiers into console modifier constants
3558 so that we can use the same routines to handle both console
3559 and window input. */
3561 static int
3562 construct_console_modifiers ()
3564 int mods;
3566 mods = 0;
3567 mods |= (modifier_set (VK_SHIFT)) ? SHIFT_PRESSED : 0;
3568 mods |= (modifier_set (VK_CAPITAL)) ? CAPSLOCK_ON : 0;
3569 mods |= (modifier_set (VK_SCROLL)) ? SCROLLLOCK_ON : 0;
3570 mods |= (modifier_set (VK_NUMLOCK)) ? NUMLOCK_ON : 0;
3571 mods |= (modifier_set (VK_LCONTROL)) ? LEFT_CTRL_PRESSED : 0;
3572 mods |= (modifier_set (VK_RCONTROL)) ? RIGHT_CTRL_PRESSED : 0;
3573 mods |= (modifier_set (VK_LMENU)) ? LEFT_ALT_PRESSED : 0;
3574 mods |= (modifier_set (VK_RMENU)) ? RIGHT_ALT_PRESSED : 0;
3575 mods |= (modifier_set (VK_LWIN)) ? LEFT_WIN_PRESSED : 0;
3576 mods |= (modifier_set (VK_RWIN)) ? RIGHT_WIN_PRESSED : 0;
3577 mods |= (modifier_set (VK_APPS)) ? APPS_PRESSED : 0;
3579 return mods;
3582 static int
3583 w32_get_key_modifiers (unsigned int wparam, unsigned int lparam)
3585 int mods;
3587 /* Convert to emacs modifiers. */
3588 mods = w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam);
3590 return mods;
3593 unsigned int
3594 map_keypad_keys (unsigned int virt_key, unsigned int extended)
3596 if (virt_key < VK_CLEAR || virt_key > VK_DELETE)
3597 return virt_key;
3599 if (virt_key == VK_RETURN)
3600 return (extended ? VK_NUMPAD_ENTER : VK_RETURN);
3602 if (virt_key >= VK_PRIOR && virt_key <= VK_DOWN)
3603 return (!extended ? (VK_NUMPAD_PRIOR + (virt_key - VK_PRIOR)) : virt_key);
3605 if (virt_key == VK_INSERT || virt_key == VK_DELETE)
3606 return (!extended ? (VK_NUMPAD_INSERT + (virt_key - VK_INSERT)) : virt_key);
3608 if (virt_key == VK_CLEAR)
3609 return (!extended ? VK_NUMPAD_CLEAR : virt_key);
3611 return virt_key;
3614 /* List of special key combinations which w32 would normally capture,
3615 but emacs should grab instead. Not directly visible to lisp, to
3616 simplify synchronization. Each item is an integer encoding a virtual
3617 key code and modifier combination to capture. */
3618 Lisp_Object w32_grabbed_keys;
3620 #define HOTKEY(vk,mods) make_number (((vk) & 255) | ((mods) << 8))
3621 #define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
3622 #define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
3623 #define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
3625 /* Register hot-keys for reserved key combinations when Emacs has
3626 keyboard focus, since this is the only way Emacs can receive key
3627 combinations like Alt-Tab which are used by the system. */
3629 static void
3630 register_hot_keys (hwnd)
3631 HWND hwnd;
3633 Lisp_Object keylist;
3635 /* Use GC_CONSP, since we are called asynchronously. */
3636 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3638 Lisp_Object key = XCAR (keylist);
3640 /* Deleted entries get set to nil. */
3641 if (!INTEGERP (key))
3642 continue;
3644 RegisterHotKey (hwnd, HOTKEY_ID (key),
3645 HOTKEY_MODIFIERS (key), HOTKEY_VK_CODE (key));
3649 static void
3650 unregister_hot_keys (hwnd)
3651 HWND hwnd;
3653 Lisp_Object keylist;
3655 /* Use GC_CONSP, since we are called asynchronously. */
3656 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3658 Lisp_Object key = XCAR (keylist);
3660 if (!INTEGERP (key))
3661 continue;
3663 UnregisterHotKey (hwnd, HOTKEY_ID (key));
3667 /* Main message dispatch loop. */
3669 static void
3670 w32_msg_pump (deferred_msg * msg_buf)
3672 MSG msg;
3673 int result;
3674 HWND focus_window;
3676 msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
3678 while (GetMessage (&msg, NULL, 0, 0))
3680 if (msg.hwnd == NULL)
3682 switch (msg.message)
3684 case WM_NULL:
3685 /* Produced by complete_deferred_msg; just ignore. */
3686 break;
3687 case WM_EMACS_CREATEWINDOW:
3688 w32_createwindow ((struct frame *) msg.wParam);
3689 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3690 abort ();
3691 break;
3692 case WM_EMACS_SETLOCALE:
3693 SetThreadLocale (msg.wParam);
3694 /* Reply is not expected. */
3695 break;
3696 case WM_EMACS_SETKEYBOARDLAYOUT:
3697 result = (int) ActivateKeyboardLayout ((HKL) msg.wParam, 0);
3698 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3699 result, 0))
3700 abort ();
3701 break;
3702 case WM_EMACS_REGISTER_HOT_KEY:
3703 focus_window = GetFocus ();
3704 if (focus_window != NULL)
3705 RegisterHotKey (focus_window,
3706 HOTKEY_ID (msg.wParam),
3707 HOTKEY_MODIFIERS (msg.wParam),
3708 HOTKEY_VK_CODE (msg.wParam));
3709 /* Reply is not expected. */
3710 break;
3711 case WM_EMACS_UNREGISTER_HOT_KEY:
3712 focus_window = GetFocus ();
3713 if (focus_window != NULL)
3714 UnregisterHotKey (focus_window, HOTKEY_ID (msg.wParam));
3715 /* Mark item as erased. NB: this code must be
3716 thread-safe. The next line is okay because the cons
3717 cell is never made into garbage and is not relocated by
3718 GC. */
3719 XCAR ((Lisp_Object) msg.lParam) = Qnil;
3720 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3721 abort ();
3722 break;
3723 case WM_EMACS_TOGGLE_LOCK_KEY:
3725 int vk_code = (int) msg.wParam;
3726 int cur_state = (GetKeyState (vk_code) & 1);
3727 Lisp_Object new_state = (Lisp_Object) msg.lParam;
3729 /* NB: This code must be thread-safe. It is safe to
3730 call NILP because symbols are not relocated by GC,
3731 and pointer here is not touched by GC (so the markbit
3732 can't be set). Numbers are safe because they are
3733 immediate values. */
3734 if (NILP (new_state)
3735 || (NUMBERP (new_state)
3736 && (XUINT (new_state)) & 1 != cur_state))
3738 one_w32_display_info.faked_key = vk_code;
3740 keybd_event ((BYTE) vk_code,
3741 (BYTE) MapVirtualKey (vk_code, 0),
3742 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3743 keybd_event ((BYTE) vk_code,
3744 (BYTE) MapVirtualKey (vk_code, 0),
3745 KEYEVENTF_EXTENDEDKEY | 0, 0);
3746 keybd_event ((BYTE) vk_code,
3747 (BYTE) MapVirtualKey (vk_code, 0),
3748 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3749 cur_state = !cur_state;
3751 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3752 cur_state, 0))
3753 abort ();
3755 break;
3756 default:
3757 DebPrint (("msg %x not expected by w32_msg_pump\n", msg.message));
3760 else
3762 DispatchMessage (&msg);
3765 /* Exit nested loop when our deferred message has completed. */
3766 if (msg_buf->completed)
3767 break;
3771 deferred_msg * deferred_msg_head;
3773 static deferred_msg *
3774 find_deferred_msg (HWND hwnd, UINT msg)
3776 deferred_msg * item;
3778 /* Don't actually need synchronization for read access, since
3779 modification of single pointer is always atomic. */
3780 /* enter_crit (); */
3782 for (item = deferred_msg_head; item != NULL; item = item->next)
3783 if (item->w32msg.msg.hwnd == hwnd
3784 && item->w32msg.msg.message == msg)
3785 break;
3787 /* leave_crit (); */
3789 return item;
3792 static LRESULT
3793 send_deferred_msg (deferred_msg * msg_buf,
3794 HWND hwnd,
3795 UINT msg,
3796 WPARAM wParam,
3797 LPARAM lParam)
3799 /* Only input thread can send deferred messages. */
3800 if (GetCurrentThreadId () != dwWindowsThreadId)
3801 abort ();
3803 /* It is an error to send a message that is already deferred. */
3804 if (find_deferred_msg (hwnd, msg) != NULL)
3805 abort ();
3807 /* Enforced synchronization is not needed because this is the only
3808 function that alters deferred_msg_head, and the following critical
3809 section is guaranteed to only be serially reentered (since only the
3810 input thread can call us). */
3812 /* enter_crit (); */
3814 msg_buf->completed = 0;
3815 msg_buf->next = deferred_msg_head;
3816 deferred_msg_head = msg_buf;
3817 my_post_msg (&msg_buf->w32msg, hwnd, msg, wParam, lParam);
3819 /* leave_crit (); */
3821 /* Start a new nested message loop to process other messages until
3822 this one is completed. */
3823 w32_msg_pump (msg_buf);
3825 deferred_msg_head = msg_buf->next;
3827 return msg_buf->result;
3830 void
3831 complete_deferred_msg (HWND hwnd, UINT msg, LRESULT result)
3833 deferred_msg * msg_buf = find_deferred_msg (hwnd, msg);
3835 if (msg_buf == NULL)
3836 /* Message may have been cancelled, so don't abort(). */
3837 return;
3839 msg_buf->result = result;
3840 msg_buf->completed = 1;
3842 /* Ensure input thread is woken so it notices the completion. */
3843 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
3846 void
3847 cancel_all_deferred_msgs ()
3849 deferred_msg * item;
3851 /* Don't actually need synchronization for read access, since
3852 modification of single pointer is always atomic. */
3853 /* enter_crit (); */
3855 for (item = deferred_msg_head; item != NULL; item = item->next)
3857 item->result = 0;
3858 item->completed = 1;
3861 /* leave_crit (); */
3863 /* Ensure input thread is woken so it notices the completion. */
3864 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
3867 DWORD
3868 w32_msg_worker (dw)
3869 DWORD dw;
3871 MSG msg;
3872 deferred_msg dummy_buf;
3874 /* Ensure our message queue is created */
3876 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
3878 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3879 abort ();
3881 memset (&dummy_buf, 0, sizeof (dummy_buf));
3882 dummy_buf.w32msg.msg.hwnd = NULL;
3883 dummy_buf.w32msg.msg.message = WM_NULL;
3885 /* This is the inital message loop which should only exit when the
3886 application quits. */
3887 w32_msg_pump (&dummy_buf);
3889 return 0;
3892 static void
3893 post_character_message (hwnd, msg, wParam, lParam, modifiers)
3894 HWND hwnd;
3895 UINT msg;
3896 WPARAM wParam;
3897 LPARAM lParam;
3898 DWORD modifiers;
3901 W32Msg wmsg;
3903 wmsg.dwModifiers = modifiers;
3905 /* Detect quit_char and set quit-flag directly. Note that we
3906 still need to post a message to ensure the main thread will be
3907 woken up if blocked in sys_select(), but we do NOT want to post
3908 the quit_char message itself (because it will usually be as if
3909 the user had typed quit_char twice). Instead, we post a dummy
3910 message that has no particular effect. */
3912 int c = wParam;
3913 if (isalpha (c) && wmsg.dwModifiers == ctrl_modifier)
3914 c = make_ctrl_char (c) & 0377;
3915 if (c == quit_char
3916 || (wmsg.dwModifiers == 0 &&
3917 XFASTINT (Vw32_quit_key) && wParam == XFASTINT (Vw32_quit_key)))
3919 Vquit_flag = Qt;
3921 /* The choice of message is somewhat arbitrary, as long as
3922 the main thread handler just ignores it. */
3923 msg = WM_NULL;
3925 /* Interrupt any blocking system calls. */
3926 signal_quit ();
3928 /* As a safety precaution, forcibly complete any deferred
3929 messages. This is a kludge, but I don't see any particularly
3930 clean way to handle the situation where a deferred message is
3931 "dropped" in the lisp thread, and will thus never be
3932 completed, eg. by the user trying to activate the menubar
3933 when the lisp thread is busy, and then typing C-g when the
3934 menubar doesn't open promptly (with the result that the
3935 menubar never responds at all because the deferred
3936 WM_INITMENU message is never completed). Another problem
3937 situation is when the lisp thread calls SendMessage (to send
3938 a window manager command) when a message has been deferred;
3939 the lisp thread gets blocked indefinitely waiting for the
3940 deferred message to be completed, which itself is waiting for
3941 the lisp thread to respond.
3943 Note that we don't want to block the input thread waiting for
3944 a reponse from the lisp thread (although that would at least
3945 solve the deadlock problem above), because we want to be able
3946 to receive C-g to interrupt the lisp thread. */
3947 cancel_all_deferred_msgs ();
3951 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3954 /* Main window procedure */
3956 LRESULT CALLBACK
3957 w32_wnd_proc (hwnd, msg, wParam, lParam)
3958 HWND hwnd;
3959 UINT msg;
3960 WPARAM wParam;
3961 LPARAM lParam;
3963 struct frame *f;
3964 struct w32_display_info *dpyinfo = &one_w32_display_info;
3965 W32Msg wmsg;
3966 int windows_translate;
3967 int key;
3969 /* Note that it is okay to call x_window_to_frame, even though we are
3970 not running in the main lisp thread, because frame deletion
3971 requires the lisp thread to synchronize with this thread. Thus, if
3972 a frame struct is returned, it can be used without concern that the
3973 lisp thread might make it disappear while we are using it.
3975 NB. Walking the frame list in this thread is safe (as long as
3976 writes of Lisp_Object slots are atomic, which they are on Windows).
3977 Although delete-frame can destructively modify the frame list while
3978 we are walking it, a garbage collection cannot occur until after
3979 delete-frame has synchronized with this thread.
3981 It is also safe to use functions that make GDI calls, such as
3982 w32_clear_rect, because these functions must obtain a DC handle
3983 from the frame struct using get_frame_dc which is thread-aware. */
3985 switch (msg)
3987 case WM_ERASEBKGND:
3988 f = x_window_to_frame (dpyinfo, hwnd);
3989 if (f)
3991 HDC hdc = get_frame_dc (f);
3992 GetUpdateRect (hwnd, &wmsg.rect, FALSE);
3993 w32_clear_rect (f, hdc, &wmsg.rect);
3994 release_frame_dc (f, hdc);
3996 #if defined (W32_DEBUG_DISPLAY)
3997 DebPrint (("WM_ERASEBKGND: erasing %d,%d-%d,%d\n",
3998 wmsg.rect.left, wmsg.rect.top, wmsg.rect.right,
3999 wmsg.rect.bottom));
4000 #endif /* W32_DEBUG_DISPLAY */
4002 return 1;
4003 case WM_PALETTECHANGED:
4004 /* ignore our own changes */
4005 if ((HWND)wParam != hwnd)
4007 f = x_window_to_frame (dpyinfo, hwnd);
4008 if (f)
4009 /* get_frame_dc will realize our palette and force all
4010 frames to be redrawn if needed. */
4011 release_frame_dc (f, get_frame_dc (f));
4013 return 0;
4014 case WM_PAINT:
4016 PAINTSTRUCT paintStruct;
4017 RECT update_rect;
4019 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
4020 fails. Apparently this can happen under some
4021 circumstances. */
4022 if (!w32_strict_painting || GetUpdateRect (hwnd, &update_rect, FALSE))
4024 enter_crit ();
4025 BeginPaint (hwnd, &paintStruct);
4027 if (w32_strict_painting)
4028 /* The rectangles returned by GetUpdateRect and BeginPaint
4029 do not always match. GetUpdateRect seems to be the
4030 more reliable of the two. */
4031 wmsg.rect = update_rect;
4032 else
4033 wmsg.rect = paintStruct.rcPaint;
4035 #if defined (W32_DEBUG_DISPLAY)
4036 DebPrint (("WM_PAINT: painting %d,%d-%d,%d\n", wmsg.rect.left,
4037 wmsg.rect.top, wmsg.rect.right, wmsg.rect.bottom));
4038 DebPrint (("WM_PAINT: update region is %d,%d-%d,%d\n",
4039 update_rect.left, update_rect.top,
4040 update_rect.right, update_rect.bottom));
4041 #endif
4042 EndPaint (hwnd, &paintStruct);
4043 leave_crit ();
4045 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4047 return 0;
4050 /* If GetUpdateRect returns 0 (meaning there is no update
4051 region), assume the whole window needs to be repainted. */
4052 GetClientRect(hwnd, &wmsg.rect);
4053 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4054 return 0;
4057 case WM_INPUTLANGCHANGE:
4058 /* Inform lisp thread of keyboard layout changes. */
4059 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4061 /* Clear dead keys in the keyboard state; for simplicity only
4062 preserve modifier key states. */
4064 int i;
4065 BYTE keystate[256];
4067 GetKeyboardState (keystate);
4068 for (i = 0; i < 256; i++)
4069 if (1
4070 && i != VK_SHIFT
4071 && i != VK_LSHIFT
4072 && i != VK_RSHIFT
4073 && i != VK_CAPITAL
4074 && i != VK_NUMLOCK
4075 && i != VK_SCROLL
4076 && i != VK_CONTROL
4077 && i != VK_LCONTROL
4078 && i != VK_RCONTROL
4079 && i != VK_MENU
4080 && i != VK_LMENU
4081 && i != VK_RMENU
4082 && i != VK_LWIN
4083 && i != VK_RWIN)
4084 keystate[i] = 0;
4085 SetKeyboardState (keystate);
4087 goto dflt;
4089 case WM_HOTKEY:
4090 /* Synchronize hot keys with normal input. */
4091 PostMessage (hwnd, WM_KEYDOWN, HIWORD (lParam), 0);
4092 return (0);
4094 case WM_KEYUP:
4095 case WM_SYSKEYUP:
4096 record_keyup (wParam, lParam);
4097 goto dflt;
4099 case WM_KEYDOWN:
4100 case WM_SYSKEYDOWN:
4101 /* Ignore keystrokes we fake ourself; see below. */
4102 if (dpyinfo->faked_key == wParam)
4104 dpyinfo->faked_key = 0;
4105 /* Make sure TranslateMessage sees them though (as long as
4106 they don't produce WM_CHAR messages). This ensures that
4107 indicator lights are toggled promptly on Windows 9x, for
4108 example. */
4109 if (lispy_function_keys[wParam] != 0)
4111 windows_translate = 1;
4112 goto translate;
4114 return 0;
4117 /* Synchronize modifiers with current keystroke. */
4118 sync_modifiers ();
4119 record_keydown (wParam, lParam);
4120 wParam = map_keypad_keys (wParam, (lParam & 0x1000000L) != 0);
4122 windows_translate = 0;
4124 switch (wParam)
4126 case VK_LWIN:
4127 if (NILP (Vw32_pass_lwindow_to_system))
4129 /* Prevent system from acting on keyup (which opens the
4130 Start menu if no other key was pressed) by simulating a
4131 press of Space which we will ignore. */
4132 if (GetAsyncKeyState (wParam) & 1)
4134 if (NUMBERP (Vw32_phantom_key_code))
4135 key = XUINT (Vw32_phantom_key_code) & 255;
4136 else
4137 key = VK_SPACE;
4138 dpyinfo->faked_key = key;
4139 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4142 if (!NILP (Vw32_lwindow_modifier))
4143 return 0;
4144 break;
4145 case VK_RWIN:
4146 if (NILP (Vw32_pass_rwindow_to_system))
4148 if (GetAsyncKeyState (wParam) & 1)
4150 if (NUMBERP (Vw32_phantom_key_code))
4151 key = XUINT (Vw32_phantom_key_code) & 255;
4152 else
4153 key = VK_SPACE;
4154 dpyinfo->faked_key = key;
4155 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4158 if (!NILP (Vw32_rwindow_modifier))
4159 return 0;
4160 break;
4161 case VK_APPS:
4162 if (!NILP (Vw32_apps_modifier))
4163 return 0;
4164 break;
4165 case VK_MENU:
4166 if (NILP (Vw32_pass_alt_to_system))
4167 /* Prevent DefWindowProc from activating the menu bar if an
4168 Alt key is pressed and released by itself. */
4169 return 0;
4170 windows_translate = 1;
4171 break;
4172 case VK_CAPITAL:
4173 /* Decide whether to treat as modifier or function key. */
4174 if (NILP (Vw32_enable_caps_lock))
4175 goto disable_lock_key;
4176 windows_translate = 1;
4177 break;
4178 case VK_NUMLOCK:
4179 /* Decide whether to treat as modifier or function key. */
4180 if (NILP (Vw32_enable_num_lock))
4181 goto disable_lock_key;
4182 windows_translate = 1;
4183 break;
4184 case VK_SCROLL:
4185 /* Decide whether to treat as modifier or function key. */
4186 if (NILP (Vw32_scroll_lock_modifier))
4187 goto disable_lock_key;
4188 windows_translate = 1;
4189 break;
4190 disable_lock_key:
4191 /* Ensure the appropriate lock key state (and indicator light)
4192 remains in the same state. We do this by faking another
4193 press of the relevant key. Apparently, this really is the
4194 only way to toggle the state of the indicator lights. */
4195 dpyinfo->faked_key = wParam;
4196 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4197 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4198 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4199 KEYEVENTF_EXTENDEDKEY | 0, 0);
4200 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4201 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4202 /* Ensure indicator lights are updated promptly on Windows 9x
4203 (TranslateMessage apparently does this), after forwarding
4204 input event. */
4205 post_character_message (hwnd, msg, wParam, lParam,
4206 w32_get_key_modifiers (wParam, lParam));
4207 windows_translate = 1;
4208 break;
4209 case VK_CONTROL:
4210 case VK_SHIFT:
4211 case VK_PROCESSKEY: /* Generated by IME. */
4212 windows_translate = 1;
4213 break;
4214 case VK_CANCEL:
4215 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
4216 which is confusing for purposes of key binding; convert
4217 VK_CANCEL events into VK_PAUSE events. */
4218 wParam = VK_PAUSE;
4219 break;
4220 case VK_PAUSE:
4221 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
4222 for purposes of key binding; convert these back into
4223 VK_NUMLOCK events, at least when we want to see NumLock key
4224 presses. (Note that there is never any possibility that
4225 VK_PAUSE with Ctrl really is C-Pause as per above.) */
4226 if (NILP (Vw32_enable_num_lock) && modifier_set (VK_CONTROL))
4227 wParam = VK_NUMLOCK;
4228 break;
4229 default:
4230 /* If not defined as a function key, change it to a WM_CHAR message. */
4231 if (lispy_function_keys[wParam] == 0)
4233 DWORD modifiers = construct_console_modifiers ();
4235 if (!NILP (Vw32_recognize_altgr)
4236 && modifier_set (VK_LCONTROL) && modifier_set (VK_RMENU))
4238 /* Always let TranslateMessage handle AltGr key chords;
4239 for some reason, ToAscii doesn't always process AltGr
4240 chords correctly. */
4241 windows_translate = 1;
4243 else if ((modifiers & (~SHIFT_PRESSED & ~CAPSLOCK_ON)) != 0)
4245 /* Handle key chords including any modifiers other
4246 than shift directly, in order to preserve as much
4247 modifier information as possible. */
4248 if ('A' <= wParam && wParam <= 'Z')
4250 /* Don't translate modified alphabetic keystrokes,
4251 so the user doesn't need to constantly switch
4252 layout to type control or meta keystrokes when
4253 the normal layout translates alphabetic
4254 characters to non-ascii characters. */
4255 if (!modifier_set (VK_SHIFT))
4256 wParam += ('a' - 'A');
4257 msg = WM_CHAR;
4259 else
4261 /* Try to handle other keystrokes by determining the
4262 base character (ie. translating the base key plus
4263 shift modifier). */
4264 int add;
4265 int isdead = 0;
4266 KEY_EVENT_RECORD key;
4268 key.bKeyDown = TRUE;
4269 key.wRepeatCount = 1;
4270 key.wVirtualKeyCode = wParam;
4271 key.wVirtualScanCode = (lParam & 0xFF0000) >> 16;
4272 key.uChar.AsciiChar = 0;
4273 key.dwControlKeyState = modifiers;
4275 add = w32_kbd_patch_key (&key);
4276 /* 0 means an unrecognised keycode, negative means
4277 dead key. Ignore both. */
4278 while (--add >= 0)
4280 /* Forward asciified character sequence. */
4281 post_character_message
4282 (hwnd, WM_CHAR, key.uChar.AsciiChar, lParam,
4283 w32_get_key_modifiers (wParam, lParam));
4284 w32_kbd_patch_key (&key);
4286 return 0;
4289 else
4291 /* Let TranslateMessage handle everything else. */
4292 windows_translate = 1;
4297 translate:
4298 if (windows_translate)
4300 MSG windows_msg = { hwnd, msg, wParam, lParam, 0, {0,0} };
4302 windows_msg.time = GetMessageTime ();
4303 TranslateMessage (&windows_msg);
4304 goto dflt;
4307 /* Fall through */
4309 case WM_SYSCHAR:
4310 case WM_CHAR:
4311 post_character_message (hwnd, msg, wParam, lParam,
4312 w32_get_key_modifiers (wParam, lParam));
4313 break;
4315 /* Simulate middle mouse button events when left and right buttons
4316 are used together, but only if user has two button mouse. */
4317 case WM_LBUTTONDOWN:
4318 case WM_RBUTTONDOWN:
4319 if (XINT (Vw32_num_mouse_buttons) > 2)
4320 goto handle_plain_button;
4323 int this = (msg == WM_LBUTTONDOWN) ? LMOUSE : RMOUSE;
4324 int other = (msg == WM_LBUTTONDOWN) ? RMOUSE : LMOUSE;
4326 if (button_state & this)
4327 return 0;
4329 if (button_state == 0)
4330 SetCapture (hwnd);
4332 button_state |= this;
4334 if (button_state & other)
4336 if (mouse_button_timer)
4338 KillTimer (hwnd, mouse_button_timer);
4339 mouse_button_timer = 0;
4341 /* Generate middle mouse event instead. */
4342 msg = WM_MBUTTONDOWN;
4343 button_state |= MMOUSE;
4345 else if (button_state & MMOUSE)
4347 /* Ignore button event if we've already generated a
4348 middle mouse down event. This happens if the
4349 user releases and press one of the two buttons
4350 after we've faked a middle mouse event. */
4351 return 0;
4353 else
4355 /* Flush out saved message. */
4356 post_msg (&saved_mouse_button_msg);
4358 wmsg.dwModifiers = w32_get_modifiers ();
4359 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4361 /* Clear message buffer. */
4362 saved_mouse_button_msg.msg.hwnd = 0;
4364 else
4366 /* Hold onto message for now. */
4367 mouse_button_timer =
4368 SetTimer (hwnd, MOUSE_BUTTON_ID,
4369 XINT (Vw32_mouse_button_tolerance), NULL);
4370 saved_mouse_button_msg.msg.hwnd = hwnd;
4371 saved_mouse_button_msg.msg.message = msg;
4372 saved_mouse_button_msg.msg.wParam = wParam;
4373 saved_mouse_button_msg.msg.lParam = lParam;
4374 saved_mouse_button_msg.msg.time = GetMessageTime ();
4375 saved_mouse_button_msg.dwModifiers = w32_get_modifiers ();
4378 return 0;
4380 case WM_LBUTTONUP:
4381 case WM_RBUTTONUP:
4382 if (XINT (Vw32_num_mouse_buttons) > 2)
4383 goto handle_plain_button;
4386 int this = (msg == WM_LBUTTONUP) ? LMOUSE : RMOUSE;
4387 int other = (msg == WM_LBUTTONUP) ? RMOUSE : LMOUSE;
4389 if ((button_state & this) == 0)
4390 return 0;
4392 button_state &= ~this;
4394 if (button_state & MMOUSE)
4396 /* Only generate event when second button is released. */
4397 if ((button_state & other) == 0)
4399 msg = WM_MBUTTONUP;
4400 button_state &= ~MMOUSE;
4402 if (button_state) abort ();
4404 else
4405 return 0;
4407 else
4409 /* Flush out saved message if necessary. */
4410 if (saved_mouse_button_msg.msg.hwnd)
4412 post_msg (&saved_mouse_button_msg);
4415 wmsg.dwModifiers = w32_get_modifiers ();
4416 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4418 /* Always clear message buffer and cancel timer. */
4419 saved_mouse_button_msg.msg.hwnd = 0;
4420 KillTimer (hwnd, mouse_button_timer);
4421 mouse_button_timer = 0;
4423 if (button_state == 0)
4424 ReleaseCapture ();
4426 return 0;
4428 case WM_MBUTTONDOWN:
4429 case WM_MBUTTONUP:
4430 handle_plain_button:
4432 BOOL up;
4433 int button;
4435 if (parse_button (msg, &button, &up))
4437 if (up) ReleaseCapture ();
4438 else SetCapture (hwnd);
4439 button = (button == 0) ? LMOUSE :
4440 ((button == 1) ? MMOUSE : RMOUSE);
4441 if (up)
4442 button_state &= ~button;
4443 else
4444 button_state |= button;
4448 wmsg.dwModifiers = w32_get_modifiers ();
4449 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4450 return 0;
4452 case WM_VSCROLL:
4453 case WM_MOUSEMOVE:
4454 if (XINT (Vw32_mouse_move_interval) <= 0
4455 || (msg == WM_MOUSEMOVE && button_state == 0))
4457 wmsg.dwModifiers = w32_get_modifiers ();
4458 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4459 return 0;
4462 /* Hang onto mouse move and scroll messages for a bit, to avoid
4463 sending such events to Emacs faster than it can process them.
4464 If we get more events before the timer from the first message
4465 expires, we just replace the first message. */
4467 if (saved_mouse_move_msg.msg.hwnd == 0)
4468 mouse_move_timer =
4469 SetTimer (hwnd, MOUSE_MOVE_ID,
4470 XINT (Vw32_mouse_move_interval), NULL);
4472 /* Hold onto message for now. */
4473 saved_mouse_move_msg.msg.hwnd = hwnd;
4474 saved_mouse_move_msg.msg.message = msg;
4475 saved_mouse_move_msg.msg.wParam = wParam;
4476 saved_mouse_move_msg.msg.lParam = lParam;
4477 saved_mouse_move_msg.msg.time = GetMessageTime ();
4478 saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
4480 return 0;
4482 case WM_MOUSEWHEEL:
4483 wmsg.dwModifiers = w32_get_modifiers ();
4484 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4485 return 0;
4487 case WM_DROPFILES:
4488 wmsg.dwModifiers = w32_get_modifiers ();
4489 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4490 return 0;
4492 case WM_TIMER:
4493 /* Flush out saved messages if necessary. */
4494 if (wParam == mouse_button_timer)
4496 if (saved_mouse_button_msg.msg.hwnd)
4498 post_msg (&saved_mouse_button_msg);
4499 saved_mouse_button_msg.msg.hwnd = 0;
4501 KillTimer (hwnd, mouse_button_timer);
4502 mouse_button_timer = 0;
4504 else if (wParam == mouse_move_timer)
4506 if (saved_mouse_move_msg.msg.hwnd)
4508 post_msg (&saved_mouse_move_msg);
4509 saved_mouse_move_msg.msg.hwnd = 0;
4511 KillTimer (hwnd, mouse_move_timer);
4512 mouse_move_timer = 0;
4514 return 0;
4516 case WM_NCACTIVATE:
4517 /* Windows doesn't send us focus messages when putting up and
4518 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
4519 The only indication we get that something happened is receiving
4520 this message afterwards. So this is a good time to reset our
4521 keyboard modifiers' state. */
4522 reset_modifiers ();
4523 goto dflt;
4525 case WM_INITMENU:
4526 button_state = 0;
4527 ReleaseCapture ();
4528 /* We must ensure menu bar is fully constructed and up to date
4529 before allowing user interaction with it. To achieve this
4530 we send this message to the lisp thread and wait for a
4531 reply (whose value is not actually needed) to indicate that
4532 the menu bar is now ready for use, so we can now return.
4534 To remain responsive in the meantime, we enter a nested message
4535 loop that can process all other messages.
4537 However, we skip all this if the message results from calling
4538 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
4539 thread a message because it is blocked on us at this point. We
4540 set menubar_active before calling TrackPopupMenu to indicate
4541 this (there is no possibility of confusion with real menubar
4542 being active). */
4544 f = x_window_to_frame (dpyinfo, hwnd);
4545 if (f
4546 && (f->output_data.w32->menubar_active
4547 /* We can receive this message even in the absence of a
4548 menubar (ie. when the system menu is activated) - in this
4549 case we do NOT want to forward the message, otherwise it
4550 will cause the menubar to suddenly appear when the user
4551 had requested it to be turned off! */
4552 || f->output_data.w32->menubar_widget == NULL))
4553 return 0;
4556 deferred_msg msg_buf;
4558 /* Detect if message has already been deferred; in this case
4559 we cannot return any sensible value to ignore this. */
4560 if (find_deferred_msg (hwnd, msg) != NULL)
4561 abort ();
4563 return send_deferred_msg (&msg_buf, hwnd, msg, wParam, lParam);
4566 case WM_EXITMENULOOP:
4567 f = x_window_to_frame (dpyinfo, hwnd);
4569 /* Indicate that menubar can be modified again. */
4570 if (f)
4571 f->output_data.w32->menubar_active = 0;
4572 goto dflt;
4574 case WM_MENUSELECT:
4575 wmsg.dwModifiers = w32_get_modifiers ();
4576 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4577 return 0;
4579 case WM_MEASUREITEM:
4580 f = x_window_to_frame (dpyinfo, hwnd);
4581 if (f)
4583 MEASUREITEMSTRUCT * pMis = (MEASUREITEMSTRUCT *) lParam;
4585 if (pMis->CtlType == ODT_MENU)
4587 /* Work out dimensions for popup menu titles. */
4588 char * title = (char *) pMis->itemData;
4589 HDC hdc = GetDC (hwnd);
4590 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4591 LOGFONT menu_logfont;
4592 HFONT old_font;
4593 SIZE size;
4595 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4596 menu_logfont.lfWeight = FW_BOLD;
4597 menu_font = CreateFontIndirect (&menu_logfont);
4598 old_font = SelectObject (hdc, menu_font);
4600 pMis->itemHeight = GetSystemMetrics (SM_CYMENUSIZE);
4601 if (title)
4603 GetTextExtentPoint32 (hdc, title, strlen (title), &size);
4604 pMis->itemWidth = size.cx;
4605 if (pMis->itemHeight < size.cy)
4606 pMis->itemHeight = size.cy;
4608 else
4609 pMis->itemWidth = 0;
4611 SelectObject (hdc, old_font);
4612 DeleteObject (menu_font);
4613 ReleaseDC (hwnd, hdc);
4614 return TRUE;
4617 return 0;
4619 case WM_DRAWITEM:
4620 f = x_window_to_frame (dpyinfo, hwnd);
4621 if (f)
4623 DRAWITEMSTRUCT * pDis = (DRAWITEMSTRUCT *) lParam;
4625 if (pDis->CtlType == ODT_MENU)
4627 /* Draw popup menu title. */
4628 char * title = (char *) pDis->itemData;
4629 if (title)
4631 HDC hdc = pDis->hDC;
4632 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4633 LOGFONT menu_logfont;
4634 HFONT old_font;
4636 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4637 menu_logfont.lfWeight = FW_BOLD;
4638 menu_font = CreateFontIndirect (&menu_logfont);
4639 old_font = SelectObject (hdc, menu_font);
4641 /* Always draw title as if not selected. */
4642 ExtTextOut (hdc,
4643 pDis->rcItem.left
4644 + GetSystemMetrics (SM_CXMENUCHECK),
4645 pDis->rcItem.top,
4646 ETO_OPAQUE, &pDis->rcItem,
4647 title, strlen (title), NULL);
4649 SelectObject (hdc, old_font);
4650 DeleteObject (menu_font);
4652 return TRUE;
4655 return 0;
4657 #if 0
4658 /* Still not right - can't distinguish between clicks in the
4659 client area of the frame from clicks forwarded from the scroll
4660 bars - may have to hook WM_NCHITTEST to remember the mouse
4661 position and then check if it is in the client area ourselves. */
4662 case WM_MOUSEACTIVATE:
4663 /* Discard the mouse click that activates a frame, allowing the
4664 user to click anywhere without changing point (or worse!).
4665 Don't eat mouse clicks on scrollbars though!! */
4666 if (LOWORD (lParam) == HTCLIENT )
4667 return MA_ACTIVATEANDEAT;
4668 goto dflt;
4669 #endif
4671 case WM_ACTIVATEAPP:
4672 case WM_ACTIVATE:
4673 case WM_WINDOWPOSCHANGED:
4674 case WM_SHOWWINDOW:
4675 /* Inform lisp thread that a frame might have just been obscured
4676 or exposed, so should recheck visibility of all frames. */
4677 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4678 goto dflt;
4680 case WM_SETFOCUS:
4681 dpyinfo->faked_key = 0;
4682 reset_modifiers ();
4683 register_hot_keys (hwnd);
4684 goto command;
4685 case WM_KILLFOCUS:
4686 unregister_hot_keys (hwnd);
4687 button_state = 0;
4688 ReleaseCapture ();
4689 case WM_MOVE:
4690 case WM_SIZE:
4691 case WM_COMMAND:
4692 command:
4693 wmsg.dwModifiers = w32_get_modifiers ();
4694 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4695 goto dflt;
4697 case WM_CLOSE:
4698 wmsg.dwModifiers = w32_get_modifiers ();
4699 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4700 return 0;
4702 case WM_WINDOWPOSCHANGING:
4704 WINDOWPLACEMENT wp;
4705 LPWINDOWPOS lppos = (WINDOWPOS *) lParam;
4707 wp.length = sizeof (WINDOWPLACEMENT);
4708 GetWindowPlacement (hwnd, &wp);
4710 if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
4712 RECT rect;
4713 int wdiff;
4714 int hdiff;
4715 DWORD font_width;
4716 DWORD line_height;
4717 DWORD internal_border;
4718 DWORD scrollbar_extra;
4719 RECT wr;
4721 wp.length = sizeof(wp);
4722 GetWindowRect (hwnd, &wr);
4724 enter_crit ();
4726 font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
4727 line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
4728 internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
4729 scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
4731 leave_crit ();
4733 memset (&rect, 0, sizeof (rect));
4734 AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
4735 GetMenu (hwnd) != NULL);
4737 /* Force width and height of client area to be exact
4738 multiples of the character cell dimensions. */
4739 wdiff = (lppos->cx - (rect.right - rect.left)
4740 - 2 * internal_border - scrollbar_extra)
4741 % font_width;
4742 hdiff = (lppos->cy - (rect.bottom - rect.top)
4743 - 2 * internal_border)
4744 % line_height;
4746 if (wdiff || hdiff)
4748 /* For right/bottom sizing we can just fix the sizes.
4749 However for top/left sizing we will need to fix the X
4750 and Y positions as well. */
4752 lppos->cx -= wdiff;
4753 lppos->cy -= hdiff;
4755 if (wp.showCmd != SW_SHOWMAXIMIZED
4756 && (lppos->flags & SWP_NOMOVE) == 0)
4758 if (lppos->x != wr.left || lppos->y != wr.top)
4760 lppos->x += wdiff;
4761 lppos->y += hdiff;
4763 else
4765 lppos->flags |= SWP_NOMOVE;
4769 return 0;
4774 goto dflt;
4776 case WM_GETMINMAXINFO:
4777 /* Hack to correct bug that allows Emacs frames to be resized
4778 below the Minimum Tracking Size. */
4779 ((LPMINMAXINFO) lParam)->ptMinTrackSize.y++;
4780 return 0;
4782 case WM_EMACS_CREATESCROLLBAR:
4783 return (LRESULT) w32_createscrollbar ((struct frame *) wParam,
4784 (struct scroll_bar *) lParam);
4786 case WM_EMACS_SHOWWINDOW:
4787 return ShowWindow ((HWND) wParam, (WPARAM) lParam);
4789 case WM_EMACS_SETFOREGROUND:
4791 HWND foreground_window;
4792 DWORD foreground_thread, retval;
4794 /* On NT 5.0, and apparently Windows 98, it is necessary to
4795 attach to the thread that currently has focus in order to
4796 pull the focus away from it. */
4797 foreground_window = GetForegroundWindow ();
4798 foreground_thread = GetWindowThreadProcessId (foreground_window, NULL);
4799 if (!foreground_window
4800 || foreground_thread == GetCurrentThreadId ()
4801 || !AttachThreadInput (GetCurrentThreadId (),
4802 foreground_thread, TRUE))
4803 foreground_thread = 0;
4805 retval = SetForegroundWindow ((HWND) wParam);
4807 /* Detach from the previous foreground thread. */
4808 if (foreground_thread)
4809 AttachThreadInput (GetCurrentThreadId (),
4810 foreground_thread, FALSE);
4812 return retval;
4815 case WM_EMACS_SETWINDOWPOS:
4817 WINDOWPOS * pos = (WINDOWPOS *) wParam;
4818 return SetWindowPos (hwnd, pos->hwndInsertAfter,
4819 pos->x, pos->y, pos->cx, pos->cy, pos->flags);
4822 case WM_EMACS_DESTROYWINDOW:
4823 DragAcceptFiles ((HWND) wParam, FALSE);
4824 return DestroyWindow ((HWND) wParam);
4826 case WM_EMACS_TRACKPOPUPMENU:
4828 UINT flags;
4829 POINT *pos;
4830 int retval;
4831 pos = (POINT *)lParam;
4832 flags = TPM_CENTERALIGN;
4833 if (button_state & LMOUSE)
4834 flags |= TPM_LEFTBUTTON;
4835 else if (button_state & RMOUSE)
4836 flags |= TPM_RIGHTBUTTON;
4838 /* Remember we did a SetCapture on the initial mouse down event,
4839 so for safety, we make sure the capture is cancelled now. */
4840 ReleaseCapture ();
4841 button_state = 0;
4843 /* Use menubar_active to indicate that WM_INITMENU is from
4844 TrackPopupMenu below, and should be ignored. */
4845 f = x_window_to_frame (dpyinfo, hwnd);
4846 if (f)
4847 f->output_data.w32->menubar_active = 1;
4849 if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
4850 0, hwnd, NULL))
4852 MSG amsg;
4853 /* Eat any mouse messages during popupmenu */
4854 while (PeekMessage (&amsg, hwnd, WM_MOUSEFIRST, WM_MOUSELAST,
4855 PM_REMOVE));
4856 /* Get the menu selection, if any */
4857 if (PeekMessage (&amsg, hwnd, WM_COMMAND, WM_COMMAND, PM_REMOVE))
4859 retval = LOWORD (amsg.wParam);
4861 else
4863 retval = 0;
4866 else
4868 retval = -1;
4871 return retval;
4874 default:
4875 /* Check for messages registered at runtime. */
4876 if (msg == msh_mousewheel)
4878 wmsg.dwModifiers = w32_get_modifiers ();
4879 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4880 return 0;
4883 dflt:
4884 return DefWindowProc (hwnd, msg, wParam, lParam);
4888 /* The most common default return code for handled messages is 0. */
4889 return 0;
4892 void
4893 my_create_window (f)
4894 struct frame * f;
4896 MSG msg;
4898 if (!PostThreadMessage (dwWindowsThreadId, WM_EMACS_CREATEWINDOW, (WPARAM)f, 0))
4899 abort ();
4900 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
4903 /* Create and set up the w32 window for frame F. */
4905 static void
4906 w32_window (f, window_prompting, minibuffer_only)
4907 struct frame *f;
4908 long window_prompting;
4909 int minibuffer_only;
4911 BLOCK_INPUT;
4913 /* Use the resource name as the top-level window name
4914 for looking up resources. Make a non-Lisp copy
4915 for the window manager, so GC relocation won't bother it.
4917 Elsewhere we specify the window name for the window manager. */
4920 char *str = (char *) XSTRING (Vx_resource_name)->data;
4921 f->namebuf = (char *) xmalloc (strlen (str) + 1);
4922 strcpy (f->namebuf, str);
4925 my_create_window (f);
4927 validate_x_resource_name ();
4929 /* x_set_name normally ignores requests to set the name if the
4930 requested name is the same as the current name. This is the one
4931 place where that assumption isn't correct; f->name is set, but
4932 the server hasn't been told. */
4934 Lisp_Object name;
4935 int explicit = f->explicit_name;
4937 f->explicit_name = 0;
4938 name = f->name;
4939 f->name = Qnil;
4940 x_set_name (f, name, explicit);
4943 UNBLOCK_INPUT;
4945 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
4946 initialize_frame_menubar (f);
4948 if (FRAME_W32_WINDOW (f) == 0)
4949 error ("Unable to create window");
4952 /* Handle the icon stuff for this window. Perhaps later we might
4953 want an x_set_icon_position which can be called interactively as
4954 well. */
4956 static void
4957 x_icon (f, parms)
4958 struct frame *f;
4959 Lisp_Object parms;
4961 Lisp_Object icon_x, icon_y;
4963 /* Set the position of the icon. Note that Windows 95 groups all
4964 icons in the tray. */
4965 icon_x = w32_get_arg (parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
4966 icon_y = w32_get_arg (parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
4967 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
4969 CHECK_NUMBER (icon_x, 0);
4970 CHECK_NUMBER (icon_y, 0);
4972 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
4973 error ("Both left and top icon corners of icon must be specified");
4975 BLOCK_INPUT;
4977 if (! EQ (icon_x, Qunbound))
4978 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
4980 #if 0 /* TODO */
4981 /* Start up iconic or window? */
4982 x_wm_set_window_state
4983 (f, (EQ (w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon)
4984 ? IconicState
4985 : NormalState));
4987 x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name)
4988 ? f->icon_name
4989 : f->name))->data);
4990 #endif
4992 UNBLOCK_INPUT;
4996 static void
4997 x_make_gc (f)
4998 struct frame *f;
5000 XGCValues gc_values;
5002 BLOCK_INPUT;
5004 /* Create the GC's of this frame.
5005 Note that many default values are used. */
5007 /* Normal video */
5008 gc_values.font = f->output_data.w32->font;
5010 /* Cursor has cursor-color background, background-color foreground. */
5011 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
5012 gc_values.background = f->output_data.w32->cursor_pixel;
5013 f->output_data.w32->cursor_gc
5014 = XCreateGC (NULL, FRAME_W32_WINDOW (f),
5015 (GCFont | GCForeground | GCBackground),
5016 &gc_values);
5018 /* Reliefs. */
5019 f->output_data.w32->white_relief.gc = 0;
5020 f->output_data.w32->black_relief.gc = 0;
5022 UNBLOCK_INPUT;
5026 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
5027 1, 1, 0,
5028 "Make a new window, which is called a \"frame\" in Emacs terms.\n\
5029 Returns an Emacs frame object.\n\
5030 ALIST is an alist of frame parameters.\n\
5031 If the parameters specify that the frame should not have a minibuffer,\n\
5032 and do not specify a specific minibuffer window to use,\n\
5033 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\
5034 be shared by the new frame.\n\
5036 This function is an internal primitive--use `make-frame' instead.")
5037 (parms)
5038 Lisp_Object parms;
5040 struct frame *f;
5041 Lisp_Object frame, tem;
5042 Lisp_Object name;
5043 int minibuffer_only = 0;
5044 long window_prompting = 0;
5045 int width, height;
5046 int count = specpdl_ptr - specpdl;
5047 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5048 Lisp_Object display;
5049 struct w32_display_info *dpyinfo = NULL;
5050 Lisp_Object parent;
5051 struct kboard *kb;
5053 check_w32 ();
5055 /* Use this general default value to start with
5056 until we know if this frame has a specified name. */
5057 Vx_resource_name = Vinvocation_name;
5059 display = w32_get_arg (parms, Qdisplay, 0, 0, RES_TYPE_STRING);
5060 if (EQ (display, Qunbound))
5061 display = Qnil;
5062 dpyinfo = check_x_display_info (display);
5063 #ifdef MULTI_KBOARD
5064 kb = dpyinfo->kboard;
5065 #else
5066 kb = &the_only_kboard;
5067 #endif
5069 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
5070 if (!STRINGP (name)
5071 && ! EQ (name, Qunbound)
5072 && ! NILP (name))
5073 error ("Invalid frame name--not a string or nil");
5075 if (STRINGP (name))
5076 Vx_resource_name = name;
5078 /* See if parent window is specified. */
5079 parent = w32_get_arg (parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
5080 if (EQ (parent, Qunbound))
5081 parent = Qnil;
5082 if (! NILP (parent))
5083 CHECK_NUMBER (parent, 0);
5085 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
5086 /* No need to protect DISPLAY because that's not used after passing
5087 it to make_frame_without_minibuffer. */
5088 frame = Qnil;
5089 GCPRO4 (parms, parent, name, frame);
5090 tem = w32_get_arg (parms, Qminibuffer, 0, 0, RES_TYPE_SYMBOL);
5091 if (EQ (tem, Qnone) || NILP (tem))
5092 f = make_frame_without_minibuffer (Qnil, kb, display);
5093 else if (EQ (tem, Qonly))
5095 f = make_minibuffer_frame ();
5096 minibuffer_only = 1;
5098 else if (WINDOWP (tem))
5099 f = make_frame_without_minibuffer (tem, kb, display);
5100 else
5101 f = make_frame (1);
5103 XSETFRAME (frame, f);
5105 /* Note that Windows does support scroll bars. */
5106 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
5107 /* By default, make scrollbars the system standard width. */
5108 f->scroll_bar_pixel_width = GetSystemMetrics (SM_CXVSCROLL);
5110 f->output_method = output_w32;
5111 f->output_data.w32 =
5112 (struct w32_output *) xmalloc (sizeof (struct w32_output));
5113 bzero (f->output_data.w32, sizeof (struct w32_output));
5115 FRAME_FONTSET (f) = -1;
5117 f->icon_name
5118 = w32_get_arg (parms, Qicon_name, "iconName", "Title", RES_TYPE_STRING);
5119 if (! STRINGP (f->icon_name))
5120 f->icon_name = Qnil;
5122 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
5123 #ifdef MULTI_KBOARD
5124 FRAME_KBOARD (f) = kb;
5125 #endif
5127 /* Specify the parent under which to make this window. */
5129 if (!NILP (parent))
5131 f->output_data.w32->parent_desc = (Window) parent;
5132 f->output_data.w32->explicit_parent = 1;
5134 else
5136 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5137 f->output_data.w32->explicit_parent = 0;
5140 /* Set the name; the functions to which we pass f expect the name to
5141 be set. */
5142 if (EQ (name, Qunbound) || NILP (name))
5144 f->name = build_string (dpyinfo->w32_id_name);
5145 f->explicit_name = 0;
5147 else
5149 f->name = name;
5150 f->explicit_name = 1;
5151 /* use the frame's title when getting resources for this frame. */
5152 specbind (Qx_resource_name, name);
5155 /* Extract the window parameters from the supplied values
5156 that are needed to determine window geometry. */
5158 Lisp_Object font;
5160 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
5162 BLOCK_INPUT;
5163 /* First, try whatever font the caller has specified. */
5164 if (STRINGP (font))
5166 tem = Fquery_fontset (font, Qnil);
5167 if (STRINGP (tem))
5168 font = x_new_fontset (f, XSTRING (tem)->data);
5169 else
5170 font = x_new_font (f, XSTRING (font)->data);
5172 /* Try out a font which we hope has bold and italic variations. */
5173 if (!STRINGP (font))
5174 font = x_new_font (f, "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
5175 if (! STRINGP (font))
5176 font = x_new_font (f, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
5177 /* If those didn't work, look for something which will at least work. */
5178 if (! STRINGP (font))
5179 font = x_new_font (f, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
5180 UNBLOCK_INPUT;
5181 if (! STRINGP (font))
5182 font = build_string ("Fixedsys");
5184 x_default_parameter (f, parms, Qfont, font,
5185 "font", "Font", RES_TYPE_STRING);
5188 x_default_parameter (f, parms, Qborder_width, make_number (2),
5189 "borderwidth", "BorderWidth", RES_TYPE_NUMBER);
5190 /* This defaults to 2 in order to match xterm. We recognize either
5191 internalBorderWidth or internalBorder (which is what xterm calls
5192 it). */
5193 if (NILP (Fassq (Qinternal_border_width, parms)))
5195 Lisp_Object value;
5197 value = w32_get_arg (parms, Qinternal_border_width,
5198 "internalBorder", "BorderWidth", RES_TYPE_NUMBER);
5199 if (! EQ (value, Qunbound))
5200 parms = Fcons (Fcons (Qinternal_border_width, value),
5201 parms);
5203 /* Default internalBorderWidth to 0 on Windows to match other programs. */
5204 x_default_parameter (f, parms, Qinternal_border_width, make_number (0),
5205 "internalBorderWidth", "BorderWidth", RES_TYPE_NUMBER);
5206 x_default_parameter (f, parms, Qvertical_scroll_bars, Qt,
5207 "verticalScrollBars", "ScrollBars", RES_TYPE_BOOLEAN);
5209 /* Also do the stuff which must be set before the window exists. */
5210 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
5211 "foreground", "Foreground", RES_TYPE_STRING);
5212 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
5213 "background", "Background", RES_TYPE_STRING);
5214 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
5215 "pointerColor", "Foreground", RES_TYPE_STRING);
5216 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
5217 "cursorColor", "Foreground", RES_TYPE_STRING);
5218 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
5219 "borderColor", "BorderColor", RES_TYPE_STRING);
5220 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
5221 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
5222 x_default_parameter (f, parms, Qline_spacing, Qnil,
5223 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
5226 /* Init faces before x_default_parameter is called for scroll-bar
5227 parameters because that function calls x_set_scroll_bar_width,
5228 which calls change_frame_size, which calls Fset_window_buffer,
5229 which runs hooks, which call Fvertical_motion. At the end, we
5230 end up in init_iterator with a null face cache, which should not
5231 happen. */
5232 init_frame_faces (f);
5234 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
5235 "menuBar", "MenuBar", RES_TYPE_NUMBER);
5236 x_default_parameter (f, parms, Qtool_bar_lines, make_number (0),
5237 "toolBar", "ToolBar", RES_TYPE_NUMBER);
5238 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
5239 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL);
5240 x_default_parameter (f, parms, Qtitle, Qnil,
5241 "title", "Title", RES_TYPE_STRING);
5243 f->output_data.w32->dwStyle = WS_OVERLAPPEDWINDOW;
5244 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5245 window_prompting = x_figure_window_size (f, parms);
5247 if (window_prompting & XNegative)
5249 if (window_prompting & YNegative)
5250 f->output_data.w32->win_gravity = SouthEastGravity;
5251 else
5252 f->output_data.w32->win_gravity = NorthEastGravity;
5254 else
5256 if (window_prompting & YNegative)
5257 f->output_data.w32->win_gravity = SouthWestGravity;
5258 else
5259 f->output_data.w32->win_gravity = NorthWestGravity;
5262 f->output_data.w32->size_hint_flags = window_prompting;
5264 tem = w32_get_arg (parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
5265 f->no_split = minibuffer_only || EQ (tem, Qt);
5267 /* Create the window. Add the tool-bar height to the initial frame
5268 height so that the user gets a text display area of the size he
5269 specified with -g or via the registry. Later changes of the
5270 tool-bar height don't change the frame size. This is done so that
5271 users can create tall Emacs frames without having to guess how
5272 tall the tool-bar will get. */
5273 f->height += FRAME_TOOL_BAR_LINES (f);
5274 w32_window (f, window_prompting, minibuffer_only);
5275 x_icon (f, parms);
5277 x_make_gc (f);
5279 /* Now consider the frame official. */
5280 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
5281 Vframe_list = Fcons (frame, Vframe_list);
5283 /* We need to do this after creating the window, so that the
5284 icon-creation functions can say whose icon they're describing. */
5285 x_default_parameter (f, parms, Qicon_type, Qnil,
5286 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
5288 x_default_parameter (f, parms, Qauto_raise, Qnil,
5289 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5290 x_default_parameter (f, parms, Qauto_lower, Qnil,
5291 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5292 x_default_parameter (f, parms, Qcursor_type, Qbox,
5293 "cursorType", "CursorType", RES_TYPE_SYMBOL);
5294 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
5295 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER);
5297 /* Dimensions, especially f->height, must be done via change_frame_size.
5298 Change will not be effected unless different from the current
5299 f->height. */
5300 width = f->width;
5301 height = f->height;
5302 f->height = 0;
5303 SET_FRAME_WIDTH (f, 0);
5304 change_frame_size (f, height, width, 1, 0, 0);
5306 /* Set up faces after all frame parameters are known. */
5307 call1 (Qface_set_after_frame_default, frame);
5309 /* Tell the server what size and position, etc, we want, and how
5310 badly we want them. This should be done after we have the menu
5311 bar so that its size can be taken into account. */
5312 BLOCK_INPUT;
5313 x_wm_set_size_hint (f, window_prompting, 0);
5314 UNBLOCK_INPUT;
5316 /* Make the window appear on the frame and enable display, unless
5317 the caller says not to. However, with explicit parent, Emacs
5318 cannot control visibility, so don't try. */
5319 if (! f->output_data.w32->explicit_parent)
5321 Lisp_Object visibility;
5323 visibility = w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
5324 if (EQ (visibility, Qunbound))
5325 visibility = Qt;
5327 if (EQ (visibility, Qicon))
5328 x_iconify_frame (f);
5329 else if (! NILP (visibility))
5330 x_make_frame_visible (f);
5331 else
5332 /* Must have been Qnil. */
5335 UNGCPRO;
5336 return unbind_to (count, frame);
5339 /* FRAME is used only to get a handle on the X display. We don't pass the
5340 display info directly because we're called from frame.c, which doesn't
5341 know about that structure. */
5342 Lisp_Object
5343 x_get_focus_frame (frame)
5344 struct frame *frame;
5346 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (frame);
5347 Lisp_Object xfocus;
5348 if (! dpyinfo->w32_focus_frame)
5349 return Qnil;
5351 XSETFRAME (xfocus, dpyinfo->w32_focus_frame);
5352 return xfocus;
5355 DEFUN ("w32-focus-frame", Fw32_focus_frame, Sw32_focus_frame, 1, 1, 0,
5356 "Give FRAME input focus, raising to foreground if necessary.")
5357 (frame)
5358 Lisp_Object frame;
5360 x_focus_on_frame (check_x_frame (frame));
5361 return Qnil;
5365 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
5366 int size, char* filename);
5368 struct font_info *
5369 w32_load_system_font (f,fontname,size)
5370 struct frame *f;
5371 char * fontname;
5372 int size;
5374 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5375 Lisp_Object font_names;
5377 /* Get a list of all the fonts that match this name. Once we
5378 have a list of matching fonts, we compare them against the fonts
5379 we already have loaded by comparing names. */
5380 font_names = w32_list_fonts (f, build_string (fontname), size, 100);
5382 if (!NILP (font_names))
5384 Lisp_Object tail;
5385 int i;
5387 /* First check if any are already loaded, as that is cheaper
5388 than loading another one. */
5389 for (i = 0; i < dpyinfo->n_fonts; i++)
5390 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
5391 if (dpyinfo->font_table[i].name
5392 && (!strcmp (dpyinfo->font_table[i].name,
5393 XSTRING (XCAR (tail))->data)
5394 || !strcmp (dpyinfo->font_table[i].full_name,
5395 XSTRING (XCAR (tail))->data)))
5396 return (dpyinfo->font_table + i);
5398 fontname = (char *) XSTRING (XCAR (font_names))->data;
5400 else if (w32_strict_fontnames)
5402 /* If EnumFontFamiliesEx was available, we got a full list of
5403 fonts back so stop now to avoid the possibility of loading a
5404 random font. If we had to fall back to EnumFontFamilies, the
5405 list is incomplete, so continue whether the font we want was
5406 listed or not. */
5407 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
5408 FARPROC enum_font_families_ex
5409 = GetProcAddress (gdi32, "EnumFontFamiliesExA");
5410 if (enum_font_families_ex)
5411 return NULL;
5414 /* Load the font and add it to the table. */
5416 char *full_name, *encoding;
5417 XFontStruct *font;
5418 struct font_info *fontp;
5419 LOGFONT lf;
5420 BOOL ok;
5421 int i;
5423 if (!fontname || !x_to_w32_font (fontname, &lf))
5424 return (NULL);
5426 if (!*lf.lfFaceName)
5427 /* If no name was specified for the font, we get a random font
5428 from CreateFontIndirect - this is not particularly
5429 desirable, especially since CreateFontIndirect does not
5430 fill out the missing name in lf, so we never know what we
5431 ended up with. */
5432 return NULL;
5434 font = (XFontStruct *) xmalloc (sizeof (XFontStruct));
5436 /* Set bdf to NULL to indicate that this is a Windows font. */
5437 font->bdf = NULL;
5439 BLOCK_INPUT;
5441 font->hfont = CreateFontIndirect (&lf);
5443 if (font->hfont == NULL)
5445 ok = FALSE;
5447 else
5449 HDC hdc;
5450 HANDLE oldobj;
5452 hdc = GetDC (dpyinfo->root_window);
5453 oldobj = SelectObject (hdc, font->hfont);
5454 ok = GetTextMetrics (hdc, &font->tm);
5455 font->double_byte_p = GetFontLanguageInfo(hdc) & GCP_DBCS;
5456 SelectObject (hdc, oldobj);
5457 ReleaseDC (dpyinfo->root_window, hdc);
5458 /* Fill out details in lf according to the font that was
5459 actually loaded. */
5460 lf.lfHeight = font->tm.tmInternalLeading - font->tm.tmHeight;
5461 lf.lfWidth = font->tm.tmAveCharWidth;
5462 lf.lfWeight = font->tm.tmWeight;
5463 lf.lfItalic = font->tm.tmItalic;
5464 lf.lfCharSet = font->tm.tmCharSet;
5465 lf.lfPitchAndFamily = ((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH)
5466 ? VARIABLE_PITCH : FIXED_PITCH);
5467 lf.lfOutPrecision = ((font->tm.tmPitchAndFamily & TMPF_VECTOR)
5468 ? OUT_STROKE_PRECIS : OUT_STRING_PRECIS);
5471 UNBLOCK_INPUT;
5473 if (!ok)
5475 w32_unload_font (dpyinfo, font);
5476 return (NULL);
5479 /* Find a free slot in the font table. */
5480 for (i = 0; i < dpyinfo->n_fonts; ++i)
5481 if (dpyinfo->font_table[i].name == NULL)
5482 break;
5484 /* If no free slot found, maybe enlarge the font table. */
5485 if (i == dpyinfo->n_fonts
5486 && dpyinfo->n_fonts == dpyinfo->font_table_size)
5488 int sz;
5489 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
5490 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
5491 dpyinfo->font_table
5492 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
5495 fontp = dpyinfo->font_table + i;
5496 if (i == dpyinfo->n_fonts)
5497 ++dpyinfo->n_fonts;
5499 /* Now fill in the slots of *FONTP. */
5500 BLOCK_INPUT;
5501 fontp->font = font;
5502 fontp->font_idx = i;
5503 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
5504 bcopy (fontname, fontp->name, strlen (fontname) + 1);
5506 /* Work out the font's full name. */
5507 full_name = (char *)xmalloc (100);
5508 if (full_name && w32_to_x_font (&lf, full_name, 100))
5509 fontp->full_name = full_name;
5510 else
5512 /* If all else fails - just use the name we used to load it. */
5513 xfree (full_name);
5514 fontp->full_name = fontp->name;
5517 fontp->size = FONT_WIDTH (font);
5518 fontp->height = FONT_HEIGHT (font);
5520 /* The slot `encoding' specifies how to map a character
5521 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
5522 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
5523 (0:0x20..0x7F, 1:0xA0..0xFF,
5524 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
5525 2:0xA020..0xFF7F). For the moment, we don't know which charset
5526 uses this font. So, we set information in fontp->encoding[1]
5527 which is never used by any charset. If mapping can't be
5528 decided, set FONT_ENCODING_NOT_DECIDED. */
5530 /* SJIS fonts need to be set to type 4, all others seem to work as
5531 type FONT_ENCODING_NOT_DECIDED. */
5532 encoding = strrchr (fontp->name, '-');
5533 if (encoding && stricmp (encoding+1, "sjis") == 0)
5534 fontp->encoding[1] = 4;
5535 else
5536 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED;
5538 /* The following three values are set to 0 under W32, which is
5539 what they get set to if XGetFontProperty fails under X. */
5540 fontp->baseline_offset = 0;
5541 fontp->relative_compose = 0;
5542 fontp->default_ascent = 0;
5544 /* Set global flag fonts_changed_p to non-zero if the font loaded
5545 has a character with a smaller width than any other character
5546 before, or if the font loaded has a smalle>r height than any
5547 other font loaded before. If this happens, it will make a
5548 glyph matrix reallocation necessary. */
5549 fonts_changed_p = x_compute_min_glyph_bounds (f);
5550 UNBLOCK_INPUT;
5551 return fontp;
5555 /* Load font named FONTNAME of size SIZE for frame F, and return a
5556 pointer to the structure font_info while allocating it dynamically.
5557 If loading fails, return NULL. */
5558 struct font_info *
5559 w32_load_font (f,fontname,size)
5560 struct frame *f;
5561 char * fontname;
5562 int size;
5564 Lisp_Object bdf_fonts;
5565 struct font_info *retval = NULL;
5567 bdf_fonts = w32_list_bdf_fonts (build_string (fontname));
5569 while (!retval && CONSP (bdf_fonts))
5571 char *bdf_name, *bdf_file;
5572 Lisp_Object bdf_pair;
5574 bdf_name = XSTRING (XCAR (bdf_fonts))->data;
5575 bdf_pair = Fassoc (XCAR (bdf_fonts), Vw32_bdf_filename_alist);
5576 bdf_file = XSTRING (XCDR (bdf_pair))->data;
5578 retval = w32_load_bdf_font (f, bdf_name, size, bdf_file);
5580 bdf_fonts = XCDR (bdf_fonts);
5583 if (retval)
5584 return retval;
5586 return w32_load_system_font(f, fontname, size);
5590 void
5591 w32_unload_font (dpyinfo, font)
5592 struct w32_display_info *dpyinfo;
5593 XFontStruct * font;
5595 if (font)
5597 if (font->bdf) w32_free_bdf_font (font->bdf);
5599 if (font->hfont) DeleteObject(font->hfont);
5600 xfree (font);
5604 /* The font conversion stuff between x and w32 */
5606 /* X font string is as follows (from faces.el)
5607 * (let ((- "[-?]")
5608 * (foundry "[^-]+")
5609 * (family "[^-]+")
5610 * (weight "\\(bold\\|demibold\\|medium\\)") ; 1
5611 * (weight\? "\\([^-]*\\)") ; 1
5612 * (slant "\\([ior]\\)") ; 2
5613 * (slant\? "\\([^-]?\\)") ; 2
5614 * (swidth "\\([^-]*\\)") ; 3
5615 * (adstyle "[^-]*") ; 4
5616 * (pixelsize "[0-9]+")
5617 * (pointsize "[0-9][0-9]+")
5618 * (resx "[0-9][0-9]+")
5619 * (resy "[0-9][0-9]+")
5620 * (spacing "[cmp?*]")
5621 * (avgwidth "[0-9]+")
5622 * (registry "[^-]+")
5623 * (encoding "[^-]+")
5627 LONG
5628 x_to_w32_weight (lpw)
5629 char * lpw;
5631 if (!lpw) return (FW_DONTCARE);
5633 if (stricmp (lpw,"heavy") == 0) return FW_HEAVY;
5634 else if (stricmp (lpw,"extrabold") == 0) return FW_EXTRABOLD;
5635 else if (stricmp (lpw,"bold") == 0) return FW_BOLD;
5636 else if (stricmp (lpw,"demibold") == 0) return FW_SEMIBOLD;
5637 else if (stricmp (lpw,"semibold") == 0) return FW_SEMIBOLD;
5638 else if (stricmp (lpw,"medium") == 0) return FW_MEDIUM;
5639 else if (stricmp (lpw,"normal") == 0) return FW_NORMAL;
5640 else if (stricmp (lpw,"light") == 0) return FW_LIGHT;
5641 else if (stricmp (lpw,"extralight") == 0) return FW_EXTRALIGHT;
5642 else if (stricmp (lpw,"thin") == 0) return FW_THIN;
5643 else
5644 return FW_DONTCARE;
5648 char *
5649 w32_to_x_weight (fnweight)
5650 int fnweight;
5652 if (fnweight >= FW_HEAVY) return "heavy";
5653 if (fnweight >= FW_EXTRABOLD) return "extrabold";
5654 if (fnweight >= FW_BOLD) return "bold";
5655 if (fnweight >= FW_SEMIBOLD) return "demibold";
5656 if (fnweight >= FW_MEDIUM) return "medium";
5657 if (fnweight >= FW_NORMAL) return "normal";
5658 if (fnweight >= FW_LIGHT) return "light";
5659 if (fnweight >= FW_EXTRALIGHT) return "extralight";
5660 if (fnweight >= FW_THIN) return "thin";
5661 else
5662 return "*";
5665 LONG
5666 x_to_w32_charset (lpcs)
5667 char * lpcs;
5669 Lisp_Object rest;
5671 /* Look through w32-charset-info-alist for the character set.
5672 Format of each entry is
5673 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5675 for (rest = Vw32_charset_info_alist; CONSP (rest); rest = XCDR (rest))
5677 Lisp_Object this_entry = XCAR (rest);
5678 char * x_charset = XSTRING (XCAR (this_entry))->data;
5680 if (strnicmp (lpcs, x_charset, strlen(x_charset)) == 0)
5682 Lisp_Object w32_charset = XCAR (XCDR (this_entry));
5683 // Translate Lisp symbol to number.
5684 if (w32_charset == Qw32_charset_ansi)
5685 return ANSI_CHARSET;
5686 if (w32_charset == Qw32_charset_symbol)
5687 return SYMBOL_CHARSET;
5688 if (w32_charset == Qw32_charset_shiftjis)
5689 return SHIFTJIS_CHARSET;
5690 if (w32_charset == Qw32_charset_hangul)
5691 return HANGEUL_CHARSET;
5692 if (w32_charset == Qw32_charset_chinesebig5)
5693 return CHINESEBIG5_CHARSET;
5694 if (w32_charset == Qw32_charset_gb2312)
5695 return GB2312_CHARSET;
5696 if (w32_charset == Qw32_charset_oem)
5697 return OEM_CHARSET;
5698 #ifdef JOHAB_CHARSET
5699 if (w32_charset == Qw32_charset_johab)
5700 return JOHAB_CHARSET;
5701 if (w32_charset == Qw32_charset_easteurope)
5702 return EASTEUROPE_CHARSET;
5703 if (w32_charset == Qw32_charset_turkish)
5704 return TURKISH_CHARSET;
5705 if (w32_charset == Qw32_charset_baltic)
5706 return BALTIC_CHARSET;
5707 if (w32_charset == Qw32_charset_russian)
5708 return RUSSIAN_CHARSET;
5709 if (w32_charset == Qw32_charset_arabic)
5710 return ARABIC_CHARSET;
5711 if (w32_charset == Qw32_charset_greek)
5712 return GREEK_CHARSET;
5713 if (w32_charset == Qw32_charset_hebrew)
5714 return HEBREW_CHARSET;
5715 if (w32_charset == Qw32_charset_thai)
5716 return THAI_CHARSET;
5717 if (w32_charset == Qw32_charset_mac)
5718 return MAC_CHARSET;
5719 #endif /* JOHAB_CHARSET */
5720 #ifdef UNICODE_CHARSET
5721 if (w32_charset == Qw32_charset_unicode)
5722 return UNICODE_CHARSET;
5723 #endif
5727 return DEFAULT_CHARSET;
5731 char *
5732 w32_to_x_charset (fncharset)
5733 int fncharset;
5735 static char buf[16];
5737 /* NTEMACS_TODO: use w32-charset-info-alist. Multiple matches
5738 are possible, so this will require more than just a rewrite of
5739 this function. w32_to_x_font is the only user of this function,
5740 and that will require rewriting too, and its users. */
5741 switch (fncharset)
5743 /* ansi is considered iso8859-1, as most modern ansi fonts are. */
5744 case ANSI_CHARSET: return "iso8859-1";
5745 case DEFAULT_CHARSET: return "ascii-*";
5746 case SYMBOL_CHARSET: return "ms-symbol";
5747 case SHIFTJIS_CHARSET: return "jisx0208-sjis";
5748 case HANGEUL_CHARSET: return "ksc5601.1987-*";
5749 case GB2312_CHARSET: return "gb2312-*";
5750 case CHINESEBIG5_CHARSET: return "big5-*";
5751 case OEM_CHARSET: return "ms-oem";
5753 /* More recent versions of Windows (95 and NT4.0) define more
5754 character sets. */
5755 #ifdef EASTEUROPE_CHARSET
5756 case EASTEUROPE_CHARSET: return "iso8859-2";
5757 case TURKISH_CHARSET: return "iso8859-9";
5758 case BALTIC_CHARSET: return "iso8859-4";
5760 /* W95 with international support but not IE4 often has the
5761 KOI8-R codepage but not ISO8859-5. */
5762 case RUSSIAN_CHARSET:
5763 if (!IsValidCodePage(28595) && IsValidCodePage(20886))
5764 return "koi8-r";
5765 else
5766 return "iso8859-5";
5767 case ARABIC_CHARSET: return "iso8859-6";
5768 case GREEK_CHARSET: return "iso8859-7";
5769 case HEBREW_CHARSET: return "iso8859-8";
5770 case VIETNAMESE_CHARSET: return "viscii1.1-*";
5771 case THAI_CHARSET: return "tis620-*";
5772 case MAC_CHARSET: return "mac-*";
5773 case JOHAB_CHARSET: return "ksc5601.1992-*";
5775 #endif
5777 #ifdef UNICODE_CHARSET
5778 case UNICODE_CHARSET: return "iso10646-unicode";
5779 #endif
5781 /* Encode numerical value of unknown charset. */
5782 sprintf (buf, "*-#%u", fncharset);
5783 return buf;
5787 /* Get the Windows codepage corresponding to the specified font. The
5788 charset info in the font name is used to look up
5789 w32-charset-to-codepage-alist. */
5790 int
5791 w32_codepage_for_font (char *fontname)
5793 Lisp_Object codepage;
5794 char charset_str[20], *charset, *end;
5796 /* Extract charset part of font string. */
5797 if (sscanf (fontname,
5798 "-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%19s",
5799 charset_str) == EOF)
5800 return CP_DEFAULT;
5802 /* Remove leading "*-". */
5803 if (strncmp ("*-", charset_str, 2) == 0)
5804 charset = charset_str + 2;
5805 else
5806 charset = charset_str;
5808 /* Stop match at wildcard (including preceding '-'). */
5809 if (end = strchr (charset, '*'))
5811 if (end > charset && *(end-1) == '-')
5812 end--;
5813 *end = '\0';
5816 codepage = Fcdr (Fcdr (Fassoc (build_string(charset),
5817 Vw32_charset_info_alist)));
5818 if (INTEGERP (codepage))
5819 return XINT (codepage);
5820 else
5821 return CP_DEFAULT;
5825 BOOL
5826 w32_to_x_font (lplogfont, lpxstr, len)
5827 LOGFONT * lplogfont;
5828 char * lpxstr;
5829 int len;
5831 char* fonttype;
5832 char *fontname;
5833 char height_pixels[8];
5834 char height_dpi[8];
5835 char width_pixels[8];
5836 char *fontname_dash;
5837 int display_resy = one_w32_display_info.resy;
5838 int display_resx = one_w32_display_info.resx;
5839 int bufsz;
5840 struct coding_system coding;
5842 if (!lpxstr) abort ();
5844 if (!lplogfont)
5845 return FALSE;
5847 if (lplogfont->lfOutPrecision == OUT_STRING_PRECIS)
5848 fonttype = "raster";
5849 else if (lplogfont->lfOutPrecision == OUT_STROKE_PRECIS)
5850 fonttype = "outline";
5851 else
5852 fonttype = "unknown";
5854 setup_coding_system (Fcheck_coding_system (Vw32_system_coding_system),
5855 &coding);
5856 coding.src_multibyte = 0;
5857 coding.dst_multibyte = 1;
5858 coding.mode |= CODING_MODE_LAST_BLOCK;
5859 bufsz = decoding_buffer_size (&coding, LF_FACESIZE);
5861 fontname = alloca(sizeof(*fontname) * bufsz);
5862 decode_coding (&coding, lplogfont->lfFaceName, fontname,
5863 strlen(lplogfont->lfFaceName), bufsz - 1);
5864 *(fontname + coding.produced) = '\0';
5866 /* Replace dashes with underscores so the dashes are not
5867 misinterpreted. */
5868 fontname_dash = fontname;
5869 while (fontname_dash = strchr (fontname_dash, '-'))
5870 *fontname_dash = '_';
5872 if (lplogfont->lfHeight)
5874 sprintf (height_pixels, "%u", abs (lplogfont->lfHeight));
5875 sprintf (height_dpi, "%u",
5876 abs (lplogfont->lfHeight) * 720 / display_resy);
5878 else
5880 strcpy (height_pixels, "*");
5881 strcpy (height_dpi, "*");
5883 if (lplogfont->lfWidth)
5884 sprintf (width_pixels, "%u", lplogfont->lfWidth * 10);
5885 else
5886 strcpy (width_pixels, "*");
5888 _snprintf (lpxstr, len - 1,
5889 "-%s-%s-%s-%c-normal-normal-%s-%s-%d-%d-%c-%s-%s",
5890 fonttype, /* foundry */
5891 fontname, /* family */
5892 w32_to_x_weight (lplogfont->lfWeight), /* weight */
5893 lplogfont->lfItalic?'i':'r', /* slant */
5894 /* setwidth name */
5895 /* add style name */
5896 height_pixels, /* pixel size */
5897 height_dpi, /* point size */
5898 display_resx, /* resx */
5899 display_resy, /* resy */
5900 ((lplogfont->lfPitchAndFamily & 0x3) == VARIABLE_PITCH)
5901 ? 'p' : 'c', /* spacing */
5902 width_pixels, /* avg width */
5903 w32_to_x_charset (lplogfont->lfCharSet) /* charset registry
5904 and encoding*/
5907 lpxstr[len - 1] = 0; /* just to be sure */
5908 return (TRUE);
5911 BOOL
5912 x_to_w32_font (lpxstr, lplogfont)
5913 char * lpxstr;
5914 LOGFONT * lplogfont;
5916 struct coding_system coding;
5918 if (!lplogfont) return (FALSE);
5920 memset (lplogfont, 0, sizeof (*lplogfont));
5922 /* Set default value for each field. */
5923 #if 1
5924 lplogfont->lfOutPrecision = OUT_DEFAULT_PRECIS;
5925 lplogfont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
5926 lplogfont->lfQuality = DEFAULT_QUALITY;
5927 #else
5928 /* go for maximum quality */
5929 lplogfont->lfOutPrecision = OUT_STROKE_PRECIS;
5930 lplogfont->lfClipPrecision = CLIP_STROKE_PRECIS;
5931 lplogfont->lfQuality = PROOF_QUALITY;
5932 #endif
5934 lplogfont->lfCharSet = DEFAULT_CHARSET;
5935 lplogfont->lfWeight = FW_DONTCARE;
5936 lplogfont->lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
5938 if (!lpxstr)
5939 return FALSE;
5941 /* Provide a simple escape mechanism for specifying Windows font names
5942 * directly -- if font spec does not beginning with '-', assume this
5943 * format:
5944 * "<font name>[:height in pixels[:width in pixels[:weight]]]"
5947 if (*lpxstr == '-')
5949 int fields, tem;
5950 char name[50], weight[20], slant, pitch, pixels[10], height[10],
5951 width[10], resy[10], remainder[20];
5952 char * encoding;
5953 int dpi = one_w32_display_info.height_in;
5955 fields = sscanf (lpxstr,
5956 "-%*[^-]-%49[^-]-%19[^-]-%c-%*[^-]-%*[^-]-%9[^-]-%9[^-]-%*[^-]-%9[^-]-%c-%9[^-]-%19s",
5957 name, weight, &slant, pixels, height, resy, &pitch, width, remainder);
5958 if (fields == EOF) return (FALSE);
5960 /* If wildcards cover more than one field, we don't know which
5961 field is which, so don't fill any in. */
5963 if (fields < 9)
5964 fields = 0;
5966 if (fields > 0 && name[0] != '*')
5968 int bufsize;
5969 unsigned char *buf;
5971 setup_coding_system
5972 (Fcheck_coding_system (Vw32_system_coding_system), &coding);
5973 coding.src_multibyte = 1;
5974 coding.dst_multibyte = 1;
5975 bufsize = encoding_buffer_size (&coding, strlen (name));
5976 buf = (unsigned char *) alloca (bufsize);
5977 coding.mode |= CODING_MODE_LAST_BLOCK;
5978 encode_coding (&coding, name, buf, strlen (name), bufsize);
5979 if (coding.produced >= LF_FACESIZE)
5980 coding.produced = LF_FACESIZE - 1;
5981 buf[coding.produced] = 0;
5982 strcpy (lplogfont->lfFaceName, buf);
5984 else
5986 lplogfont->lfFaceName[0] = '\0';
5989 fields--;
5991 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
5993 fields--;
5995 if (!NILP (Vw32_enable_synthesized_fonts))
5996 lplogfont->lfItalic = (fields > 0 && slant == 'i');
5998 fields--;
6000 if (fields > 0 && pixels[0] != '*')
6001 lplogfont->lfHeight = atoi (pixels);
6003 fields--;
6004 fields--;
6005 if (fields > 0 && resy[0] != '*')
6007 tem = atoi (resy);
6008 if (tem > 0) dpi = tem;
6011 if (fields > -1 && lplogfont->lfHeight == 0 && height[0] != '*')
6012 lplogfont->lfHeight = atoi (height) * dpi / 720;
6014 if (fields > 0)
6015 lplogfont->lfPitchAndFamily =
6016 (fields > 0 && pitch == 'p') ? VARIABLE_PITCH : FIXED_PITCH;
6018 fields--;
6020 if (fields > 0 && width[0] != '*')
6021 lplogfont->lfWidth = atoi (width) / 10;
6023 fields--;
6025 /* Strip the trailing '-' if present. (it shouldn't be, as it
6026 fails the test against xlfd-tight-regexp in fontset.el). */
6028 int len = strlen (remainder);
6029 if (len > 0 && remainder[len-1] == '-')
6030 remainder[len-1] = 0;
6032 encoding = remainder;
6033 if (strncmp (encoding, "*-", 2) == 0)
6034 encoding += 2;
6035 lplogfont->lfCharSet = x_to_w32_charset (fields > 0 ? encoding : "");
6037 else
6039 int fields;
6040 char name[100], height[10], width[10], weight[20];
6042 fields = sscanf (lpxstr,
6043 "%99[^:]:%9[^:]:%9[^:]:%19s",
6044 name, height, width, weight);
6046 if (fields == EOF) return (FALSE);
6048 if (fields > 0)
6050 strncpy (lplogfont->lfFaceName,name, LF_FACESIZE);
6051 lplogfont->lfFaceName[LF_FACESIZE-1] = 0;
6053 else
6055 lplogfont->lfFaceName[0] = 0;
6058 fields--;
6060 if (fields > 0)
6061 lplogfont->lfHeight = atoi (height);
6063 fields--;
6065 if (fields > 0)
6066 lplogfont->lfWidth = atoi (width);
6068 fields--;
6070 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
6073 /* This makes TrueType fonts work better. */
6074 lplogfont->lfHeight = - abs (lplogfont->lfHeight);
6076 return (TRUE);
6079 /* Strip the pixel height and point height from the given xlfd, and
6080 return the pixel height. If no pixel height is specified, calculate
6081 one from the point height, or if that isn't defined either, return
6082 0 (which usually signifies a scalable font).
6084 int xlfd_strip_height (char *fontname)
6086 int pixel_height, point_height, dpi, field_number;
6087 char *read_from, *write_to;
6089 xassert (fontname);
6091 pixel_height = field_number = 0;
6092 write_to = NULL;
6094 /* Look for height fields. */
6095 for (read_from = fontname; *read_from; read_from++)
6097 if (*read_from == '-')
6099 field_number++;
6100 if (field_number == 7) /* Pixel height. */
6102 read_from++;
6103 write_to = read_from;
6105 /* Find end of field. */
6106 for (;*read_from && *read_from != '-'; read_from++)
6109 /* Split the fontname at end of field. */
6110 if (*read_from)
6112 *read_from = '\0';
6113 read_from++;
6115 pixel_height = atoi (write_to);
6116 /* Blank out field. */
6117 if (read_from > write_to)
6119 *write_to = '-';
6120 write_to++;
6122 /* If the pixel height field is at the end (partial xfld),
6123 return now. */
6124 else
6125 return pixel_height;
6127 /* If we got a pixel height, the point height can be
6128 ignored. Just blank it out and break now. */
6129 if (pixel_height)
6131 /* Find end of point size field. */
6132 for (; *read_from && *read_from != '-'; read_from++)
6135 if (*read_from)
6136 read_from++;
6138 /* Blank out the point size field. */
6139 if (read_from > write_to)
6141 *write_to = '-';
6142 write_to++;
6144 else
6145 return pixel_height;
6147 break;
6149 /* If the point height is already blank, break now. */
6150 if (*read_from == '-')
6152 read_from++;
6153 break;
6156 else if (field_number == 8)
6158 /* If we didn't get a pixel height, try to get the point
6159 height and convert that. */
6160 int point_size;
6161 char *point_size_start = read_from++;
6163 /* Find end of field. */
6164 for (; *read_from && *read_from != '-'; read_from++)
6167 if (*read_from)
6169 *read_from = '\0';
6170 read_from++;
6173 point_size = atoi (point_size_start);
6175 /* Convert to pixel height. */
6176 pixel_height = point_size
6177 * one_w32_display_info.height_in / 720;
6179 /* Blank out this field and break. */
6180 *write_to = '-';
6181 write_to++;
6182 break;
6187 /* Shift the rest of the font spec into place. */
6188 if (write_to && read_from > write_to)
6190 for (; *read_from; read_from++, write_to++)
6191 *write_to = *read_from;
6192 *write_to = '\0';
6195 return pixel_height;
6198 /* Assume parameter 1 is fully qualified, no wildcards. */
6199 BOOL
6200 w32_font_match (fontname, pattern)
6201 char * fontname;
6202 char * pattern;
6204 char *regex = alloca (strlen (pattern) * 2);
6205 char *font_name_copy = alloca (strlen (fontname) + 1);
6206 char *ptr;
6208 /* Copy fontname so we can modify it during comparison. */
6209 strcpy (font_name_copy, fontname);
6211 ptr = regex;
6212 *ptr++ = '^';
6214 /* Turn pattern into a regexp and do a regexp match. */
6215 for (; *pattern; pattern++)
6217 if (*pattern == '?')
6218 *ptr++ = '.';
6219 else if (*pattern == '*')
6221 *ptr++ = '.';
6222 *ptr++ = '*';
6224 else
6225 *ptr++ = *pattern;
6227 *ptr = '$';
6228 *(ptr + 1) = '\0';
6230 /* Strip out font heights and compare them seperately, since
6231 rounding error can cause mismatches. This also allows a
6232 comparison between a font that declares only a pixel height and a
6233 pattern that declares the point height.
6236 int font_height, pattern_height;
6238 font_height = xlfd_strip_height (font_name_copy);
6239 pattern_height = xlfd_strip_height (regex);
6241 /* Compare now, and don't bother doing expensive regexp matching
6242 if the heights differ. */
6243 if (font_height && pattern_height && (font_height != pattern_height))
6244 return FALSE;
6247 return (fast_c_string_match_ignore_case (build_string (regex),
6248 font_name_copy) >= 0);
6251 /* Callback functions, and a structure holding info they need, for
6252 listing system fonts on W32. We need one set of functions to do the
6253 job properly, but these don't work on NT 3.51 and earlier, so we
6254 have a second set which don't handle character sets properly to
6255 fall back on.
6257 In both cases, there are two passes made. The first pass gets one
6258 font from each family, the second pass lists all the fonts from
6259 each family. */
6261 typedef struct enumfont_t
6263 HDC hdc;
6264 int numFonts;
6265 LOGFONT logfont;
6266 XFontStruct *size_ref;
6267 Lisp_Object *pattern;
6268 Lisp_Object *tail;
6269 } enumfont_t;
6271 int CALLBACK
6272 enum_font_cb2 (lplf, lptm, FontType, lpef)
6273 ENUMLOGFONT * lplf;
6274 NEWTEXTMETRIC * lptm;
6275 int FontType;
6276 enumfont_t * lpef;
6278 if (lplf->elfLogFont.lfStrikeOut || lplf->elfLogFont.lfUnderline)
6279 return (1);
6281 /* Check that the character set matches if it was specified */
6282 if (lpef->logfont.lfCharSet != DEFAULT_CHARSET &&
6283 lplf->elfLogFont.lfCharSet != lpef->logfont.lfCharSet)
6284 return (1);
6287 char buf[100];
6288 Lisp_Object width = Qnil;
6290 /* Truetype fonts do not report their true metrics until loaded */
6291 if (FontType != RASTER_FONTTYPE)
6293 if (!NILP (*(lpef->pattern)))
6295 /* Scalable fonts are as big as you want them to be. */
6296 lplf->elfLogFont.lfHeight = lpef->logfont.lfHeight;
6297 lplf->elfLogFont.lfWidth = lpef->logfont.lfWidth;
6298 width = make_number (lpef->logfont.lfWidth);
6300 else
6302 lplf->elfLogFont.lfHeight = 0;
6303 lplf->elfLogFont.lfWidth = 0;
6307 /* Make sure the height used here is the same as everywhere
6308 else (ie character height, not cell height). */
6309 if (lplf->elfLogFont.lfHeight > 0)
6311 /* lptm can be trusted for RASTER fonts, but not scalable ones. */
6312 if (FontType == RASTER_FONTTYPE)
6313 lplf->elfLogFont.lfHeight = lptm->tmInternalLeading - lptm->tmHeight;
6314 else
6315 lplf->elfLogFont.lfHeight = -lplf->elfLogFont.lfHeight;
6318 if (!w32_to_x_font (&(lplf->elfLogFont), buf, 100))
6319 return (0);
6321 if (NILP (*(lpef->pattern))
6322 || w32_font_match (buf, XSTRING (*(lpef->pattern))->data))
6324 *lpef->tail = Fcons (Fcons (build_string (buf), width), Qnil);
6325 lpef->tail = &(XCDR (*lpef->tail));
6326 lpef->numFonts++;
6330 return (1);
6333 int CALLBACK
6334 enum_font_cb1 (lplf, lptm, FontType, lpef)
6335 ENUMLOGFONT * lplf;
6336 NEWTEXTMETRIC * lptm;
6337 int FontType;
6338 enumfont_t * lpef;
6340 return EnumFontFamilies (lpef->hdc,
6341 lplf->elfLogFont.lfFaceName,
6342 (FONTENUMPROC) enum_font_cb2,
6343 (LPARAM) lpef);
6347 int CALLBACK
6348 enum_fontex_cb2 (lplf, lptm, font_type, lpef)
6349 ENUMLOGFONTEX * lplf;
6350 NEWTEXTMETRICEX * lptm;
6351 int font_type;
6352 enumfont_t * lpef;
6354 /* We are not interested in the extra info we get back from the 'Ex
6355 version - only the fact that we get character set variations
6356 enumerated seperately. */
6357 return enum_font_cb2 ((ENUMLOGFONT *) lplf, (NEWTEXTMETRIC *) lptm,
6358 font_type, lpef);
6361 int CALLBACK
6362 enum_fontex_cb1 (lplf, lptm, font_type, lpef)
6363 ENUMLOGFONTEX * lplf;
6364 NEWTEXTMETRICEX * lptm;
6365 int font_type;
6366 enumfont_t * lpef;
6368 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
6369 FARPROC enum_font_families_ex
6370 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
6371 /* We don't really expect EnumFontFamiliesEx to disappear once we
6372 get here, so don't bother handling it gracefully. */
6373 if (enum_font_families_ex == NULL)
6374 error ("gdi32.dll has disappeared!");
6375 return enum_font_families_ex (lpef->hdc,
6376 &lplf->elfLogFont,
6377 (FONTENUMPROC) enum_fontex_cb2,
6378 (LPARAM) lpef, 0);
6381 /* Interface to fontset handler. (adapted from mw32font.c in Meadow
6382 and xterm.c in Emacs 20.3) */
6384 Lisp_Object w32_list_bdf_fonts (Lisp_Object pattern, int max_names)
6386 char *fontname, *ptnstr;
6387 Lisp_Object list, tem, newlist = Qnil;
6388 int n_fonts = 0;
6390 list = Vw32_bdf_filename_alist;
6391 ptnstr = XSTRING (pattern)->data;
6393 for ( ; CONSP (list); list = XCDR (list))
6395 tem = XCAR (list);
6396 if (CONSP (tem))
6397 fontname = XSTRING (XCAR (tem))->data;
6398 else if (STRINGP (tem))
6399 fontname = XSTRING (tem)->data;
6400 else
6401 continue;
6403 if (w32_font_match (fontname, ptnstr))
6405 newlist = Fcons (XCAR (tem), newlist);
6406 n_fonts++;
6407 if (n_fonts >= max_names)
6408 break;
6412 return newlist;
6415 Lisp_Object w32_list_synthesized_fonts (FRAME_PTR f, Lisp_Object pattern,
6416 int size, int max_names);
6418 /* Return a list of names of available fonts matching PATTERN on frame
6419 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
6420 to be listed. Frame F NULL means we have not yet created any
6421 frame, which means we can't get proper size info, as we don't have
6422 a device context to use for GetTextMetrics.
6423 MAXNAMES sets a limit on how many fonts to match. */
6425 Lisp_Object
6426 w32_list_fonts (FRAME_PTR f, Lisp_Object pattern, int size, int maxnames )
6428 Lisp_Object patterns, key = Qnil, tem, tpat;
6429 Lisp_Object list = Qnil, newlist = Qnil, second_best = Qnil;
6430 struct w32_display_info *dpyinfo = &one_w32_display_info;
6431 int n_fonts = 0;
6433 patterns = Fassoc (pattern, Valternate_fontname_alist);
6434 if (NILP (patterns))
6435 patterns = Fcons (pattern, Qnil);
6437 for (; CONSP (patterns); patterns = XCDR (patterns))
6439 enumfont_t ef;
6441 tpat = XCAR (patterns);
6443 /* See if we cached the result for this particular query.
6444 The cache is an alist of the form:
6445 ((PATTERN (FONTNAME . WIDTH) ...) ...)
6447 if (tem = XCDR (dpyinfo->name_list_element),
6448 !NILP (list = Fassoc (tpat, tem)))
6450 list = Fcdr_safe (list);
6451 /* We have a cached list. Don't have to get the list again. */
6452 goto label_cached;
6455 BLOCK_INPUT;
6456 /* At first, put PATTERN in the cache. */
6457 list = Qnil;
6458 ef.pattern = &tpat;
6459 ef.tail = &list;
6460 ef.numFonts = 0;
6462 /* Use EnumFontFamiliesEx where it is available, as it knows
6463 about character sets. Fall back to EnumFontFamilies for
6464 older versions of NT that don't support the 'Ex function. */
6465 x_to_w32_font (STRINGP (tpat) ? XSTRING (tpat)->data :
6466 NULL, &ef.logfont);
6468 LOGFONT font_match_pattern;
6469 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
6470 FARPROC enum_font_families_ex
6471 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
6473 /* We do our own pattern matching so we can handle wildcards. */
6474 font_match_pattern.lfFaceName[0] = 0;
6475 font_match_pattern.lfPitchAndFamily = 0;
6476 /* We can use the charset, because if it is a wildcard it will
6477 be DEFAULT_CHARSET anyway. */
6478 font_match_pattern.lfCharSet = ef.logfont.lfCharSet;
6480 ef.hdc = GetDC (dpyinfo->root_window);
6482 if (enum_font_families_ex)
6483 enum_font_families_ex (ef.hdc,
6484 &font_match_pattern,
6485 (FONTENUMPROC) enum_fontex_cb1,
6486 (LPARAM) &ef, 0);
6487 else
6488 EnumFontFamilies (ef.hdc, NULL, (FONTENUMPROC) enum_font_cb1,
6489 (LPARAM)&ef);
6491 ReleaseDC (dpyinfo->root_window, ef.hdc);
6494 UNBLOCK_INPUT;
6496 /* Make a list of the fonts we got back.
6497 Store that in the font cache for the display. */
6498 XCDR (dpyinfo->name_list_element)
6499 = Fcons (Fcons (tpat, list),
6500 XCDR (dpyinfo->name_list_element));
6502 label_cached:
6503 if (NILP (list)) continue; /* Try the remaining alternatives. */
6505 newlist = second_best = Qnil;
6507 /* Make a list of the fonts that have the right width. */
6508 for (; CONSP (list); list = XCDR (list))
6510 int found_size;
6511 tem = XCAR (list);
6513 if (!CONSP (tem))
6514 continue;
6515 if (NILP (XCAR (tem)))
6516 continue;
6517 if (!size)
6519 newlist = Fcons (XCAR (tem), newlist);
6520 n_fonts++;
6521 if (n_fonts >= maxnames)
6522 break;
6523 else
6524 continue;
6526 if (!INTEGERP (XCDR (tem)))
6528 /* Since we don't yet know the size of the font, we must
6529 load it and try GetTextMetrics. */
6530 W32FontStruct thisinfo;
6531 LOGFONT lf;
6532 HDC hdc;
6533 HANDLE oldobj;
6535 if (!x_to_w32_font (XSTRING (XCAR (tem))->data, &lf))
6536 continue;
6538 BLOCK_INPUT;
6539 thisinfo.bdf = NULL;
6540 thisinfo.hfont = CreateFontIndirect (&lf);
6541 if (thisinfo.hfont == NULL)
6542 continue;
6544 hdc = GetDC (dpyinfo->root_window);
6545 oldobj = SelectObject (hdc, thisinfo.hfont);
6546 if (GetTextMetrics (hdc, &thisinfo.tm))
6547 XCDR (tem) = make_number (FONT_WIDTH (&thisinfo));
6548 else
6549 XCDR (tem) = make_number (0);
6550 SelectObject (hdc, oldobj);
6551 ReleaseDC (dpyinfo->root_window, hdc);
6552 DeleteObject(thisinfo.hfont);
6553 UNBLOCK_INPUT;
6555 found_size = XINT (XCDR (tem));
6556 if (found_size == size)
6558 newlist = Fcons (XCAR (tem), newlist);
6559 n_fonts++;
6560 if (n_fonts >= maxnames)
6561 break;
6563 /* keep track of the closest matching size in case
6564 no exact match is found. */
6565 else if (found_size > 0)
6567 if (NILP (second_best))
6568 second_best = tem;
6570 else if (found_size < size)
6572 if (XINT (XCDR (second_best)) > size
6573 || XINT (XCDR (second_best)) < found_size)
6574 second_best = tem;
6576 else
6578 if (XINT (XCDR (second_best)) > size
6579 && XINT (XCDR (second_best)) >
6580 found_size)
6581 second_best = tem;
6586 if (!NILP (newlist))
6587 break;
6588 else if (!NILP (second_best))
6590 newlist = Fcons (XCAR (second_best), Qnil);
6591 break;
6595 /* Include any bdf fonts. */
6596 if (n_fonts < maxnames)
6598 Lisp_Object combined[2];
6599 combined[0] = w32_list_bdf_fonts (pattern, maxnames - n_fonts);
6600 combined[1] = newlist;
6601 newlist = Fnconc(2, combined);
6604 /* If we can't find a font that matches, check if Windows would be
6605 able to synthesize it from a different style. */
6606 if (NILP (newlist) && !NILP (Vw32_enable_synthesized_fonts))
6607 newlist = w32_list_synthesized_fonts (f, pattern, size, maxnames);
6609 return newlist;
6612 Lisp_Object
6613 w32_list_synthesized_fonts (f, pattern, size, max_names)
6614 FRAME_PTR f;
6615 Lisp_Object pattern;
6616 int size;
6617 int max_names;
6619 int fields;
6620 char *full_pattn, *new_pattn, foundary[50], family[50], *pattn_part2;
6621 char style[20], slant;
6622 Lisp_Object matches, match, tem, synthed_matches = Qnil;
6624 full_pattn = XSTRING (pattern)->data;
6626 pattn_part2 = alloca (XSTRING (pattern)->size);
6627 /* Allow some space for wildcard expansion. */
6628 new_pattn = alloca (XSTRING (pattern)->size + 100);
6630 fields = sscanf (full_pattn, "-%49[^-]-%49[^-]-%19[^-]-%c-%s",
6631 foundary, family, style, &slant, pattn_part2);
6632 if (fields == EOF || fields < 5)
6633 return Qnil;
6635 /* If the style and slant are wildcards already there is no point
6636 checking again (and we don't want to keep recursing). */
6637 if (*style == '*' && slant == '*')
6638 return Qnil;
6640 sprintf (new_pattn, "-%s-%s-*-*-%s", foundary, family, pattn_part2);
6642 matches = w32_list_fonts (f, build_string (new_pattn), size, max_names);
6644 for ( ; CONSP (matches); matches = XCDR (matches))
6646 tem = XCAR (matches);
6647 if (!STRINGP (tem))
6648 continue;
6650 full_pattn = XSTRING (tem)->data;
6651 fields = sscanf (full_pattn, "-%49[^-]-%49[^-]-%*[^-]-%*c-%s",
6652 foundary, family, pattn_part2);
6653 if (fields == EOF || fields < 3)
6654 continue;
6656 sprintf (new_pattn, "-%s-%s-%s-%c-%s", foundary, family, style,
6657 slant, pattn_part2);
6659 synthed_matches = Fcons (build_string (new_pattn),
6660 synthed_matches);
6663 return synthed_matches;
6667 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6668 struct font_info *
6669 w32_get_font_info (f, font_idx)
6670 FRAME_PTR f;
6671 int font_idx;
6673 return (FRAME_W32_FONT_TABLE (f) + font_idx);
6677 struct font_info*
6678 w32_query_font (struct frame *f, char *fontname)
6680 int i;
6681 struct font_info *pfi;
6683 pfi = FRAME_W32_FONT_TABLE (f);
6685 for (i = 0; i < one_w32_display_info.n_fonts ;i++, pfi++)
6687 if (strcmp(pfi->name, fontname) == 0) return pfi;
6690 return NULL;
6693 /* Find a CCL program for a font specified by FONTP, and set the member
6694 `encoder' of the structure. */
6696 void
6697 w32_find_ccl_program (fontp)
6698 struct font_info *fontp;
6700 Lisp_Object list, elt;
6702 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
6704 elt = XCAR (list);
6705 if (CONSP (elt)
6706 && STRINGP (XCAR (elt))
6707 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
6708 >= 0))
6709 break;
6711 if (! NILP (list))
6713 struct ccl_program *ccl
6714 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
6716 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
6717 xfree (ccl);
6718 else
6719 fontp->font_encoder = ccl;
6724 DEFUN ("w32-find-bdf-fonts", Fw32_find_bdf_fonts, Sw32_find_bdf_fonts,
6725 1, 1, 0,
6726 "Return a list of BDF fonts in DIR, suitable for appending to\n\
6727 w32-bdf-filename-alist. Fonts which do not contain an xfld description\n\
6728 will not be included in the list. DIR may be a list of directories.")
6729 (directory)
6730 Lisp_Object directory;
6732 Lisp_Object list = Qnil;
6733 struct gcpro gcpro1, gcpro2;
6735 if (!CONSP (directory))
6736 return w32_find_bdf_fonts_in_dir (directory);
6738 for ( ; CONSP (directory); directory = XCDR (directory))
6740 Lisp_Object pair[2];
6741 pair[0] = list;
6742 pair[1] = Qnil;
6743 GCPRO2 (directory, list);
6744 pair[1] = w32_find_bdf_fonts_in_dir( XCAR (directory) );
6745 list = Fnconc( 2, pair );
6746 UNGCPRO;
6748 return list;
6751 /* Find BDF files in a specified directory. (use GCPRO when calling,
6752 as this calls lisp to get a directory listing). */
6753 Lisp_Object w32_find_bdf_fonts_in_dir( Lisp_Object directory )
6755 Lisp_Object filelist, list = Qnil;
6756 char fontname[100];
6758 if (!STRINGP(directory))
6759 return Qnil;
6761 filelist = Fdirectory_files (directory, Qt,
6762 build_string (".*\\.[bB][dD][fF]"), Qt);
6764 for ( ; CONSP(filelist); filelist = XCDR (filelist))
6766 Lisp_Object filename = XCAR (filelist);
6767 if (w32_BDF_to_x_font (XSTRING (filename)->data, fontname, 100))
6768 store_in_alist (&list, build_string (fontname), filename);
6770 return list;
6774 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
6775 "Internal function called by `color-defined-p', which see.")
6776 (color, frame)
6777 Lisp_Object color, frame;
6779 XColor foo;
6780 FRAME_PTR f = check_x_frame (frame);
6782 CHECK_STRING (color, 1);
6784 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
6785 return Qt;
6786 else
6787 return Qnil;
6790 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
6791 "Internal function called by `color-values', which see.")
6792 (color, frame)
6793 Lisp_Object color, frame;
6795 XColor foo;
6796 FRAME_PTR f = check_x_frame (frame);
6798 CHECK_STRING (color, 1);
6800 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
6802 Lisp_Object rgb[3];
6804 rgb[0] = make_number ((GetRValue (foo.pixel) << 8)
6805 | GetRValue (foo.pixel));
6806 rgb[1] = make_number ((GetGValue (foo.pixel) << 8)
6807 | GetGValue (foo.pixel));
6808 rgb[2] = make_number ((GetBValue (foo.pixel) << 8)
6809 | GetBValue (foo.pixel));
6810 return Flist (3, rgb);
6812 else
6813 return Qnil;
6816 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
6817 "Internal function called by `display-color-p', which see.")
6818 (display)
6819 Lisp_Object display;
6821 struct w32_display_info *dpyinfo = check_x_display_info (display);
6823 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 2)
6824 return Qnil;
6826 return Qt;
6829 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
6830 0, 1, 0,
6831 "Return t if the X display supports shades of gray.\n\
6832 Note that color displays do support shades of gray.\n\
6833 The optional argument DISPLAY specifies which display to ask about.\n\
6834 DISPLAY should be either a frame or a display name (a string).\n\
6835 If omitted or nil, that stands for the selected frame's display.")
6836 (display)
6837 Lisp_Object display;
6839 struct w32_display_info *dpyinfo = check_x_display_info (display);
6841 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 1)
6842 return Qnil;
6844 return Qt;
6847 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
6848 0, 1, 0,
6849 "Returns the width in pixels of the X display DISPLAY.\n\
6850 The optional argument DISPLAY specifies which display to ask about.\n\
6851 DISPLAY should be either a frame or a display name (a string).\n\
6852 If omitted or nil, that stands for the selected frame's display.")
6853 (display)
6854 Lisp_Object display;
6856 struct w32_display_info *dpyinfo = check_x_display_info (display);
6858 return make_number (dpyinfo->width);
6861 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
6862 Sx_display_pixel_height, 0, 1, 0,
6863 "Returns the height in pixels of the X display DISPLAY.\n\
6864 The optional argument DISPLAY specifies which display to ask about.\n\
6865 DISPLAY should be either a frame or a display name (a string).\n\
6866 If omitted or nil, that stands for the selected frame's display.")
6867 (display)
6868 Lisp_Object display;
6870 struct w32_display_info *dpyinfo = check_x_display_info (display);
6872 return make_number (dpyinfo->height);
6875 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
6876 0, 1, 0,
6877 "Returns the number of bitplanes of the display DISPLAY.\n\
6878 The optional argument DISPLAY specifies which display to ask about.\n\
6879 DISPLAY should be either a frame or a display name (a string).\n\
6880 If omitted or nil, that stands for the selected frame's display.")
6881 (display)
6882 Lisp_Object display;
6884 struct w32_display_info *dpyinfo = check_x_display_info (display);
6886 return make_number (dpyinfo->n_planes * dpyinfo->n_cbits);
6889 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
6890 0, 1, 0,
6891 "Returns the number of color cells of the display DISPLAY.\n\
6892 The optional argument DISPLAY specifies which display to ask about.\n\
6893 DISPLAY should be either a frame or a display name (a string).\n\
6894 If omitted or nil, that stands for the selected frame's display.")
6895 (display)
6896 Lisp_Object display;
6898 struct w32_display_info *dpyinfo = check_x_display_info (display);
6899 HDC hdc;
6900 int cap;
6902 hdc = GetDC (dpyinfo->root_window);
6903 if (dpyinfo->has_palette)
6904 cap = GetDeviceCaps (hdc,SIZEPALETTE);
6905 else
6906 cap = GetDeviceCaps (hdc,NUMCOLORS);
6908 ReleaseDC (dpyinfo->root_window, hdc);
6910 return make_number (cap);
6913 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
6914 Sx_server_max_request_size,
6915 0, 1, 0,
6916 "Returns the maximum request size of the server of display DISPLAY.\n\
6917 The optional argument DISPLAY specifies which display to ask about.\n\
6918 DISPLAY should be either a frame or a display name (a string).\n\
6919 If omitted or nil, that stands for the selected frame's display.")
6920 (display)
6921 Lisp_Object display;
6923 struct w32_display_info *dpyinfo = check_x_display_info (display);
6925 return make_number (1);
6928 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
6929 "Returns the vendor ID string of the W32 system (Microsoft).\n\
6930 The optional argument DISPLAY specifies which display to ask about.\n\
6931 DISPLAY should be either a frame or a display name (a string).\n\
6932 If omitted or nil, that stands for the selected frame's display.")
6933 (display)
6934 Lisp_Object display;
6936 return build_string ("Microsoft Corp.");
6939 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
6940 "Returns the version numbers of the server of display DISPLAY.\n\
6941 The value is a list of three integers: the major and minor\n\
6942 version numbers, and the vendor-specific release\n\
6943 number. See also the function `x-server-vendor'.\n\n\
6944 The optional argument DISPLAY specifies which display to ask about.\n\
6945 DISPLAY should be either a frame or a display name (a string).\n\
6946 If omitted or nil, that stands for the selected frame's display.")
6947 (display)
6948 Lisp_Object display;
6950 return Fcons (make_number (w32_major_version),
6951 Fcons (make_number (w32_minor_version), Qnil));
6954 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
6955 "Returns the number of screens on the server of display DISPLAY.\n\
6956 The optional argument DISPLAY specifies which display to ask about.\n\
6957 DISPLAY should be either a frame or a display name (a string).\n\
6958 If omitted or nil, that stands for the selected frame's display.")
6959 (display)
6960 Lisp_Object display;
6962 return make_number (1);
6965 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
6966 "Returns the height in millimeters of the X display DISPLAY.\n\
6967 The optional argument DISPLAY specifies which display to ask about.\n\
6968 DISPLAY should be either a frame or a display name (a string).\n\
6969 If omitted or nil, that stands for the selected frame's display.")
6970 (display)
6971 Lisp_Object display;
6973 struct w32_display_info *dpyinfo = check_x_display_info (display);
6974 HDC hdc;
6975 int cap;
6977 hdc = GetDC (dpyinfo->root_window);
6979 cap = GetDeviceCaps (hdc, VERTSIZE);
6981 ReleaseDC (dpyinfo->root_window, hdc);
6983 return make_number (cap);
6986 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
6987 "Returns the width in millimeters of the X display DISPLAY.\n\
6988 The optional argument DISPLAY specifies which display to ask about.\n\
6989 DISPLAY should be either a frame or a display name (a string).\n\
6990 If omitted or nil, that stands for the selected frame's display.")
6991 (display)
6992 Lisp_Object display;
6994 struct w32_display_info *dpyinfo = check_x_display_info (display);
6996 HDC hdc;
6997 int cap;
6999 hdc = GetDC (dpyinfo->root_window);
7001 cap = GetDeviceCaps (hdc, HORZSIZE);
7003 ReleaseDC (dpyinfo->root_window, hdc);
7005 return make_number (cap);
7008 DEFUN ("x-display-backing-store", Fx_display_backing_store,
7009 Sx_display_backing_store, 0, 1, 0,
7010 "Returns an indication of whether display DISPLAY does backing store.\n\
7011 The value may be `always', `when-mapped', or `not-useful'.\n\
7012 The optional argument DISPLAY specifies which display to ask about.\n\
7013 DISPLAY should be either a frame or a display name (a string).\n\
7014 If omitted or nil, that stands for the selected frame's display.")
7015 (display)
7016 Lisp_Object display;
7018 return intern ("not-useful");
7021 DEFUN ("x-display-visual-class", Fx_display_visual_class,
7022 Sx_display_visual_class, 0, 1, 0,
7023 "Returns the visual class of the display DISPLAY.\n\
7024 The value is one of the symbols `static-gray', `gray-scale',\n\
7025 `static-color', `pseudo-color', `true-color', or `direct-color'.\n\n\
7026 The optional argument DISPLAY specifies which display to ask about.\n\
7027 DISPLAY should be either a frame or a display name (a string).\n\
7028 If omitted or nil, that stands for the selected frame's display.")
7029 (display)
7030 Lisp_Object display;
7032 struct w32_display_info *dpyinfo = check_x_display_info (display);
7034 #if 0
7035 switch (dpyinfo->visual->class)
7037 case StaticGray: return (intern ("static-gray"));
7038 case GrayScale: return (intern ("gray-scale"));
7039 case StaticColor: return (intern ("static-color"));
7040 case PseudoColor: return (intern ("pseudo-color"));
7041 case TrueColor: return (intern ("true-color"));
7042 case DirectColor: return (intern ("direct-color"));
7043 default:
7044 error ("Display has an unknown visual class");
7046 #endif
7048 error ("Display has an unknown visual class");
7051 DEFUN ("x-display-save-under", Fx_display_save_under,
7052 Sx_display_save_under, 0, 1, 0,
7053 "Returns t if the display DISPLAY supports the save-under feature.\n\
7054 The optional argument DISPLAY specifies which display to ask about.\n\
7055 DISPLAY should be either a frame or a display name (a string).\n\
7056 If omitted or nil, that stands for the selected frame's display.")
7057 (display)
7058 Lisp_Object display;
7060 return Qnil;
7064 x_pixel_width (f)
7065 register struct frame *f;
7067 return PIXEL_WIDTH (f);
7071 x_pixel_height (f)
7072 register struct frame *f;
7074 return PIXEL_HEIGHT (f);
7078 x_char_width (f)
7079 register struct frame *f;
7081 return FONT_WIDTH (f->output_data.w32->font);
7085 x_char_height (f)
7086 register struct frame *f;
7088 return f->output_data.w32->line_height;
7092 x_screen_planes (f)
7093 register struct frame *f;
7095 return FRAME_W32_DISPLAY_INFO (f)->n_planes;
7098 /* Return the display structure for the display named NAME.
7099 Open a new connection if necessary. */
7101 struct w32_display_info *
7102 x_display_info_for_name (name)
7103 Lisp_Object name;
7105 Lisp_Object names;
7106 struct w32_display_info *dpyinfo;
7108 CHECK_STRING (name, 0);
7110 for (dpyinfo = &one_w32_display_info, names = w32_display_name_list;
7111 dpyinfo;
7112 dpyinfo = dpyinfo->next, names = XCDR (names))
7114 Lisp_Object tem;
7115 tem = Fstring_equal (XCAR (XCAR (names)), name);
7116 if (!NILP (tem))
7117 return dpyinfo;
7120 /* Use this general default value to start with. */
7121 Vx_resource_name = Vinvocation_name;
7123 validate_x_resource_name ();
7125 dpyinfo = w32_term_init (name, (unsigned char *)0,
7126 (char *) XSTRING (Vx_resource_name)->data);
7128 if (dpyinfo == 0)
7129 error ("Cannot connect to server %s", XSTRING (name)->data);
7131 w32_in_use = 1;
7132 XSETFASTINT (Vwindow_system_version, 3);
7134 return dpyinfo;
7137 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
7138 1, 3, 0, "Open a connection to a server.\n\
7139 DISPLAY is the name of the display to connect to.\n\
7140 Optional second arg XRM-STRING is a string of resources in xrdb format.\n\
7141 If the optional third arg MUST-SUCCEED is non-nil,\n\
7142 terminate Emacs if we can't open the connection.")
7143 (display, xrm_string, must_succeed)
7144 Lisp_Object display, xrm_string, must_succeed;
7146 unsigned char *xrm_option;
7147 struct w32_display_info *dpyinfo;
7149 CHECK_STRING (display, 0);
7150 if (! NILP (xrm_string))
7151 CHECK_STRING (xrm_string, 1);
7153 if (! EQ (Vwindow_system, intern ("w32")))
7154 error ("Not using Microsoft Windows");
7156 /* Allow color mapping to be defined externally; first look in user's
7157 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
7159 Lisp_Object color_file;
7160 struct gcpro gcpro1;
7162 color_file = build_string("~/rgb.txt");
7164 GCPRO1 (color_file);
7166 if (NILP (Ffile_readable_p (color_file)))
7167 color_file =
7168 Fexpand_file_name (build_string ("rgb.txt"),
7169 Fsymbol_value (intern ("data-directory")));
7171 Vw32_color_map = Fw32_load_color_file (color_file);
7173 UNGCPRO;
7175 if (NILP (Vw32_color_map))
7176 Vw32_color_map = Fw32_default_color_map ();
7178 if (! NILP (xrm_string))
7179 xrm_option = (unsigned char *) XSTRING (xrm_string)->data;
7180 else
7181 xrm_option = (unsigned char *) 0;
7183 /* Use this general default value to start with. */
7184 /* First remove .exe suffix from invocation-name - it looks ugly. */
7186 char basename[ MAX_PATH ], *str;
7188 strcpy (basename, XSTRING (Vinvocation_name)->data);
7189 str = strrchr (basename, '.');
7190 if (str) *str = 0;
7191 Vinvocation_name = build_string (basename);
7193 Vx_resource_name = Vinvocation_name;
7195 validate_x_resource_name ();
7197 /* This is what opens the connection and sets x_current_display.
7198 This also initializes many symbols, such as those used for input. */
7199 dpyinfo = w32_term_init (display, xrm_option,
7200 (char *) XSTRING (Vx_resource_name)->data);
7202 if (dpyinfo == 0)
7204 if (!NILP (must_succeed))
7205 fatal ("Cannot connect to server %s.\n",
7206 XSTRING (display)->data);
7207 else
7208 error ("Cannot connect to server %s", XSTRING (display)->data);
7211 w32_in_use = 1;
7213 XSETFASTINT (Vwindow_system_version, 3);
7214 return Qnil;
7217 DEFUN ("x-close-connection", Fx_close_connection,
7218 Sx_close_connection, 1, 1, 0,
7219 "Close the connection to DISPLAY's server.\n\
7220 For DISPLAY, specify either a frame or a display name (a string).\n\
7221 If DISPLAY is nil, that stands for the selected frame's display.")
7222 (display)
7223 Lisp_Object display;
7225 struct w32_display_info *dpyinfo = check_x_display_info (display);
7226 int i;
7228 if (dpyinfo->reference_count > 0)
7229 error ("Display still has frames on it");
7231 BLOCK_INPUT;
7232 /* Free the fonts in the font table. */
7233 for (i = 0; i < dpyinfo->n_fonts; i++)
7234 if (dpyinfo->font_table[i].name)
7236 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
7237 xfree (dpyinfo->font_table[i].full_name);
7238 xfree (dpyinfo->font_table[i].name);
7239 w32_unload_font (dpyinfo, dpyinfo->font_table[i].font);
7241 x_destroy_all_bitmaps (dpyinfo);
7243 x_delete_display (dpyinfo);
7244 UNBLOCK_INPUT;
7246 return Qnil;
7249 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
7250 "Return the list of display names that Emacs has connections to.")
7253 Lisp_Object tail, result;
7255 result = Qnil;
7256 for (tail = w32_display_name_list; ! NILP (tail); tail = XCDR (tail))
7257 result = Fcons (XCAR (XCAR (tail)), result);
7259 return result;
7262 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
7263 "If ON is non-nil, report errors as soon as the erring request is made.\n\
7264 If ON is nil, allow buffering of requests.\n\
7265 This is a noop on W32 systems.\n\
7266 The optional second argument DISPLAY specifies which display to act on.\n\
7267 DISPLAY should be either a frame or a display name (a string).\n\
7268 If DISPLAY is omitted or nil, that stands for the selected frame's display.")
7269 (on, display)
7270 Lisp_Object display, on;
7272 return Qnil;
7277 /***********************************************************************
7278 Image types
7279 ***********************************************************************/
7281 /* Value is the number of elements of vector VECTOR. */
7283 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
7285 /* List of supported image types. Use define_image_type to add new
7286 types. Use lookup_image_type to find a type for a given symbol. */
7288 static struct image_type *image_types;
7290 /* The symbol `image' which is the car of the lists used to represent
7291 images in Lisp. */
7293 extern Lisp_Object Qimage;
7295 /* The symbol `xbm' which is used as the type symbol for XBM images. */
7297 Lisp_Object Qxbm;
7299 /* Keywords. */
7301 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
7302 extern Lisp_Object QCdata;
7303 Lisp_Object QCtype, QCascent, QCmargin, QCrelief;
7304 Lisp_Object QCalgorithm, QCcolor_symbols, QCheuristic_mask;
7305 Lisp_Object QCindex;
7307 /* Other symbols. */
7309 Lisp_Object Qlaplace;
7311 /* Time in seconds after which images should be removed from the cache
7312 if not displayed. */
7314 Lisp_Object Vimage_cache_eviction_delay;
7316 /* Function prototypes. */
7318 static void define_image_type P_ ((struct image_type *type));
7319 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
7320 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
7321 static void x_laplace P_ ((struct frame *, struct image *));
7322 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
7323 Lisp_Object));
7326 /* Define a new image type from TYPE. This adds a copy of TYPE to
7327 image_types and adds the symbol *TYPE->type to Vimage_types. */
7329 static void
7330 define_image_type (type)
7331 struct image_type *type;
7333 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
7334 The initialized data segment is read-only. */
7335 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
7336 bcopy (type, p, sizeof *p);
7337 p->next = image_types;
7338 image_types = p;
7339 Vimage_types = Fcons (*p->type, Vimage_types);
7343 /* Look up image type SYMBOL, and return a pointer to its image_type
7344 structure. Value is null if SYMBOL is not a known image type. */
7346 static INLINE struct image_type *
7347 lookup_image_type (symbol)
7348 Lisp_Object symbol;
7350 struct image_type *type;
7352 for (type = image_types; type; type = type->next)
7353 if (EQ (symbol, *type->type))
7354 break;
7356 return type;
7360 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
7361 valid image specification is a list whose car is the symbol
7362 `image', and whose rest is a property list. The property list must
7363 contain a value for key `:type'. That value must be the name of a
7364 supported image type. The rest of the property list depends on the
7365 image type. */
7368 valid_image_p (object)
7369 Lisp_Object object;
7371 int valid_p = 0;
7373 if (CONSP (object) && EQ (XCAR (object), Qimage))
7375 Lisp_Object symbol = Fplist_get (XCDR (object), QCtype);
7376 struct image_type *type = lookup_image_type (symbol);
7378 if (type)
7379 valid_p = type->valid_p (object);
7382 return valid_p;
7386 /* Log error message with format string FORMAT and argument ARG.
7387 Signaling an error, e.g. when an image cannot be loaded, is not a
7388 good idea because this would interrupt redisplay, and the error
7389 message display would lead to another redisplay. This function
7390 therefore simply displays a message. */
7392 static void
7393 image_error (format, arg1, arg2)
7394 char *format;
7395 Lisp_Object arg1, arg2;
7397 add_to_log (format, arg1, arg2);
7402 /***********************************************************************
7403 Image specifications
7404 ***********************************************************************/
7406 enum image_value_type
7408 IMAGE_DONT_CHECK_VALUE_TYPE,
7409 IMAGE_STRING_VALUE,
7410 IMAGE_SYMBOL_VALUE,
7411 IMAGE_POSITIVE_INTEGER_VALUE,
7412 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
7413 IMAGE_ASCENT_VALUE,
7414 IMAGE_INTEGER_VALUE,
7415 IMAGE_FUNCTION_VALUE,
7416 IMAGE_NUMBER_VALUE,
7417 IMAGE_BOOL_VALUE
7420 /* Structure used when parsing image specifications. */
7422 struct image_keyword
7424 /* Name of keyword. */
7425 char *name;
7427 /* The type of value allowed. */
7428 enum image_value_type type;
7430 /* Non-zero means key must be present. */
7431 int mandatory_p;
7433 /* Used to recognize duplicate keywords in a property list. */
7434 int count;
7436 /* The value that was found. */
7437 Lisp_Object value;
7441 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
7442 int, Lisp_Object));
7443 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
7446 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
7447 has the format (image KEYWORD VALUE ...). One of the keyword/
7448 value pairs must be `:type TYPE'. KEYWORDS is a vector of
7449 image_keywords structures of size NKEYWORDS describing other
7450 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
7452 static int
7453 parse_image_spec (spec, keywords, nkeywords, type)
7454 Lisp_Object spec;
7455 struct image_keyword *keywords;
7456 int nkeywords;
7457 Lisp_Object type;
7459 int i;
7460 Lisp_Object plist;
7462 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
7463 return 0;
7465 plist = XCDR (spec);
7466 while (CONSP (plist))
7468 Lisp_Object key, value;
7470 /* First element of a pair must be a symbol. */
7471 key = XCAR (plist);
7472 plist = XCDR (plist);
7473 if (!SYMBOLP (key))
7474 return 0;
7476 /* There must follow a value. */
7477 if (!CONSP (plist))
7478 return 0;
7479 value = XCAR (plist);
7480 plist = XCDR (plist);
7482 /* Find key in KEYWORDS. Error if not found. */
7483 for (i = 0; i < nkeywords; ++i)
7484 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0)
7485 break;
7487 if (i == nkeywords)
7488 continue;
7490 /* Record that we recognized the keyword. If a keywords
7491 was found more than once, it's an error. */
7492 keywords[i].value = value;
7493 ++keywords[i].count;
7495 if (keywords[i].count > 1)
7496 return 0;
7498 /* Check type of value against allowed type. */
7499 switch (keywords[i].type)
7501 case IMAGE_STRING_VALUE:
7502 if (!STRINGP (value))
7503 return 0;
7504 break;
7506 case IMAGE_SYMBOL_VALUE:
7507 if (!SYMBOLP (value))
7508 return 0;
7509 break;
7511 case IMAGE_POSITIVE_INTEGER_VALUE:
7512 if (!INTEGERP (value) || XINT (value) <= 0)
7513 return 0;
7514 break;
7516 case IMAGE_ASCENT_VALUE:
7517 if (SYMBOLP (value) && EQ (value, Qcenter))
7518 break;
7519 else if (INTEGERP (value)
7520 && XINT (value) >= 0
7521 && XINT (value) <= 100)
7522 break;
7523 return 0;
7525 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
7526 if (!INTEGERP (value) || XINT (value) < 0)
7527 return 0;
7528 break;
7530 case IMAGE_DONT_CHECK_VALUE_TYPE:
7531 break;
7533 case IMAGE_FUNCTION_VALUE:
7534 value = indirect_function (value);
7535 if (SUBRP (value)
7536 || COMPILEDP (value)
7537 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
7538 break;
7539 return 0;
7541 case IMAGE_NUMBER_VALUE:
7542 if (!INTEGERP (value) && !FLOATP (value))
7543 return 0;
7544 break;
7546 case IMAGE_INTEGER_VALUE:
7547 if (!INTEGERP (value))
7548 return 0;
7549 break;
7551 case IMAGE_BOOL_VALUE:
7552 if (!NILP (value) && !EQ (value, Qt))
7553 return 0;
7554 break;
7556 default:
7557 abort ();
7558 break;
7561 if (EQ (key, QCtype) && !EQ (type, value))
7562 return 0;
7565 /* Check that all mandatory fields are present. */
7566 for (i = 0; i < nkeywords; ++i)
7567 if (keywords[i].mandatory_p && keywords[i].count == 0)
7568 return 0;
7570 return NILP (plist);
7574 /* Return the value of KEY in image specification SPEC. Value is nil
7575 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
7576 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
7578 static Lisp_Object
7579 image_spec_value (spec, key, found)
7580 Lisp_Object spec, key;
7581 int *found;
7583 Lisp_Object tail;
7585 xassert (valid_image_p (spec));
7587 for (tail = XCDR (spec);
7588 CONSP (tail) && CONSP (XCDR (tail));
7589 tail = XCDR (XCDR (tail)))
7591 if (EQ (XCAR (tail), key))
7593 if (found)
7594 *found = 1;
7595 return XCAR (XCDR (tail));
7599 if (found)
7600 *found = 0;
7601 return Qnil;
7607 /***********************************************************************
7608 Image type independent image structures
7609 ***********************************************************************/
7611 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
7612 static void free_image P_ ((struct frame *f, struct image *img));
7615 /* Allocate and return a new image structure for image specification
7616 SPEC. SPEC has a hash value of HASH. */
7618 static struct image *
7619 make_image (spec, hash)
7620 Lisp_Object spec;
7621 unsigned hash;
7623 struct image *img = (struct image *) xmalloc (sizeof *img);
7625 xassert (valid_image_p (spec));
7626 bzero (img, sizeof *img);
7627 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
7628 xassert (img->type != NULL);
7629 img->spec = spec;
7630 img->data.lisp_val = Qnil;
7631 img->ascent = DEFAULT_IMAGE_ASCENT;
7632 img->hash = hash;
7633 return img;
7637 /* Free image IMG which was used on frame F, including its resources. */
7639 static void
7640 free_image (f, img)
7641 struct frame *f;
7642 struct image *img;
7644 if (img)
7646 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7648 /* Remove IMG from the hash table of its cache. */
7649 if (img->prev)
7650 img->prev->next = img->next;
7651 else
7652 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
7654 if (img->next)
7655 img->next->prev = img->prev;
7657 c->images[img->id] = NULL;
7659 /* Free resources, then free IMG. */
7660 img->type->free (f, img);
7661 xfree (img);
7666 /* Prepare image IMG for display on frame F. Must be called before
7667 drawing an image. */
7669 void
7670 prepare_image_for_display (f, img)
7671 struct frame *f;
7672 struct image *img;
7674 EMACS_TIME t;
7676 /* We're about to display IMG, so set its timestamp to `now'. */
7677 EMACS_GET_TIME (t);
7678 img->timestamp = EMACS_SECS (t);
7680 /* If IMG doesn't have a pixmap yet, load it now, using the image
7681 type dependent loader function. */
7682 if (img->pixmap == 0 && !img->load_failed_p)
7683 img->load_failed_p = img->type->load (f, img) == 0;
7687 /* Value is the number of pixels for the ascent of image IMG when
7688 drawn in face FACE. */
7691 image_ascent (img, face)
7692 struct image *img;
7693 struct face *face;
7695 int height = img->height + img->margin;
7696 int ascent;
7698 if (img->ascent == CENTERED_IMAGE_ASCENT)
7700 if (face->font)
7701 ascent = height / 2 - (FONT_DESCENT(face->font)
7702 - FONT_BASE(face->font)) / 2;
7703 else
7704 ascent = height / 2;
7706 else
7707 ascent = height * img->ascent / 100.0;
7709 return ascent;
7714 /***********************************************************************
7715 Helper functions for X image types
7716 ***********************************************************************/
7718 static void x_clear_image P_ ((struct frame *f, struct image *img));
7719 static unsigned long x_alloc_image_color P_ ((struct frame *f,
7720 struct image *img,
7721 Lisp_Object color_name,
7722 unsigned long dflt));
7724 /* Free X resources of image IMG which is used on frame F. */
7726 static void
7727 x_clear_image (f, img)
7728 struct frame *f;
7729 struct image *img;
7731 #if 0 /* NTEMACS_TODO: W32 image support */
7733 if (img->pixmap)
7735 BLOCK_INPUT;
7736 XFreePixmap (NULL, img->pixmap);
7737 img->pixmap = 0;
7738 UNBLOCK_INPUT;
7741 if (img->ncolors)
7743 int class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
7745 /* If display has an immutable color map, freeing colors is not
7746 necessary and some servers don't allow it. So don't do it. */
7747 if (class != StaticColor
7748 && class != StaticGray
7749 && class != TrueColor)
7751 Colormap cmap;
7752 BLOCK_INPUT;
7753 cmap = DefaultColormapOfScreen (FRAME_W32_DISPLAY_INFO (f)->screen);
7754 XFreeColors (FRAME_W32_DISPLAY (f), cmap, img->colors,
7755 img->ncolors, 0);
7756 UNBLOCK_INPUT;
7759 xfree (img->colors);
7760 img->colors = NULL;
7761 img->ncolors = 0;
7763 #endif
7767 /* Allocate color COLOR_NAME for image IMG on frame F. If color
7768 cannot be allocated, use DFLT. Add a newly allocated color to
7769 IMG->colors, so that it can be freed again. Value is the pixel
7770 color. */
7772 static unsigned long
7773 x_alloc_image_color (f, img, color_name, dflt)
7774 struct frame *f;
7775 struct image *img;
7776 Lisp_Object color_name;
7777 unsigned long dflt;
7779 #if 0 /* NTEMACS_TODO: allocing colors. */
7780 XColor color;
7781 unsigned long result;
7783 xassert (STRINGP (color_name));
7785 if (w32_defined_color (f, XSTRING (color_name)->data, &color, 1))
7787 /* This isn't called frequently so we get away with simply
7788 reallocating the color vector to the needed size, here. */
7789 ++img->ncolors;
7790 img->colors =
7791 (unsigned long *) xrealloc (img->colors,
7792 img->ncolors * sizeof *img->colors);
7793 img->colors[img->ncolors - 1] = color.pixel;
7794 result = color.pixel;
7796 else
7797 result = dflt;
7798 return result;
7799 #endif
7800 return 0;
7805 /***********************************************************************
7806 Image Cache
7807 ***********************************************************************/
7809 static void cache_image P_ ((struct frame *f, struct image *img));
7812 /* Return a new, initialized image cache that is allocated from the
7813 heap. Call free_image_cache to free an image cache. */
7815 struct image_cache *
7816 make_image_cache ()
7818 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
7819 int size;
7821 bzero (c, sizeof *c);
7822 c->size = 50;
7823 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
7824 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
7825 c->buckets = (struct image **) xmalloc (size);
7826 bzero (c->buckets, size);
7827 return c;
7831 /* Free image cache of frame F. Be aware that X frames share images
7832 caches. */
7834 void
7835 free_image_cache (f)
7836 struct frame *f;
7838 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7839 if (c)
7841 int i;
7843 /* Cache should not be referenced by any frame when freed. */
7844 xassert (c->refcount == 0);
7846 for (i = 0; i < c->used; ++i)
7847 free_image (f, c->images[i]);
7848 xfree (c->images);
7849 xfree (c);
7850 xfree (c->buckets);
7851 FRAME_X_IMAGE_CACHE (f) = NULL;
7856 /* Clear image cache of frame F. FORCE_P non-zero means free all
7857 images. FORCE_P zero means clear only images that haven't been
7858 displayed for some time. Should be called from time to time to
7859 reduce the number of loaded images. If image-eviction-seconds is
7860 non-nil, this frees images in the cache which weren't displayed for
7861 at least that many seconds. */
7863 void
7864 clear_image_cache (f, force_p)
7865 struct frame *f;
7866 int force_p;
7868 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7870 if (c && INTEGERP (Vimage_cache_eviction_delay))
7872 EMACS_TIME t;
7873 unsigned long old;
7874 int i, any_freed_p = 0;
7876 EMACS_GET_TIME (t);
7877 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
7879 for (i = 0; i < c->used; ++i)
7881 struct image *img = c->images[i];
7882 if (img != NULL
7883 && (force_p
7884 || (img->timestamp > old)))
7886 free_image (f, img);
7887 any_freed_p = 1;
7891 /* We may be clearing the image cache because, for example,
7892 Emacs was iconified for a longer period of time. In that
7893 case, current matrices may still contain references to
7894 images freed above. So, clear these matrices. */
7895 if (any_freed_p)
7897 clear_current_matrices (f);
7898 ++windows_or_buffers_changed;
7904 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
7905 0, 1, 0,
7906 "Clear the image cache of FRAME.\n\
7907 FRAME nil or omitted means use the selected frame.\n\
7908 FRAME t means clear the image caches of all frames.")
7909 (frame)
7910 Lisp_Object frame;
7912 if (EQ (frame, Qt))
7914 Lisp_Object tail;
7916 FOR_EACH_FRAME (tail, frame)
7917 if (FRAME_W32_P (XFRAME (frame)))
7918 clear_image_cache (XFRAME (frame), 1);
7920 else
7921 clear_image_cache (check_x_frame (frame), 1);
7923 return Qnil;
7927 /* Return the id of image with Lisp specification SPEC on frame F.
7928 SPEC must be a valid Lisp image specification (see valid_image_p). */
7931 lookup_image (f, spec)
7932 struct frame *f;
7933 Lisp_Object spec;
7935 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7936 struct image *img;
7937 int i;
7938 unsigned hash;
7939 struct gcpro gcpro1;
7940 EMACS_TIME now;
7942 /* F must be a window-system frame, and SPEC must be a valid image
7943 specification. */
7944 xassert (FRAME_WINDOW_P (f));
7945 xassert (valid_image_p (spec));
7947 GCPRO1 (spec);
7949 /* Look up SPEC in the hash table of the image cache. */
7950 hash = sxhash (spec, 0);
7951 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
7953 for (img = c->buckets[i]; img; img = img->next)
7954 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
7955 break;
7957 /* If not found, create a new image and cache it. */
7958 if (img == NULL)
7960 img = make_image (spec, hash);
7961 cache_image (f, img);
7962 img->load_failed_p = img->type->load (f, img) == 0;
7963 xassert (!interrupt_input_blocked);
7965 /* If we can't load the image, and we don't have a width and
7966 height, use some arbitrary width and height so that we can
7967 draw a rectangle for it. */
7968 if (img->load_failed_p)
7970 Lisp_Object value;
7972 value = image_spec_value (spec, QCwidth, NULL);
7973 img->width = (INTEGERP (value)
7974 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
7975 value = image_spec_value (spec, QCheight, NULL);
7976 img->height = (INTEGERP (value)
7977 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
7979 else
7981 /* Handle image type independent image attributes
7982 `:ascent PERCENT', `:margin MARGIN', `:relief RELIEF'. */
7983 Lisp_Object ascent, margin, relief, algorithm, heuristic_mask;
7984 Lisp_Object file;
7986 ascent = image_spec_value (spec, QCascent, NULL);
7987 if (INTEGERP (ascent))
7988 img->ascent = XFASTINT (ascent);
7989 else if (EQ (ascent, Qcenter))
7990 img->ascent = CENTERED_IMAGE_ASCENT;
7992 margin = image_spec_value (spec, QCmargin, NULL);
7993 if (INTEGERP (margin) && XINT (margin) >= 0)
7994 img->margin = XFASTINT (margin);
7996 relief = image_spec_value (spec, QCrelief, NULL);
7997 if (INTEGERP (relief))
7999 img->relief = XINT (relief);
8000 img->margin += abs (img->relief);
8003 /* Should we apply a Laplace edge-detection algorithm? */
8004 algorithm = image_spec_value (spec, QCalgorithm, NULL);
8005 if (img->pixmap && EQ (algorithm, Qlaplace))
8006 x_laplace (f, img);
8008 /* Should we built a mask heuristically? */
8009 heuristic_mask = image_spec_value (spec, QCheuristic_mask, NULL);
8010 if (img->pixmap && !img->mask && !NILP (heuristic_mask))
8011 x_build_heuristic_mask (f, img, heuristic_mask);
8015 /* We're using IMG, so set its timestamp to `now'. */
8016 EMACS_GET_TIME (now);
8017 img->timestamp = EMACS_SECS (now);
8019 UNGCPRO;
8021 /* Value is the image id. */
8022 return img->id;
8026 /* Cache image IMG in the image cache of frame F. */
8028 static void
8029 cache_image (f, img)
8030 struct frame *f;
8031 struct image *img;
8033 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8034 int i;
8036 /* Find a free slot in c->images. */
8037 for (i = 0; i < c->used; ++i)
8038 if (c->images[i] == NULL)
8039 break;
8041 /* If no free slot found, maybe enlarge c->images. */
8042 if (i == c->used && c->used == c->size)
8044 c->size *= 2;
8045 c->images = (struct image **) xrealloc (c->images,
8046 c->size * sizeof *c->images);
8049 /* Add IMG to c->images, and assign IMG an id. */
8050 c->images[i] = img;
8051 img->id = i;
8052 if (i == c->used)
8053 ++c->used;
8055 /* Add IMG to the cache's hash table. */
8056 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
8057 img->next = c->buckets[i];
8058 if (img->next)
8059 img->next->prev = img;
8060 img->prev = NULL;
8061 c->buckets[i] = img;
8065 /* Call FN on every image in the image cache of frame F. Used to mark
8066 Lisp Objects in the image cache. */
8068 void
8069 forall_images_in_image_cache (f, fn)
8070 struct frame *f;
8071 void (*fn) P_ ((struct image *img));
8073 if (FRAME_LIVE_P (f) && FRAME_W32_P (f))
8075 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8076 if (c)
8078 int i;
8079 for (i = 0; i < c->used; ++i)
8080 if (c->images[i])
8081 fn (c->images[i]);
8088 /***********************************************************************
8089 W32 support code
8090 ***********************************************************************/
8092 #if 0 /* NTEMACS_TODO: W32 specific image code. */
8094 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
8095 XImage **, Pixmap *));
8096 static void x_destroy_x_image P_ ((XImage *));
8097 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
8100 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
8101 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
8102 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
8103 via xmalloc. Print error messages via image_error if an error
8104 occurs. Value is non-zero if successful. */
8106 static int
8107 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
8108 struct frame *f;
8109 int width, height, depth;
8110 XImage **ximg;
8111 Pixmap *pixmap;
8113 #if 0 /* NTEMACS_TODO: Image support for W32 */
8114 Display *display = FRAME_W32_DISPLAY (f);
8115 Screen *screen = FRAME_X_SCREEN (f);
8116 Window window = FRAME_W32_WINDOW (f);
8118 xassert (interrupt_input_blocked);
8120 if (depth <= 0)
8121 depth = DefaultDepthOfScreen (screen);
8122 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
8123 depth, ZPixmap, 0, NULL, width, height,
8124 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
8125 if (*ximg == NULL)
8127 image_error ("Unable to allocate X image", Qnil, Qnil);
8128 return 0;
8131 /* Allocate image raster. */
8132 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
8134 /* Allocate a pixmap of the same size. */
8135 *pixmap = XCreatePixmap (display, window, width, height, depth);
8136 if (*pixmap == 0)
8138 x_destroy_x_image (*ximg);
8139 *ximg = NULL;
8140 image_error ("Unable to create X pixmap", Qnil, Qnil);
8141 return 0;
8143 #endif
8144 return 1;
8148 /* Destroy XImage XIMG. Free XIMG->data. */
8150 static void
8151 x_destroy_x_image (ximg)
8152 XImage *ximg;
8154 xassert (interrupt_input_blocked);
8155 if (ximg)
8157 xfree (ximg->data);
8158 ximg->data = NULL;
8159 XDestroyImage (ximg);
8164 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
8165 are width and height of both the image and pixmap. */
8167 static void
8168 x_put_x_image (f, ximg, pixmap, width, height)
8169 struct frame *f;
8170 XImage *ximg;
8171 Pixmap pixmap;
8173 GC gc;
8175 xassert (interrupt_input_blocked);
8176 gc = XCreateGC (NULL, pixmap, 0, NULL);
8177 XPutImage (NULL, pixmap, gc, ximg, 0, 0, 0, 0, width, height);
8178 XFreeGC (NULL, gc);
8181 #endif
8184 /***********************************************************************
8185 Searching files
8186 ***********************************************************************/
8188 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
8190 /* Find image file FILE. Look in data-directory, then
8191 x-bitmap-file-path. Value is the full name of the file found, or
8192 nil if not found. */
8194 static Lisp_Object
8195 x_find_image_file (file)
8196 Lisp_Object file;
8198 Lisp_Object file_found, search_path;
8199 struct gcpro gcpro1, gcpro2;
8200 int fd;
8202 file_found = Qnil;
8203 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
8204 GCPRO2 (file_found, search_path);
8206 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
8207 fd = openp (search_path, file, "", &file_found, 0);
8209 if (fd < 0)
8210 file_found = Qnil;
8211 else
8212 close (fd);
8214 UNGCPRO;
8215 return file_found;
8220 /***********************************************************************
8221 XBM images
8222 ***********************************************************************/
8224 static int xbm_load P_ ((struct frame *f, struct image *img));
8225 static int xbm_load_image_from_file P_ ((struct frame *f, struct image *img,
8226 Lisp_Object file));
8227 static int xbm_image_p P_ ((Lisp_Object object));
8228 static int xbm_read_bitmap_file_data P_ ((char *, int *, int *,
8229 unsigned char **));
8232 /* Indices of image specification fields in xbm_format, below. */
8234 enum xbm_keyword_index
8236 XBM_TYPE,
8237 XBM_FILE,
8238 XBM_WIDTH,
8239 XBM_HEIGHT,
8240 XBM_DATA,
8241 XBM_FOREGROUND,
8242 XBM_BACKGROUND,
8243 XBM_ASCENT,
8244 XBM_MARGIN,
8245 XBM_RELIEF,
8246 XBM_ALGORITHM,
8247 XBM_HEURISTIC_MASK,
8248 XBM_LAST
8251 /* Vector of image_keyword structures describing the format
8252 of valid XBM image specifications. */
8254 static struct image_keyword xbm_format[XBM_LAST] =
8256 {":type", IMAGE_SYMBOL_VALUE, 1},
8257 {":file", IMAGE_STRING_VALUE, 0},
8258 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8259 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8260 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8261 {":foreground", IMAGE_STRING_VALUE, 0},
8262 {":background", IMAGE_STRING_VALUE, 0},
8263 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
8264 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8265 {":relief", IMAGE_INTEGER_VALUE, 0},
8266 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8267 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8270 /* Structure describing the image type XBM. */
8272 static struct image_type xbm_type =
8274 &Qxbm,
8275 xbm_image_p,
8276 xbm_load,
8277 x_clear_image,
8278 NULL
8281 /* Tokens returned from xbm_scan. */
8283 enum xbm_token
8285 XBM_TK_IDENT = 256,
8286 XBM_TK_NUMBER
8290 /* Return non-zero if OBJECT is a valid XBM-type image specification.
8291 A valid specification is a list starting with the symbol `image'
8292 The rest of the list is a property list which must contain an
8293 entry `:type xbm..
8295 If the specification specifies a file to load, it must contain
8296 an entry `:file FILENAME' where FILENAME is a string.
8298 If the specification is for a bitmap loaded from memory it must
8299 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
8300 WIDTH and HEIGHT are integers > 0. DATA may be:
8302 1. a string large enough to hold the bitmap data, i.e. it must
8303 have a size >= (WIDTH + 7) / 8 * HEIGHT
8305 2. a bool-vector of size >= WIDTH * HEIGHT
8307 3. a vector of strings or bool-vectors, one for each line of the
8308 bitmap.
8310 Both the file and data forms may contain the additional entries
8311 `:background COLOR' and `:foreground COLOR'. If not present,
8312 foreground and background of the frame on which the image is
8313 displayed, is used. */
8315 static int
8316 xbm_image_p (object)
8317 Lisp_Object object;
8319 struct image_keyword kw[XBM_LAST];
8321 bcopy (xbm_format, kw, sizeof kw);
8322 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
8323 return 0;
8325 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
8327 if (kw[XBM_FILE].count)
8329 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
8330 return 0;
8332 else
8334 Lisp_Object data;
8335 int width, height;
8337 /* Entries for `:width', `:height' and `:data' must be present. */
8338 if (!kw[XBM_WIDTH].count
8339 || !kw[XBM_HEIGHT].count
8340 || !kw[XBM_DATA].count)
8341 return 0;
8343 data = kw[XBM_DATA].value;
8344 width = XFASTINT (kw[XBM_WIDTH].value);
8345 height = XFASTINT (kw[XBM_HEIGHT].value);
8347 /* Check type of data, and width and height against contents of
8348 data. */
8349 if (VECTORP (data))
8351 int i;
8353 /* Number of elements of the vector must be >= height. */
8354 if (XVECTOR (data)->size < height)
8355 return 0;
8357 /* Each string or bool-vector in data must be large enough
8358 for one line of the image. */
8359 for (i = 0; i < height; ++i)
8361 Lisp_Object elt = XVECTOR (data)->contents[i];
8363 if (STRINGP (elt))
8365 if (XSTRING (elt)->size
8366 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
8367 return 0;
8369 else if (BOOL_VECTOR_P (elt))
8371 if (XBOOL_VECTOR (elt)->size < width)
8372 return 0;
8374 else
8375 return 0;
8378 else if (STRINGP (data))
8380 if (XSTRING (data)->size
8381 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
8382 return 0;
8384 else if (BOOL_VECTOR_P (data))
8386 if (XBOOL_VECTOR (data)->size < width * height)
8387 return 0;
8389 else
8390 return 0;
8393 /* Baseline must be a value between 0 and 100 (a percentage). */
8394 if (kw[XBM_ASCENT].count
8395 && XFASTINT (kw[XBM_ASCENT].value) > 100)
8396 return 0;
8398 return 1;
8402 /* Scan a bitmap file. FP is the stream to read from. Value is
8403 either an enumerator from enum xbm_token, or a character for a
8404 single-character token, or 0 at end of file. If scanning an
8405 identifier, store the lexeme of the identifier in SVAL. If
8406 scanning a number, store its value in *IVAL. */
8408 static int
8409 xbm_scan (fp, sval, ival)
8410 FILE *fp;
8411 char *sval;
8412 int *ival;
8414 int c;
8416 /* Skip white space. */
8417 while ((c = fgetc (fp)) != EOF && isspace (c))
8420 if (c == EOF)
8421 c = 0;
8422 else if (isdigit (c))
8424 int value = 0, digit;
8426 if (c == '0')
8428 c = fgetc (fp);
8429 if (c == 'x' || c == 'X')
8431 while ((c = fgetc (fp)) != EOF)
8433 if (isdigit (c))
8434 digit = c - '0';
8435 else if (c >= 'a' && c <= 'f')
8436 digit = c - 'a' + 10;
8437 else if (c >= 'A' && c <= 'F')
8438 digit = c - 'A' + 10;
8439 else
8440 break;
8441 value = 16 * value + digit;
8444 else if (isdigit (c))
8446 value = c - '0';
8447 while ((c = fgetc (fp)) != EOF
8448 && isdigit (c))
8449 value = 8 * value + c - '0';
8452 else
8454 value = c - '0';
8455 while ((c = fgetc (fp)) != EOF
8456 && isdigit (c))
8457 value = 10 * value + c - '0';
8460 if (c != EOF)
8461 ungetc (c, fp);
8462 *ival = value;
8463 c = XBM_TK_NUMBER;
8465 else if (isalpha (c) || c == '_')
8467 *sval++ = c;
8468 while ((c = fgetc (fp)) != EOF
8469 && (isalnum (c) || c == '_'))
8470 *sval++ = c;
8471 *sval = 0;
8472 if (c != EOF)
8473 ungetc (c, fp);
8474 c = XBM_TK_IDENT;
8477 return c;
8481 /* Replacement for XReadBitmapFileData which isn't available under old
8482 X versions. FILE is the name of the bitmap file to read. Set
8483 *WIDTH and *HEIGHT to the width and height of the image. Return in
8484 *DATA the bitmap data allocated with xmalloc. Value is non-zero if
8485 successful. */
8487 static int
8488 xbm_read_bitmap_file_data (file, width, height, data)
8489 char *file;
8490 int *width, *height;
8491 unsigned char **data;
8493 FILE *fp;
8494 char buffer[BUFSIZ];
8495 int padding_p = 0;
8496 int v10 = 0;
8497 int bytes_per_line, i, nbytes;
8498 unsigned char *p;
8499 int value;
8500 int LA1;
8502 #define match() \
8503 LA1 = xbm_scan (fp, buffer, &value)
8505 #define expect(TOKEN) \
8506 if (LA1 != (TOKEN)) \
8507 goto failure; \
8508 else \
8509 match ()
8511 #define expect_ident(IDENT) \
8512 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
8513 match (); \
8514 else \
8515 goto failure
8517 fp = fopen (file, "r");
8518 if (fp == NULL)
8519 return 0;
8521 *width = *height = -1;
8522 *data = NULL;
8523 LA1 = xbm_scan (fp, buffer, &value);
8525 /* Parse defines for width, height and hot-spots. */
8526 while (LA1 == '#')
8528 match ();
8529 expect_ident ("define");
8530 expect (XBM_TK_IDENT);
8532 if (LA1 == XBM_TK_NUMBER);
8534 char *p = strrchr (buffer, '_');
8535 p = p ? p + 1 : buffer;
8536 if (strcmp (p, "width") == 0)
8537 *width = value;
8538 else if (strcmp (p, "height") == 0)
8539 *height = value;
8541 expect (XBM_TK_NUMBER);
8544 if (*width < 0 || *height < 0)
8545 goto failure;
8547 /* Parse bits. Must start with `static'. */
8548 expect_ident ("static");
8549 if (LA1 == XBM_TK_IDENT)
8551 if (strcmp (buffer, "unsigned") == 0)
8553 match ();
8554 expect_ident ("char");
8556 else if (strcmp (buffer, "short") == 0)
8558 match ();
8559 v10 = 1;
8560 if (*width % 16 && *width % 16 < 9)
8561 padding_p = 1;
8563 else if (strcmp (buffer, "char") == 0)
8564 match ();
8565 else
8566 goto failure;
8568 else
8569 goto failure;
8571 expect (XBM_TK_IDENT);
8572 expect ('[');
8573 expect (']');
8574 expect ('=');
8575 expect ('{');
8577 bytes_per_line = (*width + 7) / 8 + padding_p;
8578 nbytes = bytes_per_line * *height;
8579 p = *data = (char *) xmalloc (nbytes);
8581 if (v10)
8584 for (i = 0; i < nbytes; i += 2)
8586 int val = value;
8587 expect (XBM_TK_NUMBER);
8589 *p++ = val;
8590 if (!padding_p || ((i + 2) % bytes_per_line))
8591 *p++ = value >> 8;
8593 if (LA1 == ',' || LA1 == '}')
8594 match ();
8595 else
8596 goto failure;
8599 else
8601 for (i = 0; i < nbytes; ++i)
8603 int val = value;
8604 expect (XBM_TK_NUMBER);
8606 *p++ = val;
8608 if (LA1 == ',' || LA1 == '}')
8609 match ();
8610 else
8611 goto failure;
8615 fclose (fp);
8616 return 1;
8618 failure:
8620 fclose (fp);
8621 if (*data)
8623 xfree (*data);
8624 *data = NULL;
8626 return 0;
8628 #undef match
8629 #undef expect
8630 #undef expect_ident
8634 /* Load XBM image IMG which will be displayed on frame F from file
8635 SPECIFIED_FILE. Value is non-zero if successful. */
8637 static int
8638 xbm_load_image_from_file (f, img, specified_file)
8639 struct frame *f;
8640 struct image *img;
8641 Lisp_Object specified_file;
8643 int rc;
8644 unsigned char *data;
8645 int success_p = 0;
8646 Lisp_Object file;
8647 struct gcpro gcpro1;
8649 xassert (STRINGP (specified_file));
8650 file = Qnil;
8651 GCPRO1 (file);
8653 file = x_find_image_file (specified_file);
8654 if (!STRINGP (file))
8656 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8657 UNGCPRO;
8658 return 0;
8661 rc = xbm_read_bitmap_file_data (XSTRING (file)->data, &img->width,
8662 &img->height, &data);
8663 if (rc)
8665 int depth = one_w32_display_info.n_cbits;
8666 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
8667 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
8668 Lisp_Object value;
8670 xassert (img->width > 0 && img->height > 0);
8672 /* Get foreground and background colors, maybe allocate colors. */
8673 value = image_spec_value (img->spec, QCforeground, NULL);
8674 if (!NILP (value))
8675 foreground = x_alloc_image_color (f, img, value, foreground);
8677 value = image_spec_value (img->spec, QCbackground, NULL);
8678 if (!NILP (value))
8679 background = x_alloc_image_color (f, img, value, background);
8681 #if 0 /* NTEMACS_TODO : Port image display to W32 */
8682 BLOCK_INPUT;
8683 img->pixmap
8684 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f),
8685 FRAME_W32_WINDOW (f),
8686 data,
8687 img->width, img->height,
8688 foreground, background,
8689 depth);
8690 xfree (data);
8692 if (img->pixmap == 0)
8694 x_clear_image (f, img);
8695 image_error ("Unable to create X pixmap for `%s'", file, Qnil);
8697 else
8698 success_p = 1;
8700 UNBLOCK_INPUT;
8701 #endif
8703 else
8704 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
8706 UNGCPRO;
8707 return success_p;
8711 /* Fill image IMG which is used on frame F with pixmap data. Value is
8712 non-zero if successful. */
8714 static int
8715 xbm_load (f, img)
8716 struct frame *f;
8717 struct image *img;
8719 int success_p = 0;
8720 Lisp_Object file_name;
8722 xassert (xbm_image_p (img->spec));
8724 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8725 file_name = image_spec_value (img->spec, QCfile, NULL);
8726 if (STRINGP (file_name))
8727 success_p = xbm_load_image_from_file (f, img, file_name);
8728 else
8730 struct image_keyword fmt[XBM_LAST];
8731 Lisp_Object data;
8732 int depth;
8733 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
8734 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
8735 char *bits;
8736 int parsed_p;
8738 /* Parse the list specification. */
8739 bcopy (xbm_format, fmt, sizeof fmt);
8740 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
8741 xassert (parsed_p);
8743 /* Get specified width, and height. */
8744 img->width = XFASTINT (fmt[XBM_WIDTH].value);
8745 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
8746 xassert (img->width > 0 && img->height > 0);
8748 BLOCK_INPUT;
8750 if (fmt[XBM_ASCENT].count)
8751 img->ascent = XFASTINT (fmt[XBM_ASCENT].value);
8753 /* Get foreground and background colors, maybe allocate colors. */
8754 if (fmt[XBM_FOREGROUND].count)
8755 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
8756 foreground);
8757 if (fmt[XBM_BACKGROUND].count)
8758 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
8759 background);
8761 /* Set bits to the bitmap image data. */
8762 data = fmt[XBM_DATA].value;
8763 if (VECTORP (data))
8765 int i;
8766 char *p;
8767 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
8769 p = bits = (char *) alloca (nbytes * img->height);
8770 for (i = 0; i < img->height; ++i, p += nbytes)
8772 Lisp_Object line = XVECTOR (data)->contents[i];
8773 if (STRINGP (line))
8774 bcopy (XSTRING (line)->data, p, nbytes);
8775 else
8776 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
8779 else if (STRINGP (data))
8780 bits = XSTRING (data)->data;
8781 else
8782 bits = XBOOL_VECTOR (data)->data;
8784 #if 0 /* NTEMACS_TODO : W32 XPM code */
8785 /* Create the pixmap. */
8786 depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
8787 img->pixmap
8788 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f),
8789 FRAME_W32_WINDOW (f),
8790 bits,
8791 img->width, img->height,
8792 foreground, background,
8793 depth);
8794 #endif /* NTEMACS_TODO */
8796 if (img->pixmap)
8797 success_p = 1;
8798 else
8800 image_error ("Unable to create pixmap for XBM image `%s'",
8801 img->spec, Qnil);
8802 x_clear_image (f, img);
8805 UNBLOCK_INPUT;
8808 return success_p;
8813 /***********************************************************************
8814 XPM images
8815 ***********************************************************************/
8817 #if HAVE_XPM
8819 static int xpm_image_p P_ ((Lisp_Object object));
8820 static int xpm_load P_ ((struct frame *f, struct image *img));
8821 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
8823 #include "X11/xpm.h"
8825 /* The symbol `xpm' identifying XPM-format images. */
8827 Lisp_Object Qxpm;
8829 /* Indices of image specification fields in xpm_format, below. */
8831 enum xpm_keyword_index
8833 XPM_TYPE,
8834 XPM_FILE,
8835 XPM_DATA,
8836 XPM_ASCENT,
8837 XPM_MARGIN,
8838 XPM_RELIEF,
8839 XPM_ALGORITHM,
8840 XPM_HEURISTIC_MASK,
8841 XPM_COLOR_SYMBOLS,
8842 XPM_LAST
8845 /* Vector of image_keyword structures describing the format
8846 of valid XPM image specifications. */
8848 static struct image_keyword xpm_format[XPM_LAST] =
8850 {":type", IMAGE_SYMBOL_VALUE, 1},
8851 {":file", IMAGE_STRING_VALUE, 0},
8852 {":data", IMAGE_STRING_VALUE, 0},
8853 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
8854 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8855 {":relief", IMAGE_INTEGER_VALUE, 0},
8856 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8857 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8858 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8861 /* Structure describing the image type XBM. */
8863 static struct image_type xpm_type =
8865 &Qxpm,
8866 xpm_image_p,
8867 xpm_load,
8868 x_clear_image,
8869 NULL
8873 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
8874 for XPM images. Such a list must consist of conses whose car and
8875 cdr are strings. */
8877 static int
8878 xpm_valid_color_symbols_p (color_symbols)
8879 Lisp_Object color_symbols;
8881 while (CONSP (color_symbols))
8883 Lisp_Object sym = XCAR (color_symbols);
8884 if (!CONSP (sym)
8885 || !STRINGP (XCAR (sym))
8886 || !STRINGP (XCDR (sym)))
8887 break;
8888 color_symbols = XCDR (color_symbols);
8891 return NILP (color_symbols);
8895 /* Value is non-zero if OBJECT is a valid XPM image specification. */
8897 static int
8898 xpm_image_p (object)
8899 Lisp_Object object;
8901 struct image_keyword fmt[XPM_LAST];
8902 bcopy (xpm_format, fmt, sizeof fmt);
8903 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
8904 /* Either `:file' or `:data' must be present. */
8905 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
8906 /* Either no `:color-symbols' or it's a list of conses
8907 whose car and cdr are strings. */
8908 && (fmt[XPM_COLOR_SYMBOLS].count == 0
8909 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value))
8910 && (fmt[XPM_ASCENT].count == 0
8911 || XFASTINT (fmt[XPM_ASCENT].value) < 100));
8915 /* Load image IMG which will be displayed on frame F. Value is
8916 non-zero if successful. */
8918 static int
8919 xpm_load (f, img)
8920 struct frame *f;
8921 struct image *img;
8923 int rc, i;
8924 XpmAttributes attrs;
8925 Lisp_Object specified_file, color_symbols;
8927 /* Configure the XPM lib. Use the visual of frame F. Allocate
8928 close colors. Return colors allocated. */
8929 bzero (&attrs, sizeof attrs);
8930 attrs.visual = FRAME_X_VISUAL (f);
8931 attrs.colormap = FRAME_X_COLORMAP (f);
8932 attrs.valuemask |= XpmVisual;
8933 attrs.valuemask |= XpmColormap;
8934 attrs.valuemask |= XpmReturnAllocPixels;
8935 #ifdef XpmAllocCloseColors
8936 attrs.alloc_close_colors = 1;
8937 attrs.valuemask |= XpmAllocCloseColors;
8938 #else
8939 attrs.closeness = 600;
8940 attrs.valuemask |= XpmCloseness;
8941 #endif
8943 /* If image specification contains symbolic color definitions, add
8944 these to `attrs'. */
8945 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
8946 if (CONSP (color_symbols))
8948 Lisp_Object tail;
8949 XpmColorSymbol *xpm_syms;
8950 int i, size;
8952 attrs.valuemask |= XpmColorSymbols;
8954 /* Count number of symbols. */
8955 attrs.numsymbols = 0;
8956 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
8957 ++attrs.numsymbols;
8959 /* Allocate an XpmColorSymbol array. */
8960 size = attrs.numsymbols * sizeof *xpm_syms;
8961 xpm_syms = (XpmColorSymbol *) alloca (size);
8962 bzero (xpm_syms, size);
8963 attrs.colorsymbols = xpm_syms;
8965 /* Fill the color symbol array. */
8966 for (tail = color_symbols, i = 0;
8967 CONSP (tail);
8968 ++i, tail = XCDR (tail))
8970 Lisp_Object name = XCAR (XCAR (tail));
8971 Lisp_Object color = XCDR (XCAR (tail));
8972 xpm_syms[i].name = (char *) alloca (XSTRING (name)->size + 1);
8973 strcpy (xpm_syms[i].name, XSTRING (name)->data);
8974 xpm_syms[i].value = (char *) alloca (XSTRING (color)->size + 1);
8975 strcpy (xpm_syms[i].value, XSTRING (color)->data);
8979 /* Create a pixmap for the image, either from a file, or from a
8980 string buffer containing data in the same format as an XPM file. */
8981 BLOCK_INPUT;
8982 specified_file = image_spec_value (img->spec, QCfile, NULL);
8983 if (STRINGP (specified_file))
8985 Lisp_Object file = x_find_image_file (specified_file);
8986 if (!STRINGP (file))
8988 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8989 UNBLOCK_INPUT;
8990 return 0;
8993 rc = XpmReadFileToPixmap (NULL, FRAME_W32_WINDOW (f),
8994 XSTRING (file)->data, &img->pixmap, &img->mask,
8995 &attrs);
8997 else
8999 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
9000 rc = XpmCreatePixmapFromBuffer (NULL, FRAME_W32_WINDOW (f),
9001 XSTRING (buffer)->data,
9002 &img->pixmap, &img->mask,
9003 &attrs);
9005 UNBLOCK_INPUT;
9007 if (rc == XpmSuccess)
9009 /* Remember allocated colors. */
9010 img->ncolors = attrs.nalloc_pixels;
9011 img->colors = (unsigned long *) xmalloc (img->ncolors
9012 * sizeof *img->colors);
9013 for (i = 0; i < attrs.nalloc_pixels; ++i)
9014 img->colors[i] = attrs.alloc_pixels[i];
9016 img->width = attrs.width;
9017 img->height = attrs.height;
9018 xassert (img->width > 0 && img->height > 0);
9020 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
9021 BLOCK_INPUT;
9022 XpmFreeAttributes (&attrs);
9023 UNBLOCK_INPUT;
9025 else
9027 switch (rc)
9029 case XpmOpenFailed:
9030 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
9031 break;
9033 case XpmFileInvalid:
9034 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
9035 break;
9037 case XpmNoMemory:
9038 image_error ("Out of memory (%s)", img->spec, Qnil);
9039 break;
9041 case XpmColorFailed:
9042 image_error ("Color allocation error (%s)", img->spec, Qnil);
9043 break;
9045 default:
9046 image_error ("Unknown error (%s)", img->spec, Qnil);
9047 break;
9051 return rc == XpmSuccess;
9054 #endif /* HAVE_XPM != 0 */
9057 #if 0 /* NTEMACS_TODO : Color tables on W32. */
9058 /***********************************************************************
9059 Color table
9060 ***********************************************************************/
9062 /* An entry in the color table mapping an RGB color to a pixel color. */
9064 struct ct_color
9066 int r, g, b;
9067 unsigned long pixel;
9069 /* Next in color table collision list. */
9070 struct ct_color *next;
9073 /* The bucket vector size to use. Must be prime. */
9075 #define CT_SIZE 101
9077 /* Value is a hash of the RGB color given by R, G, and B. */
9079 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
9081 /* The color hash table. */
9083 struct ct_color **ct_table;
9085 /* Number of entries in the color table. */
9087 int ct_colors_allocated;
9089 /* Function prototypes. */
9091 static void init_color_table P_ ((void));
9092 static void free_color_table P_ ((void));
9093 static unsigned long *colors_in_color_table P_ ((int *n));
9094 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
9095 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
9098 /* Initialize the color table. */
9100 static void
9101 init_color_table ()
9103 int size = CT_SIZE * sizeof (*ct_table);
9104 ct_table = (struct ct_color **) xmalloc (size);
9105 bzero (ct_table, size);
9106 ct_colors_allocated = 0;
9110 /* Free memory associated with the color table. */
9112 static void
9113 free_color_table ()
9115 int i;
9116 struct ct_color *p, *next;
9118 for (i = 0; i < CT_SIZE; ++i)
9119 for (p = ct_table[i]; p; p = next)
9121 next = p->next;
9122 xfree (p);
9125 xfree (ct_table);
9126 ct_table = NULL;
9130 /* Value is a pixel color for RGB color R, G, B on frame F. If an
9131 entry for that color already is in the color table, return the
9132 pixel color of that entry. Otherwise, allocate a new color for R,
9133 G, B, and make an entry in the color table. */
9135 static unsigned long
9136 lookup_rgb_color (f, r, g, b)
9137 struct frame *f;
9138 int r, g, b;
9140 unsigned hash = CT_HASH_RGB (r, g, b);
9141 int i = hash % CT_SIZE;
9142 struct ct_color *p;
9144 for (p = ct_table[i]; p; p = p->next)
9145 if (p->r == r && p->g == g && p->b == b)
9146 break;
9148 if (p == NULL)
9150 COLORREF color;
9151 Colormap cmap;
9152 int rc;
9154 color = PALETTERGB (r, g, b);
9156 ++ct_colors_allocated;
9158 p = (struct ct_color *) xmalloc (sizeof *p);
9159 p->r = r;
9160 p->g = g;
9161 p->b = b;
9162 p->pixel = color;
9163 p->next = ct_table[i];
9164 ct_table[i] = p;
9167 return p->pixel;
9171 /* Look up pixel color PIXEL which is used on frame F in the color
9172 table. If not already present, allocate it. Value is PIXEL. */
9174 static unsigned long
9175 lookup_pixel_color (f, pixel)
9176 struct frame *f;
9177 unsigned long pixel;
9179 int i = pixel % CT_SIZE;
9180 struct ct_color *p;
9182 for (p = ct_table[i]; p; p = p->next)
9183 if (p->pixel == pixel)
9184 break;
9186 if (p == NULL)
9188 XColor color;
9189 Colormap cmap;
9190 int rc;
9192 BLOCK_INPUT;
9194 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9195 color.pixel = pixel;
9196 XQueryColor (NULL, cmap, &color);
9197 rc = x_alloc_nearest_color (f, cmap, &color);
9198 UNBLOCK_INPUT;
9200 if (rc)
9202 ++ct_colors_allocated;
9204 p = (struct ct_color *) xmalloc (sizeof *p);
9205 p->r = color.red;
9206 p->g = color.green;
9207 p->b = color.blue;
9208 p->pixel = pixel;
9209 p->next = ct_table[i];
9210 ct_table[i] = p;
9212 else
9213 return FRAME_FOREGROUND_PIXEL (f);
9215 return p->pixel;
9219 /* Value is a vector of all pixel colors contained in the color table,
9220 allocated via xmalloc. Set *N to the number of colors. */
9222 static unsigned long *
9223 colors_in_color_table (n)
9224 int *n;
9226 int i, j;
9227 struct ct_color *p;
9228 unsigned long *colors;
9230 if (ct_colors_allocated == 0)
9232 *n = 0;
9233 colors = NULL;
9235 else
9237 colors = (unsigned long *) xmalloc (ct_colors_allocated
9238 * sizeof *colors);
9239 *n = ct_colors_allocated;
9241 for (i = j = 0; i < CT_SIZE; ++i)
9242 for (p = ct_table[i]; p; p = p->next)
9243 colors[j++] = p->pixel;
9246 return colors;
9249 #endif /* NTEMACS_TODO */
9252 /***********************************************************************
9253 Algorithms
9254 ***********************************************************************/
9256 #if 0 /* NTEMACS_TODO : W32 versions of low level algorithms */
9257 static void x_laplace_write_row P_ ((struct frame *, long *,
9258 int, XImage *, int));
9259 static void x_laplace_read_row P_ ((struct frame *, Colormap,
9260 XColor *, int, XImage *, int));
9263 /* Fill COLORS with RGB colors from row Y of image XIMG. F is the
9264 frame we operate on, CMAP is the color-map in effect, and WIDTH is
9265 the width of one row in the image. */
9267 static void
9268 x_laplace_read_row (f, cmap, colors, width, ximg, y)
9269 struct frame *f;
9270 Colormap cmap;
9271 XColor *colors;
9272 int width;
9273 XImage *ximg;
9274 int y;
9276 int x;
9278 for (x = 0; x < width; ++x)
9279 colors[x].pixel = XGetPixel (ximg, x, y);
9281 XQueryColors (NULL, cmap, colors, width);
9285 /* Write row Y of image XIMG. PIXELS is an array of WIDTH longs
9286 containing the pixel colors to write. F is the frame we are
9287 working on. */
9289 static void
9290 x_laplace_write_row (f, pixels, width, ximg, y)
9291 struct frame *f;
9292 long *pixels;
9293 int width;
9294 XImage *ximg;
9295 int y;
9297 int x;
9299 for (x = 0; x < width; ++x)
9300 XPutPixel (ximg, x, y, pixels[x]);
9302 #endif
9304 /* Transform image IMG which is used on frame F with a Laplace
9305 edge-detection algorithm. The result is an image that can be used
9306 to draw disabled buttons, for example. */
9308 static void
9309 x_laplace (f, img)
9310 struct frame *f;
9311 struct image *img;
9313 #if 0 /* NTEMACS_TODO : W32 version */
9314 Colormap cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9315 XImage *ximg, *oimg;
9316 XColor *in[3];
9317 long *out;
9318 Pixmap pixmap;
9319 int x, y, i;
9320 long pixel;
9321 int in_y, out_y, rc;
9322 int mv2 = 45000;
9324 BLOCK_INPUT;
9326 /* Get the X image IMG->pixmap. */
9327 ximg = XGetImage (NULL, img->pixmap,
9328 0, 0, img->width, img->height, ~0, ZPixmap);
9330 /* Allocate 3 input rows, and one output row of colors. */
9331 for (i = 0; i < 3; ++i)
9332 in[i] = (XColor *) alloca (img->width * sizeof (XColor));
9333 out = (long *) alloca (img->width * sizeof (long));
9335 /* Create an X image for output. */
9336 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 0,
9337 &oimg, &pixmap);
9339 /* Fill first two rows. */
9340 x_laplace_read_row (f, cmap, in[0], img->width, ximg, 0);
9341 x_laplace_read_row (f, cmap, in[1], img->width, ximg, 1);
9342 in_y = 2;
9344 /* Write first row, all zeros. */
9345 init_color_table ();
9346 pixel = lookup_rgb_color (f, 0, 0, 0);
9347 for (x = 0; x < img->width; ++x)
9348 out[x] = pixel;
9349 x_laplace_write_row (f, out, img->width, oimg, 0);
9350 out_y = 1;
9352 for (y = 2; y < img->height; ++y)
9354 int rowa = y % 3;
9355 int rowb = (y + 2) % 3;
9357 x_laplace_read_row (f, cmap, in[rowa], img->width, ximg, in_y++);
9359 for (x = 0; x < img->width - 2; ++x)
9361 int r = in[rowa][x].red + mv2 - in[rowb][x + 2].red;
9362 int g = in[rowa][x].green + mv2 - in[rowb][x + 2].green;
9363 int b = in[rowa][x].blue + mv2 - in[rowb][x + 2].blue;
9365 out[x + 1] = lookup_rgb_color (f, r & 0xffff, g & 0xffff,
9366 b & 0xffff);
9369 x_laplace_write_row (f, out, img->width, oimg, out_y++);
9372 /* Write last line, all zeros. */
9373 for (x = 0; x < img->width; ++x)
9374 out[x] = pixel;
9375 x_laplace_write_row (f, out, img->width, oimg, out_y);
9377 /* Free the input image, and free resources of IMG. */
9378 XDestroyImage (ximg);
9379 x_clear_image (f, img);
9381 /* Put the output image into pixmap, and destroy it. */
9382 x_put_x_image (f, oimg, pixmap, img->width, img->height);
9383 x_destroy_x_image (oimg);
9385 /* Remember new pixmap and colors in IMG. */
9386 img->pixmap = pixmap;
9387 img->colors = colors_in_color_table (&img->ncolors);
9388 free_color_table ();
9390 UNBLOCK_INPUT;
9391 #endif /* NTEMACS_TODO */
9395 /* Build a mask for image IMG which is used on frame F. FILE is the
9396 name of an image file, for error messages. HOW determines how to
9397 determine the background color of IMG. If it is a list '(R G B)',
9398 with R, G, and B being integers >= 0, take that as the color of the
9399 background. Otherwise, determine the background color of IMG
9400 heuristically. Value is non-zero if successful. */
9402 static int
9403 x_build_heuristic_mask (f, img, how)
9404 struct frame *f;
9405 struct image *img;
9406 Lisp_Object how;
9408 #if 0 /* NTEMACS_TODO : W32 version */
9409 Display *dpy = FRAME_W32_DISPLAY (f);
9410 XImage *ximg, *mask_img;
9411 int x, y, rc, look_at_corners_p;
9412 unsigned long bg;
9414 BLOCK_INPUT;
9416 /* Create an image and pixmap serving as mask. */
9417 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
9418 &mask_img, &img->mask);
9419 if (!rc)
9421 UNBLOCK_INPUT;
9422 return 0;
9425 /* Get the X image of IMG->pixmap. */
9426 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
9427 ~0, ZPixmap);
9429 /* Determine the background color of ximg. If HOW is `(R G B)'
9430 take that as color. Otherwise, try to determine the color
9431 heuristically. */
9432 look_at_corners_p = 1;
9434 if (CONSP (how))
9436 int rgb[3], i = 0;
9438 while (i < 3
9439 && CONSP (how)
9440 && NATNUMP (XCAR (how)))
9442 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
9443 how = XCDR (how);
9446 if (i == 3 && NILP (how))
9448 char color_name[30];
9449 XColor exact, color;
9450 Colormap cmap;
9452 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
9454 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9455 if (XLookupColor (dpy, cmap, color_name, &exact, &color))
9457 bg = color.pixel;
9458 look_at_corners_p = 0;
9463 if (look_at_corners_p)
9465 unsigned long corners[4];
9466 int i, best_count;
9468 /* Get the colors at the corners of ximg. */
9469 corners[0] = XGetPixel (ximg, 0, 0);
9470 corners[1] = XGetPixel (ximg, img->width - 1, 0);
9471 corners[2] = XGetPixel (ximg, img->width - 1, img->height - 1);
9472 corners[3] = XGetPixel (ximg, 0, img->height - 1);
9474 /* Choose the most frequently found color as background. */
9475 for (i = best_count = 0; i < 4; ++i)
9477 int j, n;
9479 for (j = n = 0; j < 4; ++j)
9480 if (corners[i] == corners[j])
9481 ++n;
9483 if (n > best_count)
9484 bg = corners[i], best_count = n;
9488 /* Set all bits in mask_img to 1 whose color in ximg is different
9489 from the background color bg. */
9490 for (y = 0; y < img->height; ++y)
9491 for (x = 0; x < img->width; ++x)
9492 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
9494 /* Put mask_img into img->mask. */
9495 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
9496 x_destroy_x_image (mask_img);
9497 XDestroyImage (ximg);
9499 UNBLOCK_INPUT;
9500 #endif /* NTEMACS_TODO */
9502 return 1;
9507 /***********************************************************************
9508 PBM (mono, gray, color)
9509 ***********************************************************************/
9510 #ifdef HAVE_PBM
9512 static int pbm_image_p P_ ((Lisp_Object object));
9513 static int pbm_load P_ ((struct frame *f, struct image *img));
9514 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
9516 /* The symbol `pbm' identifying images of this type. */
9518 Lisp_Object Qpbm;
9520 /* Indices of image specification fields in gs_format, below. */
9522 enum pbm_keyword_index
9524 PBM_TYPE,
9525 PBM_FILE,
9526 PBM_DATA,
9527 PBM_ASCENT,
9528 PBM_MARGIN,
9529 PBM_RELIEF,
9530 PBM_ALGORITHM,
9531 PBM_HEURISTIC_MASK,
9532 PBM_LAST
9535 /* Vector of image_keyword structures describing the format
9536 of valid user-defined image specifications. */
9538 static struct image_keyword pbm_format[PBM_LAST] =
9540 {":type", IMAGE_SYMBOL_VALUE, 1},
9541 {":file", IMAGE_STRING_VALUE, 0},
9542 {":data", IMAGE_STRING_VALUE, 0},
9543 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
9544 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9545 {":relief", IMAGE_INTEGER_VALUE, 0},
9546 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9547 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9550 /* Structure describing the image type `pbm'. */
9552 static struct image_type pbm_type =
9554 &Qpbm,
9555 pbm_image_p,
9556 pbm_load,
9557 x_clear_image,
9558 NULL
9562 /* Return non-zero if OBJECT is a valid PBM image specification. */
9564 static int
9565 pbm_image_p (object)
9566 Lisp_Object object;
9568 struct image_keyword fmt[PBM_LAST];
9570 bcopy (pbm_format, fmt, sizeof fmt);
9572 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm)
9573 || (fmt[PBM_ASCENT].count
9574 && XFASTINT (fmt[PBM_ASCENT].value) > 100))
9575 return 0;
9577 /* Must specify either :data or :file. */
9578 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
9582 /* Scan a decimal number from *S and return it. Advance *S while
9583 reading the number. END is the end of the string. Value is -1 at
9584 end of input. */
9586 static int
9587 pbm_scan_number (s, end)
9588 unsigned char **s, *end;
9590 int c, val = -1;
9592 while (*s < end)
9594 /* Skip white-space. */
9595 while (*s < end && (c = *(*s)++, isspace (c)))
9598 if (c == '#')
9600 /* Skip comment to end of line. */
9601 while (*s < end && (c = *(*s)++, c != '\n'))
9604 else if (isdigit (c))
9606 /* Read decimal number. */
9607 val = c - '0';
9608 while (*s < end && (c = *(*s)++, isdigit (c)))
9609 val = 10 * val + c - '0';
9610 break;
9612 else
9613 break;
9616 return val;
9620 /* Read FILE into memory. Value is a pointer to a buffer allocated
9621 with xmalloc holding FILE's contents. Value is null if an error
9622 occured. *SIZE is set to the size of the file. */
9624 static char *
9625 pbm_read_file (file, size)
9626 Lisp_Object file;
9627 int *size;
9629 FILE *fp = NULL;
9630 char *buf = NULL;
9631 struct stat st;
9633 if (stat (XSTRING (file)->data, &st) == 0
9634 && (fp = fopen (XSTRING (file)->data, "r")) != NULL
9635 && (buf = (char *) xmalloc (st.st_size),
9636 fread (buf, 1, st.st_size, fp) == st.st_size))
9638 *size = st.st_size;
9639 fclose (fp);
9641 else
9643 if (fp)
9644 fclose (fp);
9645 if (buf)
9647 xfree (buf);
9648 buf = NULL;
9652 return buf;
9656 /* Load PBM image IMG for use on frame F. */
9658 static int
9659 pbm_load (f, img)
9660 struct frame *f;
9661 struct image *img;
9663 int raw_p, x, y;
9664 int width, height, max_color_idx = 0;
9665 XImage *ximg;
9666 Lisp_Object file, specified_file;
9667 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
9668 struct gcpro gcpro1;
9669 unsigned char *contents = NULL;
9670 unsigned char *end, *p;
9671 int size;
9673 specified_file = image_spec_value (img->spec, QCfile, NULL);
9674 file = Qnil;
9675 GCPRO1 (file);
9677 if (STRINGP (specified_file))
9679 file = x_find_image_file (specified_file);
9680 if (!STRINGP (file))
9682 image_error ("Cannot find image file `%s'", specified_file, Qnil);
9683 UNGCPRO;
9684 return 0;
9687 contents = pbm_read_file (file, &size);
9688 if (contents == NULL)
9690 image_error ("Error reading `%s'", file, Qnil);
9691 UNGCPRO;
9692 return 0;
9695 p = contents;
9696 end = contents + size;
9698 else
9700 Lisp_Object data;
9701 data = image_spec_value (img->spec, QCdata, NULL);
9702 p = XSTRING (data)->data;
9703 end = p + STRING_BYTES (XSTRING (data));
9706 /* Check magic number. */
9707 if (end - p < 2 || *p++ != 'P')
9709 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
9710 error:
9711 xfree (contents);
9712 UNGCPRO;
9713 return 0;
9716 switch (*p++)
9718 case '1':
9719 raw_p = 0, type = PBM_MONO;
9720 break;
9722 case '2':
9723 raw_p = 0, type = PBM_GRAY;
9724 break;
9726 case '3':
9727 raw_p = 0, type = PBM_COLOR;
9728 break;
9730 case '4':
9731 raw_p = 1, type = PBM_MONO;
9732 break;
9734 case '5':
9735 raw_p = 1, type = PBM_GRAY;
9736 break;
9738 case '6':
9739 raw_p = 1, type = PBM_COLOR;
9740 break;
9742 default:
9743 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
9744 goto error;
9747 /* Read width, height, maximum color-component. Characters
9748 starting with `#' up to the end of a line are ignored. */
9749 width = pbm_scan_number (&p, end);
9750 height = pbm_scan_number (&p, end);
9752 if (type != PBM_MONO)
9754 max_color_idx = pbm_scan_number (&p, end);
9755 if (raw_p && max_color_idx > 255)
9756 max_color_idx = 255;
9759 if (width < 0
9760 || height < 0
9761 || (type != PBM_MONO && max_color_idx < 0))
9762 goto error;
9764 BLOCK_INPUT;
9765 if (!x_create_x_image_and_pixmap (f, width, height, 0,
9766 &ximg, &img->pixmap))
9768 UNBLOCK_INPUT;
9769 goto error;
9772 /* Initialize the color hash table. */
9773 init_color_table ();
9775 if (type == PBM_MONO)
9777 int c = 0, g;
9779 for (y = 0; y < height; ++y)
9780 for (x = 0; x < width; ++x)
9782 if (raw_p)
9784 if ((x & 7) == 0)
9785 c = *p++;
9786 g = c & 0x80;
9787 c <<= 1;
9789 else
9790 g = pbm_scan_number (&p, end);
9792 XPutPixel (ximg, x, y, (g
9793 ? FRAME_FOREGROUND_PIXEL (f)
9794 : FRAME_BACKGROUND_PIXEL (f)));
9797 else
9799 for (y = 0; y < height; ++y)
9800 for (x = 0; x < width; ++x)
9802 int r, g, b;
9804 if (type == PBM_GRAY)
9805 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
9806 else if (raw_p)
9808 r = *p++;
9809 g = *p++;
9810 b = *p++;
9812 else
9814 r = pbm_scan_number (&p, end);
9815 g = pbm_scan_number (&p, end);
9816 b = pbm_scan_number (&p, end);
9819 if (r < 0 || g < 0 || b < 0)
9821 xfree (ximg->data);
9822 ximg->data = NULL;
9823 XDestroyImage (ximg);
9824 UNBLOCK_INPUT;
9825 image_error ("Invalid pixel value in image `%s'",
9826 img->spec, Qnil);
9827 goto error;
9830 /* RGB values are now in the range 0..max_color_idx.
9831 Scale this to the range 0..0xffff supported by X. */
9832 r = (double) r * 65535 / max_color_idx;
9833 g = (double) g * 65535 / max_color_idx;
9834 b = (double) b * 65535 / max_color_idx;
9835 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
9839 /* Store in IMG->colors the colors allocated for the image, and
9840 free the color table. */
9841 img->colors = colors_in_color_table (&img->ncolors);
9842 free_color_table ();
9844 /* Put the image into a pixmap. */
9845 x_put_x_image (f, ximg, img->pixmap, width, height);
9846 x_destroy_x_image (ximg);
9847 UNBLOCK_INPUT;
9849 img->width = width;
9850 img->height = height;
9852 UNGCPRO;
9853 xfree (contents);
9854 return 1;
9856 #endif /* HAVE_PBM */
9859 /***********************************************************************
9861 ***********************************************************************/
9863 #if HAVE_PNG
9865 #include <png.h>
9867 /* Function prototypes. */
9869 static int png_image_p P_ ((Lisp_Object object));
9870 static int png_load P_ ((struct frame *f, struct image *img));
9872 /* The symbol `png' identifying images of this type. */
9874 Lisp_Object Qpng;
9876 /* Indices of image specification fields in png_format, below. */
9878 enum png_keyword_index
9880 PNG_TYPE,
9881 PNG_DATA,
9882 PNG_FILE,
9883 PNG_ASCENT,
9884 PNG_MARGIN,
9885 PNG_RELIEF,
9886 PNG_ALGORITHM,
9887 PNG_HEURISTIC_MASK,
9888 PNG_LAST
9891 /* Vector of image_keyword structures describing the format
9892 of valid user-defined image specifications. */
9894 static struct image_keyword png_format[PNG_LAST] =
9896 {":type", IMAGE_SYMBOL_VALUE, 1},
9897 {":data", IMAGE_STRING_VALUE, 0},
9898 {":file", IMAGE_STRING_VALUE, 0},
9899 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
9900 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9901 {":relief", IMAGE_INTEGER_VALUE, 0},
9902 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9903 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9906 /* Structure describing the image type `png'. */
9908 static struct image_type png_type =
9910 &Qpng,
9911 png_image_p,
9912 png_load,
9913 x_clear_image,
9914 NULL
9918 /* Return non-zero if OBJECT is a valid PNG image specification. */
9920 static int
9921 png_image_p (object)
9922 Lisp_Object object;
9924 struct image_keyword fmt[PNG_LAST];
9925 bcopy (png_format, fmt, sizeof fmt);
9927 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng)
9928 || (fmt[PNG_ASCENT].count
9929 && XFASTINT (fmt[PNG_ASCENT].value) > 100))
9930 return 0;
9932 /* Must specify either the :data or :file keyword. */
9933 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
9937 /* Error and warning handlers installed when the PNG library
9938 is initialized. */
9940 static void
9941 my_png_error (png_ptr, msg)
9942 png_struct *png_ptr;
9943 char *msg;
9945 xassert (png_ptr != NULL);
9946 image_error ("PNG error: %s", build_string (msg), Qnil);
9947 longjmp (png_ptr->jmpbuf, 1);
9951 static void
9952 my_png_warning (png_ptr, msg)
9953 png_struct *png_ptr;
9954 char *msg;
9956 xassert (png_ptr != NULL);
9957 image_error ("PNG warning: %s", build_string (msg), Qnil);
9960 /* Memory source for PNG decoding. */
9962 struct png_memory_storage
9964 unsigned char *bytes; /* The data */
9965 size_t len; /* How big is it? */
9966 int index; /* Where are we? */
9970 /* Function set as reader function when reading PNG image from memory.
9971 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
9972 bytes from the input to DATA. */
9974 static void
9975 png_read_from_memory (png_ptr, data, length)
9976 png_structp png_ptr;
9977 png_bytep data;
9978 png_size_t length;
9980 struct png_memory_storage *tbr
9981 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
9983 if (length > tbr->len - tbr->index)
9984 png_error (png_ptr, "Read error");
9986 bcopy (tbr->bytes + tbr->index, data, length);
9987 tbr->index = tbr->index + length;
9990 /* Load PNG image IMG for use on frame F. Value is non-zero if
9991 successful. */
9993 static int
9994 png_load (f, img)
9995 struct frame *f;
9996 struct image *img;
9998 Lisp_Object file, specified_file;
9999 Lisp_Object specified_data;
10000 int x, y, i;
10001 XImage *ximg, *mask_img = NULL;
10002 struct gcpro gcpro1;
10003 png_struct *png_ptr = NULL;
10004 png_info *info_ptr = NULL, *end_info = NULL;
10005 FILE *fp = NULL;
10006 png_byte sig[8];
10007 png_byte *pixels = NULL;
10008 png_byte **rows = NULL;
10009 png_uint_32 width, height;
10010 int bit_depth, color_type, interlace_type;
10011 png_byte channels;
10012 png_uint_32 row_bytes;
10013 int transparent_p;
10014 char *gamma_str;
10015 double screen_gamma, image_gamma;
10016 int intent;
10017 struct png_memory_storage tbr; /* Data to be read */
10019 /* Find out what file to load. */
10020 specified_file = image_spec_value (img->spec, QCfile, NULL);
10021 specified_data = image_spec_value (img->spec, QCdata, NULL);
10022 file = Qnil;
10023 GCPRO1 (file);
10025 if (NILP (specified_data))
10027 file = x_find_image_file (specified_file);
10028 if (!STRINGP (file))
10030 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10031 UNGCPRO;
10032 return 0;
10035 /* Open the image file. */
10036 fp = fopen (XSTRING (file)->data, "rb");
10037 if (!fp)
10039 image_error ("Cannot open image file `%s'", file, Qnil);
10040 UNGCPRO;
10041 fclose (fp);
10042 return 0;
10045 /* Check PNG signature. */
10046 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
10047 || !png_check_sig (sig, sizeof sig))
10049 image_error ("Not a PNG file:` %s'", file, Qnil);
10050 UNGCPRO;
10051 fclose (fp);
10052 return 0;
10055 else
10057 /* Read from memory. */
10058 tbr.bytes = XSTRING (specified_data)->data;
10059 tbr.len = STRING_BYTES (XSTRING (specified_data));
10060 tbr.index = 0;
10062 /* Check PNG signature. */
10063 if (tbr.len < sizeof sig
10064 || !png_check_sig (tbr.bytes, sizeof sig))
10066 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
10067 UNGCPRO;
10068 return 0;
10071 /* Need to skip past the signature. */
10072 tbr.bytes += sizeof (sig);
10075 /* Initialize read and info structs for PNG lib. */
10076 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
10077 my_png_error, my_png_warning);
10078 if (!png_ptr)
10080 if (fp) fclose (fp);
10081 UNGCPRO;
10082 return 0;
10085 info_ptr = png_create_info_struct (png_ptr);
10086 if (!info_ptr)
10088 png_destroy_read_struct (&png_ptr, NULL, NULL);
10089 if (fp) fclose (fp);
10090 UNGCPRO;
10091 return 0;
10094 end_info = png_create_info_struct (png_ptr);
10095 if (!end_info)
10097 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
10098 if (fp) fclose (fp);
10099 UNGCPRO;
10100 return 0;
10103 /* Set error jump-back. We come back here when the PNG library
10104 detects an error. */
10105 if (setjmp (png_ptr->jmpbuf))
10107 error:
10108 if (png_ptr)
10109 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
10110 xfree (pixels);
10111 xfree (rows);
10112 if (fp) fclose (fp);
10113 UNGCPRO;
10114 return 0;
10117 /* Read image info. */
10118 if (!NILP (specified_data))
10119 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
10120 else
10121 png_init_io (png_ptr, fp);
10123 png_set_sig_bytes (png_ptr, sizeof sig);
10124 png_read_info (png_ptr, info_ptr);
10125 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
10126 &interlace_type, NULL, NULL);
10128 /* If image contains simply transparency data, we prefer to
10129 construct a clipping mask. */
10130 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
10131 transparent_p = 1;
10132 else
10133 transparent_p = 0;
10135 /* This function is easier to write if we only have to handle
10136 one data format: RGB or RGBA with 8 bits per channel. Let's
10137 transform other formats into that format. */
10139 /* Strip more than 8 bits per channel. */
10140 if (bit_depth == 16)
10141 png_set_strip_16 (png_ptr);
10143 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
10144 if available. */
10145 png_set_expand (png_ptr);
10147 /* Convert grayscale images to RGB. */
10148 if (color_type == PNG_COLOR_TYPE_GRAY
10149 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
10150 png_set_gray_to_rgb (png_ptr);
10152 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
10153 gamma_str = getenv ("SCREEN_GAMMA");
10154 screen_gamma = gamma_str ? atof (gamma_str) : 2.2;
10156 /* Tell the PNG lib to handle gamma correction for us. */
10158 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
10159 if (png_get_sRGB (png_ptr, info_ptr, &intent))
10160 /* There is a special chunk in the image specifying the gamma. */
10161 png_set_sRGB (png_ptr, info_ptr, intent);
10162 else
10163 #endif
10164 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
10165 /* Image contains gamma information. */
10166 png_set_gamma (png_ptr, screen_gamma, image_gamma);
10167 else
10168 /* Use a default of 0.5 for the image gamma. */
10169 png_set_gamma (png_ptr, screen_gamma, 0.5);
10171 /* Handle alpha channel by combining the image with a background
10172 color. Do this only if a real alpha channel is supplied. For
10173 simple transparency, we prefer a clipping mask. */
10174 if (!transparent_p)
10176 png_color_16 *image_background;
10178 if (png_get_bKGD (png_ptr, info_ptr, &image_background))
10179 /* Image contains a background color with which to
10180 combine the image. */
10181 png_set_background (png_ptr, image_background,
10182 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
10183 else
10185 /* Image does not contain a background color with which
10186 to combine the image data via an alpha channel. Use
10187 the frame's background instead. */
10188 XColor color;
10189 Colormap cmap;
10190 png_color_16 frame_background;
10192 BLOCK_INPUT;
10193 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
10194 color.pixel = FRAME_BACKGROUND_PIXEL (f);
10195 XQueryColor (FRAME_W32_DISPLAY (f), cmap, &color);
10196 UNBLOCK_INPUT;
10198 bzero (&frame_background, sizeof frame_background);
10199 frame_background.red = color.red;
10200 frame_background.green = color.green;
10201 frame_background.blue = color.blue;
10203 png_set_background (png_ptr, &frame_background,
10204 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
10208 /* Update info structure. */
10209 png_read_update_info (png_ptr, info_ptr);
10211 /* Get number of channels. Valid values are 1 for grayscale images
10212 and images with a palette, 2 for grayscale images with transparency
10213 information (alpha channel), 3 for RGB images, and 4 for RGB
10214 images with alpha channel, i.e. RGBA. If conversions above were
10215 sufficient we should only have 3 or 4 channels here. */
10216 channels = png_get_channels (png_ptr, info_ptr);
10217 xassert (channels == 3 || channels == 4);
10219 /* Number of bytes needed for one row of the image. */
10220 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
10222 /* Allocate memory for the image. */
10223 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
10224 rows = (png_byte **) xmalloc (height * sizeof *rows);
10225 for (i = 0; i < height; ++i)
10226 rows[i] = pixels + i * row_bytes;
10228 /* Read the entire image. */
10229 png_read_image (png_ptr, rows);
10230 png_read_end (png_ptr, info_ptr);
10231 if (fp)
10233 fclose (fp);
10234 fp = NULL;
10237 BLOCK_INPUT;
10239 /* Create the X image and pixmap. */
10240 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
10241 &img->pixmap))
10243 UNBLOCK_INPUT;
10244 goto error;
10247 /* Create an image and pixmap serving as mask if the PNG image
10248 contains an alpha channel. */
10249 if (channels == 4
10250 && !transparent_p
10251 && !x_create_x_image_and_pixmap (f, width, height, 1,
10252 &mask_img, &img->mask))
10254 x_destroy_x_image (ximg);
10255 XFreePixmap (FRAME_W32_DISPLAY (f), img->pixmap);
10256 img->pixmap = 0;
10257 UNBLOCK_INPUT;
10258 goto error;
10261 /* Fill the X image and mask from PNG data. */
10262 init_color_table ();
10264 for (y = 0; y < height; ++y)
10266 png_byte *p = rows[y];
10268 for (x = 0; x < width; ++x)
10270 unsigned r, g, b;
10272 r = *p++ << 8;
10273 g = *p++ << 8;
10274 b = *p++ << 8;
10275 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
10277 /* An alpha channel, aka mask channel, associates variable
10278 transparency with an image. Where other image formats
10279 support binary transparency---fully transparent or fully
10280 opaque---PNG allows up to 254 levels of partial transparency.
10281 The PNG library implements partial transparency by combining
10282 the image with a specified background color.
10284 I'm not sure how to handle this here nicely: because the
10285 background on which the image is displayed may change, for
10286 real alpha channel support, it would be necessary to create
10287 a new image for each possible background.
10289 What I'm doing now is that a mask is created if we have
10290 boolean transparency information. Otherwise I'm using
10291 the frame's background color to combine the image with. */
10293 if (channels == 4)
10295 if (mask_img)
10296 XPutPixel (mask_img, x, y, *p > 0);
10297 ++p;
10302 /* Remember colors allocated for this image. */
10303 img->colors = colors_in_color_table (&img->ncolors);
10304 free_color_table ();
10306 /* Clean up. */
10307 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
10308 xfree (rows);
10309 xfree (pixels);
10311 img->width = width;
10312 img->height = height;
10314 /* Put the image into the pixmap, then free the X image and its buffer. */
10315 x_put_x_image (f, ximg, img->pixmap, width, height);
10316 x_destroy_x_image (ximg);
10318 /* Same for the mask. */
10319 if (mask_img)
10321 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
10322 x_destroy_x_image (mask_img);
10325 UNBLOCK_INPUT;
10326 UNGCPRO;
10327 return 1;
10330 #endif /* HAVE_PNG != 0 */
10334 /***********************************************************************
10335 JPEG
10336 ***********************************************************************/
10338 #if HAVE_JPEG
10340 /* Work around a warning about HAVE_STDLIB_H being redefined in
10341 jconfig.h. */
10342 #ifdef HAVE_STDLIB_H
10343 #define HAVE_STDLIB_H_1
10344 #undef HAVE_STDLIB_H
10345 #endif /* HAVE_STLIB_H */
10347 #include <jpeglib.h>
10348 #include <jerror.h>
10349 #include <setjmp.h>
10351 #ifdef HAVE_STLIB_H_1
10352 #define HAVE_STDLIB_H 1
10353 #endif
10355 static int jpeg_image_p P_ ((Lisp_Object object));
10356 static int jpeg_load P_ ((struct frame *f, struct image *img));
10358 /* The symbol `jpeg' identifying images of this type. */
10360 Lisp_Object Qjpeg;
10362 /* Indices of image specification fields in gs_format, below. */
10364 enum jpeg_keyword_index
10366 JPEG_TYPE,
10367 JPEG_DATA,
10368 JPEG_FILE,
10369 JPEG_ASCENT,
10370 JPEG_MARGIN,
10371 JPEG_RELIEF,
10372 JPEG_ALGORITHM,
10373 JPEG_HEURISTIC_MASK,
10374 JPEG_LAST
10377 /* Vector of image_keyword structures describing the format
10378 of valid user-defined image specifications. */
10380 static struct image_keyword jpeg_format[JPEG_LAST] =
10382 {":type", IMAGE_SYMBOL_VALUE, 1},
10383 {":data", IMAGE_STRING_VALUE, 0},
10384 {":file", IMAGE_STRING_VALUE, 0},
10385 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10386 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
10387 {":relief", IMAGE_INTEGER_VALUE, 0},
10388 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10389 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
10392 /* Structure describing the image type `jpeg'. */
10394 static struct image_type jpeg_type =
10396 &Qjpeg,
10397 jpeg_image_p,
10398 jpeg_load,
10399 x_clear_image,
10400 NULL
10404 /* Return non-zero if OBJECT is a valid JPEG image specification. */
10406 static int
10407 jpeg_image_p (object)
10408 Lisp_Object object;
10410 struct image_keyword fmt[JPEG_LAST];
10412 bcopy (jpeg_format, fmt, sizeof fmt);
10414 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg)
10415 || (fmt[JPEG_ASCENT].count
10416 && XFASTINT (fmt[JPEG_ASCENT].value) > 100))
10417 return 0;
10419 /* Must specify either the :data or :file keyword. */
10420 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
10424 struct my_jpeg_error_mgr
10426 struct jpeg_error_mgr pub;
10427 jmp_buf setjmp_buffer;
10430 static void
10431 my_error_exit (cinfo)
10432 j_common_ptr cinfo;
10434 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
10435 longjmp (mgr->setjmp_buffer, 1);
10438 /* Init source method for JPEG data source manager. Called by
10439 jpeg_read_header() before any data is actually read. See
10440 libjpeg.doc from the JPEG lib distribution. */
10442 static void
10443 our_init_source (cinfo)
10444 j_decompress_ptr cinfo;
10449 /* Fill input buffer method for JPEG data source manager. Called
10450 whenever more data is needed. We read the whole image in one step,
10451 so this only adds a fake end of input marker at the end. */
10453 static boolean
10454 our_fill_input_buffer (cinfo)
10455 j_decompress_ptr cinfo;
10457 /* Insert a fake EOI marker. */
10458 struct jpeg_source_mgr *src = cinfo->src;
10459 static JOCTET buffer[2];
10461 buffer[0] = (JOCTET) 0xFF;
10462 buffer[1] = (JOCTET) JPEG_EOI;
10464 src->next_input_byte = buffer;
10465 src->bytes_in_buffer = 2;
10466 return TRUE;
10470 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
10471 is the JPEG data source manager. */
10473 static void
10474 our_skip_input_data (cinfo, num_bytes)
10475 j_decompress_ptr cinfo;
10476 long num_bytes;
10478 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
10480 if (src)
10482 if (num_bytes > src->bytes_in_buffer)
10483 ERREXIT (cinfo, JERR_INPUT_EOF);
10485 src->bytes_in_buffer -= num_bytes;
10486 src->next_input_byte += num_bytes;
10491 /* Method to terminate data source. Called by
10492 jpeg_finish_decompress() after all data has been processed. */
10494 static void
10495 our_term_source (cinfo)
10496 j_decompress_ptr cinfo;
10501 /* Set up the JPEG lib for reading an image from DATA which contains
10502 LEN bytes. CINFO is the decompression info structure created for
10503 reading the image. */
10505 static void
10506 jpeg_memory_src (cinfo, data, len)
10507 j_decompress_ptr cinfo;
10508 JOCTET *data;
10509 unsigned int len;
10511 struct jpeg_source_mgr *src;
10513 if (cinfo->src == NULL)
10515 /* First time for this JPEG object? */
10516 cinfo->src = (struct jpeg_source_mgr *)
10517 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
10518 sizeof (struct jpeg_source_mgr));
10519 src = (struct jpeg_source_mgr *) cinfo->src;
10520 src->next_input_byte = data;
10523 src = (struct jpeg_source_mgr *) cinfo->src;
10524 src->init_source = our_init_source;
10525 src->fill_input_buffer = our_fill_input_buffer;
10526 src->skip_input_data = our_skip_input_data;
10527 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
10528 src->term_source = our_term_source;
10529 src->bytes_in_buffer = len;
10530 src->next_input_byte = data;
10534 /* Load image IMG for use on frame F. Patterned after example.c
10535 from the JPEG lib. */
10537 static int
10538 jpeg_load (f, img)
10539 struct frame *f;
10540 struct image *img;
10542 struct jpeg_decompress_struct cinfo;
10543 struct my_jpeg_error_mgr mgr;
10544 Lisp_Object file, specified_file;
10545 Lisp_Object specified_data;
10546 FILE *fp = NULL;
10547 JSAMPARRAY buffer;
10548 int row_stride, x, y;
10549 XImage *ximg = NULL;
10550 int rc;
10551 unsigned long *colors;
10552 int width, height;
10553 struct gcpro gcpro1;
10555 /* Open the JPEG file. */
10556 specified_file = image_spec_value (img->spec, QCfile, NULL);
10557 specified_data = image_spec_value (img->spec, QCdata, NULL);
10558 file = Qnil;
10559 GCPRO1 (file);
10561 if (NILP (specified_data))
10563 file = x_find_image_file (specified_file);
10564 if (!STRINGP (file))
10566 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10567 UNGCPRO;
10568 return 0;
10571 fp = fopen (XSTRING (file)->data, "r");
10572 if (fp == NULL)
10574 image_error ("Cannot open `%s'", file, Qnil);
10575 UNGCPRO;
10576 return 0;
10580 /* Customize libjpeg's error handling to call my_error_exit when an
10581 error is detected. This function will perform a longjmp. */
10582 mgr.pub.error_exit = my_error_exit;
10583 cinfo.err = jpeg_std_error (&mgr.pub);
10585 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
10587 if (rc == 1)
10589 /* Called from my_error_exit. Display a JPEG error. */
10590 char buffer[JMSG_LENGTH_MAX];
10591 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
10592 image_error ("Error reading JPEG image `%s': %s", img->spec,
10593 build_string (buffer));
10596 /* Close the input file and destroy the JPEG object. */
10597 if (fp)
10598 fclose (fp);
10599 jpeg_destroy_decompress (&cinfo);
10601 BLOCK_INPUT;
10603 /* If we already have an XImage, free that. */
10604 x_destroy_x_image (ximg);
10606 /* Free pixmap and colors. */
10607 x_clear_image (f, img);
10609 UNBLOCK_INPUT;
10610 UNGCPRO;
10611 return 0;
10614 /* Create the JPEG decompression object. Let it read from fp.
10615 Read the JPEG image header. */
10616 jpeg_create_decompress (&cinfo);
10618 if (NILP (specified_data))
10619 jpeg_stdio_src (&cinfo, fp);
10620 else
10621 jpeg_memory_src (&cinfo, XSTRING (specified_data)->data,
10622 STRING_BYTES (XSTRING (specified_data)));
10624 jpeg_read_header (&cinfo, TRUE);
10626 /* Customize decompression so that color quantization will be used.
10627 Start decompression. */
10628 cinfo.quantize_colors = TRUE;
10629 jpeg_start_decompress (&cinfo);
10630 width = img->width = cinfo.output_width;
10631 height = img->height = cinfo.output_height;
10633 BLOCK_INPUT;
10635 /* Create X image and pixmap. */
10636 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
10637 &img->pixmap))
10639 UNBLOCK_INPUT;
10640 longjmp (mgr.setjmp_buffer, 2);
10643 /* Allocate colors. When color quantization is used,
10644 cinfo.actual_number_of_colors has been set with the number of
10645 colors generated, and cinfo.colormap is a two-dimensional array
10646 of color indices in the range 0..cinfo.actual_number_of_colors.
10647 No more than 255 colors will be generated. */
10649 int i, ir, ig, ib;
10651 if (cinfo.out_color_components > 2)
10652 ir = 0, ig = 1, ib = 2;
10653 else if (cinfo.out_color_components > 1)
10654 ir = 0, ig = 1, ib = 0;
10655 else
10656 ir = 0, ig = 0, ib = 0;
10658 /* Use the color table mechanism because it handles colors that
10659 cannot be allocated nicely. Such colors will be replaced with
10660 a default color, and we don't have to care about which colors
10661 can be freed safely, and which can't. */
10662 init_color_table ();
10663 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
10664 * sizeof *colors);
10666 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
10668 /* Multiply RGB values with 255 because X expects RGB values
10669 in the range 0..0xffff. */
10670 int r = cinfo.colormap[ir][i] << 8;
10671 int g = cinfo.colormap[ig][i] << 8;
10672 int b = cinfo.colormap[ib][i] << 8;
10673 colors[i] = lookup_rgb_color (f, r, g, b);
10676 /* Remember those colors actually allocated. */
10677 img->colors = colors_in_color_table (&img->ncolors);
10678 free_color_table ();
10681 /* Read pixels. */
10682 row_stride = width * cinfo.output_components;
10683 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
10684 row_stride, 1);
10685 for (y = 0; y < height; ++y)
10687 jpeg_read_scanlines (&cinfo, buffer, 1);
10688 for (x = 0; x < cinfo.output_width; ++x)
10689 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
10692 /* Clean up. */
10693 jpeg_finish_decompress (&cinfo);
10694 jpeg_destroy_decompress (&cinfo);
10695 if (fp)
10696 fclose (fp);
10698 /* Put the image into the pixmap. */
10699 x_put_x_image (f, ximg, img->pixmap, width, height);
10700 x_destroy_x_image (ximg);
10701 UNBLOCK_INPUT;
10702 UNGCPRO;
10703 return 1;
10706 #endif /* HAVE_JPEG */
10710 /***********************************************************************
10711 TIFF
10712 ***********************************************************************/
10714 #if HAVE_TIFF
10716 #include <tiffio.h>
10718 static int tiff_image_p P_ ((Lisp_Object object));
10719 static int tiff_load P_ ((struct frame *f, struct image *img));
10721 /* The symbol `tiff' identifying images of this type. */
10723 Lisp_Object Qtiff;
10725 /* Indices of image specification fields in tiff_format, below. */
10727 enum tiff_keyword_index
10729 TIFF_TYPE,
10730 TIFF_DATA,
10731 TIFF_FILE,
10732 TIFF_ASCENT,
10733 TIFF_MARGIN,
10734 TIFF_RELIEF,
10735 TIFF_ALGORITHM,
10736 TIFF_HEURISTIC_MASK,
10737 TIFF_LAST
10740 /* Vector of image_keyword structures describing the format
10741 of valid user-defined image specifications. */
10743 static struct image_keyword tiff_format[TIFF_LAST] =
10745 {":type", IMAGE_SYMBOL_VALUE, 1},
10746 {":data", IMAGE_STRING_VALUE, 0},
10747 {":file", IMAGE_STRING_VALUE, 0},
10748 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10749 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
10750 {":relief", IMAGE_INTEGER_VALUE, 0},
10751 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10752 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
10755 /* Structure describing the image type `tiff'. */
10757 static struct image_type tiff_type =
10759 &Qtiff,
10760 tiff_image_p,
10761 tiff_load,
10762 x_clear_image,
10763 NULL
10767 /* Return non-zero if OBJECT is a valid TIFF image specification. */
10769 static int
10770 tiff_image_p (object)
10771 Lisp_Object object;
10773 struct image_keyword fmt[TIFF_LAST];
10774 bcopy (tiff_format, fmt, sizeof fmt);
10776 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff)
10777 || (fmt[TIFF_ASCENT].count
10778 && XFASTINT (fmt[TIFF_ASCENT].value) > 100))
10779 return 0;
10781 /* Must specify either the :data or :file keyword. */
10782 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
10786 /* Reading from a memory buffer for TIFF images Based on the PNG
10787 memory source, but we have to provide a lot of extra functions.
10788 Blah.
10790 We really only need to implement read and seek, but I am not
10791 convinced that the TIFF library is smart enough not to destroy
10792 itself if we only hand it the function pointers we need to
10793 override. */
10795 typedef struct
10797 unsigned char *bytes;
10798 size_t len;
10799 int index;
10801 tiff_memory_source;
10803 static size_t
10804 tiff_read_from_memory (data, buf, size)
10805 thandle_t data;
10806 tdata_t buf;
10807 tsize_t size;
10809 tiff_memory_source *src = (tiff_memory_source *) data;
10811 if (size > src->len - src->index)
10812 return (size_t) -1;
10813 bcopy (src->bytes + src->index, buf, size);
10814 src->index += size;
10815 return size;
10818 static size_t
10819 tiff_write_from_memory (data, buf, size)
10820 thandle_t data;
10821 tdata_t buf;
10822 tsize_t size;
10824 return (size_t) -1;
10827 static toff_t
10828 tiff_seek_in_memory (data, off, whence)
10829 thandle_t data;
10830 toff_t off;
10831 int whence;
10833 tiff_memory_source *src = (tiff_memory_source *) data;
10834 int idx;
10836 switch (whence)
10838 case SEEK_SET: /* Go from beginning of source. */
10839 idx = off;
10840 break;
10842 case SEEK_END: /* Go from end of source. */
10843 idx = src->len + off;
10844 break;
10846 case SEEK_CUR: /* Go from current position. */
10847 idx = src->index + off;
10848 break;
10850 default: /* Invalid `whence'. */
10851 return -1;
10854 if (idx > src->len || idx < 0)
10855 return -1;
10857 src->index = idx;
10858 return src->index;
10861 static int
10862 tiff_close_memory (data)
10863 thandle_t data;
10865 /* NOOP */
10866 return 0;
10869 static int
10870 tiff_mmap_memory (data, pbase, psize)
10871 thandle_t data;
10872 tdata_t *pbase;
10873 toff_t *psize;
10875 /* It is already _IN_ memory. */
10876 return 0;
10879 static void
10880 tiff_unmap_memory (data, base, size)
10881 thandle_t data;
10882 tdata_t base;
10883 toff_t size;
10885 /* We don't need to do this. */
10888 static toff_t
10889 tiff_size_of_memory (data)
10890 thandle_t data;
10892 return ((tiff_memory_source *) data)->len;
10895 /* Load TIFF image IMG for use on frame F. Value is non-zero if
10896 successful. */
10898 static int
10899 tiff_load (f, img)
10900 struct frame *f;
10901 struct image *img;
10903 Lisp_Object file, specified_file;
10904 Lisp_Object specified_data;
10905 TIFF *tiff;
10906 int width, height, x, y;
10907 uint32 *buf;
10908 int rc;
10909 XImage *ximg;
10910 struct gcpro gcpro1;
10911 tiff_memory_source memsrc;
10913 specified_file = image_spec_value (img->spec, QCfile, NULL);
10914 specified_data = image_spec_value (img->spec, QCdata, NULL);
10915 file = Qnil;
10916 GCPRO1 (file);
10918 if (NILP (specified_data))
10920 /* Read from a file */
10921 file = x_find_image_file (specified_file);
10922 if (!STRINGP (file))
10924 image_error ("Cannot find image file `%s'", file, Qnil);
10925 UNGCPRO;
10926 return 0;
10929 /* Try to open the image file. */
10930 tiff = TIFFOpen (XSTRING (file)->data, "r");
10931 if (tiff == NULL)
10933 image_error ("Cannot open `%s'", file, Qnil);
10934 UNGCPRO;
10935 return 0;
10938 else
10940 /* Memory source! */
10941 memsrc.bytes = XSTRING (specified_data)->data;
10942 memsrc.len = STRING_BYTES (XSTRING (specified_data));
10943 memsrc.index = 0;
10945 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
10946 (TIFFReadWriteProc) tiff_read_from_memory,
10947 (TIFFReadWriteProc) tiff_write_from_memory,
10948 tiff_seek_in_memory,
10949 tiff_close_memory,
10950 tiff_size_of_memory,
10951 tiff_mmap_memory,
10952 tiff_unmap_memory);
10954 if (!tiff)
10956 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
10957 UNGCPRO;
10958 return 0;
10962 /* Get width and height of the image, and allocate a raster buffer
10963 of width x height 32-bit values. */
10964 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
10965 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
10966 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
10968 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
10969 TIFFClose (tiff);
10970 if (!rc)
10972 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
10973 xfree (buf);
10974 UNGCPRO;
10975 return 0;
10978 BLOCK_INPUT;
10980 /* Create the X image and pixmap. */
10981 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
10983 UNBLOCK_INPUT;
10984 xfree (buf);
10985 UNGCPRO;
10986 return 0;
10989 /* Initialize the color table. */
10990 init_color_table ();
10992 /* Process the pixel raster. Origin is in the lower-left corner. */
10993 for (y = 0; y < height; ++y)
10995 uint32 *row = buf + y * width;
10997 for (x = 0; x < width; ++x)
10999 uint32 abgr = row[x];
11000 int r = TIFFGetR (abgr) << 8;
11001 int g = TIFFGetG (abgr) << 8;
11002 int b = TIFFGetB (abgr) << 8;
11003 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
11007 /* Remember the colors allocated for the image. Free the color table. */
11008 img->colors = colors_in_color_table (&img->ncolors);
11009 free_color_table ();
11011 /* Put the image into the pixmap, then free the X image and its buffer. */
11012 x_put_x_image (f, ximg, img->pixmap, width, height);
11013 x_destroy_x_image (ximg);
11014 xfree (buf);
11015 UNBLOCK_INPUT;
11017 img->width = width;
11018 img->height = height;
11020 UNGCPRO;
11021 return 1;
11024 #endif /* HAVE_TIFF != 0 */
11028 /***********************************************************************
11030 ***********************************************************************/
11032 #if HAVE_GIF
11034 #include <gif_lib.h>
11036 static int gif_image_p P_ ((Lisp_Object object));
11037 static int gif_load P_ ((struct frame *f, struct image *img));
11039 /* The symbol `gif' identifying images of this type. */
11041 Lisp_Object Qgif;
11043 /* Indices of image specification fields in gif_format, below. */
11045 enum gif_keyword_index
11047 GIF_TYPE,
11048 GIF_DATA,
11049 GIF_FILE,
11050 GIF_ASCENT,
11051 GIF_MARGIN,
11052 GIF_RELIEF,
11053 GIF_ALGORITHM,
11054 GIF_HEURISTIC_MASK,
11055 GIF_IMAGE,
11056 GIF_LAST
11059 /* Vector of image_keyword structures describing the format
11060 of valid user-defined image specifications. */
11062 static struct image_keyword gif_format[GIF_LAST] =
11064 {":type", IMAGE_SYMBOL_VALUE, 1},
11065 {":data", IMAGE_STRING_VALUE, 0},
11066 {":file", IMAGE_STRING_VALUE, 0},
11067 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11068 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
11069 {":relief", IMAGE_INTEGER_VALUE, 0},
11070 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11071 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11072 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
11075 /* Structure describing the image type `gif'. */
11077 static struct image_type gif_type =
11079 &Qgif,
11080 gif_image_p,
11081 gif_load,
11082 x_clear_image,
11083 NULL
11086 /* Return non-zero if OBJECT is a valid GIF image specification. */
11088 static int
11089 gif_image_p (object)
11090 Lisp_Object object;
11092 struct image_keyword fmt[GIF_LAST];
11093 bcopy (gif_format, fmt, sizeof fmt);
11095 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif)
11096 || (fmt[GIF_ASCENT].count
11097 && XFASTINT (fmt[GIF_ASCENT].value) > 100))
11098 return 0;
11100 /* Must specify either the :data or :file keyword. */
11101 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
11104 /* Reading a GIF image from memory
11105 Based on the PNG memory stuff to a certain extent. */
11107 typedef struct
11109 unsigned char *bytes;
11110 size_t len;
11111 int index;
11113 gif_memory_source;
11115 /* Make the current memory source available to gif_read_from_memory.
11116 It's done this way because not all versions of libungif support
11117 a UserData field in the GifFileType structure. */
11118 static gif_memory_source *current_gif_memory_src;
11120 static int
11121 gif_read_from_memory (file, buf, len)
11122 GifFileType *file;
11123 GifByteType *buf;
11124 int len;
11126 gif_memory_source *src = current_gif_memory_src;
11128 if (len > src->len - src->index)
11129 return -1;
11131 bcopy (src->bytes + src->index, buf, len);
11132 src->index += len;
11133 return len;
11137 /* Load GIF image IMG for use on frame F. Value is non-zero if
11138 successful. */
11140 static int
11141 gif_load (f, img)
11142 struct frame *f;
11143 struct image *img;
11145 Lisp_Object file, specified_file;
11146 Lisp_Object specified_data;
11147 int rc, width, height, x, y, i;
11148 XImage *ximg;
11149 ColorMapObject *gif_color_map;
11150 unsigned long pixel_colors[256];
11151 GifFileType *gif;
11152 struct gcpro gcpro1;
11153 Lisp_Object image;
11154 int ino, image_left, image_top, image_width, image_height;
11155 gif_memory_source memsrc;
11156 unsigned char *raster;
11158 specified_file = image_spec_value (img->spec, QCfile, NULL);
11159 specified_data = image_spec_value (img->spec, QCdata, NULL);
11160 file = Qnil;
11161 GCPRO1 (file);
11163 if (NILP (specified_data))
11165 file = x_find_image_file (specified_file);
11166 if (!STRINGP (file))
11168 image_error ("Cannot find image file `%s'", specified_file, Qnil);
11169 UNGCPRO;
11170 return 0;
11173 /* Open the GIF file. */
11174 gif = DGifOpenFileName (XSTRING (file)->data);
11175 if (gif == NULL)
11177 image_error ("Cannot open `%s'", file, Qnil);
11178 UNGCPRO;
11179 return 0;
11182 else
11184 /* Read from memory! */
11185 current_gif_memory_src = &memsrc;
11186 memsrc.bytes = XSTRING (specified_data)->data;
11187 memsrc.len = STRING_BYTES (XSTRING (specified_data));
11188 memsrc.index = 0;
11190 gif = DGifOpen(&memsrc, gif_read_from_memory);
11191 if (!gif)
11193 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
11194 UNGCPRO;
11195 return 0;
11199 /* Read entire contents. */
11200 rc = DGifSlurp (gif);
11201 if (rc == GIF_ERROR)
11203 image_error ("Error reading `%s'", img->spec, Qnil);
11204 DGifCloseFile (gif);
11205 UNGCPRO;
11206 return 0;
11209 image = image_spec_value (img->spec, QCindex, NULL);
11210 ino = INTEGERP (image) ? XFASTINT (image) : 0;
11211 if (ino >= gif->ImageCount)
11213 image_error ("Invalid image number `%s' in image `%s'",
11214 image, img->spec);
11215 DGifCloseFile (gif);
11216 UNGCPRO;
11217 return 0;
11220 width = img->width = gif->SWidth;
11221 height = img->height = gif->SHeight;
11223 BLOCK_INPUT;
11225 /* Create the X image and pixmap. */
11226 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
11228 UNBLOCK_INPUT;
11229 DGifCloseFile (gif);
11230 UNGCPRO;
11231 return 0;
11234 /* Allocate colors. */
11235 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
11236 if (!gif_color_map)
11237 gif_color_map = gif->SColorMap;
11238 init_color_table ();
11239 bzero (pixel_colors, sizeof pixel_colors);
11241 for (i = 0; i < gif_color_map->ColorCount; ++i)
11243 int r = gif_color_map->Colors[i].Red << 8;
11244 int g = gif_color_map->Colors[i].Green << 8;
11245 int b = gif_color_map->Colors[i].Blue << 8;
11246 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
11249 img->colors = colors_in_color_table (&img->ncolors);
11250 free_color_table ();
11252 /* Clear the part of the screen image that are not covered by
11253 the image from the GIF file. Full animated GIF support
11254 requires more than can be done here (see the gif89 spec,
11255 disposal methods). Let's simply assume that the part
11256 not covered by a sub-image is in the frame's background color. */
11257 image_top = gif->SavedImages[ino].ImageDesc.Top;
11258 image_left = gif->SavedImages[ino].ImageDesc.Left;
11259 image_width = gif->SavedImages[ino].ImageDesc.Width;
11260 image_height = gif->SavedImages[ino].ImageDesc.Height;
11262 for (y = 0; y < image_top; ++y)
11263 for (x = 0; x < width; ++x)
11264 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11266 for (y = image_top + image_height; y < height; ++y)
11267 for (x = 0; x < width; ++x)
11268 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11270 for (y = image_top; y < image_top + image_height; ++y)
11272 for (x = 0; x < image_left; ++x)
11273 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11274 for (x = image_left + image_width; x < width; ++x)
11275 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11278 /* Read the GIF image into the X image. We use a local variable
11279 `raster' here because RasterBits below is a char *, and invites
11280 problems with bytes >= 0x80. */
11281 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
11283 if (gif->SavedImages[ino].ImageDesc.Interlace)
11285 static int interlace_start[] = {0, 4, 2, 1};
11286 static int interlace_increment[] = {8, 8, 4, 2};
11287 int pass, inc;
11288 int row = interlace_start[0];
11290 pass = 0;
11292 for (y = 0; y < image_height; y++)
11294 if (row >= image_height)
11296 row = interlace_start[++pass];
11297 while (row >= image_height)
11298 row = interlace_start[++pass];
11301 for (x = 0; x < image_width; x++)
11303 int i = raster[(y * image_width) + x];
11304 XPutPixel (ximg, x + image_left, row + image_top,
11305 pixel_colors[i]);
11308 row += interlace_increment[pass];
11311 else
11313 for (y = 0; y < image_height; ++y)
11314 for (x = 0; x < image_width; ++x)
11316 int i = raster[y* image_width + x];
11317 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
11321 DGifCloseFile (gif);
11323 /* Put the image into the pixmap, then free the X image and its buffer. */
11324 x_put_x_image (f, ximg, img->pixmap, width, height);
11325 x_destroy_x_image (ximg);
11326 UNBLOCK_INPUT;
11328 UNGCPRO;
11329 return 1;
11332 #endif /* HAVE_GIF != 0 */
11336 /***********************************************************************
11337 Ghostscript
11338 ***********************************************************************/
11340 #ifdef HAVE_GHOSTSCRIPT
11341 static int gs_image_p P_ ((Lisp_Object object));
11342 static int gs_load P_ ((struct frame *f, struct image *img));
11343 static void gs_clear_image P_ ((struct frame *f, struct image *img));
11345 /* The symbol `postscript' identifying images of this type. */
11347 Lisp_Object Qpostscript;
11349 /* Keyword symbols. */
11351 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
11353 /* Indices of image specification fields in gs_format, below. */
11355 enum gs_keyword_index
11357 GS_TYPE,
11358 GS_PT_WIDTH,
11359 GS_PT_HEIGHT,
11360 GS_FILE,
11361 GS_LOADER,
11362 GS_BOUNDING_BOX,
11363 GS_ASCENT,
11364 GS_MARGIN,
11365 GS_RELIEF,
11366 GS_ALGORITHM,
11367 GS_HEURISTIC_MASK,
11368 GS_LAST
11371 /* Vector of image_keyword structures describing the format
11372 of valid user-defined image specifications. */
11374 static struct image_keyword gs_format[GS_LAST] =
11376 {":type", IMAGE_SYMBOL_VALUE, 1},
11377 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
11378 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
11379 {":file", IMAGE_STRING_VALUE, 1},
11380 {":loader", IMAGE_FUNCTION_VALUE, 0},
11381 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
11382 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11383 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
11384 {":relief", IMAGE_INTEGER_VALUE, 0},
11385 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11386 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
11389 /* Structure describing the image type `ghostscript'. */
11391 static struct image_type gs_type =
11393 &Qpostscript,
11394 gs_image_p,
11395 gs_load,
11396 gs_clear_image,
11397 NULL
11401 /* Free X resources of Ghostscript image IMG which is used on frame F. */
11403 static void
11404 gs_clear_image (f, img)
11405 struct frame *f;
11406 struct image *img;
11408 /* IMG->data.ptr_val may contain a recorded colormap. */
11409 xfree (img->data.ptr_val);
11410 x_clear_image (f, img);
11414 /* Return non-zero if OBJECT is a valid Ghostscript image
11415 specification. */
11417 static int
11418 gs_image_p (object)
11419 Lisp_Object object;
11421 struct image_keyword fmt[GS_LAST];
11422 Lisp_Object tem;
11423 int i;
11425 bcopy (gs_format, fmt, sizeof fmt);
11427 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript)
11428 || (fmt[GS_ASCENT].count
11429 && XFASTINT (fmt[GS_ASCENT].value) > 100))
11430 return 0;
11432 /* Bounding box must be a list or vector containing 4 integers. */
11433 tem = fmt[GS_BOUNDING_BOX].value;
11434 if (CONSP (tem))
11436 for (i = 0; i < 4; ++i, tem = XCDR (tem))
11437 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
11438 return 0;
11439 if (!NILP (tem))
11440 return 0;
11442 else if (VECTORP (tem))
11444 if (XVECTOR (tem)->size != 4)
11445 return 0;
11446 for (i = 0; i < 4; ++i)
11447 if (!INTEGERP (XVECTOR (tem)->contents[i]))
11448 return 0;
11450 else
11451 return 0;
11453 return 1;
11457 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
11458 if successful. */
11460 static int
11461 gs_load (f, img)
11462 struct frame *f;
11463 struct image *img;
11465 char buffer[100];
11466 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
11467 struct gcpro gcpro1, gcpro2;
11468 Lisp_Object frame;
11469 double in_width, in_height;
11470 Lisp_Object pixel_colors = Qnil;
11472 /* Compute pixel size of pixmap needed from the given size in the
11473 image specification. Sizes in the specification are in pt. 1 pt
11474 = 1/72 in, xdpi and ydpi are stored in the frame's X display
11475 info. */
11476 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
11477 in_width = XFASTINT (pt_width) / 72.0;
11478 img->width = in_width * FRAME_W32_DISPLAY_INFO (f)->resx;
11479 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
11480 in_height = XFASTINT (pt_height) / 72.0;
11481 img->height = in_height * FRAME_W32_DISPLAY_INFO (f)->resy;
11483 /* Create the pixmap. */
11484 BLOCK_INPUT;
11485 xassert (img->pixmap == 0);
11486 img->pixmap = XCreatePixmap (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11487 img->width, img->height,
11488 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
11489 UNBLOCK_INPUT;
11491 if (!img->pixmap)
11493 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
11494 return 0;
11497 /* Call the loader to fill the pixmap. It returns a process object
11498 if successful. We do not record_unwind_protect here because
11499 other places in redisplay like calling window scroll functions
11500 don't either. Let the Lisp loader use `unwind-protect' instead. */
11501 GCPRO2 (window_and_pixmap_id, pixel_colors);
11503 sprintf (buffer, "%lu %lu",
11504 (unsigned long) FRAME_W32_WINDOW (f),
11505 (unsigned long) img->pixmap);
11506 window_and_pixmap_id = build_string (buffer);
11508 sprintf (buffer, "%lu %lu",
11509 FRAME_FOREGROUND_PIXEL (f),
11510 FRAME_BACKGROUND_PIXEL (f));
11511 pixel_colors = build_string (buffer);
11513 XSETFRAME (frame, f);
11514 loader = image_spec_value (img->spec, QCloader, NULL);
11515 if (NILP (loader))
11516 loader = intern ("gs-load-image");
11518 img->data.lisp_val = call6 (loader, frame, img->spec,
11519 make_number (img->width),
11520 make_number (img->height),
11521 window_and_pixmap_id,
11522 pixel_colors);
11523 UNGCPRO;
11524 return PROCESSP (img->data.lisp_val);
11528 /* Kill the Ghostscript process that was started to fill PIXMAP on
11529 frame F. Called from XTread_socket when receiving an event
11530 telling Emacs that Ghostscript has finished drawing. */
11532 void
11533 x_kill_gs_process (pixmap, f)
11534 Pixmap pixmap;
11535 struct frame *f;
11537 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
11538 int class, i;
11539 struct image *img;
11541 /* Find the image containing PIXMAP. */
11542 for (i = 0; i < c->used; ++i)
11543 if (c->images[i]->pixmap == pixmap)
11544 break;
11546 /* Kill the GS process. We should have found PIXMAP in the image
11547 cache and its image should contain a process object. */
11548 xassert (i < c->used);
11549 img = c->images[i];
11550 xassert (PROCESSP (img->data.lisp_val));
11551 Fkill_process (img->data.lisp_val, Qnil);
11552 img->data.lisp_val = Qnil;
11554 /* On displays with a mutable colormap, figure out the colors
11555 allocated for the image by looking at the pixels of an XImage for
11556 img->pixmap. */
11557 class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
11558 if (class != StaticColor && class != StaticGray && class != TrueColor)
11560 XImage *ximg;
11562 BLOCK_INPUT;
11564 /* Try to get an XImage for img->pixmep. */
11565 ximg = XGetImage (FRAME_W32_DISPLAY (f), img->pixmap,
11566 0, 0, img->width, img->height, ~0, ZPixmap);
11567 if (ximg)
11569 int x, y;
11571 /* Initialize the color table. */
11572 init_color_table ();
11574 /* For each pixel of the image, look its color up in the
11575 color table. After having done so, the color table will
11576 contain an entry for each color used by the image. */
11577 for (y = 0; y < img->height; ++y)
11578 for (x = 0; x < img->width; ++x)
11580 unsigned long pixel = XGetPixel (ximg, x, y);
11581 lookup_pixel_color (f, pixel);
11584 /* Record colors in the image. Free color table and XImage. */
11585 img->colors = colors_in_color_table (&img->ncolors);
11586 free_color_table ();
11587 XDestroyImage (ximg);
11589 #if 0 /* This doesn't seem to be the case. If we free the colors
11590 here, we get a BadAccess later in x_clear_image when
11591 freeing the colors. */
11592 /* We have allocated colors once, but Ghostscript has also
11593 allocated colors on behalf of us. So, to get the
11594 reference counts right, free them once. */
11595 if (img->ncolors)
11597 Colormap cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
11598 XFreeColors (FRAME_W32_DISPLAY (f), cmap,
11599 img->colors, img->ncolors, 0);
11601 #endif
11603 else
11604 image_error ("Cannot get X image of `%s'; colors will not be freed",
11605 img->spec, Qnil);
11607 UNBLOCK_INPUT;
11611 #endif /* HAVE_GHOSTSCRIPT */
11614 /***********************************************************************
11615 Window properties
11616 ***********************************************************************/
11618 DEFUN ("x-change-window-property", Fx_change_window_property,
11619 Sx_change_window_property, 2, 3, 0,
11620 "Change window property PROP to VALUE on the X window of FRAME.\n\
11621 PROP and VALUE must be strings. FRAME nil or omitted means use the\n\
11622 selected frame. Value is VALUE.")
11623 (prop, value, frame)
11624 Lisp_Object frame, prop, value;
11626 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11627 struct frame *f = check_x_frame (frame);
11628 Atom prop_atom;
11630 CHECK_STRING (prop, 1);
11631 CHECK_STRING (value, 2);
11633 BLOCK_INPUT;
11634 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11635 XChangeProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11636 prop_atom, XA_STRING, 8, PropModeReplace,
11637 XSTRING (value)->data, XSTRING (value)->size);
11639 /* Make sure the property is set when we return. */
11640 XFlush (FRAME_W32_DISPLAY (f));
11641 UNBLOCK_INPUT;
11643 #endif /* NTEMACS_TODO */
11645 return value;
11649 DEFUN ("x-delete-window-property", Fx_delete_window_property,
11650 Sx_delete_window_property, 1, 2, 0,
11651 "Remove window property PROP from X window of FRAME.\n\
11652 FRAME nil or omitted means use the selected frame. Value is PROP.")
11653 (prop, frame)
11654 Lisp_Object prop, frame;
11656 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11658 struct frame *f = check_x_frame (frame);
11659 Atom prop_atom;
11661 CHECK_STRING (prop, 1);
11662 BLOCK_INPUT;
11663 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11664 XDeleteProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), prop_atom);
11666 /* Make sure the property is removed when we return. */
11667 XFlush (FRAME_W32_DISPLAY (f));
11668 UNBLOCK_INPUT;
11669 #endif /* NTEMACS_TODO */
11671 return prop;
11675 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
11676 1, 2, 0,
11677 "Value is the value of window property PROP on FRAME.\n\
11678 If FRAME is nil or omitted, use the selected frame. Value is nil\n\
11679 if FRAME hasn't a property with name PROP or if PROP has no string\n\
11680 value.")
11681 (prop, frame)
11682 Lisp_Object prop, frame;
11684 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11686 struct frame *f = check_x_frame (frame);
11687 Atom prop_atom;
11688 int rc;
11689 Lisp_Object prop_value = Qnil;
11690 char *tmp_data = NULL;
11691 Atom actual_type;
11692 int actual_format;
11693 unsigned long actual_size, bytes_remaining;
11695 CHECK_STRING (prop, 1);
11696 BLOCK_INPUT;
11697 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11698 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11699 prop_atom, 0, 0, False, XA_STRING,
11700 &actual_type, &actual_format, &actual_size,
11701 &bytes_remaining, (unsigned char **) &tmp_data);
11702 if (rc == Success)
11704 int size = bytes_remaining;
11706 XFree (tmp_data);
11707 tmp_data = NULL;
11709 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11710 prop_atom, 0, bytes_remaining,
11711 False, XA_STRING,
11712 &actual_type, &actual_format,
11713 &actual_size, &bytes_remaining,
11714 (unsigned char **) &tmp_data);
11715 if (rc == Success)
11716 prop_value = make_string (tmp_data, size);
11718 XFree (tmp_data);
11721 UNBLOCK_INPUT;
11723 return prop_value;
11725 #endif /* NTEMACS_TODO */
11726 return Qnil;
11731 /***********************************************************************
11732 Busy cursor
11733 ***********************************************************************/
11735 /* If non-null, an asynchronous timer that, when it expires, displays
11736 a busy cursor on all frames. */
11738 static struct atimer *busy_cursor_atimer;
11740 /* Non-zero means a busy cursor is currently shown. */
11742 static int busy_cursor_shown_p;
11744 /* Number of seconds to wait before displaying a busy cursor. */
11746 static Lisp_Object Vbusy_cursor_delay;
11748 /* Default number of seconds to wait before displaying a busy
11749 cursor. */
11751 #define DEFAULT_BUSY_CURSOR_DELAY 1
11753 /* Function prototypes. */
11755 static void show_busy_cursor P_ ((struct atimer *));
11756 static void hide_busy_cursor P_ ((void));
11759 /* Cancel a currently active busy-cursor timer, and start a new one. */
11761 void
11762 start_busy_cursor ()
11764 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11765 EMACS_TIME delay;
11766 int secs, usecs = 0;
11768 cancel_busy_cursor ();
11770 if (INTEGERP (Vbusy_cursor_delay)
11771 && XINT (Vbusy_cursor_delay) > 0)
11772 secs = XFASTINT (Vbusy_cursor_delay);
11773 else if (FLOATP (Vbusy_cursor_delay)
11774 && XFLOAT_DATA (Vbusy_cursor_delay) > 0)
11776 Lisp_Object tem;
11777 tem = Ftruncate (Vbusy_cursor_delay, Qnil);
11778 secs = XFASTINT (tem);
11779 usecs = (XFLOAT_DATA (Vbusy_cursor_delay) - secs) * 1000000;
11781 else
11782 secs = DEFAULT_BUSY_CURSOR_DELAY;
11784 EMACS_SET_SECS_USECS (delay, secs, usecs);
11785 busy_cursor_atimer = start_atimer (ATIMER_RELATIVE, delay,
11786 show_busy_cursor, NULL);
11787 #endif
11791 /* Cancel the busy cursor timer if active, hide a busy cursor if
11792 shown. */
11794 void
11795 cancel_busy_cursor ()
11797 if (busy_cursor_atimer)
11799 cancel_atimer (busy_cursor_atimer);
11800 busy_cursor_atimer = NULL;
11803 if (busy_cursor_shown_p)
11804 hide_busy_cursor ();
11808 /* Timer function of busy_cursor_atimer. TIMER is equal to
11809 busy_cursor_atimer.
11811 Display a busy cursor on all frames by mapping the frames'
11812 busy_window. Set the busy_p flag in the frames' output_data.x
11813 structure to indicate that a busy cursor is shown on the
11814 frames. */
11816 static void
11817 show_busy_cursor (timer)
11818 struct atimer *timer;
11820 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11821 /* The timer implementation will cancel this timer automatically
11822 after this function has run. Set busy_cursor_atimer to null
11823 so that we know the timer doesn't have to be canceled. */
11824 busy_cursor_atimer = NULL;
11826 if (!busy_cursor_shown_p)
11828 Lisp_Object rest, frame;
11830 BLOCK_INPUT;
11832 FOR_EACH_FRAME (rest, frame)
11833 if (FRAME_X_P (XFRAME (frame)))
11835 struct frame *f = XFRAME (frame);
11837 f->output_data.w32->busy_p = 1;
11839 if (!f->output_data.w32->busy_window)
11841 unsigned long mask = CWCursor;
11842 XSetWindowAttributes attrs;
11844 attrs.cursor = f->output_data.w32->busy_cursor;
11846 f->output_data.w32->busy_window
11847 = XCreateWindow (FRAME_X_DISPLAY (f),
11848 FRAME_OUTER_WINDOW (f),
11849 0, 0, 32000, 32000, 0, 0,
11850 InputOnly,
11851 CopyFromParent,
11852 mask, &attrs);
11855 XMapRaised (FRAME_X_DISPLAY (f), f->output_data.w32->busy_window);
11856 XFlush (FRAME_X_DISPLAY (f));
11859 busy_cursor_shown_p = 1;
11860 UNBLOCK_INPUT;
11862 #endif
11866 /* Hide the busy cursor on all frames, if it is currently shown. */
11868 static void
11869 hide_busy_cursor ()
11871 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11872 if (busy_cursor_shown_p)
11874 Lisp_Object rest, frame;
11876 BLOCK_INPUT;
11877 FOR_EACH_FRAME (rest, frame)
11879 struct frame *f = XFRAME (frame);
11881 if (FRAME_X_P (f)
11882 /* Watch out for newly created frames. */
11883 && f->output_data.x->busy_window)
11885 XUnmapWindow (FRAME_X_DISPLAY (f), f->output_data.x->busy_window);
11886 /* Sync here because XTread_socket looks at the busy_p flag
11887 that is reset to zero below. */
11888 XSync (FRAME_X_DISPLAY (f), False);
11889 f->output_data.x->busy_p = 0;
11893 busy_cursor_shown_p = 0;
11894 UNBLOCK_INPUT;
11896 #endif
11901 /***********************************************************************
11902 Tool tips
11903 ***********************************************************************/
11905 static Lisp_Object x_create_tip_frame P_ ((struct w32_display_info *,
11906 Lisp_Object));
11908 /* The frame of a currently visible tooltip, or null. */
11910 struct frame *tip_frame;
11912 /* If non-nil, a timer started that hides the last tooltip when it
11913 fires. */
11915 Lisp_Object tip_timer;
11916 Window tip_window;
11918 /* Create a frame for a tooltip on the display described by DPYINFO.
11919 PARMS is a list of frame parameters. Value is the frame. */
11921 static Lisp_Object
11922 x_create_tip_frame (dpyinfo, parms)
11923 struct w32_display_info *dpyinfo;
11924 Lisp_Object parms;
11926 #if 0 /* NTEMACS_TODO : w32 version */
11927 struct frame *f;
11928 Lisp_Object frame, tem;
11929 Lisp_Object name;
11930 long window_prompting = 0;
11931 int width, height;
11932 int count = specpdl_ptr - specpdl;
11933 struct gcpro gcpro1, gcpro2, gcpro3;
11934 struct kboard *kb;
11936 check_x ();
11938 /* Use this general default value to start with until we know if
11939 this frame has a specified name. */
11940 Vx_resource_name = Vinvocation_name;
11942 #ifdef MULTI_KBOARD
11943 kb = dpyinfo->kboard;
11944 #else
11945 kb = &the_only_kboard;
11946 #endif
11948 /* Get the name of the frame to use for resource lookup. */
11949 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
11950 if (!STRINGP (name)
11951 && !EQ (name, Qunbound)
11952 && !NILP (name))
11953 error ("Invalid frame name--not a string or nil");
11954 Vx_resource_name = name;
11956 frame = Qnil;
11957 GCPRO3 (parms, name, frame);
11958 tip_frame = f = make_frame (1);
11959 XSETFRAME (frame, f);
11960 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
11962 f->output_method = output_w32;
11963 f->output_data.w32 =
11964 (struct w32_output *) xmalloc (sizeof (struct w32_output));
11965 bzero (f->output_data.w32, sizeof (struct w32_output));
11966 #if 0
11967 f->output_data.w32->icon_bitmap = -1;
11968 #endif
11969 f->output_data.w32->fontset = -1;
11970 f->icon_name = Qnil;
11972 #ifdef MULTI_KBOARD
11973 FRAME_KBOARD (f) = kb;
11974 #endif
11975 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
11976 f->output_data.w32->explicit_parent = 0;
11978 /* Set the name; the functions to which we pass f expect the name to
11979 be set. */
11980 if (EQ (name, Qunbound) || NILP (name))
11982 f->name = build_string (dpyinfo->x_id_name);
11983 f->explicit_name = 0;
11985 else
11987 f->name = name;
11988 f->explicit_name = 1;
11989 /* use the frame's title when getting resources for this frame. */
11990 specbind (Qx_resource_name, name);
11993 /* Extract the window parameters from the supplied values
11994 that are needed to determine window geometry. */
11996 Lisp_Object font;
11998 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
12000 BLOCK_INPUT;
12001 /* First, try whatever font the caller has specified. */
12002 if (STRINGP (font))
12004 tem = Fquery_fontset (font, Qnil);
12005 if (STRINGP (tem))
12006 font = x_new_fontset (f, XSTRING (tem)->data);
12007 else
12008 font = x_new_font (f, XSTRING (font)->data);
12011 /* Try out a font which we hope has bold and italic variations. */
12012 if (!STRINGP (font))
12013 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
12014 if (!STRINGP (font))
12015 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12016 if (! STRINGP (font))
12017 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12018 if (! STRINGP (font))
12019 /* This was formerly the first thing tried, but it finds too many fonts
12020 and takes too long. */
12021 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
12022 /* If those didn't work, look for something which will at least work. */
12023 if (! STRINGP (font))
12024 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
12025 UNBLOCK_INPUT;
12026 if (! STRINGP (font))
12027 font = build_string ("fixed");
12029 x_default_parameter (f, parms, Qfont, font,
12030 "font", "Font", RES_TYPE_STRING);
12033 x_default_parameter (f, parms, Qborder_width, make_number (2),
12034 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
12036 /* This defaults to 2 in order to match xterm. We recognize either
12037 internalBorderWidth or internalBorder (which is what xterm calls
12038 it). */
12039 if (NILP (Fassq (Qinternal_border_width, parms)))
12041 Lisp_Object value;
12043 value = w32_get_arg (parms, Qinternal_border_width,
12044 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
12045 if (! EQ (value, Qunbound))
12046 parms = Fcons (Fcons (Qinternal_border_width, value),
12047 parms);
12050 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
12051 "internalBorderWidth", "internalBorderWidth",
12052 RES_TYPE_NUMBER);
12054 /* Also do the stuff which must be set before the window exists. */
12055 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
12056 "foreground", "Foreground", RES_TYPE_STRING);
12057 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
12058 "background", "Background", RES_TYPE_STRING);
12059 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
12060 "pointerColor", "Foreground", RES_TYPE_STRING);
12061 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
12062 "cursorColor", "Foreground", RES_TYPE_STRING);
12063 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
12064 "borderColor", "BorderColor", RES_TYPE_STRING);
12066 /* Init faces before x_default_parameter is called for scroll-bar
12067 parameters because that function calls x_set_scroll_bar_width,
12068 which calls change_frame_size, which calls Fset_window_buffer,
12069 which runs hooks, which call Fvertical_motion. At the end, we
12070 end up in init_iterator with a null face cache, which should not
12071 happen. */
12072 init_frame_faces (f);
12074 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
12075 window_prompting = x_figure_window_size (f, parms);
12077 if (window_prompting & XNegative)
12079 if (window_prompting & YNegative)
12080 f->output_data.w32->win_gravity = SouthEastGravity;
12081 else
12082 f->output_data.w32->win_gravity = NorthEastGravity;
12084 else
12086 if (window_prompting & YNegative)
12087 f->output_data.w32->win_gravity = SouthWestGravity;
12088 else
12089 f->output_data.w32->win_gravity = NorthWestGravity;
12092 f->output_data.w32->size_hint_flags = window_prompting;
12094 XSetWindowAttributes attrs;
12095 unsigned long mask;
12097 BLOCK_INPUT;
12098 mask = CWBackPixel | CWOverrideRedirect | CWSaveUnder | CWEventMask;
12099 /* Window managers looks at the override-redirect flag to
12100 determine whether or net to give windows a decoration (Xlib
12101 3.2.8). */
12102 attrs.override_redirect = True;
12103 attrs.save_under = True;
12104 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
12105 /* Arrange for getting MapNotify and UnmapNotify events. */
12106 attrs.event_mask = StructureNotifyMask;
12107 tip_window
12108 = FRAME_W32_WINDOW (f)
12109 = XCreateWindow (FRAME_W32_DISPLAY (f),
12110 FRAME_W32_DISPLAY_INFO (f)->root_window,
12111 /* x, y, width, height */
12112 0, 0, 1, 1,
12113 /* Border. */
12115 CopyFromParent, InputOutput, CopyFromParent,
12116 mask, &attrs);
12117 UNBLOCK_INPUT;
12120 x_make_gc (f);
12122 x_default_parameter (f, parms, Qauto_raise, Qnil,
12123 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
12124 x_default_parameter (f, parms, Qauto_lower, Qnil,
12125 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
12126 x_default_parameter (f, parms, Qcursor_type, Qbox,
12127 "cursorType", "CursorType", RES_TYPE_SYMBOL);
12129 /* Dimensions, especially f->height, must be done via change_frame_size.
12130 Change will not be effected unless different from the current
12131 f->height. */
12132 width = f->width;
12133 height = f->height;
12134 f->height = 0;
12135 SET_FRAME_WIDTH (f, 0);
12136 change_frame_size (f, height, width, 1, 0, 0);
12138 f->no_split = 1;
12140 UNGCPRO;
12142 /* It is now ok to make the frame official even if we get an error
12143 below. And the frame needs to be on Vframe_list or making it
12144 visible won't work. */
12145 Vframe_list = Fcons (frame, Vframe_list);
12147 /* Now that the frame is official, it counts as a reference to
12148 its display. */
12149 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
12151 return unbind_to (count, frame);
12152 #endif /* NTEMACS_TODO */
12153 return Qnil;
12157 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
12158 "Show STRING in a \"tooltip\" window on frame FRAME.\n\
12159 A tooltip window is a small X window displaying a string.\n\
12161 FRAME nil or omitted means use the selected frame.\n\
12163 PARMS is an optional list of frame parameters which can be\n\
12164 used to change the tooltip's appearance.\n\
12166 Automatically hide the tooltip after TIMEOUT seconds.\n\
12167 TIMEOUT nil means use the default timeout of 5 seconds.\n\
12169 If the list of frame parameters PARAMS contains a `left' parameters,\n\
12170 the tooltip is displayed at that x-position. Otherwise it is\n\
12171 displayed at the mouse position, with offset DX added (default is 5 if\n\
12172 DX isn't specified). Likewise for the y-position; if a `top' frame\n\
12173 parameter is specified, it determines the y-position of the tooltip\n\
12174 window, otherwise it is displayed at the mouse position, with offset\n\
12175 DY added (default is -5).")
12176 (string, frame, parms, timeout, dx, dy)
12177 Lisp_Object string, frame, parms, timeout, dx, dy;
12179 struct frame *f;
12180 struct window *w;
12181 Window root, child;
12182 Lisp_Object buffer, top, left;
12183 struct buffer *old_buffer;
12184 struct text_pos pos;
12185 int i, width, height;
12186 int root_x, root_y, win_x, win_y;
12187 unsigned pmask;
12188 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
12189 int old_windows_or_buffers_changed = windows_or_buffers_changed;
12190 int count = specpdl_ptr - specpdl;
12192 specbind (Qinhibit_redisplay, Qt);
12194 GCPRO4 (string, parms, frame, timeout);
12196 CHECK_STRING (string, 0);
12197 f = check_x_frame (frame);
12198 if (NILP (timeout))
12199 timeout = make_number (5);
12200 else
12201 CHECK_NATNUM (timeout, 2);
12203 if (NILP (dx))
12204 dx = make_number (5);
12205 else
12206 CHECK_NUMBER (dx, 5);
12208 if (NILP (dy))
12209 dy = make_number (-5);
12210 else
12211 CHECK_NUMBER (dy, 6);
12213 /* Hide a previous tip, if any. */
12214 Fx_hide_tip ();
12216 /* Add default values to frame parameters. */
12217 if (NILP (Fassq (Qname, parms)))
12218 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
12219 if (NILP (Fassq (Qinternal_border_width, parms)))
12220 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
12221 if (NILP (Fassq (Qborder_width, parms)))
12222 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
12223 if (NILP (Fassq (Qborder_color, parms)))
12224 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
12225 if (NILP (Fassq (Qbackground_color, parms)))
12226 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
12227 parms);
12229 /* Create a frame for the tooltip, and record it in the global
12230 variable tip_frame. */
12231 frame = x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f), parms);
12232 tip_frame = f = XFRAME (frame);
12234 /* Set up the frame's root window. Currently we use a size of 80
12235 columns x 40 lines. If someone wants to show a larger tip, he
12236 will loose. I don't think this is a realistic case. */
12237 w = XWINDOW (FRAME_ROOT_WINDOW (f));
12238 w->left = w->top = make_number (0);
12239 w->width = 80;
12240 w->height = 40;
12241 adjust_glyphs (f);
12242 w->pseudo_window_p = 1;
12244 /* Display the tooltip text in a temporary buffer. */
12245 buffer = Fget_buffer_create (build_string (" *tip*"));
12246 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer);
12247 old_buffer = current_buffer;
12248 set_buffer_internal_1 (XBUFFER (buffer));
12249 Ferase_buffer ();
12250 Finsert (make_number (1), &string);
12251 clear_glyph_matrix (w->desired_matrix);
12252 clear_glyph_matrix (w->current_matrix);
12253 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
12254 try_window (FRAME_ROOT_WINDOW (f), pos);
12256 /* Compute width and height of the tooltip. */
12257 width = height = 0;
12258 for (i = 0; i < w->desired_matrix->nrows; ++i)
12260 struct glyph_row *row = &w->desired_matrix->rows[i];
12261 struct glyph *last;
12262 int row_width;
12264 /* Stop at the first empty row at the end. */
12265 if (!row->enabled_p || !row->displays_text_p)
12266 break;
12268 /* Let the row go over the full width of the frame. */
12269 row->full_width_p = 1;
12271 /* There's a glyph at the end of rows that is use to place
12272 the cursor there. Don't include the width of this glyph. */
12273 if (row->used[TEXT_AREA])
12275 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
12276 row_width = row->pixel_width - last->pixel_width;
12278 else
12279 row_width = row->pixel_width;
12281 height += row->height;
12282 width = max (width, row_width);
12285 /* Add the frame's internal border to the width and height the X
12286 window should have. */
12287 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
12288 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
12290 /* User-specified position? */
12291 left = Fcdr (Fassq (Qleft, parms));
12292 top = Fcdr (Fassq (Qtop, parms));
12294 /* Move the tooltip window where the mouse pointer is. Resize and
12295 show it. */
12296 #if 0 /* NTEMACS_TODO : W32 specifics */
12297 BLOCK_INPUT;
12298 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
12299 &root, &child, &root_x, &root_y, &win_x, &win_y, &pmask);
12300 UNBLOCK_INPUT;
12302 root_x += XINT (dx);
12303 root_y += XINT (dy);
12305 if (INTEGERP (left))
12306 root_x = XINT (left);
12307 if (INTEGERP (top))
12308 root_y = XINT (top);
12310 BLOCK_INPUT;
12311 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
12312 root_x, root_y - height, width, height);
12313 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
12314 UNBLOCK_INPUT;
12315 #endif /* NTEMACS_TODO */
12317 /* Draw into the window. */
12318 w->must_be_updated_p = 1;
12319 update_single_window (w, 1);
12321 /* Restore original current buffer. */
12322 set_buffer_internal_1 (old_buffer);
12323 windows_or_buffers_changed = old_windows_or_buffers_changed;
12325 /* Let the tip disappear after timeout seconds. */
12326 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
12327 intern ("x-hide-tip"));
12329 UNGCPRO;
12330 return unbind_to (count, Qnil);
12334 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
12335 "Hide the current tooltip window, if there is any.\n\
12336 Value is t is tooltip was open, nil otherwise.")
12339 int count = specpdl_ptr - specpdl;
12340 int deleted_p = 0;
12342 specbind (Qinhibit_redisplay, Qt);
12344 if (!NILP (tip_timer))
12346 call1 (intern ("cancel-timer"), tip_timer);
12347 tip_timer = Qnil;
12350 if (tip_frame)
12352 Lisp_Object frame;
12354 XSETFRAME (frame, tip_frame);
12355 Fdelete_frame (frame, Qt);
12356 tip_frame = NULL;
12357 deleted_p = 1;
12360 return unbind_to (count, deleted_p ? Qt : Qnil);
12365 /***********************************************************************
12366 File selection dialog
12367 ***********************************************************************/
12369 extern Lisp_Object Qfile_name_history;
12371 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
12372 "Read file name, prompting with PROMPT in directory DIR.\n\
12373 Use a file selection dialog.\n\
12374 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
12375 specified. Don't let the user enter a file name in the file\n\
12376 selection dialog's entry field, if MUSTMATCH is non-nil.")
12377 (prompt, dir, default_filename, mustmatch)
12378 Lisp_Object prompt, dir, default_filename, mustmatch;
12380 struct frame *f = SELECTED_FRAME ();
12381 Lisp_Object file = Qnil;
12382 int count = specpdl_ptr - specpdl;
12383 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
12384 char filename[MAX_PATH + 1];
12385 char init_dir[MAX_PATH + 1];
12386 int use_dialog_p = 1;
12388 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
12389 CHECK_STRING (prompt, 0);
12390 CHECK_STRING (dir, 1);
12392 /* Create the dialog with PROMPT as title, using DIR as initial
12393 directory and using "*" as pattern. */
12394 dir = Fexpand_file_name (dir, Qnil);
12395 strncpy (init_dir, XSTRING (dir)->data, MAX_PATH);
12396 init_dir[MAX_PATH] = '\0';
12397 unixtodos_filename (init_dir);
12399 if (STRINGP (default_filename))
12401 char *file_name_only;
12402 char *full_path_name = XSTRING (default_filename)->data;
12404 unixtodos_filename (full_path_name);
12406 file_name_only = strrchr (full_path_name, '\\');
12407 if (!file_name_only)
12408 file_name_only = full_path_name;
12409 else
12411 file_name_only++;
12413 /* If default_file_name is a directory, don't use the open
12414 file dialog, as it does not support selecting
12415 directories. */
12416 if (!(*file_name_only))
12417 use_dialog_p = 0;
12420 strncpy (filename, file_name_only, MAX_PATH);
12421 filename[MAX_PATH] = '\0';
12423 else
12424 filename[0] = '\0';
12426 if (use_dialog_p)
12428 OPENFILENAME file_details;
12429 char *filename_file;
12431 /* Prevent redisplay. */
12432 specbind (Qinhibit_redisplay, Qt);
12433 BLOCK_INPUT;
12435 bzero (&file_details, sizeof (file_details));
12436 file_details.lStructSize = sizeof (file_details);
12437 file_details.hwndOwner = FRAME_W32_WINDOW (f);
12438 file_details.lpstrFile = filename;
12439 file_details.nMaxFile = sizeof (filename);
12440 file_details.lpstrInitialDir = init_dir;
12441 file_details.lpstrTitle = XSTRING (prompt)->data;
12442 file_details.Flags = OFN_HIDEREADONLY | OFN_NOCHANGEDIR;
12444 if (!NILP (mustmatch))
12445 file_details.Flags |= OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
12447 if (GetOpenFileName (&file_details))
12449 dostounix_filename (filename);
12450 file = build_string (filename);
12452 else
12453 file = Qnil;
12455 UNBLOCK_INPUT;
12456 file = unbind_to (count, file);
12458 /* Open File dialog will not allow folders to be selected, so resort
12459 to minibuffer completing reads for directories. */
12460 else
12461 file = Fcompleting_read (prompt, intern ("read-file-name-internal"),
12462 dir, mustmatch, dir, Qfile_name_history,
12463 default_filename, Qnil);
12465 UNGCPRO;
12467 /* Make "Cancel" equivalent to C-g. */
12468 if (NILP (file))
12469 Fsignal (Qquit, Qnil);
12471 return unbind_to (count, file);
12476 /***********************************************************************
12477 Tests
12478 ***********************************************************************/
12480 #if GLYPH_DEBUG
12482 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
12483 "Value is non-nil if SPEC is a valid image specification.")
12484 (spec)
12485 Lisp_Object spec;
12487 return valid_image_p (spec) ? Qt : Qnil;
12491 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
12492 (spec)
12493 Lisp_Object spec;
12495 int id = -1;
12497 if (valid_image_p (spec))
12498 id = lookup_image (SELECTED_FRAME (), spec);
12500 debug_print (spec);
12501 return make_number (id);
12504 #endif /* GLYPH_DEBUG != 0 */
12508 /***********************************************************************
12509 w32 specialized functions
12510 ***********************************************************************/
12512 DEFUN ("w32-select-font", Fw32_select_font, Sw32_select_font, 0, 1, 0,
12513 "This will display the W32 font dialog and return an X font string corresponding to the selection.")
12514 (frame)
12515 Lisp_Object frame;
12517 FRAME_PTR f = check_x_frame (frame);
12518 CHOOSEFONT cf;
12519 LOGFONT lf;
12520 TEXTMETRIC tm;
12521 HDC hdc;
12522 HANDLE oldobj;
12523 char buf[100];
12525 bzero (&cf, sizeof (cf));
12526 bzero (&lf, sizeof (lf));
12528 cf.lStructSize = sizeof (cf);
12529 cf.hwndOwner = FRAME_W32_WINDOW (f);
12530 cf.Flags = CF_FORCEFONTEXIST | CF_SCREENFONTS;
12531 cf.lpLogFont = &lf;
12533 /* Initialize as much of the font details as we can from the current
12534 default font. */
12535 hdc = GetDC (FRAME_W32_WINDOW (f));
12536 oldobj = SelectObject (hdc, FRAME_FONT (f)->hfont);
12537 GetTextFace (hdc, LF_FACESIZE, lf.lfFaceName);
12538 if (GetTextMetrics (hdc, &tm))
12540 lf.lfHeight = tm.tmInternalLeading - tm.tmHeight;
12541 lf.lfWeight = tm.tmWeight;
12542 lf.lfItalic = tm.tmItalic;
12543 lf.lfUnderline = tm.tmUnderlined;
12544 lf.lfStrikeOut = tm.tmStruckOut;
12545 lf.lfCharSet = tm.tmCharSet;
12546 cf.Flags |= CF_INITTOLOGFONTSTRUCT;
12548 SelectObject (hdc, oldobj);
12549 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
12551 if (!ChooseFont (&cf) || !w32_to_x_font (&lf, buf, 100))
12552 return Qnil;
12554 return build_string (buf);
12557 DEFUN ("w32-send-sys-command", Fw32_send_sys_command, Sw32_send_sys_command, 1, 2, 0,
12558 "Send frame a Windows WM_SYSCOMMAND message of type COMMAND.\n\
12559 Some useful values for command are 0xf030 to maximise frame (0xf020\n\
12560 to minimize), 0xf120 to restore frame to original size, and 0xf100\n\
12561 to activate the menubar for keyboard access. 0xf140 activates the\n\
12562 screen saver if defined.\n\
12564 If optional parameter FRAME is not specified, use selected frame.")
12565 (command, frame)
12566 Lisp_Object command, frame;
12568 WPARAM code;
12569 FRAME_PTR f = check_x_frame (frame);
12571 CHECK_NUMBER (command, 0);
12573 PostMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, XINT (command), 0);
12575 return Qnil;
12578 DEFUN ("w32-shell-execute", Fw32_shell_execute, Sw32_shell_execute, 2, 4, 0,
12579 "Get Windows to perform OPERATION on DOCUMENT.\n\
12580 This is a wrapper around the ShellExecute system function, which\n\
12581 invokes the application registered to handle OPERATION for DOCUMENT.\n\
12582 OPERATION is typically \"open\", \"print\" or \"explore\" (but can be\n\
12583 nil for the default action), and DOCUMENT is typically the name of a\n\
12584 document file or URL, but can also be a program executable to run or\n\
12585 a directory to open in the Windows Explorer.\n\
12587 If DOCUMENT is a program executable, PARAMETERS can be a string\n\
12588 containing command line parameters, but otherwise should be nil.\n\
12590 SHOW-FLAG can be used to control whether the invoked application is hidden\n\
12591 or minimized. If SHOW-FLAG is nil, the application is displayed normally,\n\
12592 otherwise it is an integer representing a ShowWindow flag:\n\
12594 0 - start hidden\n\
12595 1 - start normally\n\
12596 3 - start maximized\n\
12597 6 - start minimized")
12598 (operation, document, parameters, show_flag)
12599 Lisp_Object operation, document, parameters, show_flag;
12601 Lisp_Object current_dir;
12603 CHECK_STRING (document, 0);
12605 /* Encode filename and current directory. */
12606 current_dir = ENCODE_FILE (current_buffer->directory);
12607 document = ENCODE_FILE (document);
12608 if ((int) ShellExecute (NULL,
12609 (STRINGP (operation) ?
12610 XSTRING (operation)->data : NULL),
12611 XSTRING (document)->data,
12612 (STRINGP (parameters) ?
12613 XSTRING (parameters)->data : NULL),
12614 XSTRING (current_dir)->data,
12615 (INTEGERP (show_flag) ?
12616 XINT (show_flag) : SW_SHOWDEFAULT))
12617 > 32)
12618 return Qt;
12619 error ("ShellExecute failed");
12622 /* Lookup virtual keycode from string representing the name of a
12623 non-ascii keystroke into the corresponding virtual key, using
12624 lispy_function_keys. */
12625 static int
12626 lookup_vk_code (char *key)
12628 int i;
12630 for (i = 0; i < 256; i++)
12631 if (lispy_function_keys[i] != 0
12632 && strcmp (lispy_function_keys[i], key) == 0)
12633 return i;
12635 return -1;
12638 /* Convert a one-element vector style key sequence to a hot key
12639 definition. */
12640 static int
12641 w32_parse_hot_key (key)
12642 Lisp_Object key;
12644 /* Copied from Fdefine_key and store_in_keymap. */
12645 register Lisp_Object c;
12646 int vk_code;
12647 int lisp_modifiers;
12648 int w32_modifiers;
12649 struct gcpro gcpro1;
12651 CHECK_VECTOR (key, 0);
12653 if (XFASTINT (Flength (key)) != 1)
12654 return Qnil;
12656 GCPRO1 (key);
12658 c = Faref (key, make_number (0));
12660 if (CONSP (c) && lucid_event_type_list_p (c))
12661 c = Fevent_convert_list (c);
12663 UNGCPRO;
12665 if (! INTEGERP (c) && ! SYMBOLP (c))
12666 error ("Key definition is invalid");
12668 /* Work out the base key and the modifiers. */
12669 if (SYMBOLP (c))
12671 c = parse_modifiers (c);
12672 lisp_modifiers = Fcar (Fcdr (c));
12673 c = Fcar (c);
12674 if (!SYMBOLP (c))
12675 abort ();
12676 vk_code = lookup_vk_code (XSYMBOL (c)->name->data);
12678 else if (INTEGERP (c))
12680 lisp_modifiers = XINT (c) & ~CHARACTERBITS;
12681 /* Many ascii characters are their own virtual key code. */
12682 vk_code = XINT (c) & CHARACTERBITS;
12685 if (vk_code < 0 || vk_code > 255)
12686 return Qnil;
12688 if ((lisp_modifiers & meta_modifier) != 0
12689 && !NILP (Vw32_alt_is_meta))
12690 lisp_modifiers |= alt_modifier;
12692 /* Supply defs missing from mingw32. */
12693 #ifndef MOD_ALT
12694 #define MOD_ALT 0x0001
12695 #define MOD_CONTROL 0x0002
12696 #define MOD_SHIFT 0x0004
12697 #define MOD_WIN 0x0008
12698 #endif
12700 /* Convert lisp modifiers to Windows hot-key form. */
12701 w32_modifiers = (lisp_modifiers & hyper_modifier) ? MOD_WIN : 0;
12702 w32_modifiers |= (lisp_modifiers & alt_modifier) ? MOD_ALT : 0;
12703 w32_modifiers |= (lisp_modifiers & ctrl_modifier) ? MOD_CONTROL : 0;
12704 w32_modifiers |= (lisp_modifiers & shift_modifier) ? MOD_SHIFT : 0;
12706 return HOTKEY (vk_code, w32_modifiers);
12709 DEFUN ("w32-register-hot-key", Fw32_register_hot_key, Sw32_register_hot_key, 1, 1, 0,
12710 "Register KEY as a hot-key combination.\n\
12711 Certain key combinations like Alt-Tab are reserved for system use on\n\
12712 Windows, and therefore are normally intercepted by the system. However,\n\
12713 most of these key combinations can be received by registering them as\n\
12714 hot-keys, overriding their special meaning.\n\
12716 KEY must be a one element key definition in vector form that would be\n\
12717 acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta\n\
12718 modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper\n\
12719 is always interpreted as the Windows modifier keys.\n\
12721 The return value is the hotkey-id if registered, otherwise nil.")
12722 (key)
12723 Lisp_Object key;
12725 key = w32_parse_hot_key (key);
12727 if (NILP (Fmemq (key, w32_grabbed_keys)))
12729 /* Reuse an empty slot if possible. */
12730 Lisp_Object item = Fmemq (Qnil, w32_grabbed_keys);
12732 /* Safe to add new key to list, even if we have focus. */
12733 if (NILP (item))
12734 w32_grabbed_keys = Fcons (key, w32_grabbed_keys);
12735 else
12736 XCAR (item) = key;
12738 /* Notify input thread about new hot-key definition, so that it
12739 takes effect without needing to switch focus. */
12740 PostThreadMessage (dwWindowsThreadId, WM_EMACS_REGISTER_HOT_KEY,
12741 (WPARAM) key, 0);
12744 return key;
12747 DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key, Sw32_unregister_hot_key, 1, 1, 0,
12748 "Unregister HOTKEY as a hot-key combination.")
12749 (key)
12750 Lisp_Object key;
12752 Lisp_Object item;
12754 if (!INTEGERP (key))
12755 key = w32_parse_hot_key (key);
12757 item = Fmemq (key, w32_grabbed_keys);
12759 if (!NILP (item))
12761 /* Notify input thread about hot-key definition being removed, so
12762 that it takes effect without needing focus switch. */
12763 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
12764 (WPARAM) XINT (XCAR (item)), (LPARAM) item))
12766 MSG msg;
12767 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
12769 return Qt;
12771 return Qnil;
12774 DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys, Sw32_registered_hot_keys, 0, 0, 0,
12775 "Return list of registered hot-key IDs.")
12778 return Fcopy_sequence (w32_grabbed_keys);
12781 DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key, Sw32_reconstruct_hot_key, 1, 1, 0,
12782 "Convert hot-key ID to a lisp key combination.")
12783 (hotkeyid)
12784 Lisp_Object hotkeyid;
12786 int vk_code, w32_modifiers;
12787 Lisp_Object key;
12789 CHECK_NUMBER (hotkeyid, 0);
12791 vk_code = HOTKEY_VK_CODE (hotkeyid);
12792 w32_modifiers = HOTKEY_MODIFIERS (hotkeyid);
12794 if (lispy_function_keys[vk_code])
12795 key = intern (lispy_function_keys[vk_code]);
12796 else
12797 key = make_number (vk_code);
12799 key = Fcons (key, Qnil);
12800 if (w32_modifiers & MOD_SHIFT)
12801 key = Fcons (Qshift, key);
12802 if (w32_modifiers & MOD_CONTROL)
12803 key = Fcons (Qctrl, key);
12804 if (w32_modifiers & MOD_ALT)
12805 key = Fcons (NILP (Vw32_alt_is_meta) ? Qalt : Qmeta, key);
12806 if (w32_modifiers & MOD_WIN)
12807 key = Fcons (Qhyper, key);
12809 return key;
12812 DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key, Sw32_toggle_lock_key, 1, 2, 0,
12813 "Toggle the state of the lock key KEY.\n\
12814 KEY can be `capslock', `kp-numlock', or `scroll'.\n\
12815 If the optional parameter NEW-STATE is a number, then the state of KEY\n\
12816 is set to off if the low bit of NEW-STATE is zero, otherwise on.")
12817 (key, new_state)
12818 Lisp_Object key, new_state;
12820 int vk_code;
12821 int cur_state;
12823 if (EQ (key, intern ("capslock")))
12824 vk_code = VK_CAPITAL;
12825 else if (EQ (key, intern ("kp-numlock")))
12826 vk_code = VK_NUMLOCK;
12827 else if (EQ (key, intern ("scroll")))
12828 vk_code = VK_SCROLL;
12829 else
12830 return Qnil;
12832 if (!dwWindowsThreadId)
12833 return make_number (w32_console_toggle_lock_key (vk_code, new_state));
12835 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
12836 (WPARAM) vk_code, (LPARAM) new_state))
12838 MSG msg;
12839 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
12840 return make_number (msg.wParam);
12842 return Qnil;
12845 syms_of_w32fns ()
12847 /* This is zero if not using MS-Windows. */
12848 w32_in_use = 0;
12850 /* The section below is built by the lisp expression at the top of the file,
12851 just above where these variables are declared. */
12852 /*&&& init symbols here &&&*/
12853 Qauto_raise = intern ("auto-raise");
12854 staticpro (&Qauto_raise);
12855 Qauto_lower = intern ("auto-lower");
12856 staticpro (&Qauto_lower);
12857 Qbar = intern ("bar");
12858 staticpro (&Qbar);
12859 Qborder_color = intern ("border-color");
12860 staticpro (&Qborder_color);
12861 Qborder_width = intern ("border-width");
12862 staticpro (&Qborder_width);
12863 Qbox = intern ("box");
12864 staticpro (&Qbox);
12865 Qcursor_color = intern ("cursor-color");
12866 staticpro (&Qcursor_color);
12867 Qcursor_type = intern ("cursor-type");
12868 staticpro (&Qcursor_type);
12869 Qgeometry = intern ("geometry");
12870 staticpro (&Qgeometry);
12871 Qicon_left = intern ("icon-left");
12872 staticpro (&Qicon_left);
12873 Qicon_top = intern ("icon-top");
12874 staticpro (&Qicon_top);
12875 Qicon_type = intern ("icon-type");
12876 staticpro (&Qicon_type);
12877 Qicon_name = intern ("icon-name");
12878 staticpro (&Qicon_name);
12879 Qinternal_border_width = intern ("internal-border-width");
12880 staticpro (&Qinternal_border_width);
12881 Qleft = intern ("left");
12882 staticpro (&Qleft);
12883 Qright = intern ("right");
12884 staticpro (&Qright);
12885 Qmouse_color = intern ("mouse-color");
12886 staticpro (&Qmouse_color);
12887 Qnone = intern ("none");
12888 staticpro (&Qnone);
12889 Qparent_id = intern ("parent-id");
12890 staticpro (&Qparent_id);
12891 Qscroll_bar_width = intern ("scroll-bar-width");
12892 staticpro (&Qscroll_bar_width);
12893 Qsuppress_icon = intern ("suppress-icon");
12894 staticpro (&Qsuppress_icon);
12895 Qundefined_color = intern ("undefined-color");
12896 staticpro (&Qundefined_color);
12897 Qvertical_scroll_bars = intern ("vertical-scroll-bars");
12898 staticpro (&Qvertical_scroll_bars);
12899 Qvisibility = intern ("visibility");
12900 staticpro (&Qvisibility);
12901 Qwindow_id = intern ("window-id");
12902 staticpro (&Qwindow_id);
12903 Qx_frame_parameter = intern ("x-frame-parameter");
12904 staticpro (&Qx_frame_parameter);
12905 Qx_resource_name = intern ("x-resource-name");
12906 staticpro (&Qx_resource_name);
12907 Quser_position = intern ("user-position");
12908 staticpro (&Quser_position);
12909 Quser_size = intern ("user-size");
12910 staticpro (&Quser_size);
12911 Qscreen_gamma = intern ("screen-gamma");
12912 staticpro (&Qscreen_gamma);
12913 Qline_spacing = intern ("line-spacing");
12914 staticpro (&Qline_spacing);
12915 Qcenter = intern ("center");
12916 staticpro (&Qcenter);
12917 /* This is the end of symbol initialization. */
12919 Qhyper = intern ("hyper");
12920 staticpro (&Qhyper);
12921 Qsuper = intern ("super");
12922 staticpro (&Qsuper);
12923 Qmeta = intern ("meta");
12924 staticpro (&Qmeta);
12925 Qalt = intern ("alt");
12926 staticpro (&Qalt);
12927 Qctrl = intern ("ctrl");
12928 staticpro (&Qctrl);
12929 Qcontrol = intern ("control");
12930 staticpro (&Qcontrol);
12931 Qshift = intern ("shift");
12932 staticpro (&Qshift);
12934 /* Text property `display' should be nonsticky by default. */
12935 Vtext_property_default_nonsticky
12936 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
12939 Qlaplace = intern ("laplace");
12940 staticpro (&Qlaplace);
12942 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
12943 staticpro (&Qface_set_after_frame_default);
12945 Fput (Qundefined_color, Qerror_conditions,
12946 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
12947 Fput (Qundefined_color, Qerror_message,
12948 build_string ("Undefined color"));
12950 staticpro (&w32_grabbed_keys);
12951 w32_grabbed_keys = Qnil;
12953 DEFVAR_LISP ("w32-color-map", &Vw32_color_map,
12954 "An array of color name mappings for windows.");
12955 Vw32_color_map = Qnil;
12957 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system,
12958 "Non-nil if alt key presses are passed on to Windows.\n\
12959 When non-nil, for example, alt pressed and released and then space will\n\
12960 open the System menu. When nil, Emacs silently swallows alt key events.");
12961 Vw32_pass_alt_to_system = Qnil;
12963 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta,
12964 "Non-nil if the alt key is to be considered the same as the meta key.\n\
12965 When nil, Emacs will translate the alt key to the Alt modifier, and not Meta.");
12966 Vw32_alt_is_meta = Qt;
12968 DEFVAR_INT ("w32-quit-key", &Vw32_quit_key,
12969 "If non-zero, the virtual key code for an alternative quit key.");
12970 XSETINT (Vw32_quit_key, 0);
12972 DEFVAR_LISP ("w32-pass-lwindow-to-system",
12973 &Vw32_pass_lwindow_to_system,
12974 "Non-nil if the left \"Windows\" key is passed on to Windows.\n\
12975 When non-nil, the Start menu is opened by tapping the key.");
12976 Vw32_pass_lwindow_to_system = Qt;
12978 DEFVAR_LISP ("w32-pass-rwindow-to-system",
12979 &Vw32_pass_rwindow_to_system,
12980 "Non-nil if the right \"Windows\" key is passed on to Windows.\n\
12981 When non-nil, the Start menu is opened by tapping the key.");
12982 Vw32_pass_rwindow_to_system = Qt;
12984 DEFVAR_INT ("w32-phantom-key-code",
12985 &Vw32_phantom_key_code,
12986 "Virtual key code used to generate \"phantom\" key presses.\n\
12987 Value is a number between 0 and 255.\n\
12989 Phantom key presses are generated in order to stop the system from\n\
12990 acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or\n\
12991 `w32-pass-rwindow-to-system' is nil.");
12992 /* Although 255 is technically not a valid key code, it works and
12993 means that this hack won't interfere with any real key code. */
12994 Vw32_phantom_key_code = 255;
12996 DEFVAR_LISP ("w32-enable-num-lock",
12997 &Vw32_enable_num_lock,
12998 "Non-nil if Num Lock should act normally.\n\
12999 Set to nil to see Num Lock as the key `kp-numlock'.");
13000 Vw32_enable_num_lock = Qt;
13002 DEFVAR_LISP ("w32-enable-caps-lock",
13003 &Vw32_enable_caps_lock,
13004 "Non-nil if Caps Lock should act normally.\n\
13005 Set to nil to see Caps Lock as the key `capslock'.");
13006 Vw32_enable_caps_lock = Qt;
13008 DEFVAR_LISP ("w32-scroll-lock-modifier",
13009 &Vw32_scroll_lock_modifier,
13010 "Modifier to use for the Scroll Lock on state.\n\
13011 The value can be hyper, super, meta, alt, control or shift for the\n\
13012 respective modifier, or nil to see Scroll Lock as the key `scroll'.\n\
13013 Any other value will cause the key to be ignored.");
13014 Vw32_scroll_lock_modifier = Qt;
13016 DEFVAR_LISP ("w32-lwindow-modifier",
13017 &Vw32_lwindow_modifier,
13018 "Modifier to use for the left \"Windows\" key.\n\
13019 The value can be hyper, super, meta, alt, control or shift for the\n\
13020 respective modifier, or nil to appear as the key `lwindow'.\n\
13021 Any other value will cause the key to be ignored.");
13022 Vw32_lwindow_modifier = Qnil;
13024 DEFVAR_LISP ("w32-rwindow-modifier",
13025 &Vw32_rwindow_modifier,
13026 "Modifier to use for the right \"Windows\" key.\n\
13027 The value can be hyper, super, meta, alt, control or shift for the\n\
13028 respective modifier, or nil to appear as the key `rwindow'.\n\
13029 Any other value will cause the key to be ignored.");
13030 Vw32_rwindow_modifier = Qnil;
13032 DEFVAR_LISP ("w32-apps-modifier",
13033 &Vw32_apps_modifier,
13034 "Modifier to use for the \"Apps\" key.\n\
13035 The value can be hyper, super, meta, alt, control or shift for the\n\
13036 respective modifier, or nil to appear as the key `apps'.\n\
13037 Any other value will cause the key to be ignored.");
13038 Vw32_apps_modifier = Qnil;
13040 DEFVAR_LISP ("w32-enable-synthesized-fonts", &Vw32_enable_synthesized_fonts,
13041 "Non-nil enables selection of artificially italicized and bold fonts.");
13042 Vw32_enable_synthesized_fonts = Qnil;
13044 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette,
13045 "Non-nil enables Windows palette management to map colors exactly.");
13046 Vw32_enable_palette = Qt;
13048 DEFVAR_INT ("w32-mouse-button-tolerance",
13049 &Vw32_mouse_button_tolerance,
13050 "Analogue of double click interval for faking middle mouse events.\n\
13051 The value is the minimum time in milliseconds that must elapse between\n\
13052 left/right button down events before they are considered distinct events.\n\
13053 If both mouse buttons are depressed within this interval, a middle mouse\n\
13054 button down event is generated instead.");
13055 XSETINT (Vw32_mouse_button_tolerance, GetDoubleClickTime () / 2);
13057 DEFVAR_INT ("w32-mouse-move-interval",
13058 &Vw32_mouse_move_interval,
13059 "Minimum interval between mouse move events.\n\
13060 The value is the minimum time in milliseconds that must elapse between\n\
13061 successive mouse move (or scroll bar drag) events before they are\n\
13062 reported as lisp events.");
13063 XSETINT (Vw32_mouse_move_interval, 0);
13065 init_x_parm_symbols ();
13067 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
13068 "List of directories to search for bitmap files for w32.");
13069 Vx_bitmap_file_path = decode_env_path ((char *) 0, "PATH");
13071 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
13072 "The shape of the pointer when over text.\n\
13073 Changing the value does not affect existing frames\n\
13074 unless you set the mouse color.");
13075 Vx_pointer_shape = Qnil;
13077 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
13078 "The name Emacs uses to look up resources; for internal use only.\n\
13079 `x-get-resource' uses this as the first component of the instance name\n\
13080 when requesting resource values.\n\
13081 Emacs initially sets `x-resource-name' to the name under which Emacs\n\
13082 was invoked, or to the value specified with the `-name' or `-rn'\n\
13083 switches, if present.");
13084 Vx_resource_name = Qnil;
13086 Vx_nontext_pointer_shape = Qnil;
13088 Vx_mode_pointer_shape = Qnil;
13090 DEFVAR_LISP ("x-busy-pointer-shape", &Vx_busy_pointer_shape,
13091 "The shape of the pointer when Emacs is busy.\n\
13092 This variable takes effect when you create a new frame\n\
13093 or when you set the mouse color.");
13094 Vx_busy_pointer_shape = Qnil;
13096 DEFVAR_BOOL ("display-busy-cursor", &display_busy_cursor_p,
13097 "Non-zero means Emacs displays a busy cursor on window systems.");
13098 display_busy_cursor_p = 1;
13100 DEFVAR_LISP ("busy-cursor-delay", &Vbusy_cursor_delay,
13101 "*Seconds to wait before displaying a busy-cursor.\n\
13102 Value must be an integer or float.");
13103 Vbusy_cursor_delay = make_number (DEFAULT_BUSY_CURSOR_DELAY);
13105 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
13106 &Vx_sensitive_text_pointer_shape,
13107 "The shape of the pointer when over mouse-sensitive text.\n\
13108 This variable takes effect when you create a new frame\n\
13109 or when you set the mouse color.");
13110 Vx_sensitive_text_pointer_shape = Qnil;
13112 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
13113 "A string indicating the foreground color of the cursor box.");
13114 Vx_cursor_fore_pixel = Qnil;
13116 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
13117 "Non-nil if no window manager is in use.\n\
13118 Emacs doesn't try to figure this out; this is always nil\n\
13119 unless you set it to something else.");
13120 /* We don't have any way to find this out, so set it to nil
13121 and maybe the user would like to set it to t. */
13122 Vx_no_window_manager = Qnil;
13124 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
13125 &Vx_pixel_size_width_font_regexp,
13126 "Regexp matching a font name whose width is the same as `PIXEL_SIZE'.\n\
13128 Since Emacs gets width of a font matching with this regexp from\n\
13129 PIXEL_SIZE field of the name, font finding mechanism gets faster for\n\
13130 such a font. This is especially effective for such large fonts as\n\
13131 Chinese, Japanese, and Korean.");
13132 Vx_pixel_size_width_font_regexp = Qnil;
13134 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
13135 "Time after which cached images are removed from the cache.\n\
13136 When an image has not been displayed this many seconds, remove it\n\
13137 from the image cache. Value must be an integer or nil with nil\n\
13138 meaning don't clear the cache.");
13139 Vimage_cache_eviction_delay = make_number (30 * 60);
13141 DEFVAR_LISP ("w32-bdf-filename-alist",
13142 &Vw32_bdf_filename_alist,
13143 "List of bdf fonts and their corresponding filenames.");
13144 Vw32_bdf_filename_alist = Qnil;
13146 DEFVAR_BOOL ("w32-strict-fontnames",
13147 &w32_strict_fontnames,
13148 "Non-nil means only use fonts that are exact matches for those requested.\n\
13149 Default is nil, which allows old fontnames that are not XLFD compliant,\n\
13150 and allows third-party CJK display to work by specifying false charset\n\
13151 fields to trick Emacs into translating to Big5, SJIS etc.\n\
13152 Setting this to t will prevent wrong fonts being selected when\n\
13153 fontsets are automatically created.");
13154 w32_strict_fontnames = 0;
13156 DEFVAR_BOOL ("w32-strict-painting",
13157 &w32_strict_painting,
13158 "Non-nil means use strict rules for repainting frames.\n\
13159 Set this to nil to get the old behaviour for repainting; this should\n\
13160 only be necessary if the default setting causes problems.");
13161 w32_strict_painting = 1;
13163 DEFVAR_LISP ("w32-system-coding-system",
13164 &Vw32_system_coding_system,
13165 "Coding system used by Windows system functions, such as for font names.");
13166 Vw32_system_coding_system = Qnil;
13168 DEFVAR_LISP ("w32-charset-info-alist",
13169 &Vw32_charset_info_alist,
13170 "Alist linking Emacs character sets to Windows fonts\n\
13171 and codepages. Each entry should be of the form:\n\
13173 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))\n\
13175 where CHARSET_NAME is a string used in font names to identify the charset,\n\
13176 WINDOWS_CHARSET is a symbol that can be one of:\n\
13177 w32-charset-ansi, w32-charset-default, w32-charset-symbol,\n\
13178 w32-charset-shiftjis, w32-charset-hangul, w32-charset-gb2312,\n\
13179 w32-charset-chinesebig5, "
13180 #ifdef JOHAB_CHARSET
13181 "w32-charset-johab, w32-charset-hebrew,\n\
13182 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,\n\
13183 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,\n\
13184 w32-charset-russian, w32-charset-mac, w32-charset-baltic,\n"
13185 #endif
13186 #ifdef UNICODE_CHARSET
13187 "w32-charset-unicode, "
13188 #endif
13189 "or w32-charset-oem.\n\
13190 CODEPAGE should be an integer specifying the codepage that should be used\n\
13191 to display the character set, t to do no translation and output as Unicode,\n\
13192 or nil to do no translation and output as 8 bit (or multibyte on far-east\n\
13193 versions of Windows) characters.");
13194 Vw32_charset_info_alist = Qnil;
13196 staticpro (&Qw32_charset_ansi);
13197 Qw32_charset_ansi = intern ("w32-charset-ansi");
13198 staticpro (&Qw32_charset_symbol);
13199 Qw32_charset_symbol = intern ("w32-charset-symbol");
13200 staticpro (&Qw32_charset_shiftjis);
13201 Qw32_charset_shiftjis = intern ("w32-charset-shiftjis");
13202 staticpro (&Qw32_charset_hangul);
13203 Qw32_charset_hangul = intern ("w32-charset-hangul");
13204 staticpro (&Qw32_charset_chinesebig5);
13205 Qw32_charset_chinesebig5 = intern ("w32-charset-chinesebig5");
13206 staticpro (&Qw32_charset_gb2312);
13207 Qw32_charset_gb2312 = intern ("w32-charset-gb2312");
13208 staticpro (&Qw32_charset_oem);
13209 Qw32_charset_oem = intern ("w32-charset-oem");
13211 #ifdef JOHAB_CHARSET
13213 static int w32_extra_charsets_defined = 1;
13214 DEFVAR_BOOL ("w32-extra-charsets-defined", w32_extra_charsets_defined, "");
13216 staticpro (&Qw32_charset_johab);
13217 Qw32_charset_johab = intern ("w32-charset-johab");
13218 staticpro (&Qw32_charset_easteurope);
13219 Qw32_charset_easteurope = intern ("w32-charset-easteurope");
13220 staticpro (&Qw32_charset_turkish);
13221 Qw32_charset_turkish = intern ("w32-charset-turkish");
13222 staticpro (&Qw32_charset_baltic);
13223 Qw32_charset_baltic = intern ("w32-charset-baltic");
13224 staticpro (&Qw32_charset_russian);
13225 Qw32_charset_russian = intern ("w32-charset-russian");
13226 staticpro (&Qw32_charset_arabic);
13227 Qw32_charset_arabic = intern ("w32-charset-arabic");
13228 staticpro (&Qw32_charset_greek);
13229 Qw32_charset_greek = intern ("w32-charset-greek");
13230 staticpro (&Qw32_charset_hebrew);
13231 Qw32_charset_hebrew = intern ("w32-charset-hebrew");
13232 staticpro (&Qw32_charset_thai);
13233 Qw32_charset_thai = intern ("w32-charset-thai");
13234 staticpro (&Qw32_charset_mac);
13235 Qw32_charset_mac = intern ("w32-charset-mac");
13237 #endif
13239 #ifdef UNICODE_CHARSET
13241 static int w32_unicode_charset_defined = 1;
13242 DEFVAR_BOOL ("w32-unicode-charset-defined",
13243 w32_unicode_charset_defined, "");
13245 staticpro (&Qw32_charset_unicode);
13246 Qw32_charset_unicode = intern ("w32-charset-unicode");
13247 #endif
13249 defsubr (&Sx_get_resource);
13250 #if 0 /* NTEMACS_TODO: Port to W32 */
13251 defsubr (&Sx_change_window_property);
13252 defsubr (&Sx_delete_window_property);
13253 defsubr (&Sx_window_property);
13254 #endif
13255 defsubr (&Sxw_display_color_p);
13256 defsubr (&Sx_display_grayscale_p);
13257 defsubr (&Sxw_color_defined_p);
13258 defsubr (&Sxw_color_values);
13259 defsubr (&Sx_server_max_request_size);
13260 defsubr (&Sx_server_vendor);
13261 defsubr (&Sx_server_version);
13262 defsubr (&Sx_display_pixel_width);
13263 defsubr (&Sx_display_pixel_height);
13264 defsubr (&Sx_display_mm_width);
13265 defsubr (&Sx_display_mm_height);
13266 defsubr (&Sx_display_screens);
13267 defsubr (&Sx_display_planes);
13268 defsubr (&Sx_display_color_cells);
13269 defsubr (&Sx_display_visual_class);
13270 defsubr (&Sx_display_backing_store);
13271 defsubr (&Sx_display_save_under);
13272 defsubr (&Sx_parse_geometry);
13273 defsubr (&Sx_create_frame);
13274 defsubr (&Sx_open_connection);
13275 defsubr (&Sx_close_connection);
13276 defsubr (&Sx_display_list);
13277 defsubr (&Sx_synchronize);
13279 /* W32 specific functions */
13281 defsubr (&Sw32_focus_frame);
13282 defsubr (&Sw32_select_font);
13283 defsubr (&Sw32_define_rgb_color);
13284 defsubr (&Sw32_default_color_map);
13285 defsubr (&Sw32_load_color_file);
13286 defsubr (&Sw32_send_sys_command);
13287 defsubr (&Sw32_shell_execute);
13288 defsubr (&Sw32_register_hot_key);
13289 defsubr (&Sw32_unregister_hot_key);
13290 defsubr (&Sw32_registered_hot_keys);
13291 defsubr (&Sw32_reconstruct_hot_key);
13292 defsubr (&Sw32_toggle_lock_key);
13293 defsubr (&Sw32_find_bdf_fonts);
13295 /* Setting callback functions for fontset handler. */
13296 get_font_info_func = w32_get_font_info;
13298 #if 0 /* This function pointer doesn't seem to be used anywhere.
13299 And the pointer assigned has the wrong type, anyway. */
13300 list_fonts_func = w32_list_fonts;
13301 #endif
13303 load_font_func = w32_load_font;
13304 find_ccl_program_func = w32_find_ccl_program;
13305 query_font_func = w32_query_font;
13306 set_frame_fontset_func = x_set_font;
13307 check_window_system_func = check_w32;
13309 #if 0 /* NTEMACS_TODO Image support for W32 */
13310 /* Images. */
13311 Qxbm = intern ("xbm");
13312 staticpro (&Qxbm);
13313 QCtype = intern (":type");
13314 staticpro (&QCtype);
13315 QCalgorithm = intern (":algorithm");
13316 staticpro (&QCalgorithm);
13317 QCheuristic_mask = intern (":heuristic-mask");
13318 staticpro (&QCheuristic_mask);
13319 QCcolor_symbols = intern (":color-symbols");
13320 staticpro (&QCcolor_symbols);
13321 QCascent = intern (":ascent");
13322 staticpro (&QCascent);
13323 QCmargin = intern (":margin");
13324 staticpro (&QCmargin);
13325 QCrelief = intern (":relief");
13326 staticpro (&QCrelief);
13327 Qpostscript = intern ("postscript");
13328 staticpro (&Qpostscript);
13329 QCloader = intern (":loader");
13330 staticpro (&QCloader);
13331 QCbounding_box = intern (":bounding-box");
13332 staticpro (&QCbounding_box);
13333 QCpt_width = intern (":pt-width");
13334 staticpro (&QCpt_width);
13335 QCpt_height = intern (":pt-height");
13336 staticpro (&QCpt_height);
13337 QCindex = intern (":index");
13338 staticpro (&QCindex);
13339 Qpbm = intern ("pbm");
13340 staticpro (&Qpbm);
13342 #if HAVE_XPM
13343 Qxpm = intern ("xpm");
13344 staticpro (&Qxpm);
13345 #endif
13347 #if HAVE_JPEG
13348 Qjpeg = intern ("jpeg");
13349 staticpro (&Qjpeg);
13350 #endif
13352 #if HAVE_TIFF
13353 Qtiff = intern ("tiff");
13354 staticpro (&Qtiff);
13355 #endif
13357 #if HAVE_GIF
13358 Qgif = intern ("gif");
13359 staticpro (&Qgif);
13360 #endif
13362 #if HAVE_PNG
13363 Qpng = intern ("png");
13364 staticpro (&Qpng);
13365 #endif
13367 defsubr (&Sclear_image_cache);
13369 #if GLYPH_DEBUG
13370 defsubr (&Simagep);
13371 defsubr (&Slookup_image);
13372 #endif
13373 #endif /* NTEMACS_TODO */
13375 busy_cursor_atimer = NULL;
13376 busy_cursor_shown_p = 0;
13378 defsubr (&Sx_show_tip);
13379 defsubr (&Sx_hide_tip);
13380 staticpro (&tip_timer);
13381 tip_timer = Qnil;
13383 defsubr (&Sx_file_dialog);
13387 void
13388 init_xfns ()
13390 image_types = NULL;
13391 Vimage_types = Qnil;
13393 #if 0 /* NTEMACS_TODO : Image support for W32 */
13394 define_image_type (&xbm_type);
13395 define_image_type (&gs_type);
13396 define_image_type (&pbm_type);
13398 #if HAVE_XPM
13399 define_image_type (&xpm_type);
13400 #endif
13402 #if HAVE_JPEG
13403 define_image_type (&jpeg_type);
13404 #endif
13406 #if HAVE_TIFF
13407 define_image_type (&tiff_type);
13408 #endif
13410 #if HAVE_GIF
13411 define_image_type (&gif_type);
13412 #endif
13414 #if HAVE_PNG
13415 define_image_type (&png_type);
13416 #endif
13417 #endif /* NTEMACS_TODO */
13420 #undef abort
13422 void
13423 w32_abort()
13425 int button;
13426 button = MessageBox (NULL,
13427 "A fatal error has occurred!\n\n"
13428 "Select Abort to exit, Retry to debug, Ignore to continue",
13429 "Emacs Abort Dialog",
13430 MB_ICONEXCLAMATION | MB_TASKMODAL
13431 | MB_SETFOREGROUND | MB_ABORTRETRYIGNORE);
13432 switch (button)
13434 case IDRETRY:
13435 DebugBreak ();
13436 break;
13437 case IDIGNORE:
13438 break;
13439 case IDABORT:
13440 default:
13441 abort ();
13442 break;
13446 /* For convenience when debugging. */
13448 w32_last_error()
13450 return GetLastError ();