(Fx_display_color_cells): Force 24+ bit color depths to 24-bit.
[emacs.git] / src / w32fns.c
blob5cfd25c80227a3aabdb931ac3dff5654ffaad9e6
1 /* Graphical user interface functions for the Microsoft W32 API.
2 Copyright (C) 1989, 92, 93, 94, 95, 1996, 1997, 1998, 1999, 2000, 2001
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 "keyboard.h"
36 #include "frame.h"
37 #include "window.h"
38 #include "buffer.h"
39 #include "fontset.h"
40 #include "intervals.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 extern void free_frame_menubar ();
56 extern void x_compute_fringe_widths P_ ((struct frame *, int));
57 extern double atof ();
58 extern int w32_console_toggle_lock_key P_ ((int, Lisp_Object));
59 extern void w32_menu_display_help P_ ((HWND, HMENU, UINT, UINT));
60 extern void w32_free_menu_strings P_ ((HWND));
62 extern int quit_char;
64 /* A definition of XColor for non-X frames. */
65 #ifndef HAVE_X_WINDOWS
66 typedef struct {
67 unsigned long pixel;
68 unsigned short red, green, blue;
69 char flags;
70 char pad;
71 } XColor;
72 #endif
74 extern char *lispy_function_keys[];
76 /* The gray bitmap `bitmaps/gray'. This is done because w32term.c uses
77 it, and including `bitmaps/gray' more than once is a problem when
78 config.h defines `static' as an empty replacement string. */
80 int gray_bitmap_width = gray_width;
81 int gray_bitmap_height = gray_height;
82 unsigned char *gray_bitmap_bits = gray_bits;
84 /* The colormap for converting color names to RGB values */
85 Lisp_Object Vw32_color_map;
87 /* Non nil if alt key presses are passed on to Windows. */
88 Lisp_Object Vw32_pass_alt_to_system;
90 /* Non nil if alt key is translated to meta_modifier, nil if it is translated
91 to alt_modifier. */
92 Lisp_Object Vw32_alt_is_meta;
94 /* If non-zero, the windows virtual key code for an alternative quit key. */
95 Lisp_Object Vw32_quit_key;
97 /* Non nil if left window key events are passed on to Windows (this only
98 affects whether "tapping" the key opens the Start menu). */
99 Lisp_Object Vw32_pass_lwindow_to_system;
101 /* Non nil if right window key events are passed on to Windows (this
102 only affects whether "tapping" the key opens the Start menu). */
103 Lisp_Object Vw32_pass_rwindow_to_system;
105 /* Virtual key code used to generate "phantom" key presses in order
106 to stop system from acting on Windows key events. */
107 Lisp_Object Vw32_phantom_key_code;
109 /* Modifier associated with the left "Windows" key, or nil to act as a
110 normal key. */
111 Lisp_Object Vw32_lwindow_modifier;
113 /* Modifier associated with the right "Windows" key, or nil to act as a
114 normal key. */
115 Lisp_Object Vw32_rwindow_modifier;
117 /* Modifier associated with the "Apps" key, or nil to act as a normal
118 key. */
119 Lisp_Object Vw32_apps_modifier;
121 /* Value is nil if Num Lock acts as a function key. */
122 Lisp_Object Vw32_enable_num_lock;
124 /* Value is nil if Caps Lock acts as a function key. */
125 Lisp_Object Vw32_enable_caps_lock;
127 /* Modifier associated with Scroll Lock, or nil to act as a normal key. */
128 Lisp_Object Vw32_scroll_lock_modifier;
130 /* Switch to control whether we inhibit requests for synthesized bold
131 and italic versions of fonts. */
132 int w32_enable_synthesized_fonts;
134 /* Enable palette management. */
135 Lisp_Object Vw32_enable_palette;
137 /* Control how close left/right button down events must be to
138 be converted to a middle button down event. */
139 Lisp_Object Vw32_mouse_button_tolerance;
141 /* Minimum interval between mouse movement (and scroll bar drag)
142 events that are passed on to the event loop. */
143 Lisp_Object Vw32_mouse_move_interval;
145 /* Flag to indicate if XBUTTON events should be passed on to Windows. */
146 int w32_pass_extra_mouse_buttons_to_system;
148 /* The name we're using in resource queries. */
149 Lisp_Object Vx_resource_name;
151 /* Non nil if no window manager is in use. */
152 Lisp_Object Vx_no_window_manager;
154 /* Non-zero means we're allowed to display a hourglass pointer. */
156 int display_hourglass_p;
158 /* The background and shape of the mouse pointer, and shape when not
159 over text or in the modeline. */
161 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
162 Lisp_Object Vx_hourglass_pointer_shape, Vx_window_horizontal_drag_shape;
164 /* The shape when over mouse-sensitive text. */
166 Lisp_Object Vx_sensitive_text_pointer_shape;
168 /* Color of chars displayed in cursor box. */
170 Lisp_Object Vx_cursor_fore_pixel;
172 /* Nonzero if using Windows. */
174 static int w32_in_use;
176 /* Search path for bitmap files. */
178 Lisp_Object Vx_bitmap_file_path;
180 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
182 Lisp_Object Vx_pixel_size_width_font_regexp;
184 /* Alist of bdf fonts and the files that define them. */
185 Lisp_Object Vw32_bdf_filename_alist;
187 /* A flag to control whether fonts are matched strictly or not. */
188 int w32_strict_fontnames;
190 /* A flag to control whether we should only repaint if GetUpdateRect
191 indicates there is an update region. */
192 int w32_strict_painting;
194 /* Associative list linking character set strings to Windows codepages. */
195 Lisp_Object Vw32_charset_info_alist;
197 /* VIETNAMESE_CHARSET is not defined in some versions of MSVC. */
198 #ifndef VIETNAMESE_CHARSET
199 #define VIETNAMESE_CHARSET 163
200 #endif
202 Lisp_Object Qauto_raise;
203 Lisp_Object Qauto_lower;
204 Lisp_Object Qbar;
205 Lisp_Object Qborder_color;
206 Lisp_Object Qborder_width;
207 Lisp_Object Qbox;
208 Lisp_Object Qcursor_color;
209 Lisp_Object Qcursor_type;
210 Lisp_Object Qgeometry;
211 Lisp_Object Qicon_left;
212 Lisp_Object Qicon_top;
213 Lisp_Object Qicon_type;
214 Lisp_Object Qicon_name;
215 Lisp_Object Qinternal_border_width;
216 Lisp_Object Qleft;
217 Lisp_Object Qright;
218 Lisp_Object Qmouse_color;
219 Lisp_Object Qnone;
220 Lisp_Object Qparent_id;
221 Lisp_Object Qscroll_bar_width;
222 Lisp_Object Qsuppress_icon;
223 Lisp_Object Qundefined_color;
224 Lisp_Object Qvertical_scroll_bars;
225 Lisp_Object Qvisibility;
226 Lisp_Object Qwindow_id;
227 Lisp_Object Qx_frame_parameter;
228 Lisp_Object Qx_resource_name;
229 Lisp_Object Quser_position;
230 Lisp_Object Quser_size;
231 Lisp_Object Qscreen_gamma;
232 Lisp_Object Qline_spacing;
233 Lisp_Object Qcenter;
234 Lisp_Object Qcancel_timer;
235 Lisp_Object Qhyper;
236 Lisp_Object Qsuper;
237 Lisp_Object Qmeta;
238 Lisp_Object Qalt;
239 Lisp_Object Qctrl;
240 Lisp_Object Qcontrol;
241 Lisp_Object Qshift;
243 Lisp_Object Qw32_charset_ansi;
244 Lisp_Object Qw32_charset_default;
245 Lisp_Object Qw32_charset_symbol;
246 Lisp_Object Qw32_charset_shiftjis;
247 Lisp_Object Qw32_charset_hangeul;
248 Lisp_Object Qw32_charset_gb2312;
249 Lisp_Object Qw32_charset_chinesebig5;
250 Lisp_Object Qw32_charset_oem;
252 #ifndef JOHAB_CHARSET
253 #define JOHAB_CHARSET 130
254 #endif
255 #ifdef JOHAB_CHARSET
256 Lisp_Object Qw32_charset_easteurope;
257 Lisp_Object Qw32_charset_turkish;
258 Lisp_Object Qw32_charset_baltic;
259 Lisp_Object Qw32_charset_russian;
260 Lisp_Object Qw32_charset_arabic;
261 Lisp_Object Qw32_charset_greek;
262 Lisp_Object Qw32_charset_hebrew;
263 Lisp_Object Qw32_charset_vietnamese;
264 Lisp_Object Qw32_charset_thai;
265 Lisp_Object Qw32_charset_johab;
266 Lisp_Object Qw32_charset_mac;
267 #endif
269 #ifdef UNICODE_CHARSET
270 Lisp_Object Qw32_charset_unicode;
271 #endif
273 Lisp_Object Qfullscreen;
274 Lisp_Object Qfullwidth;
275 Lisp_Object Qfullheight;
276 Lisp_Object Qfullboth;
278 extern Lisp_Object Qtop;
279 extern Lisp_Object Qdisplay;
280 extern Lisp_Object Qtool_bar_lines;
282 /* State variables for emulating a three button mouse. */
283 #define LMOUSE 1
284 #define MMOUSE 2
285 #define RMOUSE 4
287 static int button_state = 0;
288 static W32Msg saved_mouse_button_msg;
289 static unsigned mouse_button_timer = 0; /* non-zero when timer is active */
290 static W32Msg saved_mouse_move_msg;
291 static unsigned mouse_move_timer = 0;
293 /* Window that is tracking the mouse. */
294 static HWND track_mouse_window;
295 FARPROC track_mouse_event_fn;
297 /* W95 mousewheel handler */
298 unsigned int msh_mousewheel = 0;
300 /* Timers */
301 #define MOUSE_BUTTON_ID 1
302 #define MOUSE_MOVE_ID 2
303 #define MENU_FREE_ID 3
304 /* The delay (milliseconds) before a menu is freed after WM_EXITMENULOOP
305 is received. */
306 #define MENU_FREE_DELAY 1000
307 static unsigned menu_free_timer = 0;
309 /* The below are defined in frame.c. */
311 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
312 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
313 extern Lisp_Object Qtool_bar_lines;
315 extern Lisp_Object Vwindow_system_version;
317 Lisp_Object Qface_set_after_frame_default;
319 #ifdef GLYPH_DEBUG
320 int image_cache_refcount, dpyinfo_refcount;
321 #endif
324 /* From w32term.c. */
325 extern Lisp_Object Vw32_num_mouse_buttons;
326 extern Lisp_Object Vw32_recognize_altgr;
328 extern HWND w32_system_caret_hwnd;
330 extern int w32_system_caret_height;
331 extern int w32_system_caret_x;
332 extern int w32_system_caret_y;
333 extern int w32_use_visible_system_caret;
335 static HWND w32_visible_system_caret_hwnd;
338 /* Error if we are not connected to MS-Windows. */
339 void
340 check_w32 ()
342 if (! w32_in_use)
343 error ("MS-Windows not in use or not initialized");
346 /* Nonzero if we can use mouse menus.
347 You should not call this unless HAVE_MENUS is defined. */
350 have_menus_p ()
352 return w32_in_use;
355 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
356 and checking validity for W32. */
358 FRAME_PTR
359 check_x_frame (frame)
360 Lisp_Object frame;
362 FRAME_PTR f;
364 if (NILP (frame))
365 frame = selected_frame;
366 CHECK_LIVE_FRAME (frame);
367 f = XFRAME (frame);
368 if (! FRAME_W32_P (f))
369 error ("non-w32 frame used");
370 return f;
373 /* Let the user specify an display with a frame.
374 nil stands for the selected frame--or, if that is not a w32 frame,
375 the first display on the list. */
377 static struct w32_display_info *
378 check_x_display_info (frame)
379 Lisp_Object frame;
381 if (NILP (frame))
383 struct frame *sf = XFRAME (selected_frame);
385 if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
386 return FRAME_W32_DISPLAY_INFO (sf);
387 else
388 return &one_w32_display_info;
390 else if (STRINGP (frame))
391 return x_display_info_for_name (frame);
392 else
394 FRAME_PTR f;
396 CHECK_LIVE_FRAME (frame);
397 f = XFRAME (frame);
398 if (! FRAME_W32_P (f))
399 error ("non-w32 frame used");
400 return FRAME_W32_DISPLAY_INFO (f);
404 /* Return the Emacs frame-object corresponding to an w32 window.
405 It could be the frame's main window or an icon window. */
407 /* This function can be called during GC, so use GC_xxx type test macros. */
409 struct frame *
410 x_window_to_frame (dpyinfo, wdesc)
411 struct w32_display_info *dpyinfo;
412 HWND wdesc;
414 Lisp_Object tail, frame;
415 struct frame *f;
417 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
419 frame = XCAR (tail);
420 if (!GC_FRAMEP (frame))
421 continue;
422 f = XFRAME (frame);
423 if (!FRAME_W32_P (f) || FRAME_W32_DISPLAY_INFO (f) != dpyinfo)
424 continue;
425 if (f->output_data.w32->hourglass_window == wdesc)
426 return f;
428 if (FRAME_W32_WINDOW (f) == wdesc)
429 return f;
431 return 0;
436 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
437 id, which is just an int that this section returns. Bitmaps are
438 reference counted so they can be shared among frames.
440 Bitmap indices are guaranteed to be > 0, so a negative number can
441 be used to indicate no bitmap.
443 If you use x_create_bitmap_from_data, then you must keep track of
444 the bitmaps yourself. That is, creating a bitmap from the same
445 data more than once will not be caught. */
448 /* Functions to access the contents of a bitmap, given an id. */
451 x_bitmap_height (f, id)
452 FRAME_PTR f;
453 int id;
455 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].height;
459 x_bitmap_width (f, id)
460 FRAME_PTR f;
461 int id;
463 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].width;
467 x_bitmap_pixmap (f, id)
468 FRAME_PTR f;
469 int id;
471 return (int) FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
475 /* Allocate a new bitmap record. Returns index of new record. */
477 static int
478 x_allocate_bitmap_record (f)
479 FRAME_PTR f;
481 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
482 int i;
484 if (dpyinfo->bitmaps == NULL)
486 dpyinfo->bitmaps_size = 10;
487 dpyinfo->bitmaps
488 = (struct w32_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
489 dpyinfo->bitmaps_last = 1;
490 return 1;
493 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
494 return ++dpyinfo->bitmaps_last;
496 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
497 if (dpyinfo->bitmaps[i].refcount == 0)
498 return i + 1;
500 dpyinfo->bitmaps_size *= 2;
501 dpyinfo->bitmaps
502 = (struct w32_bitmap_record *) xrealloc (dpyinfo->bitmaps,
503 dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
504 return ++dpyinfo->bitmaps_last;
507 /* Add one reference to the reference count of the bitmap with id ID. */
509 void
510 x_reference_bitmap (f, id)
511 FRAME_PTR f;
512 int id;
514 ++FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
517 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
520 x_create_bitmap_from_data (f, bits, width, height)
521 struct frame *f;
522 char *bits;
523 unsigned int width, height;
525 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
526 Pixmap bitmap;
527 int id;
529 bitmap = CreateBitmap (width, height,
530 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_planes,
531 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_cbits,
532 bits);
534 if (! bitmap)
535 return -1;
537 id = x_allocate_bitmap_record (f);
538 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
539 dpyinfo->bitmaps[id - 1].file = NULL;
540 dpyinfo->bitmaps[id - 1].hinst = NULL;
541 dpyinfo->bitmaps[id - 1].refcount = 1;
542 dpyinfo->bitmaps[id - 1].depth = 1;
543 dpyinfo->bitmaps[id - 1].height = height;
544 dpyinfo->bitmaps[id - 1].width = width;
546 return id;
549 /* Create bitmap from file FILE for frame F. */
552 x_create_bitmap_from_file (f, file)
553 struct frame *f;
554 Lisp_Object file;
556 return -1;
557 #if 0 /* TODO : bitmap support */
558 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
559 unsigned int width, height;
560 HBITMAP bitmap;
561 int xhot, yhot, result, id;
562 Lisp_Object found;
563 int fd;
564 char *filename;
565 HINSTANCE hinst;
567 /* Look for an existing bitmap with the same name. */
568 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
570 if (dpyinfo->bitmaps[id].refcount
571 && dpyinfo->bitmaps[id].file
572 && !strcmp (dpyinfo->bitmaps[id].file, (char *) XSTRING (file)->data))
574 ++dpyinfo->bitmaps[id].refcount;
575 return id + 1;
579 /* Search bitmap-file-path for the file, if appropriate. */
580 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, 0);
581 if (fd < 0)
582 return -1;
583 emacs_close (fd);
585 filename = (char *) XSTRING (found)->data;
587 hinst = LoadLibraryEx (filename, NULL, LOAD_LIBRARY_AS_DATAFILE);
589 if (hinst == NULL)
590 return -1;
593 result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
594 filename, &width, &height, &bitmap, &xhot, &yhot);
595 if (result != BitmapSuccess)
596 return -1;
598 id = x_allocate_bitmap_record (f);
599 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
600 dpyinfo->bitmaps[id - 1].refcount = 1;
601 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (XSTRING (file)->size + 1);
602 dpyinfo->bitmaps[id - 1].depth = 1;
603 dpyinfo->bitmaps[id - 1].height = height;
604 dpyinfo->bitmaps[id - 1].width = width;
605 strcpy (dpyinfo->bitmaps[id - 1].file, XSTRING (file)->data);
607 return id;
608 #endif /* TODO */
611 /* Remove reference to bitmap with id number ID. */
613 void
614 x_destroy_bitmap (f, id)
615 FRAME_PTR f;
616 int id;
618 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
620 if (id > 0)
622 --dpyinfo->bitmaps[id - 1].refcount;
623 if (dpyinfo->bitmaps[id - 1].refcount == 0)
625 BLOCK_INPUT;
626 DeleteObject (dpyinfo->bitmaps[id - 1].pixmap);
627 if (dpyinfo->bitmaps[id - 1].file)
629 xfree (dpyinfo->bitmaps[id - 1].file);
630 dpyinfo->bitmaps[id - 1].file = NULL;
632 UNBLOCK_INPUT;
637 /* Free all the bitmaps for the display specified by DPYINFO. */
639 static void
640 x_destroy_all_bitmaps (dpyinfo)
641 struct w32_display_info *dpyinfo;
643 int i;
644 for (i = 0; i < dpyinfo->bitmaps_last; i++)
645 if (dpyinfo->bitmaps[i].refcount > 0)
647 DeleteObject (dpyinfo->bitmaps[i].pixmap);
648 if (dpyinfo->bitmaps[i].file)
649 xfree (dpyinfo->bitmaps[i].file);
651 dpyinfo->bitmaps_last = 0;
654 /* Connect the frame-parameter names for W32 frames
655 to the ways of passing the parameter values to the window system.
657 The name of a parameter, as a Lisp symbol,
658 has an `x-frame-parameter' property which is an integer in Lisp
659 but can be interpreted as an `enum x_frame_parm' in C. */
661 enum x_frame_parm
663 X_PARM_FOREGROUND_COLOR,
664 X_PARM_BACKGROUND_COLOR,
665 X_PARM_MOUSE_COLOR,
666 X_PARM_CURSOR_COLOR,
667 X_PARM_BORDER_COLOR,
668 X_PARM_ICON_TYPE,
669 X_PARM_FONT,
670 X_PARM_BORDER_WIDTH,
671 X_PARM_INTERNAL_BORDER_WIDTH,
672 X_PARM_NAME,
673 X_PARM_AUTORAISE,
674 X_PARM_AUTOLOWER,
675 X_PARM_VERT_SCROLL_BAR,
676 X_PARM_VISIBILITY,
677 X_PARM_MENU_BAR_LINES
681 struct x_frame_parm_table
683 char *name;
684 void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object));
687 BOOL my_show_window P_ ((struct frame *, HWND, int));
688 void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
689 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
690 static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
691 static void x_change_window_heights P_ ((Lisp_Object, int));
692 /* TODO: Native Input Method support; see x_create_im. */
693 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
694 static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
695 static void x_set_fullscreen 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 static void x_set_fringe_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
705 void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
706 void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
707 Lisp_Object));
708 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
709 void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
710 void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
711 void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
712 Lisp_Object));
713 void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
714 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
715 void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
716 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
717 void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
718 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
719 static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
720 static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
721 Lisp_Object));
723 static struct x_frame_parm_table x_frame_parms[] =
725 {"auto-raise", x_set_autoraise},
726 {"auto-lower", x_set_autolower},
727 {"background-color", x_set_background_color},
728 {"border-color", x_set_border_color},
729 {"border-width", x_set_border_width},
730 {"cursor-color", x_set_cursor_color},
731 {"cursor-type", x_set_cursor_type},
732 {"font", x_set_font},
733 {"foreground-color", x_set_foreground_color},
734 {"icon-name", x_set_icon_name},
735 {"icon-type", x_set_icon_type},
736 {"internal-border-width", x_set_internal_border_width},
737 {"menu-bar-lines", x_set_menu_bar_lines},
738 {"mouse-color", x_set_mouse_color},
739 {"name", x_explicitly_set_name},
740 {"scroll-bar-width", x_set_scroll_bar_width},
741 {"title", x_set_title},
742 {"unsplittable", x_set_unsplittable},
743 {"vertical-scroll-bars", x_set_vertical_scroll_bars},
744 {"visibility", x_set_visibility},
745 {"tool-bar-lines", x_set_tool_bar_lines},
746 {"screen-gamma", x_set_screen_gamma},
747 {"line-spacing", x_set_line_spacing},
748 {"left-fringe", x_set_fringe_width},
749 {"right-fringe", x_set_fringe_width},
750 {"fullscreen", x_set_fullscreen},
753 /* Attach the `x-frame-parameter' properties to
754 the Lisp symbol names of parameters relevant to W32. */
756 void
757 init_x_parm_symbols ()
759 int i;
761 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++)
762 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter,
763 make_number (i));
766 /* Really try to move where we want to be in case of fullscreen. Some WMs
767 moves the window where we tell them. Some (mwm, twm) moves the outer
768 window manager window there instead.
769 Try to compensate for those WM here. */
770 static void
771 x_fullscreen_move (f, new_top, new_left)
772 struct frame *f;
773 int new_top;
774 int new_left;
776 if (new_top != f->output_data.w32->top_pos
777 || new_left != f->output_data.w32->left_pos)
779 int move_x = new_left;
780 int move_y = new_top;
782 f->output_data.w32->want_fullscreen |= FULLSCREEN_MOVE_WAIT;
783 x_set_offset (f, move_x, move_y, 1);
787 /* Change the parameters of frame F as specified by ALIST.
788 If a parameter is not specially recognized, do nothing;
789 otherwise call the `x_set_...' function for that parameter. */
791 void
792 x_set_frame_parameters (f, alist)
793 FRAME_PTR f;
794 Lisp_Object alist;
796 Lisp_Object tail;
798 /* If both of these parameters are present, it's more efficient to
799 set them both at once. So we wait until we've looked at the
800 entire list before we set them. */
801 int width, height;
803 /* Same here. */
804 Lisp_Object left, top;
806 /* Same with these. */
807 Lisp_Object icon_left, icon_top;
809 /* Record in these vectors all the parms specified. */
810 Lisp_Object *parms;
811 Lisp_Object *values;
812 int i, p;
813 int left_no_change = 0, top_no_change = 0;
814 int icon_left_no_change = 0, icon_top_no_change = 0;
815 int fullscreen_is_being_set = 0;
817 struct gcpro gcpro1, gcpro2;
819 i = 0;
820 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
821 i++;
823 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
824 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
826 /* Extract parm names and values into those vectors. */
828 i = 0;
829 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
831 Lisp_Object elt;
833 elt = Fcar (tail);
834 parms[i] = Fcar (elt);
835 values[i] = Fcdr (elt);
836 i++;
838 /* TAIL and ALIST are not used again below here. */
839 alist = tail = Qnil;
841 GCPRO2 (*parms, *values);
842 gcpro1.nvars = i;
843 gcpro2.nvars = i;
845 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
846 because their values appear in VALUES and strings are not valid. */
847 top = left = Qunbound;
848 icon_left = icon_top = Qunbound;
850 /* Provide default values for HEIGHT and WIDTH. */
851 if (FRAME_NEW_WIDTH (f))
852 width = FRAME_NEW_WIDTH (f);
853 else
854 width = FRAME_WIDTH (f);
856 if (FRAME_NEW_HEIGHT (f))
857 height = FRAME_NEW_HEIGHT (f);
858 else
859 height = FRAME_HEIGHT (f);
861 /* Process foreground_color and background_color before anything else.
862 They are independent of other properties, but other properties (e.g.,
863 cursor_color) are dependent upon them. */
864 /* Process default font as well, since fringe widths depends on it. */
865 for (p = 0; p < i; p++)
867 Lisp_Object prop, val;
869 prop = parms[p];
870 val = values[p];
871 if (EQ (prop, Qforeground_color)
872 || EQ (prop, Qbackground_color)
873 || EQ (prop, Qfont)
874 || EQ (prop, Qfullscreen))
876 register Lisp_Object param_index, old_value;
878 old_value = get_frame_param (f, prop);
879 fullscreen_is_being_set |= EQ (prop, Qfullscreen);
881 if (NILP (Fequal (val, old_value)))
883 store_frame_param (f, prop, val);
885 param_index = Fget (prop, Qx_frame_parameter);
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);
894 /* Now process them in reverse of specified order. */
895 for (i--; i >= 0; i--)
897 Lisp_Object prop, val;
899 prop = parms[i];
900 val = values[i];
902 if (EQ (prop, Qwidth) && NUMBERP (val))
903 width = XFASTINT (val);
904 else if (EQ (prop, Qheight) && NUMBERP (val))
905 height = XFASTINT (val);
906 else if (EQ (prop, Qtop))
907 top = val;
908 else if (EQ (prop, Qleft))
909 left = val;
910 else if (EQ (prop, Qicon_top))
911 icon_top = val;
912 else if (EQ (prop, Qicon_left))
913 icon_left = val;
914 else if (EQ (prop, Qforeground_color)
915 || EQ (prop, Qbackground_color)
916 || EQ (prop, Qfont)
917 || EQ (prop, Qfullscreen))
918 /* Processed above. */
919 continue;
920 else
922 register Lisp_Object param_index, old_value;
924 old_value = get_frame_param (f, prop);
926 store_frame_param (f, prop, val);
928 param_index = Fget (prop, Qx_frame_parameter);
929 if (NATNUMP (param_index)
930 && (XFASTINT (param_index)
931 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
932 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
936 /* Don't die if just one of these was set. */
937 if (EQ (left, Qunbound))
939 left_no_change = 1;
940 if (f->output_data.w32->left_pos < 0)
941 left = Fcons (Qplus, Fcons (make_number (f->output_data.w32->left_pos), Qnil));
942 else
943 XSETINT (left, f->output_data.w32->left_pos);
945 if (EQ (top, Qunbound))
947 top_no_change = 1;
948 if (f->output_data.w32->top_pos < 0)
949 top = Fcons (Qplus, Fcons (make_number (f->output_data.w32->top_pos), Qnil));
950 else
951 XSETINT (top, f->output_data.w32->top_pos);
954 /* If one of the icon positions was not set, preserve or default it. */
955 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
957 icon_left_no_change = 1;
958 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
959 if (NILP (icon_left))
960 XSETINT (icon_left, 0);
962 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
964 icon_top_no_change = 1;
965 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
966 if (NILP (icon_top))
967 XSETINT (icon_top, 0);
970 if (FRAME_VISIBLE_P (f) && fullscreen_is_being_set)
972 /* If the frame is visible already and the fullscreen parameter is
973 being set, it is too late to set WM manager hints to specify
974 size and position.
975 Here we first get the width, height and position that applies to
976 fullscreen. We then move the frame to the appropriate
977 position. Resize of the frame is taken care of in the code after
978 this if-statement. */
979 int new_left, new_top;
981 x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
982 x_fullscreen_move (f, new_top, new_left);
985 /* Don't set these parameters unless they've been explicitly
986 specified. The window might be mapped or resized while we're in
987 this function, and we don't want to override that unless the lisp
988 code has asked for it.
990 Don't set these parameters unless they actually differ from the
991 window's current parameters; the window may not actually exist
992 yet. */
994 Lisp_Object frame;
996 check_frame_size (f, &height, &width);
998 XSETFRAME (frame, f);
1000 if (width != FRAME_WIDTH (f)
1001 || height != FRAME_HEIGHT (f)
1002 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
1003 Fset_frame_size (frame, make_number (width), make_number (height));
1005 if ((!NILP (left) || !NILP (top))
1006 && ! (left_no_change && top_no_change)
1007 && ! (NUMBERP (left) && XINT (left) == f->output_data.w32->left_pos
1008 && NUMBERP (top) && XINT (top) == f->output_data.w32->top_pos))
1010 int leftpos = 0;
1011 int toppos = 0;
1013 /* Record the signs. */
1014 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
1015 if (EQ (left, Qminus))
1016 f->output_data.w32->size_hint_flags |= XNegative;
1017 else if (INTEGERP (left))
1019 leftpos = XINT (left);
1020 if (leftpos < 0)
1021 f->output_data.w32->size_hint_flags |= XNegative;
1023 else if (CONSP (left) && EQ (XCAR (left), Qminus)
1024 && CONSP (XCDR (left))
1025 && INTEGERP (XCAR (XCDR (left))))
1027 leftpos = - XINT (XCAR (XCDR (left)));
1028 f->output_data.w32->size_hint_flags |= XNegative;
1030 else if (CONSP (left) && EQ (XCAR (left), Qplus)
1031 && CONSP (XCDR (left))
1032 && INTEGERP (XCAR (XCDR (left))))
1034 leftpos = XINT (XCAR (XCDR (left)));
1037 if (EQ (top, Qminus))
1038 f->output_data.w32->size_hint_flags |= YNegative;
1039 else if (INTEGERP (top))
1041 toppos = XINT (top);
1042 if (toppos < 0)
1043 f->output_data.w32->size_hint_flags |= YNegative;
1045 else if (CONSP (top) && EQ (XCAR (top), Qminus)
1046 && CONSP (XCDR (top))
1047 && INTEGERP (XCAR (XCDR (top))))
1049 toppos = - XINT (XCAR (XCDR (top)));
1050 f->output_data.w32->size_hint_flags |= YNegative;
1052 else if (CONSP (top) && EQ (XCAR (top), Qplus)
1053 && CONSP (XCDR (top))
1054 && INTEGERP (XCAR (XCDR (top))))
1056 toppos = XINT (XCAR (XCDR (top)));
1060 /* Store the numeric value of the position. */
1061 f->output_data.w32->top_pos = toppos;
1062 f->output_data.w32->left_pos = leftpos;
1064 f->output_data.w32->win_gravity = NorthWestGravity;
1066 /* Actually set that position, and convert to absolute. */
1067 x_set_offset (f, leftpos, toppos, -1);
1070 if ((!NILP (icon_left) || !NILP (icon_top))
1071 && ! (icon_left_no_change && icon_top_no_change))
1072 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
1075 UNGCPRO;
1078 /* Store the screen positions of frame F into XPTR and YPTR.
1079 These are the positions of the containing window manager window,
1080 not Emacs's own window. */
1082 void
1083 x_real_positions (f, xptr, yptr)
1084 FRAME_PTR f;
1085 int *xptr, *yptr;
1087 POINT pt;
1088 RECT rect;
1090 GetClientRect(FRAME_W32_WINDOW(f), &rect);
1091 AdjustWindowRect(&rect, f->output_data.w32->dwStyle, FRAME_EXTERNAL_MENU_BAR(f));
1093 pt.x = rect.left;
1094 pt.y = rect.top;
1096 ClientToScreen (FRAME_W32_WINDOW(f), &pt);
1098 /* Remember x_pixels_diff and y_pixels_diff. */
1099 f->output_data.w32->x_pixels_diff = pt.x - rect.left;
1100 f->output_data.w32->y_pixels_diff = pt.y - rect.top;
1102 *xptr = pt.x;
1103 *yptr = pt.y;
1106 /* Insert a description of internally-recorded parameters of frame X
1107 into the parameter alist *ALISTPTR that is to be given to the user.
1108 Only parameters that are specific to W32
1109 and whose values are not correctly recorded in the frame's
1110 param_alist need to be considered here. */
1112 void
1113 x_report_frame_params (f, alistptr)
1114 struct frame *f;
1115 Lisp_Object *alistptr;
1117 char buf[16];
1118 Lisp_Object tem;
1120 /* Represent negative positions (off the top or left screen edge)
1121 in a way that Fmodify_frame_parameters will understand correctly. */
1122 XSETINT (tem, f->output_data.w32->left_pos);
1123 if (f->output_data.w32->left_pos >= 0)
1124 store_in_alist (alistptr, Qleft, tem);
1125 else
1126 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
1128 XSETINT (tem, f->output_data.w32->top_pos);
1129 if (f->output_data.w32->top_pos >= 0)
1130 store_in_alist (alistptr, Qtop, tem);
1131 else
1132 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
1134 store_in_alist (alistptr, Qborder_width,
1135 make_number (f->output_data.w32->border_width));
1136 store_in_alist (alistptr, Qinternal_border_width,
1137 make_number (f->output_data.w32->internal_border_width));
1138 store_in_alist (alistptr, Qleft_fringe,
1139 make_number (f->output_data.w32->left_fringe_width));
1140 store_in_alist (alistptr, Qright_fringe,
1141 make_number (f->output_data.w32->right_fringe_width));
1142 store_in_alist (alistptr, Qscroll_bar_width,
1143 make_number (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
1144 ? FRAME_SCROLL_BAR_PIXEL_WIDTH(f)
1145 : 0));
1146 sprintf (buf, "%ld", (long) FRAME_W32_WINDOW (f));
1147 store_in_alist (alistptr, Qwindow_id,
1148 build_string (buf));
1149 store_in_alist (alistptr, Qicon_name, f->icon_name);
1150 FRAME_SAMPLE_VISIBILITY (f);
1151 store_in_alist (alistptr, Qvisibility,
1152 (FRAME_VISIBLE_P (f) ? Qt
1153 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
1154 store_in_alist (alistptr, Qdisplay,
1155 XCAR (FRAME_W32_DISPLAY_INFO (f)->name_list_element));
1159 DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color,
1160 Sw32_define_rgb_color, 4, 4, 0,
1161 doc: /* Convert RGB numbers to a windows color reference and associate with NAME.
1162 This adds or updates a named color to w32-color-map, making it
1163 available for use. The original entry's RGB ref is returned, or nil
1164 if the entry is new. */)
1165 (red, green, blue, name)
1166 Lisp_Object red, green, blue, name;
1168 Lisp_Object rgb;
1169 Lisp_Object oldrgb = Qnil;
1170 Lisp_Object entry;
1172 CHECK_NUMBER (red);
1173 CHECK_NUMBER (green);
1174 CHECK_NUMBER (blue);
1175 CHECK_STRING (name);
1177 XSET (rgb, Lisp_Int, RGB(XUINT (red), XUINT (green), XUINT (blue)));
1179 BLOCK_INPUT;
1181 /* replace existing entry in w32-color-map or add new entry. */
1182 entry = Fassoc (name, Vw32_color_map);
1183 if (NILP (entry))
1185 entry = Fcons (name, rgb);
1186 Vw32_color_map = Fcons (entry, Vw32_color_map);
1188 else
1190 oldrgb = Fcdr (entry);
1191 Fsetcdr (entry, rgb);
1194 UNBLOCK_INPUT;
1196 return (oldrgb);
1199 DEFUN ("w32-load-color-file", Fw32_load_color_file,
1200 Sw32_load_color_file, 1, 1, 0,
1201 doc: /* Create an alist of color entries from an external file.
1202 Assign this value to w32-color-map to replace the existing color map.
1204 The file should define one named RGB color per line like so:
1205 R G B name
1206 where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
1207 (filename)
1208 Lisp_Object filename;
1210 FILE *fp;
1211 Lisp_Object cmap = Qnil;
1212 Lisp_Object abspath;
1214 CHECK_STRING (filename);
1215 abspath = Fexpand_file_name (filename, Qnil);
1217 fp = fopen (XSTRING (filename)->data, "rt");
1218 if (fp)
1220 char buf[512];
1221 int red, green, blue;
1222 int num;
1224 BLOCK_INPUT;
1226 while (fgets (buf, sizeof (buf), fp) != NULL) {
1227 if (sscanf (buf, "%u %u %u %n", &red, &green, &blue, &num) == 3)
1229 char *name = buf + num;
1230 num = strlen (name) - 1;
1231 if (name[num] == '\n')
1232 name[num] = 0;
1233 cmap = Fcons (Fcons (build_string (name),
1234 make_number (RGB (red, green, blue))),
1235 cmap);
1238 fclose (fp);
1240 UNBLOCK_INPUT;
1243 return cmap;
1246 /* The default colors for the w32 color map */
1247 typedef struct colormap_t
1249 char *name;
1250 COLORREF colorref;
1251 } colormap_t;
1253 colormap_t w32_color_map[] =
1255 {"snow" , PALETTERGB (255,250,250)},
1256 {"ghost white" , PALETTERGB (248,248,255)},
1257 {"GhostWhite" , PALETTERGB (248,248,255)},
1258 {"white smoke" , PALETTERGB (245,245,245)},
1259 {"WhiteSmoke" , PALETTERGB (245,245,245)},
1260 {"gainsboro" , PALETTERGB (220,220,220)},
1261 {"floral white" , PALETTERGB (255,250,240)},
1262 {"FloralWhite" , PALETTERGB (255,250,240)},
1263 {"old lace" , PALETTERGB (253,245,230)},
1264 {"OldLace" , PALETTERGB (253,245,230)},
1265 {"linen" , PALETTERGB (250,240,230)},
1266 {"antique white" , PALETTERGB (250,235,215)},
1267 {"AntiqueWhite" , PALETTERGB (250,235,215)},
1268 {"papaya whip" , PALETTERGB (255,239,213)},
1269 {"PapayaWhip" , PALETTERGB (255,239,213)},
1270 {"blanched almond" , PALETTERGB (255,235,205)},
1271 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
1272 {"bisque" , PALETTERGB (255,228,196)},
1273 {"peach puff" , PALETTERGB (255,218,185)},
1274 {"PeachPuff" , PALETTERGB (255,218,185)},
1275 {"navajo white" , PALETTERGB (255,222,173)},
1276 {"NavajoWhite" , PALETTERGB (255,222,173)},
1277 {"moccasin" , PALETTERGB (255,228,181)},
1278 {"cornsilk" , PALETTERGB (255,248,220)},
1279 {"ivory" , PALETTERGB (255,255,240)},
1280 {"lemon chiffon" , PALETTERGB (255,250,205)},
1281 {"LemonChiffon" , PALETTERGB (255,250,205)},
1282 {"seashell" , PALETTERGB (255,245,238)},
1283 {"honeydew" , PALETTERGB (240,255,240)},
1284 {"mint cream" , PALETTERGB (245,255,250)},
1285 {"MintCream" , PALETTERGB (245,255,250)},
1286 {"azure" , PALETTERGB (240,255,255)},
1287 {"alice blue" , PALETTERGB (240,248,255)},
1288 {"AliceBlue" , PALETTERGB (240,248,255)},
1289 {"lavender" , PALETTERGB (230,230,250)},
1290 {"lavender blush" , PALETTERGB (255,240,245)},
1291 {"LavenderBlush" , PALETTERGB (255,240,245)},
1292 {"misty rose" , PALETTERGB (255,228,225)},
1293 {"MistyRose" , PALETTERGB (255,228,225)},
1294 {"white" , PALETTERGB (255,255,255)},
1295 {"black" , PALETTERGB ( 0, 0, 0)},
1296 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
1297 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
1298 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
1299 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
1300 {"dim gray" , PALETTERGB (105,105,105)},
1301 {"DimGray" , PALETTERGB (105,105,105)},
1302 {"dim grey" , PALETTERGB (105,105,105)},
1303 {"DimGrey" , PALETTERGB (105,105,105)},
1304 {"slate gray" , PALETTERGB (112,128,144)},
1305 {"SlateGray" , PALETTERGB (112,128,144)},
1306 {"slate grey" , PALETTERGB (112,128,144)},
1307 {"SlateGrey" , PALETTERGB (112,128,144)},
1308 {"light slate gray" , PALETTERGB (119,136,153)},
1309 {"LightSlateGray" , PALETTERGB (119,136,153)},
1310 {"light slate grey" , PALETTERGB (119,136,153)},
1311 {"LightSlateGrey" , PALETTERGB (119,136,153)},
1312 {"gray" , PALETTERGB (190,190,190)},
1313 {"grey" , PALETTERGB (190,190,190)},
1314 {"light grey" , PALETTERGB (211,211,211)},
1315 {"LightGrey" , PALETTERGB (211,211,211)},
1316 {"light gray" , PALETTERGB (211,211,211)},
1317 {"LightGray" , PALETTERGB (211,211,211)},
1318 {"midnight blue" , PALETTERGB ( 25, 25,112)},
1319 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
1320 {"navy" , PALETTERGB ( 0, 0,128)},
1321 {"navy blue" , PALETTERGB ( 0, 0,128)},
1322 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
1323 {"cornflower blue" , PALETTERGB (100,149,237)},
1324 {"CornflowerBlue" , PALETTERGB (100,149,237)},
1325 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
1326 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
1327 {"slate blue" , PALETTERGB (106, 90,205)},
1328 {"SlateBlue" , PALETTERGB (106, 90,205)},
1329 {"medium slate blue" , PALETTERGB (123,104,238)},
1330 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
1331 {"light slate blue" , PALETTERGB (132,112,255)},
1332 {"LightSlateBlue" , PALETTERGB (132,112,255)},
1333 {"medium blue" , PALETTERGB ( 0, 0,205)},
1334 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
1335 {"royal blue" , PALETTERGB ( 65,105,225)},
1336 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
1337 {"blue" , PALETTERGB ( 0, 0,255)},
1338 {"dodger blue" , PALETTERGB ( 30,144,255)},
1339 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
1340 {"deep sky blue" , PALETTERGB ( 0,191,255)},
1341 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
1342 {"sky blue" , PALETTERGB (135,206,235)},
1343 {"SkyBlue" , PALETTERGB (135,206,235)},
1344 {"light sky blue" , PALETTERGB (135,206,250)},
1345 {"LightSkyBlue" , PALETTERGB (135,206,250)},
1346 {"steel blue" , PALETTERGB ( 70,130,180)},
1347 {"SteelBlue" , PALETTERGB ( 70,130,180)},
1348 {"light steel blue" , PALETTERGB (176,196,222)},
1349 {"LightSteelBlue" , PALETTERGB (176,196,222)},
1350 {"light blue" , PALETTERGB (173,216,230)},
1351 {"LightBlue" , PALETTERGB (173,216,230)},
1352 {"powder blue" , PALETTERGB (176,224,230)},
1353 {"PowderBlue" , PALETTERGB (176,224,230)},
1354 {"pale turquoise" , PALETTERGB (175,238,238)},
1355 {"PaleTurquoise" , PALETTERGB (175,238,238)},
1356 {"dark turquoise" , PALETTERGB ( 0,206,209)},
1357 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
1358 {"medium turquoise" , PALETTERGB ( 72,209,204)},
1359 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
1360 {"turquoise" , PALETTERGB ( 64,224,208)},
1361 {"cyan" , PALETTERGB ( 0,255,255)},
1362 {"light cyan" , PALETTERGB (224,255,255)},
1363 {"LightCyan" , PALETTERGB (224,255,255)},
1364 {"cadet blue" , PALETTERGB ( 95,158,160)},
1365 {"CadetBlue" , PALETTERGB ( 95,158,160)},
1366 {"medium aquamarine" , PALETTERGB (102,205,170)},
1367 {"MediumAquamarine" , PALETTERGB (102,205,170)},
1368 {"aquamarine" , PALETTERGB (127,255,212)},
1369 {"dark green" , PALETTERGB ( 0,100, 0)},
1370 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
1371 {"dark olive green" , PALETTERGB ( 85,107, 47)},
1372 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
1373 {"dark sea green" , PALETTERGB (143,188,143)},
1374 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
1375 {"sea green" , PALETTERGB ( 46,139, 87)},
1376 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
1377 {"medium sea green" , PALETTERGB ( 60,179,113)},
1378 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
1379 {"light sea green" , PALETTERGB ( 32,178,170)},
1380 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
1381 {"pale green" , PALETTERGB (152,251,152)},
1382 {"PaleGreen" , PALETTERGB (152,251,152)},
1383 {"spring green" , PALETTERGB ( 0,255,127)},
1384 {"SpringGreen" , PALETTERGB ( 0,255,127)},
1385 {"lawn green" , PALETTERGB (124,252, 0)},
1386 {"LawnGreen" , PALETTERGB (124,252, 0)},
1387 {"green" , PALETTERGB ( 0,255, 0)},
1388 {"chartreuse" , PALETTERGB (127,255, 0)},
1389 {"medium spring green" , PALETTERGB ( 0,250,154)},
1390 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
1391 {"green yellow" , PALETTERGB (173,255, 47)},
1392 {"GreenYellow" , PALETTERGB (173,255, 47)},
1393 {"lime green" , PALETTERGB ( 50,205, 50)},
1394 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
1395 {"yellow green" , PALETTERGB (154,205, 50)},
1396 {"YellowGreen" , PALETTERGB (154,205, 50)},
1397 {"forest green" , PALETTERGB ( 34,139, 34)},
1398 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
1399 {"olive drab" , PALETTERGB (107,142, 35)},
1400 {"OliveDrab" , PALETTERGB (107,142, 35)},
1401 {"dark khaki" , PALETTERGB (189,183,107)},
1402 {"DarkKhaki" , PALETTERGB (189,183,107)},
1403 {"khaki" , PALETTERGB (240,230,140)},
1404 {"pale goldenrod" , PALETTERGB (238,232,170)},
1405 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
1406 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
1407 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
1408 {"light yellow" , PALETTERGB (255,255,224)},
1409 {"LightYellow" , PALETTERGB (255,255,224)},
1410 {"yellow" , PALETTERGB (255,255, 0)},
1411 {"gold" , PALETTERGB (255,215, 0)},
1412 {"light goldenrod" , PALETTERGB (238,221,130)},
1413 {"LightGoldenrod" , PALETTERGB (238,221,130)},
1414 {"goldenrod" , PALETTERGB (218,165, 32)},
1415 {"dark goldenrod" , PALETTERGB (184,134, 11)},
1416 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
1417 {"rosy brown" , PALETTERGB (188,143,143)},
1418 {"RosyBrown" , PALETTERGB (188,143,143)},
1419 {"indian red" , PALETTERGB (205, 92, 92)},
1420 {"IndianRed" , PALETTERGB (205, 92, 92)},
1421 {"saddle brown" , PALETTERGB (139, 69, 19)},
1422 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
1423 {"sienna" , PALETTERGB (160, 82, 45)},
1424 {"peru" , PALETTERGB (205,133, 63)},
1425 {"burlywood" , PALETTERGB (222,184,135)},
1426 {"beige" , PALETTERGB (245,245,220)},
1427 {"wheat" , PALETTERGB (245,222,179)},
1428 {"sandy brown" , PALETTERGB (244,164, 96)},
1429 {"SandyBrown" , PALETTERGB (244,164, 96)},
1430 {"tan" , PALETTERGB (210,180,140)},
1431 {"chocolate" , PALETTERGB (210,105, 30)},
1432 {"firebrick" , PALETTERGB (178,34, 34)},
1433 {"brown" , PALETTERGB (165,42, 42)},
1434 {"dark salmon" , PALETTERGB (233,150,122)},
1435 {"DarkSalmon" , PALETTERGB (233,150,122)},
1436 {"salmon" , PALETTERGB (250,128,114)},
1437 {"light salmon" , PALETTERGB (255,160,122)},
1438 {"LightSalmon" , PALETTERGB (255,160,122)},
1439 {"orange" , PALETTERGB (255,165, 0)},
1440 {"dark orange" , PALETTERGB (255,140, 0)},
1441 {"DarkOrange" , PALETTERGB (255,140, 0)},
1442 {"coral" , PALETTERGB (255,127, 80)},
1443 {"light coral" , PALETTERGB (240,128,128)},
1444 {"LightCoral" , PALETTERGB (240,128,128)},
1445 {"tomato" , PALETTERGB (255, 99, 71)},
1446 {"orange red" , PALETTERGB (255, 69, 0)},
1447 {"OrangeRed" , PALETTERGB (255, 69, 0)},
1448 {"red" , PALETTERGB (255, 0, 0)},
1449 {"hot pink" , PALETTERGB (255,105,180)},
1450 {"HotPink" , PALETTERGB (255,105,180)},
1451 {"deep pink" , PALETTERGB (255, 20,147)},
1452 {"DeepPink" , PALETTERGB (255, 20,147)},
1453 {"pink" , PALETTERGB (255,192,203)},
1454 {"light pink" , PALETTERGB (255,182,193)},
1455 {"LightPink" , PALETTERGB (255,182,193)},
1456 {"pale violet red" , PALETTERGB (219,112,147)},
1457 {"PaleVioletRed" , PALETTERGB (219,112,147)},
1458 {"maroon" , PALETTERGB (176, 48, 96)},
1459 {"medium violet red" , PALETTERGB (199, 21,133)},
1460 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
1461 {"violet red" , PALETTERGB (208, 32,144)},
1462 {"VioletRed" , PALETTERGB (208, 32,144)},
1463 {"magenta" , PALETTERGB (255, 0,255)},
1464 {"violet" , PALETTERGB (238,130,238)},
1465 {"plum" , PALETTERGB (221,160,221)},
1466 {"orchid" , PALETTERGB (218,112,214)},
1467 {"medium orchid" , PALETTERGB (186, 85,211)},
1468 {"MediumOrchid" , PALETTERGB (186, 85,211)},
1469 {"dark orchid" , PALETTERGB (153, 50,204)},
1470 {"DarkOrchid" , PALETTERGB (153, 50,204)},
1471 {"dark violet" , PALETTERGB (148, 0,211)},
1472 {"DarkViolet" , PALETTERGB (148, 0,211)},
1473 {"blue violet" , PALETTERGB (138, 43,226)},
1474 {"BlueViolet" , PALETTERGB (138, 43,226)},
1475 {"purple" , PALETTERGB (160, 32,240)},
1476 {"medium purple" , PALETTERGB (147,112,219)},
1477 {"MediumPurple" , PALETTERGB (147,112,219)},
1478 {"thistle" , PALETTERGB (216,191,216)},
1479 {"gray0" , PALETTERGB ( 0, 0, 0)},
1480 {"grey0" , PALETTERGB ( 0, 0, 0)},
1481 {"dark grey" , PALETTERGB (169,169,169)},
1482 {"DarkGrey" , PALETTERGB (169,169,169)},
1483 {"dark gray" , PALETTERGB (169,169,169)},
1484 {"DarkGray" , PALETTERGB (169,169,169)},
1485 {"dark blue" , PALETTERGB ( 0, 0,139)},
1486 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
1487 {"dark cyan" , PALETTERGB ( 0,139,139)},
1488 {"DarkCyan" , PALETTERGB ( 0,139,139)},
1489 {"dark magenta" , PALETTERGB (139, 0,139)},
1490 {"DarkMagenta" , PALETTERGB (139, 0,139)},
1491 {"dark red" , PALETTERGB (139, 0, 0)},
1492 {"DarkRed" , PALETTERGB (139, 0, 0)},
1493 {"light green" , PALETTERGB (144,238,144)},
1494 {"LightGreen" , PALETTERGB (144,238,144)},
1497 DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map,
1498 0, 0, 0, doc: /* Return the default color map. */)
1501 int i;
1502 colormap_t *pc = w32_color_map;
1503 Lisp_Object cmap;
1505 BLOCK_INPUT;
1507 cmap = Qnil;
1509 for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
1510 pc++, i++)
1511 cmap = Fcons (Fcons (build_string (pc->name),
1512 make_number (pc->colorref)),
1513 cmap);
1515 UNBLOCK_INPUT;
1517 return (cmap);
1520 Lisp_Object
1521 w32_to_x_color (rgb)
1522 Lisp_Object rgb;
1524 Lisp_Object color;
1526 CHECK_NUMBER (rgb);
1528 BLOCK_INPUT;
1530 color = Frassq (rgb, Vw32_color_map);
1532 UNBLOCK_INPUT;
1534 if (!NILP (color))
1535 return (Fcar (color));
1536 else
1537 return Qnil;
1540 COLORREF
1541 w32_color_map_lookup (colorname)
1542 char *colorname;
1544 Lisp_Object tail, ret = Qnil;
1546 BLOCK_INPUT;
1548 for (tail = Vw32_color_map; !NILP (tail); tail = Fcdr (tail))
1550 register Lisp_Object elt, tem;
1552 elt = Fcar (tail);
1553 if (!CONSP (elt)) continue;
1555 tem = Fcar (elt);
1557 if (lstrcmpi (XSTRING (tem)->data, colorname) == 0)
1559 ret = XUINT (Fcdr (elt));
1560 break;
1563 QUIT;
1567 UNBLOCK_INPUT;
1569 return ret;
1572 COLORREF
1573 x_to_w32_color (colorname)
1574 char * colorname;
1576 register Lisp_Object ret = Qnil;
1578 BLOCK_INPUT;
1580 if (colorname[0] == '#')
1582 /* Could be an old-style RGB Device specification. */
1583 char *color;
1584 int size;
1585 color = colorname + 1;
1587 size = strlen(color);
1588 if (size == 3 || size == 6 || size == 9 || size == 12)
1590 UINT colorval;
1591 int i, pos;
1592 pos = 0;
1593 size /= 3;
1594 colorval = 0;
1596 for (i = 0; i < 3; i++)
1598 char *end;
1599 char t;
1600 unsigned long value;
1602 /* The check for 'x' in the following conditional takes into
1603 account the fact that strtol allows a "0x" in front of
1604 our numbers, and we don't. */
1605 if (!isxdigit(color[0]) || color[1] == 'x')
1606 break;
1607 t = color[size];
1608 color[size] = '\0';
1609 value = strtoul(color, &end, 16);
1610 color[size] = t;
1611 if (errno == ERANGE || end - color != size)
1612 break;
1613 switch (size)
1615 case 1:
1616 value = value * 0x10;
1617 break;
1618 case 2:
1619 break;
1620 case 3:
1621 value /= 0x10;
1622 break;
1623 case 4:
1624 value /= 0x100;
1625 break;
1627 colorval |= (value << pos);
1628 pos += 0x8;
1629 if (i == 2)
1631 UNBLOCK_INPUT;
1632 return (colorval);
1634 color = end;
1638 else if (strnicmp(colorname, "rgb:", 4) == 0)
1640 char *color;
1641 UINT colorval;
1642 int i, pos;
1643 pos = 0;
1645 colorval = 0;
1646 color = colorname + 4;
1647 for (i = 0; i < 3; i++)
1649 char *end;
1650 unsigned long value;
1652 /* The check for 'x' in the following conditional takes into
1653 account the fact that strtol allows a "0x" in front of
1654 our numbers, and we don't. */
1655 if (!isxdigit(color[0]) || color[1] == 'x')
1656 break;
1657 value = strtoul(color, &end, 16);
1658 if (errno == ERANGE)
1659 break;
1660 switch (end - color)
1662 case 1:
1663 value = value * 0x10 + value;
1664 break;
1665 case 2:
1666 break;
1667 case 3:
1668 value /= 0x10;
1669 break;
1670 case 4:
1671 value /= 0x100;
1672 break;
1673 default:
1674 value = ULONG_MAX;
1676 if (value == ULONG_MAX)
1677 break;
1678 colorval |= (value << pos);
1679 pos += 0x8;
1680 if (i == 2)
1682 if (*end != '\0')
1683 break;
1684 UNBLOCK_INPUT;
1685 return (colorval);
1687 if (*end != '/')
1688 break;
1689 color = end + 1;
1692 else if (strnicmp(colorname, "rgbi:", 5) == 0)
1694 /* This is an RGB Intensity specification. */
1695 char *color;
1696 UINT colorval;
1697 int i, pos;
1698 pos = 0;
1700 colorval = 0;
1701 color = colorname + 5;
1702 for (i = 0; i < 3; i++)
1704 char *end;
1705 double value;
1706 UINT val;
1708 value = strtod(color, &end);
1709 if (errno == ERANGE)
1710 break;
1711 if (value < 0.0 || value > 1.0)
1712 break;
1713 val = (UINT)(0x100 * value);
1714 /* We used 0x100 instead of 0xFF to give an continuous
1715 range between 0.0 and 1.0 inclusive. The next statement
1716 fixes the 1.0 case. */
1717 if (val == 0x100)
1718 val = 0xFF;
1719 colorval |= (val << pos);
1720 pos += 0x8;
1721 if (i == 2)
1723 if (*end != '\0')
1724 break;
1725 UNBLOCK_INPUT;
1726 return (colorval);
1728 if (*end != '/')
1729 break;
1730 color = end + 1;
1733 /* I am not going to attempt to handle any of the CIE color schemes
1734 or TekHVC, since I don't know the algorithms for conversion to
1735 RGB. */
1737 /* If we fail to lookup the color name in w32_color_map, then check the
1738 colorname to see if it can be crudely approximated: If the X color
1739 ends in a number (e.g., "darkseagreen2"), strip the number and
1740 return the result of looking up the base color name. */
1741 ret = w32_color_map_lookup (colorname);
1742 if (NILP (ret))
1744 int len = strlen (colorname);
1746 if (isdigit (colorname[len - 1]))
1748 char *ptr, *approx = alloca (len + 1);
1750 strcpy (approx, colorname);
1751 ptr = &approx[len - 1];
1752 while (ptr > approx && isdigit (*ptr))
1753 *ptr-- = '\0';
1755 ret = w32_color_map_lookup (approx);
1759 UNBLOCK_INPUT;
1760 return ret;
1764 void
1765 w32_regenerate_palette (FRAME_PTR f)
1767 struct w32_palette_entry * list;
1768 LOGPALETTE * log_palette;
1769 HPALETTE new_palette;
1770 int i;
1772 /* don't bother trying to create palette if not supported */
1773 if (! FRAME_W32_DISPLAY_INFO (f)->has_palette)
1774 return;
1776 log_palette = (LOGPALETTE *)
1777 alloca (sizeof (LOGPALETTE) +
1778 FRAME_W32_DISPLAY_INFO (f)->num_colors * sizeof (PALETTEENTRY));
1779 log_palette->palVersion = 0x300;
1780 log_palette->palNumEntries = FRAME_W32_DISPLAY_INFO (f)->num_colors;
1782 list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1783 for (i = 0;
1784 i < FRAME_W32_DISPLAY_INFO (f)->num_colors;
1785 i++, list = list->next)
1786 log_palette->palPalEntry[i] = list->entry;
1788 new_palette = CreatePalette (log_palette);
1790 enter_crit ();
1792 if (FRAME_W32_DISPLAY_INFO (f)->palette)
1793 DeleteObject (FRAME_W32_DISPLAY_INFO (f)->palette);
1794 FRAME_W32_DISPLAY_INFO (f)->palette = new_palette;
1796 /* Realize display palette and garbage all frames. */
1797 release_frame_dc (f, get_frame_dc (f));
1799 leave_crit ();
1802 #define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1803 #define SET_W32_COLOR(pe, color) \
1804 do \
1806 pe.peRed = GetRValue (color); \
1807 pe.peGreen = GetGValue (color); \
1808 pe.peBlue = GetBValue (color); \
1809 pe.peFlags = 0; \
1810 } while (0)
1812 #if 0
1813 /* Keep these around in case we ever want to track color usage. */
1814 void
1815 w32_map_color (FRAME_PTR f, COLORREF color)
1817 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1819 if (NILP (Vw32_enable_palette))
1820 return;
1822 /* check if color is already mapped */
1823 while (list)
1825 if (W32_COLOR (list->entry) == color)
1827 ++list->refcount;
1828 return;
1830 list = list->next;
1833 /* not already mapped, so add to list and recreate Windows palette */
1834 list = (struct w32_palette_entry *)
1835 xmalloc (sizeof (struct w32_palette_entry));
1836 SET_W32_COLOR (list->entry, color);
1837 list->refcount = 1;
1838 list->next = FRAME_W32_DISPLAY_INFO (f)->color_list;
1839 FRAME_W32_DISPLAY_INFO (f)->color_list = list;
1840 FRAME_W32_DISPLAY_INFO (f)->num_colors++;
1842 /* set flag that palette must be regenerated */
1843 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1846 void
1847 w32_unmap_color (FRAME_PTR f, COLORREF color)
1849 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1850 struct w32_palette_entry **prev = &FRAME_W32_DISPLAY_INFO (f)->color_list;
1852 if (NILP (Vw32_enable_palette))
1853 return;
1855 /* check if color is already mapped */
1856 while (list)
1858 if (W32_COLOR (list->entry) == color)
1860 if (--list->refcount == 0)
1862 *prev = list->next;
1863 xfree (list);
1864 FRAME_W32_DISPLAY_INFO (f)->num_colors--;
1865 break;
1867 else
1868 return;
1870 prev = &list->next;
1871 list = list->next;
1874 /* set flag that palette must be regenerated */
1875 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1877 #endif
1880 /* Gamma-correct COLOR on frame F. */
1882 void
1883 gamma_correct (f, color)
1884 struct frame *f;
1885 COLORREF *color;
1887 if (f->gamma)
1889 *color = PALETTERGB (
1890 pow (GetRValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1891 pow (GetGValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1892 pow (GetBValue (*color) / 255.0, f->gamma) * 255.0 + 0.5);
1897 /* Decide if color named COLOR is valid for the display associated with
1898 the selected frame; if so, return the rgb values in COLOR_DEF.
1899 If ALLOC is nonzero, allocate a new colormap cell. */
1902 w32_defined_color (f, color, color_def, alloc)
1903 FRAME_PTR f;
1904 char *color;
1905 XColor *color_def;
1906 int alloc;
1908 register Lisp_Object tem;
1909 COLORREF w32_color_ref;
1911 tem = x_to_w32_color (color);
1913 if (!NILP (tem))
1915 if (f)
1917 /* Apply gamma correction. */
1918 w32_color_ref = XUINT (tem);
1919 gamma_correct (f, &w32_color_ref);
1920 XSETINT (tem, w32_color_ref);
1923 /* Map this color to the palette if it is enabled. */
1924 if (!NILP (Vw32_enable_palette))
1926 struct w32_palette_entry * entry =
1927 one_w32_display_info.color_list;
1928 struct w32_palette_entry ** prev =
1929 &one_w32_display_info.color_list;
1931 /* check if color is already mapped */
1932 while (entry)
1934 if (W32_COLOR (entry->entry) == XUINT (tem))
1935 break;
1936 prev = &entry->next;
1937 entry = entry->next;
1940 if (entry == NULL && alloc)
1942 /* not already mapped, so add to list */
1943 entry = (struct w32_palette_entry *)
1944 xmalloc (sizeof (struct w32_palette_entry));
1945 SET_W32_COLOR (entry->entry, XUINT (tem));
1946 entry->next = NULL;
1947 *prev = entry;
1948 one_w32_display_info.num_colors++;
1950 /* set flag that palette must be regenerated */
1951 one_w32_display_info.regen_palette = TRUE;
1954 /* Ensure COLORREF value is snapped to nearest color in (default)
1955 palette by simulating the PALETTERGB macro. This works whether
1956 or not the display device has a palette. */
1957 w32_color_ref = XUINT (tem) | 0x2000000;
1959 color_def->pixel = w32_color_ref;
1960 color_def->red = GetRValue (w32_color_ref);
1961 color_def->green = GetGValue (w32_color_ref);
1962 color_def->blue = GetBValue (w32_color_ref);
1964 return 1;
1966 else
1968 return 0;
1972 /* Given a string ARG naming a color, compute a pixel value from it
1973 suitable for screen F.
1974 If F is not a color screen, return DEF (default) regardless of what
1975 ARG says. */
1978 x_decode_color (f, arg, def)
1979 FRAME_PTR f;
1980 Lisp_Object arg;
1981 int def;
1983 XColor cdef;
1985 CHECK_STRING (arg);
1987 if (strcmp (XSTRING (arg)->data, "black") == 0)
1988 return BLACK_PIX_DEFAULT (f);
1989 else if (strcmp (XSTRING (arg)->data, "white") == 0)
1990 return WHITE_PIX_DEFAULT (f);
1992 if ((FRAME_W32_DISPLAY_INFO (f)->n_planes * FRAME_W32_DISPLAY_INFO (f)->n_cbits) == 1)
1993 return def;
1995 /* w32_defined_color is responsible for coping with failures
1996 by looking for a near-miss. */
1997 if (w32_defined_color (f, XSTRING (arg)->data, &cdef, 1))
1998 return cdef.pixel;
2000 /* defined_color failed; return an ultimate default. */
2001 return def;
2004 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
2005 the previous value of that parameter, NEW_VALUE is the new value. */
2007 static void
2008 x_set_line_spacing (f, new_value, old_value)
2009 struct frame *f;
2010 Lisp_Object new_value, old_value;
2012 if (NILP (new_value))
2013 f->extra_line_spacing = 0;
2014 else if (NATNUMP (new_value))
2015 f->extra_line_spacing = XFASTINT (new_value);
2016 else
2017 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
2018 Fcons (new_value, Qnil)));
2019 if (FRAME_VISIBLE_P (f))
2020 redraw_frame (f);
2024 /* Change the `fullscreen' frame parameter of frame F. OLD_VALUE is
2025 the previous value of that parameter, NEW_VALUE is the new value. */
2027 static void
2028 x_set_fullscreen (f, new_value, old_value)
2029 struct frame *f;
2030 Lisp_Object new_value, old_value;
2032 if (NILP (new_value))
2033 f->output_data.w32->want_fullscreen = FULLSCREEN_NONE;
2034 else if (EQ (new_value, Qfullboth))
2035 f->output_data.w32->want_fullscreen = FULLSCREEN_BOTH;
2036 else if (EQ (new_value, Qfullwidth))
2037 f->output_data.w32->want_fullscreen = FULLSCREEN_WIDTH;
2038 else if (EQ (new_value, Qfullheight))
2039 f->output_data.w32->want_fullscreen = FULLSCREEN_HEIGHT;
2043 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
2044 the previous value of that parameter, NEW_VALUE is the new value. */
2046 static void
2047 x_set_screen_gamma (f, new_value, old_value)
2048 struct frame *f;
2049 Lisp_Object new_value, old_value;
2051 if (NILP (new_value))
2052 f->gamma = 0;
2053 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
2054 /* The value 0.4545 is the normal viewing gamma. */
2055 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
2056 else
2057 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
2058 Fcons (new_value, Qnil)));
2060 clear_face_cache (0);
2064 /* Functions called only from `x_set_frame_param'
2065 to set individual parameters.
2067 If FRAME_W32_WINDOW (f) is 0,
2068 the frame is being created and its window does not exist yet.
2069 In that case, just record the parameter's new value
2070 in the standard place; do not attempt to change the window. */
2072 void
2073 x_set_foreground_color (f, arg, oldval)
2074 struct frame *f;
2075 Lisp_Object arg, oldval;
2077 struct w32_output *x = f->output_data.w32;
2078 PIX_TYPE fg, old_fg;
2080 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2081 old_fg = FRAME_FOREGROUND_PIXEL (f);
2082 FRAME_FOREGROUND_PIXEL (f) = fg;
2084 if (FRAME_W32_WINDOW (f) != 0)
2086 if (x->cursor_pixel == old_fg)
2087 x->cursor_pixel = fg;
2089 update_face_from_frame_parameter (f, Qforeground_color, arg);
2090 if (FRAME_VISIBLE_P (f))
2091 redraw_frame (f);
2095 void
2096 x_set_background_color (f, arg, oldval)
2097 struct frame *f;
2098 Lisp_Object arg, oldval;
2100 FRAME_BACKGROUND_PIXEL (f)
2101 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
2103 if (FRAME_W32_WINDOW (f) != 0)
2105 SetWindowLong (FRAME_W32_WINDOW (f), WND_BACKGROUND_INDEX,
2106 FRAME_BACKGROUND_PIXEL (f));
2108 update_face_from_frame_parameter (f, Qbackground_color, arg);
2110 if (FRAME_VISIBLE_P (f))
2111 redraw_frame (f);
2115 void
2116 x_set_mouse_color (f, arg, oldval)
2117 struct frame *f;
2118 Lisp_Object arg, oldval;
2120 Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
2121 int count;
2122 int mask_color;
2124 if (!EQ (Qnil, arg))
2125 f->output_data.w32->mouse_pixel
2126 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2127 mask_color = FRAME_BACKGROUND_PIXEL (f);
2129 /* Don't let pointers be invisible. */
2130 if (mask_color == f->output_data.w32->mouse_pixel
2131 && mask_color == FRAME_BACKGROUND_PIXEL (f))
2132 f->output_data.w32->mouse_pixel = FRAME_FOREGROUND_PIXEL (f);
2134 #if 0 /* TODO : cursor changes */
2135 BLOCK_INPUT;
2137 /* It's not okay to crash if the user selects a screwy cursor. */
2138 count = x_catch_errors (FRAME_W32_DISPLAY (f));
2140 if (!EQ (Qnil, Vx_pointer_shape))
2142 CHECK_NUMBER (Vx_pointer_shape);
2143 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape));
2145 else
2146 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2147 x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s");
2149 if (!EQ (Qnil, Vx_nontext_pointer_shape))
2151 CHECK_NUMBER (Vx_nontext_pointer_shape);
2152 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2153 XINT (Vx_nontext_pointer_shape));
2155 else
2156 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr);
2157 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2159 if (!EQ (Qnil, Vx_hourglass_pointer_shape))
2161 CHECK_NUMBER (Vx_hourglass_pointer_shape);
2162 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2163 XINT (Vx_hourglass_pointer_shape));
2165 else
2166 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
2167 x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
2169 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2170 if (!EQ (Qnil, Vx_mode_pointer_shape))
2172 CHECK_NUMBER (Vx_mode_pointer_shape);
2173 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2174 XINT (Vx_mode_pointer_shape));
2176 else
2177 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2178 x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s");
2180 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
2182 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
2183 cross_cursor
2184 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2185 XINT (Vx_sensitive_text_pointer_shape));
2187 else
2188 cross_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair);
2190 if (!NILP (Vx_window_horizontal_drag_shape))
2192 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
2193 horizontal_drag_cursor
2194 = XCreateFontCursor (FRAME_X_DISPLAY (f),
2195 XINT (Vx_window_horizontal_drag_shape));
2197 else
2198 horizontal_drag_cursor
2199 = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_sb_h_double_arrow);
2201 /* Check and report errors with the above calls. */
2202 x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
2203 x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
2206 XColor fore_color, back_color;
2208 fore_color.pixel = f->output_data.w32->mouse_pixel;
2209 back_color.pixel = mask_color;
2210 XQueryColor (FRAME_W32_DISPLAY (f),
2211 DefaultColormap (FRAME_W32_DISPLAY (f),
2212 DefaultScreen (FRAME_W32_DISPLAY (f))),
2213 &fore_color);
2214 XQueryColor (FRAME_W32_DISPLAY (f),
2215 DefaultColormap (FRAME_W32_DISPLAY (f),
2216 DefaultScreen (FRAME_W32_DISPLAY (f))),
2217 &back_color);
2218 XRecolorCursor (FRAME_W32_DISPLAY (f), cursor,
2219 &fore_color, &back_color);
2220 XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor,
2221 &fore_color, &back_color);
2222 XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor,
2223 &fore_color, &back_color);
2224 XRecolorCursor (FRAME_W32_DISPLAY (f), cross_cursor,
2225 &fore_color, &back_color);
2226 XRecolorCursor (FRAME_W32_DISPLAY (f), hourglass_cursor,
2227 &fore_color, &back_color);
2230 if (FRAME_W32_WINDOW (f) != 0)
2231 XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor);
2233 if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0)
2234 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor);
2235 f->output_data.w32->text_cursor = cursor;
2237 if (nontext_cursor != f->output_data.w32->nontext_cursor
2238 && f->output_data.w32->nontext_cursor != 0)
2239 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor);
2240 f->output_data.w32->nontext_cursor = nontext_cursor;
2242 if (hourglass_cursor != f->output_data.w32->hourglass_cursor
2243 && f->output_data.w32->hourglass_cursor != 0)
2244 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hourglass_cursor);
2245 f->output_data.w32->hourglass_cursor = hourglass_cursor;
2247 if (mode_cursor != f->output_data.w32->modeline_cursor
2248 && f->output_data.w32->modeline_cursor != 0)
2249 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
2250 f->output_data.w32->modeline_cursor = mode_cursor;
2252 if (cross_cursor != f->output_data.w32->cross_cursor
2253 && f->output_data.w32->cross_cursor != 0)
2254 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor);
2255 f->output_data.w32->cross_cursor = cross_cursor;
2257 XFlush (FRAME_W32_DISPLAY (f));
2258 UNBLOCK_INPUT;
2260 update_face_from_frame_parameter (f, Qmouse_color, arg);
2261 #endif /* TODO */
2264 /* Defined in w32term.c. */
2265 void x_update_cursor (struct frame *f, int on_p);
2267 void
2268 x_set_cursor_color (f, arg, oldval)
2269 struct frame *f;
2270 Lisp_Object arg, oldval;
2272 unsigned long fore_pixel, pixel;
2274 if (!NILP (Vx_cursor_fore_pixel))
2275 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
2276 WHITE_PIX_DEFAULT (f));
2277 else
2278 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2280 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2282 /* Make sure that the cursor color differs from the background color. */
2283 if (pixel == FRAME_BACKGROUND_PIXEL (f))
2285 pixel = f->output_data.w32->mouse_pixel;
2286 if (pixel == fore_pixel)
2287 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2290 FRAME_FOREGROUND_PIXEL (f) = fore_pixel;
2291 f->output_data.w32->cursor_pixel = pixel;
2293 if (FRAME_W32_WINDOW (f) != 0)
2295 if (FRAME_VISIBLE_P (f))
2297 x_update_cursor (f, 0);
2298 x_update_cursor (f, 1);
2302 update_face_from_frame_parameter (f, Qcursor_color, arg);
2305 /* Set the border-color of frame F to pixel value PIX.
2306 Note that this does not fully take effect if done before
2307 F has an window. */
2308 void
2309 x_set_border_pixel (f, pix)
2310 struct frame *f;
2311 int pix;
2313 f->output_data.w32->border_pixel = pix;
2315 if (FRAME_W32_WINDOW (f) != 0 && f->output_data.w32->border_width > 0)
2317 if (FRAME_VISIBLE_P (f))
2318 redraw_frame (f);
2322 /* Set the border-color of frame F to value described by ARG.
2323 ARG can be a string naming a color.
2324 The border-color is used for the border that is drawn by the server.
2325 Note that this does not fully take effect if done before
2326 F has a window; it must be redone when the window is created. */
2328 void
2329 x_set_border_color (f, arg, oldval)
2330 struct frame *f;
2331 Lisp_Object arg, oldval;
2333 int pix;
2335 CHECK_STRING (arg);
2336 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2337 x_set_border_pixel (f, pix);
2338 update_face_from_frame_parameter (f, Qborder_color, arg);
2341 /* Value is the internal representation of the specified cursor type
2342 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
2343 of the bar cursor. */
2345 enum text_cursor_kinds
2346 x_specified_cursor_type (arg, width)
2347 Lisp_Object arg;
2348 int *width;
2350 enum text_cursor_kinds type;
2352 if (EQ (arg, Qbar))
2354 type = BAR_CURSOR;
2355 *width = 2;
2357 else if (CONSP (arg)
2358 && EQ (XCAR (arg), Qbar)
2359 && INTEGERP (XCDR (arg))
2360 && XINT (XCDR (arg)) >= 0)
2362 type = BAR_CURSOR;
2363 *width = XINT (XCDR (arg));
2365 else if (NILP (arg))
2366 type = NO_CURSOR;
2367 else
2368 /* Treat anything unknown as "box cursor".
2369 It was bad to signal an error; people have trouble fixing
2370 .Xdefaults with Emacs, when it has something bad in it. */
2371 type = FILLED_BOX_CURSOR;
2373 return type;
2376 void
2377 x_set_cursor_type (f, arg, oldval)
2378 FRAME_PTR f;
2379 Lisp_Object arg, oldval;
2381 int width;
2383 FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width);
2384 f->output_data.w32->cursor_width = width;
2386 /* Make sure the cursor gets redrawn. This is overkill, but how
2387 often do people change cursor types? */
2388 update_mode_lines++;
2391 void
2392 x_set_icon_type (f, arg, oldval)
2393 struct frame *f;
2394 Lisp_Object arg, oldval;
2396 int result;
2398 if (NILP (arg) && NILP (oldval))
2399 return;
2401 if (STRINGP (arg) && STRINGP (oldval)
2402 && EQ (Fstring_equal (oldval, arg), Qt))
2403 return;
2405 if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval))
2406 return;
2408 BLOCK_INPUT;
2410 result = x_bitmap_icon (f, arg);
2411 if (result)
2413 UNBLOCK_INPUT;
2414 error ("No icon window available");
2417 UNBLOCK_INPUT;
2420 /* Return non-nil if frame F wants a bitmap icon. */
2422 Lisp_Object
2423 x_icon_type (f)
2424 FRAME_PTR f;
2426 Lisp_Object tem;
2428 tem = assq_no_quit (Qicon_type, f->param_alist);
2429 if (CONSP (tem))
2430 return XCDR (tem);
2431 else
2432 return Qnil;
2435 void
2436 x_set_icon_name (f, arg, oldval)
2437 struct frame *f;
2438 Lisp_Object arg, oldval;
2440 if (STRINGP (arg))
2442 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
2443 return;
2445 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
2446 return;
2448 f->icon_name = arg;
2450 #if 0
2451 if (f->output_data.w32->icon_bitmap != 0)
2452 return;
2454 BLOCK_INPUT;
2456 result = x_text_icon (f,
2457 (char *) XSTRING ((!NILP (f->icon_name)
2458 ? f->icon_name
2459 : !NILP (f->title)
2460 ? f->title
2461 : f->name))->data);
2463 if (result)
2465 UNBLOCK_INPUT;
2466 error ("No icon window available");
2469 /* If the window was unmapped (and its icon was mapped),
2470 the new icon is not mapped, so map the window in its stead. */
2471 if (FRAME_VISIBLE_P (f))
2473 #ifdef USE_X_TOOLKIT
2474 XtPopup (f->output_data.w32->widget, XtGrabNone);
2475 #endif
2476 XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f));
2479 XFlush (FRAME_W32_DISPLAY (f));
2480 UNBLOCK_INPUT;
2481 #endif
2484 extern Lisp_Object x_new_font ();
2485 extern Lisp_Object x_new_fontset();
2487 void
2488 x_set_font (f, arg, oldval)
2489 struct frame *f;
2490 Lisp_Object arg, oldval;
2492 Lisp_Object result;
2493 Lisp_Object fontset_name;
2494 Lisp_Object frame;
2495 int old_fontset = FRAME_FONTSET(f);
2497 CHECK_STRING (arg);
2499 fontset_name = Fquery_fontset (arg, Qnil);
2501 BLOCK_INPUT;
2502 result = (STRINGP (fontset_name)
2503 ? x_new_fontset (f, XSTRING (fontset_name)->data)
2504 : x_new_font (f, XSTRING (arg)->data));
2505 UNBLOCK_INPUT;
2507 if (EQ (result, Qnil))
2508 error ("Font `%s' is not defined", XSTRING (arg)->data);
2509 else if (EQ (result, Qt))
2510 error ("The characters of the given font have varying widths");
2511 else if (STRINGP (result))
2513 if (STRINGP (fontset_name))
2515 /* Fontset names are built from ASCII font names, so the
2516 names may be equal despite there was a change. */
2517 if (old_fontset == FRAME_FONTSET (f))
2518 return;
2520 else if (!NILP (Fequal (result, oldval)))
2521 return;
2523 store_frame_param (f, Qfont, result);
2524 recompute_basic_faces (f);
2526 else
2527 abort ();
2529 do_pending_window_change (0);
2531 /* Don't call `face-set-after-frame-default' when faces haven't been
2532 initialized yet. This is the case when called from
2533 Fx_create_frame. In that case, the X widget or window doesn't
2534 exist either, and we can end up in x_report_frame_params with a
2535 null widget which gives a segfault. */
2536 if (FRAME_FACE_CACHE (f))
2538 XSETFRAME (frame, f);
2539 call1 (Qface_set_after_frame_default, frame);
2543 static void
2544 x_set_fringe_width (f, new_value, old_value)
2545 struct frame *f;
2546 Lisp_Object new_value, old_value;
2548 x_compute_fringe_widths (f, 1);
2551 void
2552 x_set_border_width (f, arg, oldval)
2553 struct frame *f;
2554 Lisp_Object arg, oldval;
2556 CHECK_NUMBER (arg);
2558 if (XINT (arg) == f->output_data.w32->border_width)
2559 return;
2561 if (FRAME_W32_WINDOW (f) != 0)
2562 error ("Cannot change the border width of a window");
2564 f->output_data.w32->border_width = XINT (arg);
2567 void
2568 x_set_internal_border_width (f, arg, oldval)
2569 struct frame *f;
2570 Lisp_Object arg, oldval;
2572 int old = f->output_data.w32->internal_border_width;
2574 CHECK_NUMBER (arg);
2575 f->output_data.w32->internal_border_width = XINT (arg);
2576 if (f->output_data.w32->internal_border_width < 0)
2577 f->output_data.w32->internal_border_width = 0;
2579 if (f->output_data.w32->internal_border_width == old)
2580 return;
2582 if (FRAME_W32_WINDOW (f) != 0)
2584 x_set_window_size (f, 0, f->width, f->height);
2585 SET_FRAME_GARBAGED (f);
2586 do_pending_window_change (0);
2588 else
2589 SET_FRAME_GARBAGED (f);
2592 void
2593 x_set_visibility (f, value, oldval)
2594 struct frame *f;
2595 Lisp_Object value, oldval;
2597 Lisp_Object frame;
2598 XSETFRAME (frame, f);
2600 if (NILP (value))
2601 Fmake_frame_invisible (frame, Qt);
2602 else if (EQ (value, Qicon))
2603 Ficonify_frame (frame);
2604 else
2605 Fmake_frame_visible (frame);
2609 /* Change window heights in windows rooted in WINDOW by N lines. */
2611 static void
2612 x_change_window_heights (window, n)
2613 Lisp_Object window;
2614 int n;
2616 struct window *w = XWINDOW (window);
2618 XSETFASTINT (w->top, XFASTINT (w->top) + n);
2619 XSETFASTINT (w->height, XFASTINT (w->height) - n);
2621 if (INTEGERP (w->orig_top))
2622 XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n);
2623 if (INTEGERP (w->orig_height))
2624 XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n);
2626 /* Handle just the top child in a vertical split. */
2627 if (!NILP (w->vchild))
2628 x_change_window_heights (w->vchild, n);
2630 /* Adjust all children in a horizontal split. */
2631 for (window = w->hchild; !NILP (window); window = w->next)
2633 w = XWINDOW (window);
2634 x_change_window_heights (window, n);
2638 void
2639 x_set_menu_bar_lines (f, value, oldval)
2640 struct frame *f;
2641 Lisp_Object value, oldval;
2643 int nlines;
2644 int olines = FRAME_MENU_BAR_LINES (f);
2646 /* Right now, menu bars don't work properly in minibuf-only frames;
2647 most of the commands try to apply themselves to the minibuffer
2648 frame itself, and get an error because you can't switch buffers
2649 in or split the minibuffer window. */
2650 if (FRAME_MINIBUF_ONLY_P (f))
2651 return;
2653 if (INTEGERP (value))
2654 nlines = XINT (value);
2655 else
2656 nlines = 0;
2658 FRAME_MENU_BAR_LINES (f) = 0;
2659 if (nlines)
2660 FRAME_EXTERNAL_MENU_BAR (f) = 1;
2661 else
2663 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
2664 free_frame_menubar (f);
2665 FRAME_EXTERNAL_MENU_BAR (f) = 0;
2667 /* Adjust the frame size so that the client (text) dimensions
2668 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
2669 set correctly. */
2670 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2671 do_pending_window_change (0);
2673 adjust_glyphs (f);
2677 /* Set the number of lines used for the tool bar of frame F to VALUE.
2678 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2679 is the old number of tool bar lines. This function changes the
2680 height of all windows on frame F to match the new tool bar height.
2681 The frame's height doesn't change. */
2683 void
2684 x_set_tool_bar_lines (f, value, oldval)
2685 struct frame *f;
2686 Lisp_Object value, oldval;
2688 int delta, nlines, root_height;
2689 Lisp_Object root_window;
2691 /* Treat tool bars like menu bars. */
2692 if (FRAME_MINIBUF_ONLY_P (f))
2693 return;
2695 /* Use VALUE only if an integer >= 0. */
2696 if (INTEGERP (value) && XINT (value) >= 0)
2697 nlines = XFASTINT (value);
2698 else
2699 nlines = 0;
2701 /* Make sure we redisplay all windows in this frame. */
2702 ++windows_or_buffers_changed;
2704 delta = nlines - FRAME_TOOL_BAR_LINES (f);
2706 /* Don't resize the tool-bar to more than we have room for. */
2707 root_window = FRAME_ROOT_WINDOW (f);
2708 root_height = XINT (XWINDOW (root_window)->height);
2709 if (root_height - delta < 1)
2711 delta = root_height - 1;
2712 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
2715 FRAME_TOOL_BAR_LINES (f) = nlines;
2716 x_change_window_heights (root_window, delta);
2717 adjust_glyphs (f);
2719 /* We also have to make sure that the internal border at the top of
2720 the frame, below the menu bar or tool bar, is redrawn when the
2721 tool bar disappears. This is so because the internal border is
2722 below the tool bar if one is displayed, but is below the menu bar
2723 if there isn't a tool bar. The tool bar draws into the area
2724 below the menu bar. */
2725 if (FRAME_W32_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
2727 updating_frame = f;
2728 clear_frame ();
2729 clear_current_matrices (f);
2730 updating_frame = NULL;
2733 /* If the tool bar gets smaller, the internal border below it
2734 has to be cleared. It was formerly part of the display
2735 of the larger tool bar, and updating windows won't clear it. */
2736 if (delta < 0)
2738 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
2739 int width = PIXEL_WIDTH (f);
2740 int y = nlines * CANON_Y_UNIT (f);
2742 BLOCK_INPUT;
2744 HDC hdc = get_frame_dc (f);
2745 w32_clear_area (f, hdc, 0, y, width, height);
2746 release_frame_dc (f, hdc);
2748 UNBLOCK_INPUT;
2750 if (WINDOWP (f->tool_bar_window))
2751 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
2756 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2757 w32_id_name.
2759 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2760 name; if NAME is a string, set F's name to NAME and set
2761 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2763 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2764 suggesting a new name, which lisp code should override; if
2765 F->explicit_name is set, ignore the new name; otherwise, set it. */
2767 void
2768 x_set_name (f, name, explicit)
2769 struct frame *f;
2770 Lisp_Object name;
2771 int explicit;
2773 /* Make sure that requests from lisp code override requests from
2774 Emacs redisplay code. */
2775 if (explicit)
2777 /* If we're switching from explicit to implicit, we had better
2778 update the mode lines and thereby update the title. */
2779 if (f->explicit_name && NILP (name))
2780 update_mode_lines = 1;
2782 f->explicit_name = ! NILP (name);
2784 else if (f->explicit_name)
2785 return;
2787 /* If NAME is nil, set the name to the w32_id_name. */
2788 if (NILP (name))
2790 /* Check for no change needed in this very common case
2791 before we do any consing. */
2792 if (!strcmp (FRAME_W32_DISPLAY_INFO (f)->w32_id_name,
2793 XSTRING (f->name)->data))
2794 return;
2795 name = build_string (FRAME_W32_DISPLAY_INFO (f)->w32_id_name);
2797 else
2798 CHECK_STRING (name);
2800 /* Don't change the name if it's already NAME. */
2801 if (! NILP (Fstring_equal (name, f->name)))
2802 return;
2804 f->name = name;
2806 /* For setting the frame title, the title parameter should override
2807 the name parameter. */
2808 if (! NILP (f->title))
2809 name = f->title;
2811 if (FRAME_W32_WINDOW (f))
2813 if (STRING_MULTIBYTE (name))
2814 name = ENCODE_SYSTEM (name);
2816 BLOCK_INPUT;
2817 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2818 UNBLOCK_INPUT;
2822 /* This function should be called when the user's lisp code has
2823 specified a name for the frame; the name will override any set by the
2824 redisplay code. */
2825 void
2826 x_explicitly_set_name (f, arg, oldval)
2827 FRAME_PTR f;
2828 Lisp_Object arg, oldval;
2830 x_set_name (f, arg, 1);
2833 /* This function should be called by Emacs redisplay code to set the
2834 name; names set this way will never override names set by the user's
2835 lisp code. */
2836 void
2837 x_implicitly_set_name (f, arg, oldval)
2838 FRAME_PTR f;
2839 Lisp_Object arg, oldval;
2841 x_set_name (f, arg, 0);
2844 /* Change the title of frame F to NAME.
2845 If NAME is nil, use the frame name as the title.
2847 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2848 name; if NAME is a string, set F's name to NAME and set
2849 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2851 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2852 suggesting a new name, which lisp code should override; if
2853 F->explicit_name is set, ignore the new name; otherwise, set it. */
2855 void
2856 x_set_title (f, name, old_name)
2857 struct frame *f;
2858 Lisp_Object name, old_name;
2860 /* Don't change the title if it's already NAME. */
2861 if (EQ (name, f->title))
2862 return;
2864 update_mode_lines = 1;
2866 f->title = name;
2868 if (NILP (name))
2869 name = f->name;
2871 if (FRAME_W32_WINDOW (f))
2873 if (STRING_MULTIBYTE (name))
2874 name = ENCODE_SYSTEM (name);
2876 BLOCK_INPUT;
2877 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2878 UNBLOCK_INPUT;
2882 void
2883 x_set_autoraise (f, arg, oldval)
2884 struct frame *f;
2885 Lisp_Object arg, oldval;
2887 f->auto_raise = !EQ (Qnil, arg);
2890 void
2891 x_set_autolower (f, arg, oldval)
2892 struct frame *f;
2893 Lisp_Object arg, oldval;
2895 f->auto_lower = !EQ (Qnil, arg);
2898 void
2899 x_set_unsplittable (f, arg, oldval)
2900 struct frame *f;
2901 Lisp_Object arg, oldval;
2903 f->no_split = !NILP (arg);
2906 void
2907 x_set_vertical_scroll_bars (f, arg, oldval)
2908 struct frame *f;
2909 Lisp_Object arg, oldval;
2911 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
2912 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
2913 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2914 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
2916 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = NILP (arg) ?
2917 vertical_scroll_bar_none :
2918 /* Put scroll bars on the right by default, as is conventional
2919 on MS-Windows. */
2920 EQ (Qleft, arg)
2921 ? vertical_scroll_bar_left
2922 : vertical_scroll_bar_right;
2924 /* We set this parameter before creating the window for the
2925 frame, so we can get the geometry right from the start.
2926 However, if the window hasn't been created yet, we shouldn't
2927 call x_set_window_size. */
2928 if (FRAME_W32_WINDOW (f))
2929 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2930 do_pending_window_change (0);
2934 void
2935 x_set_scroll_bar_width (f, arg, oldval)
2936 struct frame *f;
2937 Lisp_Object arg, oldval;
2939 int wid = FONT_WIDTH (f->output_data.w32->font);
2941 if (NILP (arg))
2943 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = GetSystemMetrics (SM_CXVSCROLL);
2944 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) +
2945 wid - 1) / wid;
2946 if (FRAME_W32_WINDOW (f))
2947 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2948 do_pending_window_change (0);
2950 else if (INTEGERP (arg) && XINT (arg) > 0
2951 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
2953 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg);
2954 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
2955 + wid-1) / wid;
2956 if (FRAME_W32_WINDOW (f))
2957 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2958 do_pending_window_change (0);
2960 change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
2961 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
2962 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
2965 /* Subroutines of creating an frame. */
2967 /* Make sure that Vx_resource_name is set to a reasonable value.
2968 Fix it up, or set it to `emacs' if it is too hopeless. */
2970 static void
2971 validate_x_resource_name ()
2973 int len = 0;
2974 /* Number of valid characters in the resource name. */
2975 int good_count = 0;
2976 /* Number of invalid characters in the resource name. */
2977 int bad_count = 0;
2978 Lisp_Object new;
2979 int i;
2981 if (STRINGP (Vx_resource_name))
2983 unsigned char *p = XSTRING (Vx_resource_name)->data;
2984 int i;
2986 len = STRING_BYTES (XSTRING (Vx_resource_name));
2988 /* Only letters, digits, - and _ are valid in resource names.
2989 Count the valid characters and count the invalid ones. */
2990 for (i = 0; i < len; i++)
2992 int c = p[i];
2993 if (! ((c >= 'a' && c <= 'z')
2994 || (c >= 'A' && c <= 'Z')
2995 || (c >= '0' && c <= '9')
2996 || c == '-' || c == '_'))
2997 bad_count++;
2998 else
2999 good_count++;
3002 else
3003 /* Not a string => completely invalid. */
3004 bad_count = 5, good_count = 0;
3006 /* If name is valid already, return. */
3007 if (bad_count == 0)
3008 return;
3010 /* If name is entirely invalid, or nearly so, use `emacs'. */
3011 if (good_count == 0
3012 || (good_count == 1 && bad_count > 0))
3014 Vx_resource_name = build_string ("emacs");
3015 return;
3018 /* Name is partly valid. Copy it and replace the invalid characters
3019 with underscores. */
3021 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
3023 for (i = 0; i < len; i++)
3025 int c = XSTRING (new)->data[i];
3026 if (! ((c >= 'a' && c <= 'z')
3027 || (c >= 'A' && c <= 'Z')
3028 || (c >= '0' && c <= '9')
3029 || c == '-' || c == '_'))
3030 XSTRING (new)->data[i] = '_';
3035 extern char *x_get_string_resource ();
3037 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
3038 doc: /* Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.
3039 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the
3040 class, where INSTANCE is the name under which Emacs was invoked, or
3041 the name specified by the `-name' or `-rn' command-line arguments.
3043 The optional arguments COMPONENT and SUBCLASS add to the key and the
3044 class, respectively. You must specify both of them or neither.
3045 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'
3046 and the class is `Emacs.CLASS.SUBCLASS'. */)
3047 (attribute, class, component, subclass)
3048 Lisp_Object attribute, class, component, subclass;
3050 register char *value;
3051 char *name_key;
3052 char *class_key;
3054 CHECK_STRING (attribute);
3055 CHECK_STRING (class);
3057 if (!NILP (component))
3058 CHECK_STRING (component);
3059 if (!NILP (subclass))
3060 CHECK_STRING (subclass);
3061 if (NILP (component) != NILP (subclass))
3062 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
3064 validate_x_resource_name ();
3066 /* Allocate space for the components, the dots which separate them,
3067 and the final '\0'. Make them big enough for the worst case. */
3068 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name))
3069 + (STRINGP (component)
3070 ? STRING_BYTES (XSTRING (component)) : 0)
3071 + STRING_BYTES (XSTRING (attribute))
3072 + 3);
3074 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3075 + STRING_BYTES (XSTRING (class))
3076 + (STRINGP (subclass)
3077 ? STRING_BYTES (XSTRING (subclass)) : 0)
3078 + 3);
3080 /* Start with emacs.FRAMENAME for the name (the specific one)
3081 and with `Emacs' for the class key (the general one). */
3082 strcpy (name_key, XSTRING (Vx_resource_name)->data);
3083 strcpy (class_key, EMACS_CLASS);
3085 strcat (class_key, ".");
3086 strcat (class_key, XSTRING (class)->data);
3088 if (!NILP (component))
3090 strcat (class_key, ".");
3091 strcat (class_key, XSTRING (subclass)->data);
3093 strcat (name_key, ".");
3094 strcat (name_key, XSTRING (component)->data);
3097 strcat (name_key, ".");
3098 strcat (name_key, XSTRING (attribute)->data);
3100 value = x_get_string_resource (Qnil,
3101 name_key, class_key);
3103 if (value != (char *) 0)
3104 return build_string (value);
3105 else
3106 return Qnil;
3109 /* Used when C code wants a resource value. */
3111 char *
3112 x_get_resource_string (attribute, class)
3113 char *attribute, *class;
3115 char *name_key;
3116 char *class_key;
3117 struct frame *sf = SELECTED_FRAME ();
3119 /* Allocate space for the components, the dots which separate them,
3120 and the final '\0'. */
3121 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name))
3122 + strlen (attribute) + 2);
3123 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
3124 + strlen (class) + 2);
3126 sprintf (name_key, "%s.%s",
3127 XSTRING (Vinvocation_name)->data,
3128 attribute);
3129 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
3131 return x_get_string_resource (sf, name_key, class_key);
3134 /* Types we might convert a resource string into. */
3135 enum resource_types
3137 RES_TYPE_NUMBER,
3138 RES_TYPE_FLOAT,
3139 RES_TYPE_BOOLEAN,
3140 RES_TYPE_STRING,
3141 RES_TYPE_SYMBOL
3144 /* Return the value of parameter PARAM.
3146 First search ALIST, then Vdefault_frame_alist, then the X defaults
3147 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3149 Convert the resource to the type specified by desired_type.
3151 If no default is specified, return Qunbound. If you call
3152 w32_get_arg, make sure you deal with Qunbound in a reasonable way,
3153 and don't let it get stored in any Lisp-visible variables! */
3155 static Lisp_Object
3156 w32_get_arg (alist, param, attribute, class, type)
3157 Lisp_Object alist, param;
3158 char *attribute;
3159 char *class;
3160 enum resource_types type;
3162 register Lisp_Object tem;
3164 tem = Fassq (param, alist);
3165 if (EQ (tem, Qnil))
3166 tem = Fassq (param, Vdefault_frame_alist);
3167 if (EQ (tem, Qnil))
3170 if (attribute)
3172 tem = Fx_get_resource (build_string (attribute),
3173 build_string (class),
3174 Qnil, Qnil);
3176 if (NILP (tem))
3177 return Qunbound;
3179 switch (type)
3181 case RES_TYPE_NUMBER:
3182 return make_number (atoi (XSTRING (tem)->data));
3184 case RES_TYPE_FLOAT:
3185 return make_float (atof (XSTRING (tem)->data));
3187 case RES_TYPE_BOOLEAN:
3188 tem = Fdowncase (tem);
3189 if (!strcmp (XSTRING (tem)->data, "on")
3190 || !strcmp (XSTRING (tem)->data, "true"))
3191 return Qt;
3192 else
3193 return Qnil;
3195 case RES_TYPE_STRING:
3196 return tem;
3198 case RES_TYPE_SYMBOL:
3199 /* As a special case, we map the values `true' and `on'
3200 to Qt, and `false' and `off' to Qnil. */
3202 Lisp_Object lower;
3203 lower = Fdowncase (tem);
3204 if (!strcmp (XSTRING (lower)->data, "on")
3205 || !strcmp (XSTRING (lower)->data, "true"))
3206 return Qt;
3207 else if (!strcmp (XSTRING (lower)->data, "off")
3208 || !strcmp (XSTRING (lower)->data, "false"))
3209 return Qnil;
3210 else
3211 return Fintern (tem, Qnil);
3214 default:
3215 abort ();
3218 else
3219 return Qunbound;
3221 return Fcdr (tem);
3224 /* Record in frame F the specified or default value according to ALIST
3225 of the parameter named PROP (a Lisp symbol).
3226 If no value is specified for PROP, look for an X default for XPROP
3227 on the frame named NAME.
3228 If that is not found either, use the value DEFLT. */
3230 static Lisp_Object
3231 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3232 struct frame *f;
3233 Lisp_Object alist;
3234 Lisp_Object prop;
3235 Lisp_Object deflt;
3236 char *xprop;
3237 char *xclass;
3238 enum resource_types type;
3240 Lisp_Object tem;
3242 tem = w32_get_arg (alist, prop, xprop, xclass, type);
3243 if (EQ (tem, Qunbound))
3244 tem = deflt;
3245 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3246 return tem;
3249 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3250 doc: /* Parse an X-style geometry string STRING.
3251 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).
3252 The properties returned may include `top', `left', `height', and `width'.
3253 The value of `left' or `top' may be an integer,
3254 or a list (+ N) meaning N pixels relative to top/left corner,
3255 or a list (- N) meaning -N pixels relative to bottom/right corner. */)
3256 (string)
3257 Lisp_Object string;
3259 int geometry, x, y;
3260 unsigned int width, height;
3261 Lisp_Object result;
3263 CHECK_STRING (string);
3265 geometry = XParseGeometry ((char *) XSTRING (string)->data,
3266 &x, &y, &width, &height);
3268 result = Qnil;
3269 if (geometry & XValue)
3271 Lisp_Object element;
3273 if (x >= 0 && (geometry & XNegative))
3274 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3275 else if (x < 0 && ! (geometry & XNegative))
3276 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3277 else
3278 element = Fcons (Qleft, make_number (x));
3279 result = Fcons (element, result);
3282 if (geometry & YValue)
3284 Lisp_Object element;
3286 if (y >= 0 && (geometry & YNegative))
3287 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3288 else if (y < 0 && ! (geometry & YNegative))
3289 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3290 else
3291 element = Fcons (Qtop, make_number (y));
3292 result = Fcons (element, result);
3295 if (geometry & WidthValue)
3296 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3297 if (geometry & HeightValue)
3298 result = Fcons (Fcons (Qheight, make_number (height)), result);
3300 return result;
3303 /* Calculate the desired size and position of this window,
3304 and return the flags saying which aspects were specified.
3306 This function does not make the coordinates positive. */
3308 #define DEFAULT_ROWS 40
3309 #define DEFAULT_COLS 80
3311 static int
3312 x_figure_window_size (f, parms)
3313 struct frame *f;
3314 Lisp_Object parms;
3316 register Lisp_Object tem0, tem1, tem2;
3317 long window_prompting = 0;
3319 /* Default values if we fall through.
3320 Actually, if that happens we should get
3321 window manager prompting. */
3322 SET_FRAME_WIDTH (f, DEFAULT_COLS);
3323 f->height = DEFAULT_ROWS;
3324 /* Window managers expect that if program-specified
3325 positions are not (0,0), they're intentional, not defaults. */
3326 f->output_data.w32->top_pos = 0;
3327 f->output_data.w32->left_pos = 0;
3329 /* Ensure that old new_width and new_height will not override the
3330 values set here. */
3331 FRAME_NEW_WIDTH (f) = 0;
3332 FRAME_NEW_HEIGHT (f) = 0;
3334 tem0 = w32_get_arg (parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3335 tem1 = w32_get_arg (parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3336 tem2 = w32_get_arg (parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3337 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3339 if (!EQ (tem0, Qunbound))
3341 CHECK_NUMBER (tem0);
3342 f->height = XINT (tem0);
3344 if (!EQ (tem1, Qunbound))
3346 CHECK_NUMBER (tem1);
3347 SET_FRAME_WIDTH (f, XINT (tem1));
3349 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3350 window_prompting |= USSize;
3351 else
3352 window_prompting |= PSize;
3355 f->output_data.w32->vertical_scroll_bar_extra
3356 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3358 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
3359 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
3360 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.w32->font)));
3362 x_compute_fringe_widths (f, 0);
3364 f->output_data.w32->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3365 f->output_data.w32->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3367 tem0 = w32_get_arg (parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3368 tem1 = w32_get_arg (parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3369 tem2 = w32_get_arg (parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3370 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3372 if (EQ (tem0, Qminus))
3374 f->output_data.w32->top_pos = 0;
3375 window_prompting |= YNegative;
3377 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3378 && CONSP (XCDR (tem0))
3379 && INTEGERP (XCAR (XCDR (tem0))))
3381 f->output_data.w32->top_pos = - XINT (XCAR (XCDR (tem0)));
3382 window_prompting |= YNegative;
3384 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3385 && CONSP (XCDR (tem0))
3386 && INTEGERP (XCAR (XCDR (tem0))))
3388 f->output_data.w32->top_pos = XINT (XCAR (XCDR (tem0)));
3390 else if (EQ (tem0, Qunbound))
3391 f->output_data.w32->top_pos = 0;
3392 else
3394 CHECK_NUMBER (tem0);
3395 f->output_data.w32->top_pos = XINT (tem0);
3396 if (f->output_data.w32->top_pos < 0)
3397 window_prompting |= YNegative;
3400 if (EQ (tem1, Qminus))
3402 f->output_data.w32->left_pos = 0;
3403 window_prompting |= XNegative;
3405 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3406 && CONSP (XCDR (tem1))
3407 && INTEGERP (XCAR (XCDR (tem1))))
3409 f->output_data.w32->left_pos = - XINT (XCAR (XCDR (tem1)));
3410 window_prompting |= XNegative;
3412 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3413 && CONSP (XCDR (tem1))
3414 && INTEGERP (XCAR (XCDR (tem1))))
3416 f->output_data.w32->left_pos = XINT (XCAR (XCDR (tem1)));
3418 else if (EQ (tem1, Qunbound))
3419 f->output_data.w32->left_pos = 0;
3420 else
3422 CHECK_NUMBER (tem1);
3423 f->output_data.w32->left_pos = XINT (tem1);
3424 if (f->output_data.w32->left_pos < 0)
3425 window_prompting |= XNegative;
3428 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3429 window_prompting |= USPosition;
3430 else
3431 window_prompting |= PPosition;
3434 if (f->output_data.w32->want_fullscreen != FULLSCREEN_NONE)
3436 int left, top;
3437 int width, height;
3439 /* It takes both for some WM:s to place it where we want */
3440 window_prompting = USPosition | PPosition;
3441 x_fullscreen_adjust (f, &width, &height, &top, &left);
3442 f->width = width;
3443 f->height = height;
3444 f->output_data.w32->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3445 f->output_data.w32->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3446 f->output_data.w32->left_pos = left;
3447 f->output_data.w32->top_pos = top;
3450 return window_prompting;
3455 extern LRESULT CALLBACK w32_wnd_proc ();
3457 BOOL
3458 w32_init_class (hinst)
3459 HINSTANCE hinst;
3461 WNDCLASS wc;
3463 wc.style = CS_HREDRAW | CS_VREDRAW;
3464 wc.lpfnWndProc = (WNDPROC) w32_wnd_proc;
3465 wc.cbClsExtra = 0;
3466 wc.cbWndExtra = WND_EXTRA_BYTES;
3467 wc.hInstance = hinst;
3468 wc.hIcon = LoadIcon (hinst, EMACS_CLASS);
3469 wc.hCursor = LoadCursor (NULL, IDC_ARROW);
3470 wc.hbrBackground = NULL; /* GetStockObject (WHITE_BRUSH); */
3471 wc.lpszMenuName = NULL;
3472 wc.lpszClassName = EMACS_CLASS;
3474 return (RegisterClass (&wc));
3477 HWND
3478 w32_createscrollbar (f, bar)
3479 struct frame *f;
3480 struct scroll_bar * bar;
3482 return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
3483 /* Position and size of scroll bar. */
3484 XINT(bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3485 XINT(bar->top),
3486 XINT(bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3487 XINT(bar->height),
3488 FRAME_W32_WINDOW (f),
3489 NULL,
3490 hinst,
3491 NULL));
3494 void
3495 w32_createwindow (f)
3496 struct frame *f;
3498 HWND hwnd;
3499 RECT rect;
3501 rect.left = rect.top = 0;
3502 rect.right = PIXEL_WIDTH (f);
3503 rect.bottom = PIXEL_HEIGHT (f);
3505 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
3506 FRAME_EXTERNAL_MENU_BAR (f));
3508 /* Do first time app init */
3510 if (!hprevinst)
3512 w32_init_class (hinst);
3515 FRAME_W32_WINDOW (f) = hwnd
3516 = CreateWindow (EMACS_CLASS,
3517 f->namebuf,
3518 f->output_data.w32->dwStyle | WS_CLIPCHILDREN,
3519 f->output_data.w32->left_pos,
3520 f->output_data.w32->top_pos,
3521 rect.right - rect.left,
3522 rect.bottom - rect.top,
3523 NULL,
3524 NULL,
3525 hinst,
3526 NULL);
3528 if (hwnd)
3530 SetWindowLong (hwnd, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
3531 SetWindowLong (hwnd, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
3532 SetWindowLong (hwnd, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
3533 SetWindowLong (hwnd, WND_SCROLLBAR_INDEX, f->output_data.w32->vertical_scroll_bar_extra);
3534 SetWindowLong (hwnd, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
3536 /* Enable drag-n-drop. */
3537 DragAcceptFiles (hwnd, TRUE);
3539 /* Do this to discard the default setting specified by our parent. */
3540 ShowWindow (hwnd, SW_HIDE);
3544 void
3545 my_post_msg (wmsg, hwnd, msg, wParam, lParam)
3546 W32Msg * wmsg;
3547 HWND hwnd;
3548 UINT msg;
3549 WPARAM wParam;
3550 LPARAM lParam;
3552 wmsg->msg.hwnd = hwnd;
3553 wmsg->msg.message = msg;
3554 wmsg->msg.wParam = wParam;
3555 wmsg->msg.lParam = lParam;
3556 wmsg->msg.time = GetMessageTime ();
3558 post_msg (wmsg);
3561 /* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
3562 between left and right keys as advertised. We test for this
3563 support dynamically, and set a flag when the support is absent. If
3564 absent, we keep track of the left and right control and alt keys
3565 ourselves. This is particularly necessary on keyboards that rely
3566 upon the AltGr key, which is represented as having the left control
3567 and right alt keys pressed. For these keyboards, we need to know
3568 when the left alt key has been pressed in addition to the AltGr key
3569 so that we can properly support M-AltGr-key sequences (such as M-@
3570 on Swedish keyboards). */
3572 #define EMACS_LCONTROL 0
3573 #define EMACS_RCONTROL 1
3574 #define EMACS_LMENU 2
3575 #define EMACS_RMENU 3
3577 static int modifiers[4];
3578 static int modifiers_recorded;
3579 static int modifier_key_support_tested;
3581 static void
3582 test_modifier_support (unsigned int wparam)
3584 unsigned int l, r;
3586 if (wparam != VK_CONTROL && wparam != VK_MENU)
3587 return;
3588 if (wparam == VK_CONTROL)
3590 l = VK_LCONTROL;
3591 r = VK_RCONTROL;
3593 else
3595 l = VK_LMENU;
3596 r = VK_RMENU;
3598 if (!(GetKeyState (l) & 0x8000) && !(GetKeyState (r) & 0x8000))
3599 modifiers_recorded = 1;
3600 else
3601 modifiers_recorded = 0;
3602 modifier_key_support_tested = 1;
3605 static void
3606 record_keydown (unsigned int wparam, unsigned int lparam)
3608 int i;
3610 if (!modifier_key_support_tested)
3611 test_modifier_support (wparam);
3613 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3614 return;
3616 if (wparam == VK_CONTROL)
3617 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3618 else
3619 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3621 modifiers[i] = 1;
3624 static void
3625 record_keyup (unsigned int wparam, unsigned int lparam)
3627 int i;
3629 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3630 return;
3632 if (wparam == VK_CONTROL)
3633 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3634 else
3635 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3637 modifiers[i] = 0;
3640 /* Emacs can lose focus while a modifier key has been pressed. When
3641 it regains focus, be conservative and clear all modifiers since
3642 we cannot reconstruct the left and right modifier state. */
3643 static void
3644 reset_modifiers ()
3646 SHORT ctrl, alt;
3648 if (GetFocus () == NULL)
3649 /* Emacs doesn't have keyboard focus. Do nothing. */
3650 return;
3652 ctrl = GetAsyncKeyState (VK_CONTROL);
3653 alt = GetAsyncKeyState (VK_MENU);
3655 if (!(ctrl & 0x08000))
3656 /* Clear any recorded control modifier state. */
3657 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3659 if (!(alt & 0x08000))
3660 /* Clear any recorded alt modifier state. */
3661 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3663 /* Update the state of all modifier keys, because modifiers used in
3664 hot-key combinations can get stuck on if Emacs loses focus as a
3665 result of a hot-key being pressed. */
3667 BYTE keystate[256];
3669 #define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
3671 GetKeyboardState (keystate);
3672 keystate[VK_SHIFT] = CURRENT_STATE (VK_SHIFT);
3673 keystate[VK_CONTROL] = CURRENT_STATE (VK_CONTROL);
3674 keystate[VK_LCONTROL] = CURRENT_STATE (VK_LCONTROL);
3675 keystate[VK_RCONTROL] = CURRENT_STATE (VK_RCONTROL);
3676 keystate[VK_MENU] = CURRENT_STATE (VK_MENU);
3677 keystate[VK_LMENU] = CURRENT_STATE (VK_LMENU);
3678 keystate[VK_RMENU] = CURRENT_STATE (VK_RMENU);
3679 keystate[VK_LWIN] = CURRENT_STATE (VK_LWIN);
3680 keystate[VK_RWIN] = CURRENT_STATE (VK_RWIN);
3681 keystate[VK_APPS] = CURRENT_STATE (VK_APPS);
3682 SetKeyboardState (keystate);
3686 /* Synchronize modifier state with what is reported with the current
3687 keystroke. Even if we cannot distinguish between left and right
3688 modifier keys, we know that, if no modifiers are set, then neither
3689 the left or right modifier should be set. */
3690 static void
3691 sync_modifiers ()
3693 if (!modifiers_recorded)
3694 return;
3696 if (!(GetKeyState (VK_CONTROL) & 0x8000))
3697 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3699 if (!(GetKeyState (VK_MENU) & 0x8000))
3700 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3703 static int
3704 modifier_set (int vkey)
3706 if (vkey == VK_CAPITAL || vkey == VK_SCROLL)
3707 return (GetKeyState (vkey) & 0x1);
3708 if (!modifiers_recorded)
3709 return (GetKeyState (vkey) & 0x8000);
3711 switch (vkey)
3713 case VK_LCONTROL:
3714 return modifiers[EMACS_LCONTROL];
3715 case VK_RCONTROL:
3716 return modifiers[EMACS_RCONTROL];
3717 case VK_LMENU:
3718 return modifiers[EMACS_LMENU];
3719 case VK_RMENU:
3720 return modifiers[EMACS_RMENU];
3722 return (GetKeyState (vkey) & 0x8000);
3725 /* Convert between the modifier bits W32 uses and the modifier bits
3726 Emacs uses. */
3728 unsigned int
3729 w32_key_to_modifier (int key)
3731 Lisp_Object key_mapping;
3733 switch (key)
3735 case VK_LWIN:
3736 key_mapping = Vw32_lwindow_modifier;
3737 break;
3738 case VK_RWIN:
3739 key_mapping = Vw32_rwindow_modifier;
3740 break;
3741 case VK_APPS:
3742 key_mapping = Vw32_apps_modifier;
3743 break;
3744 case VK_SCROLL:
3745 key_mapping = Vw32_scroll_lock_modifier;
3746 break;
3747 default:
3748 key_mapping = Qnil;
3751 /* NB. This code runs in the input thread, asychronously to the lisp
3752 thread, so we must be careful to ensure access to lisp data is
3753 thread-safe. The following code is safe because the modifier
3754 variable values are updated atomically from lisp and symbols are
3755 not relocated by GC. Also, we don't have to worry about seeing GC
3756 markbits here. */
3757 if (EQ (key_mapping, Qhyper))
3758 return hyper_modifier;
3759 if (EQ (key_mapping, Qsuper))
3760 return super_modifier;
3761 if (EQ (key_mapping, Qmeta))
3762 return meta_modifier;
3763 if (EQ (key_mapping, Qalt))
3764 return alt_modifier;
3765 if (EQ (key_mapping, Qctrl))
3766 return ctrl_modifier;
3767 if (EQ (key_mapping, Qcontrol)) /* synonym for ctrl */
3768 return ctrl_modifier;
3769 if (EQ (key_mapping, Qshift))
3770 return shift_modifier;
3772 /* Don't generate any modifier if not explicitly requested. */
3773 return 0;
3776 unsigned int
3777 w32_get_modifiers ()
3779 return ((modifier_set (VK_SHIFT) ? shift_modifier : 0) |
3780 (modifier_set (VK_CONTROL) ? ctrl_modifier : 0) |
3781 (modifier_set (VK_LWIN) ? w32_key_to_modifier (VK_LWIN) : 0) |
3782 (modifier_set (VK_RWIN) ? w32_key_to_modifier (VK_RWIN) : 0) |
3783 (modifier_set (VK_APPS) ? w32_key_to_modifier (VK_APPS) : 0) |
3784 (modifier_set (VK_SCROLL) ? w32_key_to_modifier (VK_SCROLL) : 0) |
3785 (modifier_set (VK_MENU) ?
3786 ((NILP (Vw32_alt_is_meta)) ? alt_modifier : meta_modifier) : 0));
3789 /* We map the VK_* modifiers into console modifier constants
3790 so that we can use the same routines to handle both console
3791 and window input. */
3793 static int
3794 construct_console_modifiers ()
3796 int mods;
3798 mods = 0;
3799 mods |= (modifier_set (VK_SHIFT)) ? SHIFT_PRESSED : 0;
3800 mods |= (modifier_set (VK_CAPITAL)) ? CAPSLOCK_ON : 0;
3801 mods |= (modifier_set (VK_SCROLL)) ? SCROLLLOCK_ON : 0;
3802 mods |= (modifier_set (VK_NUMLOCK)) ? NUMLOCK_ON : 0;
3803 mods |= (modifier_set (VK_LCONTROL)) ? LEFT_CTRL_PRESSED : 0;
3804 mods |= (modifier_set (VK_RCONTROL)) ? RIGHT_CTRL_PRESSED : 0;
3805 mods |= (modifier_set (VK_LMENU)) ? LEFT_ALT_PRESSED : 0;
3806 mods |= (modifier_set (VK_RMENU)) ? RIGHT_ALT_PRESSED : 0;
3807 mods |= (modifier_set (VK_LWIN)) ? LEFT_WIN_PRESSED : 0;
3808 mods |= (modifier_set (VK_RWIN)) ? RIGHT_WIN_PRESSED : 0;
3809 mods |= (modifier_set (VK_APPS)) ? APPS_PRESSED : 0;
3811 return mods;
3814 static int
3815 w32_get_key_modifiers (unsigned int wparam, unsigned int lparam)
3817 int mods;
3819 /* Convert to emacs modifiers. */
3820 mods = w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam);
3822 return mods;
3825 unsigned int
3826 map_keypad_keys (unsigned int virt_key, unsigned int extended)
3828 if (virt_key < VK_CLEAR || virt_key > VK_DELETE)
3829 return virt_key;
3831 if (virt_key == VK_RETURN)
3832 return (extended ? VK_NUMPAD_ENTER : VK_RETURN);
3834 if (virt_key >= VK_PRIOR && virt_key <= VK_DOWN)
3835 return (!extended ? (VK_NUMPAD_PRIOR + (virt_key - VK_PRIOR)) : virt_key);
3837 if (virt_key == VK_INSERT || virt_key == VK_DELETE)
3838 return (!extended ? (VK_NUMPAD_INSERT + (virt_key - VK_INSERT)) : virt_key);
3840 if (virt_key == VK_CLEAR)
3841 return (!extended ? VK_NUMPAD_CLEAR : virt_key);
3843 return virt_key;
3846 /* List of special key combinations which w32 would normally capture,
3847 but emacs should grab instead. Not directly visible to lisp, to
3848 simplify synchronization. Each item is an integer encoding a virtual
3849 key code and modifier combination to capture. */
3850 Lisp_Object w32_grabbed_keys;
3852 #define HOTKEY(vk,mods) make_number (((vk) & 255) | ((mods) << 8))
3853 #define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
3854 #define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
3855 #define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
3857 /* Register hot-keys for reserved key combinations when Emacs has
3858 keyboard focus, since this is the only way Emacs can receive key
3859 combinations like Alt-Tab which are used by the system. */
3861 static void
3862 register_hot_keys (hwnd)
3863 HWND hwnd;
3865 Lisp_Object keylist;
3867 /* Use GC_CONSP, since we are called asynchronously. */
3868 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3870 Lisp_Object key = XCAR (keylist);
3872 /* Deleted entries get set to nil. */
3873 if (!INTEGERP (key))
3874 continue;
3876 RegisterHotKey (hwnd, HOTKEY_ID (key),
3877 HOTKEY_MODIFIERS (key), HOTKEY_VK_CODE (key));
3881 static void
3882 unregister_hot_keys (hwnd)
3883 HWND hwnd;
3885 Lisp_Object keylist;
3887 /* Use GC_CONSP, since we are called asynchronously. */
3888 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3890 Lisp_Object key = XCAR (keylist);
3892 if (!INTEGERP (key))
3893 continue;
3895 UnregisterHotKey (hwnd, HOTKEY_ID (key));
3899 /* Main message dispatch loop. */
3901 static void
3902 w32_msg_pump (deferred_msg * msg_buf)
3904 MSG msg;
3905 int result;
3906 HWND focus_window;
3908 msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
3910 while (GetMessage (&msg, NULL, 0, 0))
3912 if (msg.hwnd == NULL)
3914 switch (msg.message)
3916 case WM_NULL:
3917 /* Produced by complete_deferred_msg; just ignore. */
3918 break;
3919 case WM_EMACS_CREATEWINDOW:
3920 w32_createwindow ((struct frame *) msg.wParam);
3921 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3922 abort ();
3923 break;
3924 case WM_EMACS_SETLOCALE:
3925 SetThreadLocale (msg.wParam);
3926 /* Reply is not expected. */
3927 break;
3928 case WM_EMACS_SETKEYBOARDLAYOUT:
3929 result = (int) ActivateKeyboardLayout ((HKL) msg.wParam, 0);
3930 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3931 result, 0))
3932 abort ();
3933 break;
3934 case WM_EMACS_REGISTER_HOT_KEY:
3935 focus_window = GetFocus ();
3936 if (focus_window != NULL)
3937 RegisterHotKey (focus_window,
3938 HOTKEY_ID (msg.wParam),
3939 HOTKEY_MODIFIERS (msg.wParam),
3940 HOTKEY_VK_CODE (msg.wParam));
3941 /* Reply is not expected. */
3942 break;
3943 case WM_EMACS_UNREGISTER_HOT_KEY:
3944 focus_window = GetFocus ();
3945 if (focus_window != NULL)
3946 UnregisterHotKey (focus_window, HOTKEY_ID (msg.wParam));
3947 /* Mark item as erased. NB: this code must be
3948 thread-safe. The next line is okay because the cons
3949 cell is never made into garbage and is not relocated by
3950 GC. */
3951 XSETCAR ((Lisp_Object) msg.lParam, Qnil);
3952 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3953 abort ();
3954 break;
3955 case WM_EMACS_TOGGLE_LOCK_KEY:
3957 int vk_code = (int) msg.wParam;
3958 int cur_state = (GetKeyState (vk_code) & 1);
3959 Lisp_Object new_state = (Lisp_Object) msg.lParam;
3961 /* NB: This code must be thread-safe. It is safe to
3962 call NILP because symbols are not relocated by GC,
3963 and pointer here is not touched by GC (so the markbit
3964 can't be set). Numbers are safe because they are
3965 immediate values. */
3966 if (NILP (new_state)
3967 || (NUMBERP (new_state)
3968 && ((XUINT (new_state)) & 1) != cur_state))
3970 one_w32_display_info.faked_key = vk_code;
3972 keybd_event ((BYTE) vk_code,
3973 (BYTE) MapVirtualKey (vk_code, 0),
3974 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3975 keybd_event ((BYTE) vk_code,
3976 (BYTE) MapVirtualKey (vk_code, 0),
3977 KEYEVENTF_EXTENDEDKEY | 0, 0);
3978 keybd_event ((BYTE) vk_code,
3979 (BYTE) MapVirtualKey (vk_code, 0),
3980 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3981 cur_state = !cur_state;
3983 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3984 cur_state, 0))
3985 abort ();
3987 break;
3988 default:
3989 DebPrint (("msg %x not expected by w32_msg_pump\n", msg.message));
3992 else
3994 DispatchMessage (&msg);
3997 /* Exit nested loop when our deferred message has completed. */
3998 if (msg_buf->completed)
3999 break;
4003 deferred_msg * deferred_msg_head;
4005 static deferred_msg *
4006 find_deferred_msg (HWND hwnd, UINT msg)
4008 deferred_msg * item;
4010 /* Don't actually need synchronization for read access, since
4011 modification of single pointer is always atomic. */
4012 /* enter_crit (); */
4014 for (item = deferred_msg_head; item != NULL; item = item->next)
4015 if (item->w32msg.msg.hwnd == hwnd
4016 && item->w32msg.msg.message == msg)
4017 break;
4019 /* leave_crit (); */
4021 return item;
4024 static LRESULT
4025 send_deferred_msg (deferred_msg * msg_buf,
4026 HWND hwnd,
4027 UINT msg,
4028 WPARAM wParam,
4029 LPARAM lParam)
4031 /* Only input thread can send deferred messages. */
4032 if (GetCurrentThreadId () != dwWindowsThreadId)
4033 abort ();
4035 /* It is an error to send a message that is already deferred. */
4036 if (find_deferred_msg (hwnd, msg) != NULL)
4037 abort ();
4039 /* Enforced synchronization is not needed because this is the only
4040 function that alters deferred_msg_head, and the following critical
4041 section is guaranteed to only be serially reentered (since only the
4042 input thread can call us). */
4044 /* enter_crit (); */
4046 msg_buf->completed = 0;
4047 msg_buf->next = deferred_msg_head;
4048 deferred_msg_head = msg_buf;
4049 my_post_msg (&msg_buf->w32msg, hwnd, msg, wParam, lParam);
4051 /* leave_crit (); */
4053 /* Start a new nested message loop to process other messages until
4054 this one is completed. */
4055 w32_msg_pump (msg_buf);
4057 deferred_msg_head = msg_buf->next;
4059 return msg_buf->result;
4062 void
4063 complete_deferred_msg (HWND hwnd, UINT msg, LRESULT result)
4065 deferred_msg * msg_buf = find_deferred_msg (hwnd, msg);
4067 if (msg_buf == NULL)
4068 /* Message may have been cancelled, so don't abort(). */
4069 return;
4071 msg_buf->result = result;
4072 msg_buf->completed = 1;
4074 /* Ensure input thread is woken so it notices the completion. */
4075 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
4078 void
4079 cancel_all_deferred_msgs ()
4081 deferred_msg * item;
4083 /* Don't actually need synchronization for read access, since
4084 modification of single pointer is always atomic. */
4085 /* enter_crit (); */
4087 for (item = deferred_msg_head; item != NULL; item = item->next)
4089 item->result = 0;
4090 item->completed = 1;
4093 /* leave_crit (); */
4095 /* Ensure input thread is woken so it notices the completion. */
4096 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
4099 DWORD
4100 w32_msg_worker (dw)
4101 DWORD dw;
4103 MSG msg;
4104 deferred_msg dummy_buf;
4106 /* Ensure our message queue is created */
4108 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
4110 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
4111 abort ();
4113 memset (&dummy_buf, 0, sizeof (dummy_buf));
4114 dummy_buf.w32msg.msg.hwnd = NULL;
4115 dummy_buf.w32msg.msg.message = WM_NULL;
4117 /* This is the inital message loop which should only exit when the
4118 application quits. */
4119 w32_msg_pump (&dummy_buf);
4121 return 0;
4124 static void
4125 post_character_message (hwnd, msg, wParam, lParam, modifiers)
4126 HWND hwnd;
4127 UINT msg;
4128 WPARAM wParam;
4129 LPARAM lParam;
4130 DWORD modifiers;
4133 W32Msg wmsg;
4135 wmsg.dwModifiers = modifiers;
4137 /* Detect quit_char and set quit-flag directly. Note that we
4138 still need to post a message to ensure the main thread will be
4139 woken up if blocked in sys_select(), but we do NOT want to post
4140 the quit_char message itself (because it will usually be as if
4141 the user had typed quit_char twice). Instead, we post a dummy
4142 message that has no particular effect. */
4144 int c = wParam;
4145 if (isalpha (c) && wmsg.dwModifiers == ctrl_modifier)
4146 c = make_ctrl_char (c) & 0377;
4147 if (c == quit_char
4148 || (wmsg.dwModifiers == 0 &&
4149 XFASTINT (Vw32_quit_key) && wParam == XFASTINT (Vw32_quit_key)))
4151 Vquit_flag = Qt;
4153 /* The choice of message is somewhat arbitrary, as long as
4154 the main thread handler just ignores it. */
4155 msg = WM_NULL;
4157 /* Interrupt any blocking system calls. */
4158 signal_quit ();
4160 /* As a safety precaution, forcibly complete any deferred
4161 messages. This is a kludge, but I don't see any particularly
4162 clean way to handle the situation where a deferred message is
4163 "dropped" in the lisp thread, and will thus never be
4164 completed, eg. by the user trying to activate the menubar
4165 when the lisp thread is busy, and then typing C-g when the
4166 menubar doesn't open promptly (with the result that the
4167 menubar never responds at all because the deferred
4168 WM_INITMENU message is never completed). Another problem
4169 situation is when the lisp thread calls SendMessage (to send
4170 a window manager command) when a message has been deferred;
4171 the lisp thread gets blocked indefinitely waiting for the
4172 deferred message to be completed, which itself is waiting for
4173 the lisp thread to respond.
4175 Note that we don't want to block the input thread waiting for
4176 a reponse from the lisp thread (although that would at least
4177 solve the deadlock problem above), because we want to be able
4178 to receive C-g to interrupt the lisp thread. */
4179 cancel_all_deferred_msgs ();
4183 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4186 /* Main window procedure */
4188 LRESULT CALLBACK
4189 w32_wnd_proc (hwnd, msg, wParam, lParam)
4190 HWND hwnd;
4191 UINT msg;
4192 WPARAM wParam;
4193 LPARAM lParam;
4195 struct frame *f;
4196 struct w32_display_info *dpyinfo = &one_w32_display_info;
4197 W32Msg wmsg;
4198 int windows_translate;
4199 int key;
4201 /* Note that it is okay to call x_window_to_frame, even though we are
4202 not running in the main lisp thread, because frame deletion
4203 requires the lisp thread to synchronize with this thread. Thus, if
4204 a frame struct is returned, it can be used without concern that the
4205 lisp thread might make it disappear while we are using it.
4207 NB. Walking the frame list in this thread is safe (as long as
4208 writes of Lisp_Object slots are atomic, which they are on Windows).
4209 Although delete-frame can destructively modify the frame list while
4210 we are walking it, a garbage collection cannot occur until after
4211 delete-frame has synchronized with this thread.
4213 It is also safe to use functions that make GDI calls, such as
4214 w32_clear_rect, because these functions must obtain a DC handle
4215 from the frame struct using get_frame_dc which is thread-aware. */
4217 switch (msg)
4219 case WM_ERASEBKGND:
4220 f = x_window_to_frame (dpyinfo, hwnd);
4221 if (f)
4223 HDC hdc = get_frame_dc (f);
4224 GetUpdateRect (hwnd, &wmsg.rect, FALSE);
4225 w32_clear_rect (f, hdc, &wmsg.rect);
4226 release_frame_dc (f, hdc);
4228 #if defined (W32_DEBUG_DISPLAY)
4229 DebPrint (("WM_ERASEBKGND (frame %p): erasing %d,%d-%d,%d\n",
4231 wmsg.rect.left, wmsg.rect.top,
4232 wmsg.rect.right, wmsg.rect.bottom));
4233 #endif /* W32_DEBUG_DISPLAY */
4235 return 1;
4236 case WM_PALETTECHANGED:
4237 /* ignore our own changes */
4238 if ((HWND)wParam != hwnd)
4240 f = x_window_to_frame (dpyinfo, hwnd);
4241 if (f)
4242 /* get_frame_dc will realize our palette and force all
4243 frames to be redrawn if needed. */
4244 release_frame_dc (f, get_frame_dc (f));
4246 return 0;
4247 case WM_PAINT:
4249 PAINTSTRUCT paintStruct;
4250 RECT update_rect;
4251 bzero (&update_rect, sizeof (update_rect));
4253 f = x_window_to_frame (dpyinfo, hwnd);
4254 if (f == 0)
4256 DebPrint (("WM_PAINT received for unknown window %p\n", hwnd));
4257 return 0;
4260 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
4261 fails. Apparently this can happen under some
4262 circumstances. */
4263 if (GetUpdateRect (hwnd, &update_rect, FALSE) || !w32_strict_painting)
4265 enter_crit ();
4266 BeginPaint (hwnd, &paintStruct);
4268 /* The rectangles returned by GetUpdateRect and BeginPaint
4269 do not always match. Play it safe by assuming both areas
4270 are invalid. */
4271 UnionRect (&(wmsg.rect), &update_rect, &(paintStruct.rcPaint));
4273 #if defined (W32_DEBUG_DISPLAY)
4274 DebPrint (("WM_PAINT (frame %p): painting %d,%d-%d,%d\n",
4276 wmsg.rect.left, wmsg.rect.top,
4277 wmsg.rect.right, wmsg.rect.bottom));
4278 DebPrint ((" [update region is %d,%d-%d,%d]\n",
4279 update_rect.left, update_rect.top,
4280 update_rect.right, update_rect.bottom));
4281 #endif
4282 EndPaint (hwnd, &paintStruct);
4283 leave_crit ();
4285 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4287 return 0;
4290 /* If GetUpdateRect returns 0 (meaning there is no update
4291 region), assume the whole window needs to be repainted. */
4292 GetClientRect(hwnd, &wmsg.rect);
4293 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4294 return 0;
4297 case WM_INPUTLANGCHANGE:
4298 /* Inform lisp thread of keyboard layout changes. */
4299 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4301 /* Clear dead keys in the keyboard state; for simplicity only
4302 preserve modifier key states. */
4304 int i;
4305 BYTE keystate[256];
4307 GetKeyboardState (keystate);
4308 for (i = 0; i < 256; i++)
4309 if (1
4310 && i != VK_SHIFT
4311 && i != VK_LSHIFT
4312 && i != VK_RSHIFT
4313 && i != VK_CAPITAL
4314 && i != VK_NUMLOCK
4315 && i != VK_SCROLL
4316 && i != VK_CONTROL
4317 && i != VK_LCONTROL
4318 && i != VK_RCONTROL
4319 && i != VK_MENU
4320 && i != VK_LMENU
4321 && i != VK_RMENU
4322 && i != VK_LWIN
4323 && i != VK_RWIN)
4324 keystate[i] = 0;
4325 SetKeyboardState (keystate);
4327 goto dflt;
4329 case WM_HOTKEY:
4330 /* Synchronize hot keys with normal input. */
4331 PostMessage (hwnd, WM_KEYDOWN, HIWORD (lParam), 0);
4332 return (0);
4334 case WM_KEYUP:
4335 case WM_SYSKEYUP:
4336 record_keyup (wParam, lParam);
4337 goto dflt;
4339 case WM_KEYDOWN:
4340 case WM_SYSKEYDOWN:
4341 /* Ignore keystrokes we fake ourself; see below. */
4342 if (dpyinfo->faked_key == wParam)
4344 dpyinfo->faked_key = 0;
4345 /* Make sure TranslateMessage sees them though (as long as
4346 they don't produce WM_CHAR messages). This ensures that
4347 indicator lights are toggled promptly on Windows 9x, for
4348 example. */
4349 if (lispy_function_keys[wParam] != 0)
4351 windows_translate = 1;
4352 goto translate;
4354 return 0;
4357 /* Synchronize modifiers with current keystroke. */
4358 sync_modifiers ();
4359 record_keydown (wParam, lParam);
4360 wParam = map_keypad_keys (wParam, (lParam & 0x1000000L) != 0);
4362 windows_translate = 0;
4364 switch (wParam)
4366 case VK_LWIN:
4367 if (NILP (Vw32_pass_lwindow_to_system))
4369 /* Prevent system from acting on keyup (which opens the
4370 Start menu if no other key was pressed) by simulating a
4371 press of Space which we will ignore. */
4372 if (GetAsyncKeyState (wParam) & 1)
4374 if (NUMBERP (Vw32_phantom_key_code))
4375 key = XUINT (Vw32_phantom_key_code) & 255;
4376 else
4377 key = VK_SPACE;
4378 dpyinfo->faked_key = key;
4379 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4382 if (!NILP (Vw32_lwindow_modifier))
4383 return 0;
4384 break;
4385 case VK_RWIN:
4386 if (NILP (Vw32_pass_rwindow_to_system))
4388 if (GetAsyncKeyState (wParam) & 1)
4390 if (NUMBERP (Vw32_phantom_key_code))
4391 key = XUINT (Vw32_phantom_key_code) & 255;
4392 else
4393 key = VK_SPACE;
4394 dpyinfo->faked_key = key;
4395 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4398 if (!NILP (Vw32_rwindow_modifier))
4399 return 0;
4400 break;
4401 case VK_APPS:
4402 if (!NILP (Vw32_apps_modifier))
4403 return 0;
4404 break;
4405 case VK_MENU:
4406 if (NILP (Vw32_pass_alt_to_system))
4407 /* Prevent DefWindowProc from activating the menu bar if an
4408 Alt key is pressed and released by itself. */
4409 return 0;
4410 windows_translate = 1;
4411 break;
4412 case VK_CAPITAL:
4413 /* Decide whether to treat as modifier or function key. */
4414 if (NILP (Vw32_enable_caps_lock))
4415 goto disable_lock_key;
4416 windows_translate = 1;
4417 break;
4418 case VK_NUMLOCK:
4419 /* Decide whether to treat as modifier or function key. */
4420 if (NILP (Vw32_enable_num_lock))
4421 goto disable_lock_key;
4422 windows_translate = 1;
4423 break;
4424 case VK_SCROLL:
4425 /* Decide whether to treat as modifier or function key. */
4426 if (NILP (Vw32_scroll_lock_modifier))
4427 goto disable_lock_key;
4428 windows_translate = 1;
4429 break;
4430 disable_lock_key:
4431 /* Ensure the appropriate lock key state (and indicator light)
4432 remains in the same state. We do this by faking another
4433 press of the relevant key. Apparently, this really is the
4434 only way to toggle the state of the indicator lights. */
4435 dpyinfo->faked_key = wParam;
4436 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4437 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4438 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4439 KEYEVENTF_EXTENDEDKEY | 0, 0);
4440 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4441 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4442 /* Ensure indicator lights are updated promptly on Windows 9x
4443 (TranslateMessage apparently does this), after forwarding
4444 input event. */
4445 post_character_message (hwnd, msg, wParam, lParam,
4446 w32_get_key_modifiers (wParam, lParam));
4447 windows_translate = 1;
4448 break;
4449 case VK_CONTROL:
4450 case VK_SHIFT:
4451 case VK_PROCESSKEY: /* Generated by IME. */
4452 windows_translate = 1;
4453 break;
4454 case VK_CANCEL:
4455 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
4456 which is confusing for purposes of key binding; convert
4457 VK_CANCEL events into VK_PAUSE events. */
4458 wParam = VK_PAUSE;
4459 break;
4460 case VK_PAUSE:
4461 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
4462 for purposes of key binding; convert these back into
4463 VK_NUMLOCK events, at least when we want to see NumLock key
4464 presses. (Note that there is never any possibility that
4465 VK_PAUSE with Ctrl really is C-Pause as per above.) */
4466 if (NILP (Vw32_enable_num_lock) && modifier_set (VK_CONTROL))
4467 wParam = VK_NUMLOCK;
4468 break;
4469 default:
4470 /* If not defined as a function key, change it to a WM_CHAR message. */
4471 if (lispy_function_keys[wParam] == 0)
4473 DWORD modifiers = construct_console_modifiers ();
4475 if (!NILP (Vw32_recognize_altgr)
4476 && modifier_set (VK_LCONTROL) && modifier_set (VK_RMENU))
4478 /* Always let TranslateMessage handle AltGr key chords;
4479 for some reason, ToAscii doesn't always process AltGr
4480 chords correctly. */
4481 windows_translate = 1;
4483 else if ((modifiers & (~SHIFT_PRESSED & ~CAPSLOCK_ON)) != 0)
4485 /* Handle key chords including any modifiers other
4486 than shift directly, in order to preserve as much
4487 modifier information as possible. */
4488 if ('A' <= wParam && wParam <= 'Z')
4490 /* Don't translate modified alphabetic keystrokes,
4491 so the user doesn't need to constantly switch
4492 layout to type control or meta keystrokes when
4493 the normal layout translates alphabetic
4494 characters to non-ascii characters. */
4495 if (!modifier_set (VK_SHIFT))
4496 wParam += ('a' - 'A');
4497 msg = WM_CHAR;
4499 else
4501 /* Try to handle other keystrokes by determining the
4502 base character (ie. translating the base key plus
4503 shift modifier). */
4504 int add;
4505 int isdead = 0;
4506 KEY_EVENT_RECORD key;
4508 key.bKeyDown = TRUE;
4509 key.wRepeatCount = 1;
4510 key.wVirtualKeyCode = wParam;
4511 key.wVirtualScanCode = (lParam & 0xFF0000) >> 16;
4512 key.uChar.AsciiChar = 0;
4513 key.dwControlKeyState = modifiers;
4515 add = w32_kbd_patch_key (&key);
4516 /* 0 means an unrecognised keycode, negative means
4517 dead key. Ignore both. */
4518 while (--add >= 0)
4520 /* Forward asciified character sequence. */
4521 post_character_message
4522 (hwnd, WM_CHAR, key.uChar.AsciiChar, lParam,
4523 w32_get_key_modifiers (wParam, lParam));
4524 w32_kbd_patch_key (&key);
4526 return 0;
4529 else
4531 /* Let TranslateMessage handle everything else. */
4532 windows_translate = 1;
4537 translate:
4538 if (windows_translate)
4540 MSG windows_msg = { hwnd, msg, wParam, lParam, 0, {0,0} };
4542 windows_msg.time = GetMessageTime ();
4543 TranslateMessage (&windows_msg);
4544 goto dflt;
4547 /* Fall through */
4549 case WM_SYSCHAR:
4550 case WM_CHAR:
4551 post_character_message (hwnd, msg, wParam, lParam,
4552 w32_get_key_modifiers (wParam, lParam));
4553 break;
4555 /* Simulate middle mouse button events when left and right buttons
4556 are used together, but only if user has two button mouse. */
4557 case WM_LBUTTONDOWN:
4558 case WM_RBUTTONDOWN:
4559 if (XINT (Vw32_num_mouse_buttons) > 2)
4560 goto handle_plain_button;
4563 int this = (msg == WM_LBUTTONDOWN) ? LMOUSE : RMOUSE;
4564 int other = (msg == WM_LBUTTONDOWN) ? RMOUSE : LMOUSE;
4566 if (button_state & this)
4567 return 0;
4569 if (button_state == 0)
4570 SetCapture (hwnd);
4572 button_state |= this;
4574 if (button_state & other)
4576 if (mouse_button_timer)
4578 KillTimer (hwnd, mouse_button_timer);
4579 mouse_button_timer = 0;
4581 /* Generate middle mouse event instead. */
4582 msg = WM_MBUTTONDOWN;
4583 button_state |= MMOUSE;
4585 else if (button_state & MMOUSE)
4587 /* Ignore button event if we've already generated a
4588 middle mouse down event. This happens if the
4589 user releases and press one of the two buttons
4590 after we've faked a middle mouse event. */
4591 return 0;
4593 else
4595 /* Flush out saved message. */
4596 post_msg (&saved_mouse_button_msg);
4598 wmsg.dwModifiers = w32_get_modifiers ();
4599 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4601 /* Clear message buffer. */
4602 saved_mouse_button_msg.msg.hwnd = 0;
4604 else
4606 /* Hold onto message for now. */
4607 mouse_button_timer =
4608 SetTimer (hwnd, MOUSE_BUTTON_ID,
4609 XINT (Vw32_mouse_button_tolerance), NULL);
4610 saved_mouse_button_msg.msg.hwnd = hwnd;
4611 saved_mouse_button_msg.msg.message = msg;
4612 saved_mouse_button_msg.msg.wParam = wParam;
4613 saved_mouse_button_msg.msg.lParam = lParam;
4614 saved_mouse_button_msg.msg.time = GetMessageTime ();
4615 saved_mouse_button_msg.dwModifiers = w32_get_modifiers ();
4618 return 0;
4620 case WM_LBUTTONUP:
4621 case WM_RBUTTONUP:
4622 if (XINT (Vw32_num_mouse_buttons) > 2)
4623 goto handle_plain_button;
4626 int this = (msg == WM_LBUTTONUP) ? LMOUSE : RMOUSE;
4627 int other = (msg == WM_LBUTTONUP) ? RMOUSE : LMOUSE;
4629 if ((button_state & this) == 0)
4630 return 0;
4632 button_state &= ~this;
4634 if (button_state & MMOUSE)
4636 /* Only generate event when second button is released. */
4637 if ((button_state & other) == 0)
4639 msg = WM_MBUTTONUP;
4640 button_state &= ~MMOUSE;
4642 if (button_state) abort ();
4644 else
4645 return 0;
4647 else
4649 /* Flush out saved message if necessary. */
4650 if (saved_mouse_button_msg.msg.hwnd)
4652 post_msg (&saved_mouse_button_msg);
4655 wmsg.dwModifiers = w32_get_modifiers ();
4656 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4658 /* Always clear message buffer and cancel timer. */
4659 saved_mouse_button_msg.msg.hwnd = 0;
4660 KillTimer (hwnd, mouse_button_timer);
4661 mouse_button_timer = 0;
4663 if (button_state == 0)
4664 ReleaseCapture ();
4666 return 0;
4668 case WM_XBUTTONDOWN:
4669 case WM_XBUTTONUP:
4670 if (w32_pass_extra_mouse_buttons_to_system)
4671 goto dflt;
4672 /* else fall through and process them. */
4673 case WM_MBUTTONDOWN:
4674 case WM_MBUTTONUP:
4675 handle_plain_button:
4677 BOOL up;
4678 int button;
4680 if (parse_button (msg, HIWORD (wParam), &button, &up))
4682 if (up) ReleaseCapture ();
4683 else SetCapture (hwnd);
4684 button = (button == 0) ? LMOUSE :
4685 ((button == 1) ? MMOUSE : RMOUSE);
4686 if (up)
4687 button_state &= ~button;
4688 else
4689 button_state |= button;
4693 wmsg.dwModifiers = w32_get_modifiers ();
4694 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4696 /* Need to return true for XBUTTON messages, false for others,
4697 to indicate that we processed the message. */
4698 return (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONUP);
4700 case WM_MOUSEMOVE:
4701 /* If the mouse has just moved into the frame, start tracking
4702 it, so we will be notified when it leaves the frame. Mouse
4703 tracking only works under W98 and NT4 and later. On earlier
4704 versions, there is no way of telling when the mouse leaves the
4705 frame, so we just have to put up with help-echo and mouse
4706 highlighting remaining while the frame is not active. */
4707 if (track_mouse_event_fn && !track_mouse_window)
4709 TRACKMOUSEEVENT tme;
4710 tme.cbSize = sizeof (tme);
4711 tme.dwFlags = TME_LEAVE;
4712 tme.hwndTrack = hwnd;
4714 track_mouse_event_fn (&tme);
4715 track_mouse_window = hwnd;
4717 case WM_VSCROLL:
4718 if (XINT (Vw32_mouse_move_interval) <= 0
4719 || (msg == WM_MOUSEMOVE && button_state == 0))
4721 wmsg.dwModifiers = w32_get_modifiers ();
4722 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4723 return 0;
4726 /* Hang onto mouse move and scroll messages for a bit, to avoid
4727 sending such events to Emacs faster than it can process them.
4728 If we get more events before the timer from the first message
4729 expires, we just replace the first message. */
4731 if (saved_mouse_move_msg.msg.hwnd == 0)
4732 mouse_move_timer =
4733 SetTimer (hwnd, MOUSE_MOVE_ID,
4734 XINT (Vw32_mouse_move_interval), NULL);
4736 /* Hold onto message for now. */
4737 saved_mouse_move_msg.msg.hwnd = hwnd;
4738 saved_mouse_move_msg.msg.message = msg;
4739 saved_mouse_move_msg.msg.wParam = wParam;
4740 saved_mouse_move_msg.msg.lParam = lParam;
4741 saved_mouse_move_msg.msg.time = GetMessageTime ();
4742 saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
4744 return 0;
4746 case WM_MOUSEWHEEL:
4747 wmsg.dwModifiers = w32_get_modifiers ();
4748 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4749 return 0;
4751 case WM_DROPFILES:
4752 wmsg.dwModifiers = w32_get_modifiers ();
4753 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4754 return 0;
4756 case WM_TIMER:
4757 /* Flush out saved messages if necessary. */
4758 if (wParam == mouse_button_timer)
4760 if (saved_mouse_button_msg.msg.hwnd)
4762 post_msg (&saved_mouse_button_msg);
4763 saved_mouse_button_msg.msg.hwnd = 0;
4765 KillTimer (hwnd, mouse_button_timer);
4766 mouse_button_timer = 0;
4768 else if (wParam == mouse_move_timer)
4770 if (saved_mouse_move_msg.msg.hwnd)
4772 post_msg (&saved_mouse_move_msg);
4773 saved_mouse_move_msg.msg.hwnd = 0;
4775 KillTimer (hwnd, mouse_move_timer);
4776 mouse_move_timer = 0;
4778 else if (wParam == menu_free_timer)
4780 KillTimer (hwnd, menu_free_timer);
4781 menu_free_timer = 0;
4782 f = x_window_to_frame (dpyinfo, hwnd);
4783 if (!f->output_data.w32->menu_command_in_progress)
4785 /* Free memory used by owner-drawn and help-echo strings. */
4786 w32_free_menu_strings (hwnd);
4787 f->output_data.w32->menubar_active = 0;
4790 return 0;
4792 case WM_NCACTIVATE:
4793 /* Windows doesn't send us focus messages when putting up and
4794 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
4795 The only indication we get that something happened is receiving
4796 this message afterwards. So this is a good time to reset our
4797 keyboard modifiers' state. */
4798 reset_modifiers ();
4799 goto dflt;
4801 case WM_INITMENU:
4802 button_state = 0;
4803 ReleaseCapture ();
4804 /* We must ensure menu bar is fully constructed and up to date
4805 before allowing user interaction with it. To achieve this
4806 we send this message to the lisp thread and wait for a
4807 reply (whose value is not actually needed) to indicate that
4808 the menu bar is now ready for use, so we can now return.
4810 To remain responsive in the meantime, we enter a nested message
4811 loop that can process all other messages.
4813 However, we skip all this if the message results from calling
4814 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
4815 thread a message because it is blocked on us at this point. We
4816 set menubar_active before calling TrackPopupMenu to indicate
4817 this (there is no possibility of confusion with real menubar
4818 being active). */
4820 f = x_window_to_frame (dpyinfo, hwnd);
4821 if (f
4822 && (f->output_data.w32->menubar_active
4823 /* We can receive this message even in the absence of a
4824 menubar (ie. when the system menu is activated) - in this
4825 case we do NOT want to forward the message, otherwise it
4826 will cause the menubar to suddenly appear when the user
4827 had requested it to be turned off! */
4828 || f->output_data.w32->menubar_widget == NULL))
4829 return 0;
4832 deferred_msg msg_buf;
4834 /* Detect if message has already been deferred; in this case
4835 we cannot return any sensible value to ignore this. */
4836 if (find_deferred_msg (hwnd, msg) != NULL)
4837 abort ();
4839 return send_deferred_msg (&msg_buf, hwnd, msg, wParam, lParam);
4842 case WM_EXITMENULOOP:
4843 f = x_window_to_frame (dpyinfo, hwnd);
4845 /* If a menu command is not already in progress, check again
4846 after a short delay, since Windows often (always?) sends the
4847 WM_EXITMENULOOP before the corresponding WM_COMMAND message. */
4848 if (f && !f->output_data.w32->menu_command_in_progress)
4849 menu_free_timer = SetTimer (hwnd, MENU_FREE_ID, MENU_FREE_DELAY, NULL);
4850 goto dflt;
4852 case WM_MENUSELECT:
4853 /* Direct handling of help_echo in menus. Should be safe now
4854 that we generate the help_echo by placing a help event in the
4855 keyboard buffer. */
4857 HMENU menu = (HMENU) lParam;
4858 UINT menu_item = (UINT) LOWORD (wParam);
4859 UINT flags = (UINT) HIWORD (wParam);
4861 w32_menu_display_help (hwnd, menu, menu_item, flags);
4863 return 0;
4865 case WM_MEASUREITEM:
4866 f = x_window_to_frame (dpyinfo, hwnd);
4867 if (f)
4869 MEASUREITEMSTRUCT * pMis = (MEASUREITEMSTRUCT *) lParam;
4871 if (pMis->CtlType == ODT_MENU)
4873 /* Work out dimensions for popup menu titles. */
4874 char * title = (char *) pMis->itemData;
4875 HDC hdc = GetDC (hwnd);
4876 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4877 LOGFONT menu_logfont;
4878 HFONT old_font;
4879 SIZE size;
4881 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4882 menu_logfont.lfWeight = FW_BOLD;
4883 menu_font = CreateFontIndirect (&menu_logfont);
4884 old_font = SelectObject (hdc, menu_font);
4886 pMis->itemHeight = GetSystemMetrics (SM_CYMENUSIZE);
4887 if (title)
4889 GetTextExtentPoint32 (hdc, title, strlen (title), &size);
4890 pMis->itemWidth = size.cx;
4891 if (pMis->itemHeight < size.cy)
4892 pMis->itemHeight = size.cy;
4894 else
4895 pMis->itemWidth = 0;
4897 SelectObject (hdc, old_font);
4898 DeleteObject (menu_font);
4899 ReleaseDC (hwnd, hdc);
4900 return TRUE;
4903 return 0;
4905 case WM_DRAWITEM:
4906 f = x_window_to_frame (dpyinfo, hwnd);
4907 if (f)
4909 DRAWITEMSTRUCT * pDis = (DRAWITEMSTRUCT *) lParam;
4911 if (pDis->CtlType == ODT_MENU)
4913 /* Draw popup menu title. */
4914 char * title = (char *) pDis->itemData;
4915 if (title)
4917 HDC hdc = pDis->hDC;
4918 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4919 LOGFONT menu_logfont;
4920 HFONT old_font;
4922 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4923 menu_logfont.lfWeight = FW_BOLD;
4924 menu_font = CreateFontIndirect (&menu_logfont);
4925 old_font = SelectObject (hdc, menu_font);
4927 /* Always draw title as if not selected. */
4928 ExtTextOut (hdc,
4929 pDis->rcItem.left
4930 + GetSystemMetrics (SM_CXMENUCHECK),
4931 pDis->rcItem.top,
4932 ETO_OPAQUE, &pDis->rcItem,
4933 title, strlen (title), NULL);
4935 SelectObject (hdc, old_font);
4936 DeleteObject (menu_font);
4938 return TRUE;
4941 return 0;
4943 #if 0
4944 /* Still not right - can't distinguish between clicks in the
4945 client area of the frame from clicks forwarded from the scroll
4946 bars - may have to hook WM_NCHITTEST to remember the mouse
4947 position and then check if it is in the client area ourselves. */
4948 case WM_MOUSEACTIVATE:
4949 /* Discard the mouse click that activates a frame, allowing the
4950 user to click anywhere without changing point (or worse!).
4951 Don't eat mouse clicks on scrollbars though!! */
4952 if (LOWORD (lParam) == HTCLIENT )
4953 return MA_ACTIVATEANDEAT;
4954 goto dflt;
4955 #endif
4957 case WM_MOUSELEAVE:
4958 /* No longer tracking mouse. */
4959 track_mouse_window = NULL;
4961 case WM_ACTIVATEAPP:
4962 case WM_ACTIVATE:
4963 case WM_WINDOWPOSCHANGED:
4964 case WM_SHOWWINDOW:
4965 /* Inform lisp thread that a frame might have just been obscured
4966 or exposed, so should recheck visibility of all frames. */
4967 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4968 goto dflt;
4970 case WM_SETFOCUS:
4971 dpyinfo->faked_key = 0;
4972 reset_modifiers ();
4973 register_hot_keys (hwnd);
4974 goto command;
4975 case WM_KILLFOCUS:
4976 unregister_hot_keys (hwnd);
4977 button_state = 0;
4978 ReleaseCapture ();
4979 /* Relinquish the system caret. */
4980 if (w32_system_caret_hwnd)
4982 w32_visible_system_caret_hwnd = NULL;
4983 w32_system_caret_hwnd = NULL;
4984 DestroyCaret ();
4986 goto command;
4987 case WM_COMMAND:
4988 f = x_window_to_frame (dpyinfo, hwnd);
4989 if (f && HIWORD (wParam) == 0)
4991 f->output_data.w32->menu_command_in_progress = 1;
4992 if (menu_free_timer)
4994 KillTimer (hwnd, menu_free_timer);
4995 menu_free_timer = 0;
4998 case WM_MOVE:
4999 case WM_SIZE:
5000 command:
5001 wmsg.dwModifiers = w32_get_modifiers ();
5002 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
5003 goto dflt;
5005 case WM_CLOSE:
5006 wmsg.dwModifiers = w32_get_modifiers ();
5007 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
5008 return 0;
5010 case WM_WINDOWPOSCHANGING:
5011 /* Don't restrict the sizing of tip frames. */
5012 if (hwnd == tip_window)
5013 return 0;
5015 WINDOWPLACEMENT wp;
5016 LPWINDOWPOS lppos = (WINDOWPOS *) lParam;
5018 wp.length = sizeof (WINDOWPLACEMENT);
5019 GetWindowPlacement (hwnd, &wp);
5021 if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
5023 RECT rect;
5024 int wdiff;
5025 int hdiff;
5026 DWORD font_width;
5027 DWORD line_height;
5028 DWORD internal_border;
5029 DWORD scrollbar_extra;
5030 RECT wr;
5032 wp.length = sizeof(wp);
5033 GetWindowRect (hwnd, &wr);
5035 enter_crit ();
5037 font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
5038 line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
5039 internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
5040 scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
5042 leave_crit ();
5044 memset (&rect, 0, sizeof (rect));
5045 AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
5046 GetMenu (hwnd) != NULL);
5048 /* Force width and height of client area to be exact
5049 multiples of the character cell dimensions. */
5050 wdiff = (lppos->cx - (rect.right - rect.left)
5051 - 2 * internal_border - scrollbar_extra)
5052 % font_width;
5053 hdiff = (lppos->cy - (rect.bottom - rect.top)
5054 - 2 * internal_border)
5055 % line_height;
5057 if (wdiff || hdiff)
5059 /* For right/bottom sizing we can just fix the sizes.
5060 However for top/left sizing we will need to fix the X
5061 and Y positions as well. */
5063 lppos->cx -= wdiff;
5064 lppos->cy -= hdiff;
5066 if (wp.showCmd != SW_SHOWMAXIMIZED
5067 && (lppos->flags & SWP_NOMOVE) == 0)
5069 if (lppos->x != wr.left || lppos->y != wr.top)
5071 lppos->x += wdiff;
5072 lppos->y += hdiff;
5074 else
5076 lppos->flags |= SWP_NOMOVE;
5080 return 0;
5085 goto dflt;
5087 case WM_GETMINMAXINFO:
5088 /* Hack to correct bug that allows Emacs frames to be resized
5089 below the Minimum Tracking Size. */
5090 ((LPMINMAXINFO) lParam)->ptMinTrackSize.y++;
5091 /* Hack to allow resizing the Emacs frame above the screen size.
5092 Note that Windows 9x limits coordinates to 16-bits. */
5093 ((LPMINMAXINFO) lParam)->ptMaxTrackSize.x = 32767;
5094 ((LPMINMAXINFO) lParam)->ptMaxTrackSize.y = 32767;
5095 return 0;
5097 case WM_EMACS_CREATESCROLLBAR:
5098 return (LRESULT) w32_createscrollbar ((struct frame *) wParam,
5099 (struct scroll_bar *) lParam);
5101 case WM_EMACS_SHOWWINDOW:
5102 return ShowWindow ((HWND) wParam, (WPARAM) lParam);
5104 case WM_EMACS_SETFOREGROUND:
5106 HWND foreground_window;
5107 DWORD foreground_thread, retval;
5109 /* On NT 5.0, and apparently Windows 98, it is necessary to
5110 attach to the thread that currently has focus in order to
5111 pull the focus away from it. */
5112 foreground_window = GetForegroundWindow ();
5113 foreground_thread = GetWindowThreadProcessId (foreground_window, NULL);
5114 if (!foreground_window
5115 || foreground_thread == GetCurrentThreadId ()
5116 || !AttachThreadInput (GetCurrentThreadId (),
5117 foreground_thread, TRUE))
5118 foreground_thread = 0;
5120 retval = SetForegroundWindow ((HWND) wParam);
5122 /* Detach from the previous foreground thread. */
5123 if (foreground_thread)
5124 AttachThreadInput (GetCurrentThreadId (),
5125 foreground_thread, FALSE);
5127 return retval;
5130 case WM_EMACS_SETWINDOWPOS:
5132 WINDOWPOS * pos = (WINDOWPOS *) wParam;
5133 return SetWindowPos (hwnd, pos->hwndInsertAfter,
5134 pos->x, pos->y, pos->cx, pos->cy, pos->flags);
5137 case WM_EMACS_DESTROYWINDOW:
5138 DragAcceptFiles ((HWND) wParam, FALSE);
5139 return DestroyWindow ((HWND) wParam);
5141 case WM_EMACS_HIDE_CARET:
5142 return HideCaret (hwnd);
5144 case WM_EMACS_SHOW_CARET:
5145 return ShowCaret (hwnd);
5147 case WM_EMACS_DESTROY_CARET:
5148 w32_system_caret_hwnd = NULL;
5149 w32_visible_system_caret_hwnd = NULL;
5150 return DestroyCaret ();
5152 case WM_EMACS_TRACK_CARET:
5153 /* If there is currently no system caret, create one. */
5154 if (w32_system_caret_hwnd == NULL)
5156 /* Use the default caret width, and avoid changing it
5157 unneccesarily, as it confuses screen reader software. */
5158 w32_system_caret_hwnd = hwnd;
5159 CreateCaret (hwnd, NULL, 0,
5160 w32_system_caret_height);
5163 if (!SetCaretPos (w32_system_caret_x, w32_system_caret_y))
5164 return 0;
5165 /* Ensure visible caret gets turned on when requested. */
5166 else if (w32_use_visible_system_caret
5167 && w32_visible_system_caret_hwnd != hwnd)
5169 w32_visible_system_caret_hwnd = hwnd;
5170 return ShowCaret (hwnd);
5172 /* Ensure visible caret gets turned off when requested. */
5173 else if (!w32_use_visible_system_caret
5174 && w32_visible_system_caret_hwnd)
5176 w32_visible_system_caret_hwnd = NULL;
5177 return HideCaret (hwnd);
5179 else
5180 return 1;
5182 case WM_EMACS_TRACKPOPUPMENU:
5184 UINT flags;
5185 POINT *pos;
5186 int retval;
5187 pos = (POINT *)lParam;
5188 flags = TPM_CENTERALIGN;
5189 if (button_state & LMOUSE)
5190 flags |= TPM_LEFTBUTTON;
5191 else if (button_state & RMOUSE)
5192 flags |= TPM_RIGHTBUTTON;
5194 /* Remember we did a SetCapture on the initial mouse down event,
5195 so for safety, we make sure the capture is cancelled now. */
5196 ReleaseCapture ();
5197 button_state = 0;
5199 /* Use menubar_active to indicate that WM_INITMENU is from
5200 TrackPopupMenu below, and should be ignored. */
5201 f = x_window_to_frame (dpyinfo, hwnd);
5202 if (f)
5203 f->output_data.w32->menubar_active = 1;
5205 if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
5206 0, hwnd, NULL))
5208 MSG amsg;
5209 /* Eat any mouse messages during popupmenu */
5210 while (PeekMessage (&amsg, hwnd, WM_MOUSEFIRST, WM_MOUSELAST,
5211 PM_REMOVE));
5212 /* Get the menu selection, if any */
5213 if (PeekMessage (&amsg, hwnd, WM_COMMAND, WM_COMMAND, PM_REMOVE))
5215 retval = LOWORD (amsg.wParam);
5217 else
5219 retval = 0;
5222 else
5224 retval = -1;
5227 return retval;
5230 default:
5231 /* Check for messages registered at runtime. */
5232 if (msg == msh_mousewheel)
5234 wmsg.dwModifiers = w32_get_modifiers ();
5235 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
5236 return 0;
5239 dflt:
5240 return DefWindowProc (hwnd, msg, wParam, lParam);
5244 /* The most common default return code for handled messages is 0. */
5245 return 0;
5248 void
5249 my_create_window (f)
5250 struct frame * f;
5252 MSG msg;
5254 if (!PostThreadMessage (dwWindowsThreadId, WM_EMACS_CREATEWINDOW, (WPARAM)f, 0))
5255 abort ();
5256 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
5260 /* Create a tooltip window. Unlike my_create_window, we do not do this
5261 indirectly via the Window thread, as we do not need to process Window
5262 messages for the tooltip. Creating tooltips indirectly also creates
5263 deadlocks when tooltips are created for menu items. */
5264 void
5265 my_create_tip_window (f)
5266 struct frame *f;
5268 RECT rect;
5270 rect.left = rect.top = 0;
5271 rect.right = PIXEL_WIDTH (f);
5272 rect.bottom = PIXEL_HEIGHT (f);
5274 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
5275 FRAME_EXTERNAL_MENU_BAR (f));
5277 tip_window = FRAME_W32_WINDOW (f)
5278 = CreateWindow (EMACS_CLASS,
5279 f->namebuf,
5280 f->output_data.w32->dwStyle,
5281 f->output_data.w32->left_pos,
5282 f->output_data.w32->top_pos,
5283 rect.right - rect.left,
5284 rect.bottom - rect.top,
5285 FRAME_W32_WINDOW (SELECTED_FRAME ()), /* owner */
5286 NULL,
5287 hinst,
5288 NULL);
5290 if (tip_window)
5292 SetWindowLong (tip_window, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
5293 SetWindowLong (tip_window, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
5294 SetWindowLong (tip_window, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
5295 SetWindowLong (tip_window, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
5297 /* Tip frames have no scrollbars. */
5298 SetWindowLong (tip_window, WND_SCROLLBAR_INDEX, 0);
5300 /* Do this to discard the default setting specified by our parent. */
5301 ShowWindow (tip_window, SW_HIDE);
5306 /* Create and set up the w32 window for frame F. */
5308 static void
5309 w32_window (f, window_prompting, minibuffer_only)
5310 struct frame *f;
5311 long window_prompting;
5312 int minibuffer_only;
5314 BLOCK_INPUT;
5316 /* Use the resource name as the top-level window name
5317 for looking up resources. Make a non-Lisp copy
5318 for the window manager, so GC relocation won't bother it.
5320 Elsewhere we specify the window name for the window manager. */
5323 char *str = (char *) XSTRING (Vx_resource_name)->data;
5324 f->namebuf = (char *) xmalloc (strlen (str) + 1);
5325 strcpy (f->namebuf, str);
5328 my_create_window (f);
5330 validate_x_resource_name ();
5332 /* x_set_name normally ignores requests to set the name if the
5333 requested name is the same as the current name. This is the one
5334 place where that assumption isn't correct; f->name is set, but
5335 the server hasn't been told. */
5337 Lisp_Object name;
5338 int explicit = f->explicit_name;
5340 f->explicit_name = 0;
5341 name = f->name;
5342 f->name = Qnil;
5343 x_set_name (f, name, explicit);
5346 UNBLOCK_INPUT;
5348 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
5349 initialize_frame_menubar (f);
5351 if (FRAME_W32_WINDOW (f) == 0)
5352 error ("Unable to create window");
5355 /* Handle the icon stuff for this window. Perhaps later we might
5356 want an x_set_icon_position which can be called interactively as
5357 well. */
5359 static void
5360 x_icon (f, parms)
5361 struct frame *f;
5362 Lisp_Object parms;
5364 Lisp_Object icon_x, icon_y;
5366 /* Set the position of the icon. Note that Windows 95 groups all
5367 icons in the tray. */
5368 icon_x = w32_get_arg (parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
5369 icon_y = w32_get_arg (parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
5370 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
5372 CHECK_NUMBER (icon_x);
5373 CHECK_NUMBER (icon_y);
5375 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
5376 error ("Both left and top icon corners of icon must be specified");
5378 BLOCK_INPUT;
5380 if (! EQ (icon_x, Qunbound))
5381 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
5383 #if 0 /* TODO */
5384 /* Start up iconic or window? */
5385 x_wm_set_window_state
5386 (f, (EQ (w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon)
5387 ? IconicState
5388 : NormalState));
5390 x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name)
5391 ? f->icon_name
5392 : f->name))->data);
5393 #endif
5395 UNBLOCK_INPUT;
5399 static void
5400 x_make_gc (f)
5401 struct frame *f;
5403 XGCValues gc_values;
5405 BLOCK_INPUT;
5407 /* Create the GC's of this frame.
5408 Note that many default values are used. */
5410 /* Normal video */
5411 gc_values.font = f->output_data.w32->font;
5413 /* Cursor has cursor-color background, background-color foreground. */
5414 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
5415 gc_values.background = f->output_data.w32->cursor_pixel;
5416 f->output_data.w32->cursor_gc
5417 = XCreateGC (NULL, FRAME_W32_WINDOW (f),
5418 (GCFont | GCForeground | GCBackground),
5419 &gc_values);
5421 /* Reliefs. */
5422 f->output_data.w32->white_relief.gc = 0;
5423 f->output_data.w32->black_relief.gc = 0;
5425 UNBLOCK_INPUT;
5429 /* Handler for signals raised during x_create_frame and
5430 x_create_top_frame. FRAME is the frame which is partially
5431 constructed. */
5433 static Lisp_Object
5434 unwind_create_frame (frame)
5435 Lisp_Object frame;
5437 struct frame *f = XFRAME (frame);
5439 /* If frame is ``official'', nothing to do. */
5440 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
5442 #ifdef GLYPH_DEBUG
5443 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5444 #endif
5446 x_free_frame_resources (f);
5448 /* Check that reference counts are indeed correct. */
5449 xassert (dpyinfo->reference_count == dpyinfo_refcount);
5450 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
5452 return Qt;
5455 return Qnil;
5459 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
5460 1, 1, 0,
5461 doc: /* Make a new window, which is called a \"frame\" in Emacs terms.
5462 Returns an Emacs frame object.
5463 ALIST is an alist of frame parameters.
5464 If the parameters specify that the frame should not have a minibuffer,
5465 and do not specify a specific minibuffer window to use,
5466 then `default-minibuffer-frame' must be a frame whose minibuffer can
5467 be shared by the new frame.
5469 This function is an internal primitive--use `make-frame' instead. */)
5470 (parms)
5471 Lisp_Object parms;
5473 struct frame *f;
5474 Lisp_Object frame, tem;
5475 Lisp_Object name;
5476 int minibuffer_only = 0;
5477 long window_prompting = 0;
5478 int width, height;
5479 int count = BINDING_STACK_SIZE ();
5480 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5481 Lisp_Object display;
5482 struct w32_display_info *dpyinfo = NULL;
5483 Lisp_Object parent;
5484 struct kboard *kb;
5486 check_w32 ();
5488 /* Use this general default value to start with
5489 until we know if this frame has a specified name. */
5490 Vx_resource_name = Vinvocation_name;
5492 display = w32_get_arg (parms, Qdisplay, 0, 0, RES_TYPE_STRING);
5493 if (EQ (display, Qunbound))
5494 display = Qnil;
5495 dpyinfo = check_x_display_info (display);
5496 #ifdef MULTI_KBOARD
5497 kb = dpyinfo->kboard;
5498 #else
5499 kb = &the_only_kboard;
5500 #endif
5502 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
5503 if (!STRINGP (name)
5504 && ! EQ (name, Qunbound)
5505 && ! NILP (name))
5506 error ("Invalid frame name--not a string or nil");
5508 if (STRINGP (name))
5509 Vx_resource_name = name;
5511 /* See if parent window is specified. */
5512 parent = w32_get_arg (parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
5513 if (EQ (parent, Qunbound))
5514 parent = Qnil;
5515 if (! NILP (parent))
5516 CHECK_NUMBER (parent);
5518 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
5519 /* No need to protect DISPLAY because that's not used after passing
5520 it to make_frame_without_minibuffer. */
5521 frame = Qnil;
5522 GCPRO4 (parms, parent, name, frame);
5523 tem = w32_get_arg (parms, Qminibuffer, "minibuffer", "Minibuffer",
5524 RES_TYPE_SYMBOL);
5525 if (EQ (tem, Qnone) || NILP (tem))
5526 f = make_frame_without_minibuffer (Qnil, kb, display);
5527 else if (EQ (tem, Qonly))
5529 f = make_minibuffer_frame ();
5530 minibuffer_only = 1;
5532 else if (WINDOWP (tem))
5533 f = make_frame_without_minibuffer (tem, kb, display);
5534 else
5535 f = make_frame (1);
5537 XSETFRAME (frame, f);
5539 /* Note that Windows does support scroll bars. */
5540 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
5541 /* By default, make scrollbars the system standard width. */
5542 f->scroll_bar_pixel_width = GetSystemMetrics (SM_CXVSCROLL);
5544 f->output_method = output_w32;
5545 f->output_data.w32 =
5546 (struct w32_output *) xmalloc (sizeof (struct w32_output));
5547 bzero (f->output_data.w32, sizeof (struct w32_output));
5548 FRAME_FONTSET (f) = -1;
5549 record_unwind_protect (unwind_create_frame, frame);
5551 f->icon_name
5552 = w32_get_arg (parms, Qicon_name, "iconName", "Title", RES_TYPE_STRING);
5553 if (! STRINGP (f->icon_name))
5554 f->icon_name = Qnil;
5556 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
5557 #ifdef MULTI_KBOARD
5558 FRAME_KBOARD (f) = kb;
5559 #endif
5561 /* Specify the parent under which to make this window. */
5563 if (!NILP (parent))
5565 f->output_data.w32->parent_desc = (Window) XFASTINT (parent);
5566 f->output_data.w32->explicit_parent = 1;
5568 else
5570 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5571 f->output_data.w32->explicit_parent = 0;
5574 /* Set the name; the functions to which we pass f expect the name to
5575 be set. */
5576 if (EQ (name, Qunbound) || NILP (name))
5578 f->name = build_string (dpyinfo->w32_id_name);
5579 f->explicit_name = 0;
5581 else
5583 f->name = name;
5584 f->explicit_name = 1;
5585 /* use the frame's title when getting resources for this frame. */
5586 specbind (Qx_resource_name, name);
5589 /* Extract the window parameters from the supplied values
5590 that are needed to determine window geometry. */
5592 Lisp_Object font;
5594 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
5596 BLOCK_INPUT;
5597 /* First, try whatever font the caller has specified. */
5598 if (STRINGP (font))
5600 tem = Fquery_fontset (font, Qnil);
5601 if (STRINGP (tem))
5602 font = x_new_fontset (f, XSTRING (tem)->data);
5603 else
5604 font = x_new_font (f, XSTRING (font)->data);
5606 /* Try out a font which we hope has bold and italic variations. */
5607 if (!STRINGP (font))
5608 font = x_new_font (f, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
5609 if (! STRINGP (font))
5610 font = x_new_font (f, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
5611 /* If those didn't work, look for something which will at least work. */
5612 if (! STRINGP (font))
5613 font = x_new_font (f, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
5614 UNBLOCK_INPUT;
5615 if (! STRINGP (font))
5616 font = build_string ("Fixedsys");
5618 x_default_parameter (f, parms, Qfont, font,
5619 "font", "Font", RES_TYPE_STRING);
5622 x_default_parameter (f, parms, Qborder_width, make_number (2),
5623 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
5624 /* This defaults to 2 in order to match xterm. We recognize either
5625 internalBorderWidth or internalBorder (which is what xterm calls
5626 it). */
5627 if (NILP (Fassq (Qinternal_border_width, parms)))
5629 Lisp_Object value;
5631 value = w32_get_arg (parms, Qinternal_border_width,
5632 "internalBorder", "InternalBorder", RES_TYPE_NUMBER);
5633 if (! EQ (value, Qunbound))
5634 parms = Fcons (Fcons (Qinternal_border_width, value),
5635 parms);
5637 /* Default internalBorderWidth to 0 on Windows to match other programs. */
5638 x_default_parameter (f, parms, Qinternal_border_width, make_number (0),
5639 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER);
5640 x_default_parameter (f, parms, Qvertical_scroll_bars, Qright,
5641 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL);
5643 /* Also do the stuff which must be set before the window exists. */
5644 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
5645 "foreground", "Foreground", RES_TYPE_STRING);
5646 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
5647 "background", "Background", RES_TYPE_STRING);
5648 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
5649 "pointerColor", "Foreground", RES_TYPE_STRING);
5650 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
5651 "cursorColor", "Foreground", RES_TYPE_STRING);
5652 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
5653 "borderColor", "BorderColor", RES_TYPE_STRING);
5654 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
5655 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
5656 x_default_parameter (f, parms, Qline_spacing, Qnil,
5657 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
5658 x_default_parameter (f, parms, Qleft_fringe, Qnil,
5659 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
5660 x_default_parameter (f, parms, Qright_fringe, Qnil,
5661 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
5664 /* Init faces before x_default_parameter is called for scroll-bar
5665 parameters because that function calls x_set_scroll_bar_width,
5666 which calls change_frame_size, which calls Fset_window_buffer,
5667 which runs hooks, which call Fvertical_motion. At the end, we
5668 end up in init_iterator with a null face cache, which should not
5669 happen. */
5670 init_frame_faces (f);
5672 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
5673 "menuBar", "MenuBar", RES_TYPE_NUMBER);
5674 x_default_parameter (f, parms, Qtool_bar_lines, make_number (0),
5675 "toolBar", "ToolBar", RES_TYPE_NUMBER);
5676 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
5677 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL);
5678 x_default_parameter (f, parms, Qtitle, Qnil,
5679 "title", "Title", RES_TYPE_STRING);
5680 x_default_parameter (f, parms, Qfullscreen, Qnil,
5681 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
5683 f->output_data.w32->dwStyle = WS_OVERLAPPEDWINDOW;
5684 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5686 /* Add the tool-bar height to the initial frame height so that the
5687 user gets a text display area of the size he specified with -g or
5688 via .Xdefaults. Later changes of the tool-bar height don't
5689 change the frame size. This is done so that users can create
5690 tall Emacs frames without having to guess how tall the tool-bar
5691 will get. */
5692 if (FRAME_TOOL_BAR_LINES (f))
5694 int margin, relief, bar_height;
5696 relief = (tool_bar_button_relief >= 0
5697 ? tool_bar_button_relief
5698 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
5700 if (INTEGERP (Vtool_bar_button_margin)
5701 && XINT (Vtool_bar_button_margin) > 0)
5702 margin = XFASTINT (Vtool_bar_button_margin);
5703 else if (CONSP (Vtool_bar_button_margin)
5704 && INTEGERP (XCDR (Vtool_bar_button_margin))
5705 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
5706 margin = XFASTINT (XCDR (Vtool_bar_button_margin));
5707 else
5708 margin = 0;
5710 bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
5711 f->height += (bar_height + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
5714 window_prompting = x_figure_window_size (f, parms);
5716 if (window_prompting & XNegative)
5718 if (window_prompting & YNegative)
5719 f->output_data.w32->win_gravity = SouthEastGravity;
5720 else
5721 f->output_data.w32->win_gravity = NorthEastGravity;
5723 else
5725 if (window_prompting & YNegative)
5726 f->output_data.w32->win_gravity = SouthWestGravity;
5727 else
5728 f->output_data.w32->win_gravity = NorthWestGravity;
5731 f->output_data.w32->size_hint_flags = window_prompting;
5733 tem = w32_get_arg (parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
5734 f->no_split = minibuffer_only || EQ (tem, Qt);
5736 w32_window (f, window_prompting, minibuffer_only);
5737 x_icon (f, parms);
5739 x_make_gc (f);
5741 /* Now consider the frame official. */
5742 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
5743 Vframe_list = Fcons (frame, Vframe_list);
5745 /* We need to do this after creating the window, so that the
5746 icon-creation functions can say whose icon they're describing. */
5747 x_default_parameter (f, parms, Qicon_type, Qnil,
5748 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
5750 x_default_parameter (f, parms, Qauto_raise, Qnil,
5751 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5752 x_default_parameter (f, parms, Qauto_lower, Qnil,
5753 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5754 x_default_parameter (f, parms, Qcursor_type, Qbox,
5755 "cursorType", "CursorType", RES_TYPE_SYMBOL);
5756 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
5757 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER);
5759 /* Dimensions, especially f->height, must be done via change_frame_size.
5760 Change will not be effected unless different from the current
5761 f->height. */
5762 width = f->width;
5763 height = f->height;
5765 f->height = 0;
5766 SET_FRAME_WIDTH (f, 0);
5767 change_frame_size (f, height, width, 1, 0, 0);
5769 /* Tell the server what size and position, etc, we want, and how
5770 badly we want them. This should be done after we have the menu
5771 bar so that its size can be taken into account. */
5772 BLOCK_INPUT;
5773 x_wm_set_size_hint (f, window_prompting, 0);
5774 UNBLOCK_INPUT;
5776 /* Avoid a bug that causes the new frame to never become visible if
5777 an echo area message is displayed during the following call1. */
5778 specbind(Qredisplay_dont_pause, Qt);
5780 /* Set up faces after all frame parameters are known. This call
5781 also merges in face attributes specified for new frames. If we
5782 don't do this, the `menu' face for instance won't have the right
5783 colors, and the menu bar won't appear in the specified colors for
5784 new frames. */
5785 call1 (Qface_set_after_frame_default, frame);
5787 /* Make the window appear on the frame and enable display, unless
5788 the caller says not to. However, with explicit parent, Emacs
5789 cannot control visibility, so don't try. */
5790 if (! f->output_data.w32->explicit_parent)
5792 Lisp_Object visibility;
5794 visibility = w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
5795 if (EQ (visibility, Qunbound))
5796 visibility = Qt;
5798 if (EQ (visibility, Qicon))
5799 x_iconify_frame (f);
5800 else if (! NILP (visibility))
5801 x_make_frame_visible (f);
5802 else
5803 /* Must have been Qnil. */
5806 UNGCPRO;
5808 /* Make sure windows on this frame appear in calls to next-window
5809 and similar functions. */
5810 Vwindow_list = Qnil;
5812 return unbind_to (count, frame);
5815 /* FRAME is used only to get a handle on the X display. We don't pass the
5816 display info directly because we're called from frame.c, which doesn't
5817 know about that structure. */
5818 Lisp_Object
5819 x_get_focus_frame (frame)
5820 struct frame *frame;
5822 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (frame);
5823 Lisp_Object xfocus;
5824 if (! dpyinfo->w32_focus_frame)
5825 return Qnil;
5827 XSETFRAME (xfocus, dpyinfo->w32_focus_frame);
5828 return xfocus;
5831 DEFUN ("w32-focus-frame", Fw32_focus_frame, Sw32_focus_frame, 1, 1, 0,
5832 doc: /* Give FRAME input focus, raising to foreground if necessary. */)
5833 (frame)
5834 Lisp_Object frame;
5836 x_focus_on_frame (check_x_frame (frame));
5837 return Qnil;
5841 /* Return the charset portion of a font name. */
5842 char * xlfd_charset_of_font (char * fontname)
5844 char *charset, *encoding;
5846 encoding = strrchr(fontname, '-');
5847 if (!encoding || encoding == fontname)
5848 return NULL;
5850 for (charset = encoding - 1; charset >= fontname; charset--)
5851 if (*charset == '-')
5852 break;
5854 if (charset == fontname || strcmp(charset, "-*-*") == 0)
5855 return NULL;
5857 return charset + 1;
5860 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
5861 int size, char* filename);
5862 static Lisp_Object w32_list_bdf_fonts (Lisp_Object pattern, int max_names);
5863 static BOOL w32_to_x_font (LOGFONT * lplf, char * lpxstr, int len,
5864 char * charset);
5865 static BOOL x_to_w32_font (char *lpxstr, LOGFONT *lplogfont);
5867 static struct font_info *
5868 w32_load_system_font (f,fontname,size)
5869 struct frame *f;
5870 char * fontname;
5871 int size;
5873 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5874 Lisp_Object font_names;
5876 /* Get a list of all the fonts that match this name. Once we
5877 have a list of matching fonts, we compare them against the fonts
5878 we already have loaded by comparing names. */
5879 font_names = w32_list_fonts (f, build_string (fontname), size, 100);
5881 if (!NILP (font_names))
5883 Lisp_Object tail;
5884 int i;
5886 /* First check if any are already loaded, as that is cheaper
5887 than loading another one. */
5888 for (i = 0; i < dpyinfo->n_fonts; i++)
5889 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
5890 if (dpyinfo->font_table[i].name
5891 && (!strcmp (dpyinfo->font_table[i].name,
5892 XSTRING (XCAR (tail))->data)
5893 || !strcmp (dpyinfo->font_table[i].full_name,
5894 XSTRING (XCAR (tail))->data)))
5895 return (dpyinfo->font_table + i);
5897 fontname = (char *) XSTRING (XCAR (font_names))->data;
5899 else if (w32_strict_fontnames)
5901 /* If EnumFontFamiliesEx was available, we got a full list of
5902 fonts back so stop now to avoid the possibility of loading a
5903 random font. If we had to fall back to EnumFontFamilies, the
5904 list is incomplete, so continue whether the font we want was
5905 listed or not. */
5906 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
5907 FARPROC enum_font_families_ex
5908 = GetProcAddress (gdi32, "EnumFontFamiliesExA");
5909 if (enum_font_families_ex)
5910 return NULL;
5913 /* Load the font and add it to the table. */
5915 char *full_name, *encoding, *charset;
5916 XFontStruct *font;
5917 struct font_info *fontp;
5918 LOGFONT lf;
5919 BOOL ok;
5920 int codepage;
5921 int i;
5923 if (!fontname || !x_to_w32_font (fontname, &lf))
5924 return (NULL);
5926 if (!*lf.lfFaceName)
5927 /* If no name was specified for the font, we get a random font
5928 from CreateFontIndirect - this is not particularly
5929 desirable, especially since CreateFontIndirect does not
5930 fill out the missing name in lf, so we never know what we
5931 ended up with. */
5932 return NULL;
5934 /* Specify anti-aliasing to prevent Cleartype fonts being used,
5935 since those fonts leave garbage behind. */
5936 lf.lfQuality = ANTIALIASED_QUALITY;
5938 font = (XFontStruct *) xmalloc (sizeof (XFontStruct));
5939 bzero (font, sizeof (*font));
5941 /* Set bdf to NULL to indicate that this is a Windows font. */
5942 font->bdf = NULL;
5944 BLOCK_INPUT;
5946 font->hfont = CreateFontIndirect (&lf);
5948 if (font->hfont == NULL)
5950 ok = FALSE;
5952 else
5954 HDC hdc;
5955 HANDLE oldobj;
5957 codepage = w32_codepage_for_font (fontname);
5959 hdc = GetDC (dpyinfo->root_window);
5960 oldobj = SelectObject (hdc, font->hfont);
5962 ok = GetTextMetrics (hdc, &font->tm);
5963 if (codepage == CP_UNICODE)
5964 font->double_byte_p = 1;
5965 else
5967 /* Unfortunately, some fonts (eg. MingLiU, a big5 ttf font)
5968 don't report themselves as double byte fonts, when
5969 patently they are. So instead of trusting
5970 GetFontLanguageInfo, we check the properties of the
5971 codepage directly, since that is ultimately what we are
5972 working from anyway. */
5973 /* font->double_byte_p = GetFontLanguageInfo(hdc) & GCP_DBCS; */
5974 CPINFO cpi = {0};
5975 GetCPInfo (codepage, &cpi);
5976 font->double_byte_p = cpi.MaxCharSize > 1;
5979 SelectObject (hdc, oldobj);
5980 ReleaseDC (dpyinfo->root_window, hdc);
5981 /* Fill out details in lf according to the font that was
5982 actually loaded. */
5983 lf.lfHeight = font->tm.tmInternalLeading - font->tm.tmHeight;
5984 lf.lfWidth = font->tm.tmAveCharWidth;
5985 lf.lfWeight = font->tm.tmWeight;
5986 lf.lfItalic = font->tm.tmItalic;
5987 lf.lfCharSet = font->tm.tmCharSet;
5988 lf.lfPitchAndFamily = ((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH)
5989 ? VARIABLE_PITCH : FIXED_PITCH);
5990 lf.lfOutPrecision = ((font->tm.tmPitchAndFamily & TMPF_VECTOR)
5991 ? OUT_STROKE_PRECIS : OUT_STRING_PRECIS);
5993 w32_cache_char_metrics (font);
5996 UNBLOCK_INPUT;
5998 if (!ok)
6000 w32_unload_font (dpyinfo, font);
6001 return (NULL);
6004 /* Find a free slot in the font table. */
6005 for (i = 0; i < dpyinfo->n_fonts; ++i)
6006 if (dpyinfo->font_table[i].name == NULL)
6007 break;
6009 /* If no free slot found, maybe enlarge the font table. */
6010 if (i == dpyinfo->n_fonts
6011 && dpyinfo->n_fonts == dpyinfo->font_table_size)
6013 int sz;
6014 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
6015 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
6016 dpyinfo->font_table
6017 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
6020 fontp = dpyinfo->font_table + i;
6021 if (i == dpyinfo->n_fonts)
6022 ++dpyinfo->n_fonts;
6024 /* Now fill in the slots of *FONTP. */
6025 BLOCK_INPUT;
6026 fontp->font = font;
6027 fontp->font_idx = i;
6028 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
6029 bcopy (fontname, fontp->name, strlen (fontname) + 1);
6031 charset = xlfd_charset_of_font (fontname);
6033 /* Cache the W32 codepage for a font. This makes w32_encode_char
6034 (called for every glyph during redisplay) much faster. */
6035 fontp->codepage = codepage;
6037 /* Work out the font's full name. */
6038 full_name = (char *)xmalloc (100);
6039 if (full_name && w32_to_x_font (&lf, full_name, 100, charset))
6040 fontp->full_name = full_name;
6041 else
6043 /* If all else fails - just use the name we used to load it. */
6044 xfree (full_name);
6045 fontp->full_name = fontp->name;
6048 fontp->size = FONT_WIDTH (font);
6049 fontp->height = FONT_HEIGHT (font);
6051 /* The slot `encoding' specifies how to map a character
6052 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
6053 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
6054 (0:0x20..0x7F, 1:0xA0..0xFF,
6055 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
6056 2:0xA020..0xFF7F). For the moment, we don't know which charset
6057 uses this font. So, we set information in fontp->encoding[1]
6058 which is never used by any charset. If mapping can't be
6059 decided, set FONT_ENCODING_NOT_DECIDED. */
6061 /* SJIS fonts need to be set to type 4, all others seem to work as
6062 type FONT_ENCODING_NOT_DECIDED. */
6063 encoding = strrchr (fontp->name, '-');
6064 if (encoding && strnicmp (encoding+1, "sjis", 4) == 0)
6065 fontp->encoding[1] = 4;
6066 else
6067 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED;
6069 /* The following three values are set to 0 under W32, which is
6070 what they get set to if XGetFontProperty fails under X. */
6071 fontp->baseline_offset = 0;
6072 fontp->relative_compose = 0;
6073 fontp->default_ascent = 0;
6075 /* Set global flag fonts_changed_p to non-zero if the font loaded
6076 has a character with a smaller width than any other character
6077 before, or if the font loaded has a smaller height than any
6078 other font loaded before. If this happens, it will make a
6079 glyph matrix reallocation necessary. */
6080 fonts_changed_p |= x_compute_min_glyph_bounds (f);
6081 UNBLOCK_INPUT;
6082 return fontp;
6086 /* Load font named FONTNAME of size SIZE for frame F, and return a
6087 pointer to the structure font_info while allocating it dynamically.
6088 If loading fails, return NULL. */
6089 struct font_info *
6090 w32_load_font (f,fontname,size)
6091 struct frame *f;
6092 char * fontname;
6093 int size;
6095 Lisp_Object bdf_fonts;
6096 struct font_info *retval = NULL;
6098 bdf_fonts = w32_list_bdf_fonts (build_string (fontname), 1);
6100 while (!retval && CONSP (bdf_fonts))
6102 char *bdf_name, *bdf_file;
6103 Lisp_Object bdf_pair;
6105 bdf_name = XSTRING (XCAR (bdf_fonts))->data;
6106 bdf_pair = Fassoc (XCAR (bdf_fonts), Vw32_bdf_filename_alist);
6107 bdf_file = XSTRING (XCDR (bdf_pair))->data;
6109 retval = w32_load_bdf_font (f, bdf_name, size, bdf_file);
6111 bdf_fonts = XCDR (bdf_fonts);
6114 if (retval)
6115 return retval;
6117 return w32_load_system_font(f, fontname, size);
6121 void
6122 w32_unload_font (dpyinfo, font)
6123 struct w32_display_info *dpyinfo;
6124 XFontStruct * font;
6126 if (font)
6128 if (font->per_char) xfree (font->per_char);
6129 if (font->bdf) w32_free_bdf_font (font->bdf);
6131 if (font->hfont) DeleteObject(font->hfont);
6132 xfree (font);
6136 /* The font conversion stuff between x and w32 */
6138 /* X font string is as follows (from faces.el)
6139 * (let ((- "[-?]")
6140 * (foundry "[^-]+")
6141 * (family "[^-]+")
6142 * (weight "\\(bold\\|demibold\\|medium\\)") ; 1
6143 * (weight\? "\\([^-]*\\)") ; 1
6144 * (slant "\\([ior]\\)") ; 2
6145 * (slant\? "\\([^-]?\\)") ; 2
6146 * (swidth "\\([^-]*\\)") ; 3
6147 * (adstyle "[^-]*") ; 4
6148 * (pixelsize "[0-9]+")
6149 * (pointsize "[0-9][0-9]+")
6150 * (resx "[0-9][0-9]+")
6151 * (resy "[0-9][0-9]+")
6152 * (spacing "[cmp?*]")
6153 * (avgwidth "[0-9]+")
6154 * (registry "[^-]+")
6155 * (encoding "[^-]+")
6159 static LONG
6160 x_to_w32_weight (lpw)
6161 char * lpw;
6163 if (!lpw) return (FW_DONTCARE);
6165 if (stricmp (lpw,"heavy") == 0) return FW_HEAVY;
6166 else if (stricmp (lpw,"extrabold") == 0) return FW_EXTRABOLD;
6167 else if (stricmp (lpw,"bold") == 0) return FW_BOLD;
6168 else if (stricmp (lpw,"demibold") == 0) return FW_SEMIBOLD;
6169 else if (stricmp (lpw,"semibold") == 0) return FW_SEMIBOLD;
6170 else if (stricmp (lpw,"medium") == 0) return FW_MEDIUM;
6171 else if (stricmp (lpw,"normal") == 0) return FW_NORMAL;
6172 else if (stricmp (lpw,"light") == 0) return FW_LIGHT;
6173 else if (stricmp (lpw,"extralight") == 0) return FW_EXTRALIGHT;
6174 else if (stricmp (lpw,"thin") == 0) return FW_THIN;
6175 else
6176 return FW_DONTCARE;
6180 static char *
6181 w32_to_x_weight (fnweight)
6182 int fnweight;
6184 if (fnweight >= FW_HEAVY) return "heavy";
6185 if (fnweight >= FW_EXTRABOLD) return "extrabold";
6186 if (fnweight >= FW_BOLD) return "bold";
6187 if (fnweight >= FW_SEMIBOLD) return "demibold";
6188 if (fnweight >= FW_MEDIUM) return "medium";
6189 if (fnweight >= FW_NORMAL) return "normal";
6190 if (fnweight >= FW_LIGHT) return "light";
6191 if (fnweight >= FW_EXTRALIGHT) return "extralight";
6192 if (fnweight >= FW_THIN) return "thin";
6193 else
6194 return "*";
6197 static LONG
6198 x_to_w32_charset (lpcs)
6199 char * lpcs;
6201 Lisp_Object this_entry, w32_charset;
6202 char *charset;
6203 int len = strlen (lpcs);
6205 /* Support "*-#nnn" format for unknown charsets. */
6206 if (strncmp (lpcs, "*-#", 3) == 0)
6207 return atoi (lpcs + 3);
6209 /* Handle wildcards by ignoring them; eg. treat "big5*-*" as "big5". */
6210 charset = alloca (len + 1);
6211 strcpy (charset, lpcs);
6212 lpcs = strchr (charset, '*');
6213 if (lpcs)
6214 *lpcs = 0;
6216 /* Look through w32-charset-info-alist for the character set.
6217 Format of each entry is
6218 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
6220 this_entry = Fassoc (build_string(charset), Vw32_charset_info_alist);
6222 if (NILP(this_entry))
6224 /* At startup, we want iso8859-1 fonts to come up properly. */
6225 if (stricmp(charset, "iso8859-1") == 0)
6226 return ANSI_CHARSET;
6227 else
6228 return DEFAULT_CHARSET;
6231 w32_charset = Fcar (Fcdr (this_entry));
6233 /* Translate Lisp symbol to number. */
6234 if (w32_charset == Qw32_charset_ansi)
6235 return ANSI_CHARSET;
6236 if (w32_charset == Qw32_charset_symbol)
6237 return SYMBOL_CHARSET;
6238 if (w32_charset == Qw32_charset_shiftjis)
6239 return SHIFTJIS_CHARSET;
6240 if (w32_charset == Qw32_charset_hangeul)
6241 return HANGEUL_CHARSET;
6242 if (w32_charset == Qw32_charset_chinesebig5)
6243 return CHINESEBIG5_CHARSET;
6244 if (w32_charset == Qw32_charset_gb2312)
6245 return GB2312_CHARSET;
6246 if (w32_charset == Qw32_charset_oem)
6247 return OEM_CHARSET;
6248 #ifdef JOHAB_CHARSET
6249 if (w32_charset == Qw32_charset_johab)
6250 return JOHAB_CHARSET;
6251 if (w32_charset == Qw32_charset_easteurope)
6252 return EASTEUROPE_CHARSET;
6253 if (w32_charset == Qw32_charset_turkish)
6254 return TURKISH_CHARSET;
6255 if (w32_charset == Qw32_charset_baltic)
6256 return BALTIC_CHARSET;
6257 if (w32_charset == Qw32_charset_russian)
6258 return RUSSIAN_CHARSET;
6259 if (w32_charset == Qw32_charset_arabic)
6260 return ARABIC_CHARSET;
6261 if (w32_charset == Qw32_charset_greek)
6262 return GREEK_CHARSET;
6263 if (w32_charset == Qw32_charset_hebrew)
6264 return HEBREW_CHARSET;
6265 if (w32_charset == Qw32_charset_vietnamese)
6266 return VIETNAMESE_CHARSET;
6267 if (w32_charset == Qw32_charset_thai)
6268 return THAI_CHARSET;
6269 if (w32_charset == Qw32_charset_mac)
6270 return MAC_CHARSET;
6271 #endif /* JOHAB_CHARSET */
6272 #ifdef UNICODE_CHARSET
6273 if (w32_charset == Qw32_charset_unicode)
6274 return UNICODE_CHARSET;
6275 #endif
6277 return DEFAULT_CHARSET;
6281 static char *
6282 w32_to_x_charset (fncharset)
6283 int fncharset;
6285 static char buf[32];
6286 Lisp_Object charset_type;
6288 switch (fncharset)
6290 case ANSI_CHARSET:
6291 /* Handle startup case of w32-charset-info-alist not
6292 being set up yet. */
6293 if (NILP(Vw32_charset_info_alist))
6294 return "iso8859-1";
6295 charset_type = Qw32_charset_ansi;
6296 break;
6297 case DEFAULT_CHARSET:
6298 charset_type = Qw32_charset_default;
6299 break;
6300 case SYMBOL_CHARSET:
6301 charset_type = Qw32_charset_symbol;
6302 break;
6303 case SHIFTJIS_CHARSET:
6304 charset_type = Qw32_charset_shiftjis;
6305 break;
6306 case HANGEUL_CHARSET:
6307 charset_type = Qw32_charset_hangeul;
6308 break;
6309 case GB2312_CHARSET:
6310 charset_type = Qw32_charset_gb2312;
6311 break;
6312 case CHINESEBIG5_CHARSET:
6313 charset_type = Qw32_charset_chinesebig5;
6314 break;
6315 case OEM_CHARSET:
6316 charset_type = Qw32_charset_oem;
6317 break;
6319 /* More recent versions of Windows (95 and NT4.0) define more
6320 character sets. */
6321 #ifdef EASTEUROPE_CHARSET
6322 case EASTEUROPE_CHARSET:
6323 charset_type = Qw32_charset_easteurope;
6324 break;
6325 case TURKISH_CHARSET:
6326 charset_type = Qw32_charset_turkish;
6327 break;
6328 case BALTIC_CHARSET:
6329 charset_type = Qw32_charset_baltic;
6330 break;
6331 case RUSSIAN_CHARSET:
6332 charset_type = Qw32_charset_russian;
6333 break;
6334 case ARABIC_CHARSET:
6335 charset_type = Qw32_charset_arabic;
6336 break;
6337 case GREEK_CHARSET:
6338 charset_type = Qw32_charset_greek;
6339 break;
6340 case HEBREW_CHARSET:
6341 charset_type = Qw32_charset_hebrew;
6342 break;
6343 case VIETNAMESE_CHARSET:
6344 charset_type = Qw32_charset_vietnamese;
6345 break;
6346 case THAI_CHARSET:
6347 charset_type = Qw32_charset_thai;
6348 break;
6349 case MAC_CHARSET:
6350 charset_type = Qw32_charset_mac;
6351 break;
6352 case JOHAB_CHARSET:
6353 charset_type = Qw32_charset_johab;
6354 break;
6355 #endif
6357 #ifdef UNICODE_CHARSET
6358 case UNICODE_CHARSET:
6359 charset_type = Qw32_charset_unicode;
6360 break;
6361 #endif
6362 default:
6363 /* Encode numerical value of unknown charset. */
6364 sprintf (buf, "*-#%u", fncharset);
6365 return buf;
6369 Lisp_Object rest;
6370 char * best_match = NULL;
6372 /* Look through w32-charset-info-alist for the character set.
6373 Prefer ISO codepages, and prefer lower numbers in the ISO
6374 range. Only return charsets for codepages which are installed.
6376 Format of each entry is
6377 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
6379 for (rest = Vw32_charset_info_alist; CONSP (rest); rest = XCDR (rest))
6381 char * x_charset;
6382 Lisp_Object w32_charset;
6383 Lisp_Object codepage;
6385 Lisp_Object this_entry = XCAR (rest);
6387 /* Skip invalid entries in alist. */
6388 if (!CONSP (this_entry) || !STRINGP (XCAR (this_entry))
6389 || !CONSP (XCDR (this_entry))
6390 || !SYMBOLP (XCAR (XCDR (this_entry))))
6391 continue;
6393 x_charset = XSTRING (XCAR (this_entry))->data;
6394 w32_charset = XCAR (XCDR (this_entry));
6395 codepage = XCDR (XCDR (this_entry));
6397 /* Look for Same charset and a valid codepage (or non-int
6398 which means ignore). */
6399 if (w32_charset == charset_type
6400 && (!INTEGERP (codepage) || codepage == CP_DEFAULT
6401 || IsValidCodePage (XINT (codepage))))
6403 /* If we don't have a match already, then this is the
6404 best. */
6405 if (!best_match)
6406 best_match = x_charset;
6407 /* If this is an ISO codepage, and the best so far isn't,
6408 then this is better. */
6409 else if (strnicmp (best_match, "iso", 3) != 0
6410 && strnicmp (x_charset, "iso", 3) == 0)
6411 best_match = x_charset;
6412 /* If both are ISO8859 codepages, choose the one with the
6413 lowest number in the encoding field. */
6414 else if (strnicmp (best_match, "iso8859-", 8) == 0
6415 && strnicmp (x_charset, "iso8859-", 8) == 0)
6417 int best_enc = atoi (best_match + 8);
6418 int this_enc = atoi (x_charset + 8);
6419 if (this_enc > 0 && this_enc < best_enc)
6420 best_match = x_charset;
6425 /* If no match, encode the numeric value. */
6426 if (!best_match)
6428 sprintf (buf, "*-#%u", fncharset);
6429 return buf;
6432 strncpy(buf, best_match, 31);
6433 buf[31] = '\0';
6434 return buf;
6439 /* Return all the X charsets that map to a font. */
6440 static Lisp_Object
6441 w32_to_all_x_charsets (fncharset)
6442 int fncharset;
6444 static char buf[32];
6445 Lisp_Object charset_type;
6446 Lisp_Object retval = Qnil;
6448 switch (fncharset)
6450 case ANSI_CHARSET:
6451 /* Handle startup case of w32-charset-info-alist not
6452 being set up yet. */
6453 if (NILP(Vw32_charset_info_alist))
6454 return "iso8859-1";
6455 charset_type = Qw32_charset_ansi;
6456 break;
6457 case DEFAULT_CHARSET:
6458 charset_type = Qw32_charset_default;
6459 break;
6460 case SYMBOL_CHARSET:
6461 charset_type = Qw32_charset_symbol;
6462 break;
6463 case SHIFTJIS_CHARSET:
6464 charset_type = Qw32_charset_shiftjis;
6465 break;
6466 case HANGEUL_CHARSET:
6467 charset_type = Qw32_charset_hangeul;
6468 break;
6469 case GB2312_CHARSET:
6470 charset_type = Qw32_charset_gb2312;
6471 break;
6472 case CHINESEBIG5_CHARSET:
6473 charset_type = Qw32_charset_chinesebig5;
6474 break;
6475 case OEM_CHARSET:
6476 charset_type = Qw32_charset_oem;
6477 break;
6479 /* More recent versions of Windows (95 and NT4.0) define more
6480 character sets. */
6481 #ifdef EASTEUROPE_CHARSET
6482 case EASTEUROPE_CHARSET:
6483 charset_type = Qw32_charset_easteurope;
6484 break;
6485 case TURKISH_CHARSET:
6486 charset_type = Qw32_charset_turkish;
6487 break;
6488 case BALTIC_CHARSET:
6489 charset_type = Qw32_charset_baltic;
6490 break;
6491 case RUSSIAN_CHARSET:
6492 charset_type = Qw32_charset_russian;
6493 break;
6494 case ARABIC_CHARSET:
6495 charset_type = Qw32_charset_arabic;
6496 break;
6497 case GREEK_CHARSET:
6498 charset_type = Qw32_charset_greek;
6499 break;
6500 case HEBREW_CHARSET:
6501 charset_type = Qw32_charset_hebrew;
6502 break;
6503 case VIETNAMESE_CHARSET:
6504 charset_type = Qw32_charset_vietnamese;
6505 break;
6506 case THAI_CHARSET:
6507 charset_type = Qw32_charset_thai;
6508 break;
6509 case MAC_CHARSET:
6510 charset_type = Qw32_charset_mac;
6511 break;
6512 case JOHAB_CHARSET:
6513 charset_type = Qw32_charset_johab;
6514 break;
6515 #endif
6517 #ifdef UNICODE_CHARSET
6518 case UNICODE_CHARSET:
6519 charset_type = Qw32_charset_unicode;
6520 break;
6521 #endif
6522 default:
6523 /* Encode numerical value of unknown charset. */
6524 sprintf (buf, "*-#%u", fncharset);
6525 return Fcons (build_string (buf), Qnil);
6529 Lisp_Object rest;
6530 /* Look through w32-charset-info-alist for the character set.
6531 Only return charsets for codepages which are installed.
6533 Format of each entry in Vw32_charset_info_alist is
6534 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
6536 for (rest = Vw32_charset_info_alist; CONSP (rest); rest = XCDR (rest))
6538 Lisp_Object x_charset;
6539 Lisp_Object w32_charset;
6540 Lisp_Object codepage;
6542 Lisp_Object this_entry = XCAR (rest);
6544 /* Skip invalid entries in alist. */
6545 if (!CONSP (this_entry) || !STRINGP (XCAR (this_entry))
6546 || !CONSP (XCDR (this_entry))
6547 || !SYMBOLP (XCAR (XCDR (this_entry))))
6548 continue;
6550 x_charset = XCAR (this_entry);
6551 w32_charset = XCAR (XCDR (this_entry));
6552 codepage = XCDR (XCDR (this_entry));
6554 /* Look for Same charset and a valid codepage (or non-int
6555 which means ignore). */
6556 if (w32_charset == charset_type
6557 && (!INTEGERP (codepage) || codepage == CP_DEFAULT
6558 || IsValidCodePage (XINT (codepage))))
6560 retval = Fcons (x_charset, retval);
6564 /* If no match, encode the numeric value. */
6565 if (NILP (retval))
6567 sprintf (buf, "*-#%u", fncharset);
6568 return Fcons (build_string (buf), Qnil);
6571 return retval;
6575 /* Get the Windows codepage corresponding to the specified font. The
6576 charset info in the font name is used to look up
6577 w32-charset-to-codepage-alist. */
6578 int
6579 w32_codepage_for_font (char *fontname)
6581 Lisp_Object codepage, entry;
6582 char *charset_str, *charset, *end;
6584 if (NILP (Vw32_charset_info_alist))
6585 return CP_DEFAULT;
6587 /* Extract charset part of font string. */
6588 charset = xlfd_charset_of_font (fontname);
6590 if (!charset)
6591 return CP_UNKNOWN;
6593 charset_str = (char *) alloca (strlen (charset) + 1);
6594 strcpy (charset_str, charset);
6596 #if 0
6597 /* Remove leading "*-". */
6598 if (strncmp ("*-", charset_str, 2) == 0)
6599 charset = charset_str + 2;
6600 else
6601 #endif
6602 charset = charset_str;
6604 /* Stop match at wildcard (including preceding '-'). */
6605 if (end = strchr (charset, '*'))
6607 if (end > charset && *(end-1) == '-')
6608 end--;
6609 *end = '\0';
6612 entry = Fassoc (build_string(charset), Vw32_charset_info_alist);
6613 if (NILP (entry))
6614 return CP_UNKNOWN;
6616 codepage = Fcdr (Fcdr (entry));
6618 if (NILP (codepage))
6619 return CP_8BIT;
6620 else if (XFASTINT (codepage) == XFASTINT (Qt))
6621 return CP_UNICODE;
6622 else if (INTEGERP (codepage))
6623 return XINT (codepage);
6624 else
6625 return CP_UNKNOWN;
6629 static BOOL
6630 w32_to_x_font (lplogfont, lpxstr, len, specific_charset)
6631 LOGFONT * lplogfont;
6632 char * lpxstr;
6633 int len;
6634 char * specific_charset;
6636 char* fonttype;
6637 char *fontname;
6638 char height_pixels[8];
6639 char height_dpi[8];
6640 char width_pixels[8];
6641 char *fontname_dash;
6642 int display_resy = one_w32_display_info.resy;
6643 int display_resx = one_w32_display_info.resx;
6644 int bufsz;
6645 struct coding_system coding;
6647 if (!lpxstr) abort ();
6649 if (!lplogfont)
6650 return FALSE;
6652 if (lplogfont->lfOutPrecision == OUT_STRING_PRECIS)
6653 fonttype = "raster";
6654 else if (lplogfont->lfOutPrecision == OUT_STROKE_PRECIS)
6655 fonttype = "outline";
6656 else
6657 fonttype = "unknown";
6659 setup_coding_system (Fcheck_coding_system (Vlocale_coding_system),
6660 &coding);
6661 coding.src_multibyte = 0;
6662 coding.dst_multibyte = 1;
6663 coding.mode |= CODING_MODE_LAST_BLOCK;
6664 bufsz = decoding_buffer_size (&coding, LF_FACESIZE);
6666 fontname = alloca(sizeof(*fontname) * bufsz);
6667 decode_coding (&coding, lplogfont->lfFaceName, fontname,
6668 strlen(lplogfont->lfFaceName), bufsz - 1);
6669 *(fontname + coding.produced) = '\0';
6671 /* Replace dashes with underscores so the dashes are not
6672 misinterpreted. */
6673 fontname_dash = fontname;
6674 while (fontname_dash = strchr (fontname_dash, '-'))
6675 *fontname_dash = '_';
6677 if (lplogfont->lfHeight)
6679 sprintf (height_pixels, "%u", abs (lplogfont->lfHeight));
6680 sprintf (height_dpi, "%u",
6681 abs (lplogfont->lfHeight) * 720 / display_resy);
6683 else
6685 strcpy (height_pixels, "*");
6686 strcpy (height_dpi, "*");
6688 if (lplogfont->lfWidth)
6689 sprintf (width_pixels, "%u", lplogfont->lfWidth * 10);
6690 else
6691 strcpy (width_pixels, "*");
6693 _snprintf (lpxstr, len - 1,
6694 "-%s-%s-%s-%c-normal-normal-%s-%s-%d-%d-%c-%s-%s",
6695 fonttype, /* foundry */
6696 fontname, /* family */
6697 w32_to_x_weight (lplogfont->lfWeight), /* weight */
6698 lplogfont->lfItalic?'i':'r', /* slant */
6699 /* setwidth name */
6700 /* add style name */
6701 height_pixels, /* pixel size */
6702 height_dpi, /* point size */
6703 display_resx, /* resx */
6704 display_resy, /* resy */
6705 ((lplogfont->lfPitchAndFamily & 0x3) == VARIABLE_PITCH)
6706 ? 'p' : 'c', /* spacing */
6707 width_pixels, /* avg width */
6708 specific_charset ? specific_charset
6709 : w32_to_x_charset (lplogfont->lfCharSet)
6710 /* charset registry and encoding */
6713 lpxstr[len - 1] = 0; /* just to be sure */
6714 return (TRUE);
6717 static BOOL
6718 x_to_w32_font (lpxstr, lplogfont)
6719 char * lpxstr;
6720 LOGFONT * lplogfont;
6722 struct coding_system coding;
6724 if (!lplogfont) return (FALSE);
6726 memset (lplogfont, 0, sizeof (*lplogfont));
6728 /* Set default value for each field. */
6729 #if 1
6730 lplogfont->lfOutPrecision = OUT_DEFAULT_PRECIS;
6731 lplogfont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
6732 lplogfont->lfQuality = DEFAULT_QUALITY;
6733 #else
6734 /* go for maximum quality */
6735 lplogfont->lfOutPrecision = OUT_STROKE_PRECIS;
6736 lplogfont->lfClipPrecision = CLIP_STROKE_PRECIS;
6737 lplogfont->lfQuality = PROOF_QUALITY;
6738 #endif
6740 lplogfont->lfCharSet = DEFAULT_CHARSET;
6741 lplogfont->lfWeight = FW_DONTCARE;
6742 lplogfont->lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
6744 if (!lpxstr)
6745 return FALSE;
6747 /* Provide a simple escape mechanism for specifying Windows font names
6748 * directly -- if font spec does not beginning with '-', assume this
6749 * format:
6750 * "<font name>[:height in pixels[:width in pixels[:weight]]]"
6753 if (*lpxstr == '-')
6755 int fields, tem;
6756 char name[50], weight[20], slant, pitch, pixels[10], height[10],
6757 width[10], resy[10], remainder[50];
6758 char * encoding;
6759 int dpi = one_w32_display_info.resy;
6761 fields = sscanf (lpxstr,
6762 "-%*[^-]-%49[^-]-%19[^-]-%c-%*[^-]-%*[^-]-%9[^-]-%9[^-]-%*[^-]-%9[^-]-%c-%9[^-]-%49s",
6763 name, weight, &slant, pixels, height, resy, &pitch, width, remainder);
6764 if (fields == EOF)
6765 return (FALSE);
6767 /* In the general case when wildcards cover more than one field,
6768 we don't know which field is which, so don't fill any in.
6769 However, we need to cope with this particular form, which is
6770 generated by font_list_1 (invoked by try_font_list):
6771 "-raster-6x10-*-gb2312*-*"
6772 and make sure to correctly parse the charset field. */
6773 if (fields == 3)
6775 fields = sscanf (lpxstr,
6776 "-%*[^-]-%49[^-]-*-%49s",
6777 name, remainder);
6779 else if (fields < 9)
6781 fields = 0;
6782 remainder[0] = 0;
6785 if (fields > 0 && name[0] != '*')
6787 int bufsize;
6788 unsigned char *buf;
6790 setup_coding_system
6791 (Fcheck_coding_system (Vlocale_coding_system), &coding);
6792 coding.src_multibyte = 1;
6793 coding.dst_multibyte = 1;
6794 bufsize = encoding_buffer_size (&coding, strlen (name));
6795 buf = (unsigned char *) alloca (bufsize);
6796 coding.mode |= CODING_MODE_LAST_BLOCK;
6797 encode_coding (&coding, name, buf, strlen (name), bufsize);
6798 if (coding.produced >= LF_FACESIZE)
6799 coding.produced = LF_FACESIZE - 1;
6800 buf[coding.produced] = 0;
6801 strcpy (lplogfont->lfFaceName, buf);
6803 else
6805 lplogfont->lfFaceName[0] = '\0';
6808 fields--;
6810 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
6812 fields--;
6814 lplogfont->lfItalic = (fields > 0 && slant == 'i');
6816 fields--;
6818 if (fields > 0 && pixels[0] != '*')
6819 lplogfont->lfHeight = atoi (pixels);
6821 fields--;
6822 fields--;
6823 if (fields > 0 && resy[0] != '*')
6825 tem = atoi (resy);
6826 if (tem > 0) dpi = tem;
6829 if (fields > -1 && lplogfont->lfHeight == 0 && height[0] != '*')
6830 lplogfont->lfHeight = atoi (height) * dpi / 720;
6832 if (fields > 0)
6833 lplogfont->lfPitchAndFamily =
6834 (fields > 0 && pitch == 'p') ? VARIABLE_PITCH : FIXED_PITCH;
6836 fields--;
6838 if (fields > 0 && width[0] != '*')
6839 lplogfont->lfWidth = atoi (width) / 10;
6841 fields--;
6843 /* Strip the trailing '-' if present. (it shouldn't be, as it
6844 fails the test against xlfd-tight-regexp in fontset.el). */
6846 int len = strlen (remainder);
6847 if (len > 0 && remainder[len-1] == '-')
6848 remainder[len-1] = 0;
6850 encoding = remainder;
6851 #if 0
6852 if (strncmp (encoding, "*-", 2) == 0)
6853 encoding += 2;
6854 #endif
6855 lplogfont->lfCharSet = x_to_w32_charset (encoding);
6857 else
6859 int fields;
6860 char name[100], height[10], width[10], weight[20];
6862 fields = sscanf (lpxstr,
6863 "%99[^:]:%9[^:]:%9[^:]:%19s",
6864 name, height, width, weight);
6866 if (fields == EOF) return (FALSE);
6868 if (fields > 0)
6870 strncpy (lplogfont->lfFaceName,name, LF_FACESIZE);
6871 lplogfont->lfFaceName[LF_FACESIZE-1] = 0;
6873 else
6875 lplogfont->lfFaceName[0] = 0;
6878 fields--;
6880 if (fields > 0)
6881 lplogfont->lfHeight = atoi (height);
6883 fields--;
6885 if (fields > 0)
6886 lplogfont->lfWidth = atoi (width);
6888 fields--;
6890 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
6893 /* This makes TrueType fonts work better. */
6894 lplogfont->lfHeight = - abs (lplogfont->lfHeight);
6896 return (TRUE);
6899 /* Strip the pixel height and point height from the given xlfd, and
6900 return the pixel height. If no pixel height is specified, calculate
6901 one from the point height, or if that isn't defined either, return
6902 0 (which usually signifies a scalable font).
6904 static int
6905 xlfd_strip_height (char *fontname)
6907 int pixel_height, field_number;
6908 char *read_from, *write_to;
6910 xassert (fontname);
6912 pixel_height = field_number = 0;
6913 write_to = NULL;
6915 /* Look for height fields. */
6916 for (read_from = fontname; *read_from; read_from++)
6918 if (*read_from == '-')
6920 field_number++;
6921 if (field_number == 7) /* Pixel height. */
6923 read_from++;
6924 write_to = read_from;
6926 /* Find end of field. */
6927 for (;*read_from && *read_from != '-'; read_from++)
6930 /* Split the fontname at end of field. */
6931 if (*read_from)
6933 *read_from = '\0';
6934 read_from++;
6936 pixel_height = atoi (write_to);
6937 /* Blank out field. */
6938 if (read_from > write_to)
6940 *write_to = '-';
6941 write_to++;
6943 /* If the pixel height field is at the end (partial xlfd),
6944 return now. */
6945 else
6946 return pixel_height;
6948 /* If we got a pixel height, the point height can be
6949 ignored. Just blank it out and break now. */
6950 if (pixel_height)
6952 /* Find end of point size field. */
6953 for (; *read_from && *read_from != '-'; read_from++)
6956 if (*read_from)
6957 read_from++;
6959 /* Blank out the point size field. */
6960 if (read_from > write_to)
6962 *write_to = '-';
6963 write_to++;
6965 else
6966 return pixel_height;
6968 break;
6970 /* If the point height is already blank, break now. */
6971 if (*read_from == '-')
6973 read_from++;
6974 break;
6977 else if (field_number == 8)
6979 /* If we didn't get a pixel height, try to get the point
6980 height and convert that. */
6981 int point_size;
6982 char *point_size_start = read_from++;
6984 /* Find end of field. */
6985 for (; *read_from && *read_from != '-'; read_from++)
6988 if (*read_from)
6990 *read_from = '\0';
6991 read_from++;
6994 point_size = atoi (point_size_start);
6996 /* Convert to pixel height. */
6997 pixel_height = point_size
6998 * one_w32_display_info.height_in / 720;
7000 /* Blank out this field and break. */
7001 *write_to = '-';
7002 write_to++;
7003 break;
7008 /* Shift the rest of the font spec into place. */
7009 if (write_to && read_from > write_to)
7011 for (; *read_from; read_from++, write_to++)
7012 *write_to = *read_from;
7013 *write_to = '\0';
7016 return pixel_height;
7019 /* Assume parameter 1 is fully qualified, no wildcards. */
7020 static BOOL
7021 w32_font_match (fontname, pattern)
7022 char * fontname;
7023 char * pattern;
7025 char *regex = alloca (strlen (pattern) * 2 + 3);
7026 char *font_name_copy = alloca (strlen (fontname) + 1);
7027 char *ptr;
7029 /* Copy fontname so we can modify it during comparison. */
7030 strcpy (font_name_copy, fontname);
7032 ptr = regex;
7033 *ptr++ = '^';
7035 /* Turn pattern into a regexp and do a regexp match. */
7036 for (; *pattern; pattern++)
7038 if (*pattern == '?')
7039 *ptr++ = '.';
7040 else if (*pattern == '*')
7042 *ptr++ = '.';
7043 *ptr++ = '*';
7045 else
7046 *ptr++ = *pattern;
7048 *ptr = '$';
7049 *(ptr + 1) = '\0';
7051 /* Strip out font heights and compare them seperately, since
7052 rounding error can cause mismatches. This also allows a
7053 comparison between a font that declares only a pixel height and a
7054 pattern that declares the point height.
7057 int font_height, pattern_height;
7059 font_height = xlfd_strip_height (font_name_copy);
7060 pattern_height = xlfd_strip_height (regex);
7062 /* Compare now, and don't bother doing expensive regexp matching
7063 if the heights differ. */
7064 if (font_height && pattern_height && (font_height != pattern_height))
7065 return FALSE;
7068 return (fast_c_string_match_ignore_case (build_string (regex),
7069 font_name_copy) >= 0);
7072 /* Callback functions, and a structure holding info they need, for
7073 listing system fonts on W32. We need one set of functions to do the
7074 job properly, but these don't work on NT 3.51 and earlier, so we
7075 have a second set which don't handle character sets properly to
7076 fall back on.
7078 In both cases, there are two passes made. The first pass gets one
7079 font from each family, the second pass lists all the fonts from
7080 each family. */
7082 typedef struct enumfont_t
7084 HDC hdc;
7085 int numFonts;
7086 LOGFONT logfont;
7087 XFontStruct *size_ref;
7088 Lisp_Object *pattern;
7089 Lisp_Object list;
7090 Lisp_Object *tail;
7091 } enumfont_t;
7094 static void
7095 enum_font_maybe_add_to_list (enumfont_t *, LOGFONT *, char *, Lisp_Object);
7098 static int CALLBACK
7099 enum_font_cb2 (lplf, lptm, FontType, lpef)
7100 ENUMLOGFONT * lplf;
7101 NEWTEXTMETRIC * lptm;
7102 int FontType;
7103 enumfont_t * lpef;
7105 /* Ignore struck out and underlined versions of fonts. */
7106 if (lplf->elfLogFont.lfStrikeOut || lplf->elfLogFont.lfUnderline)
7107 return 1;
7109 /* Only return fonts with names starting with @ if they were
7110 explicitly specified, since Microsoft uses an initial @ to
7111 denote fonts for vertical writing, without providing a more
7112 convenient way of identifying them. */
7113 if (lplf->elfLogFont.lfFaceName[0] == '@'
7114 && lpef->logfont.lfFaceName[0] != '@')
7115 return 1;
7117 /* Check that the character set matches if it was specified */
7118 if (lpef->logfont.lfCharSet != DEFAULT_CHARSET &&
7119 lplf->elfLogFont.lfCharSet != lpef->logfont.lfCharSet)
7120 return 1;
7123 char buf[100];
7124 Lisp_Object width = Qnil;
7125 Lisp_Object charset_list = Qnil;
7126 char *charset = NULL;
7128 /* Truetype fonts do not report their true metrics until loaded */
7129 if (FontType != RASTER_FONTTYPE)
7131 if (!NILP (*(lpef->pattern)))
7133 /* Scalable fonts are as big as you want them to be. */
7134 lplf->elfLogFont.lfHeight = lpef->logfont.lfHeight;
7135 lplf->elfLogFont.lfWidth = lpef->logfont.lfWidth;
7136 width = make_number (lpef->logfont.lfWidth);
7138 else
7140 lplf->elfLogFont.lfHeight = 0;
7141 lplf->elfLogFont.lfWidth = 0;
7145 /* Make sure the height used here is the same as everywhere
7146 else (ie character height, not cell height). */
7147 if (lplf->elfLogFont.lfHeight > 0)
7149 /* lptm can be trusted for RASTER fonts, but not scalable ones. */
7150 if (FontType == RASTER_FONTTYPE)
7151 lplf->elfLogFont.lfHeight = lptm->tmInternalLeading - lptm->tmHeight;
7152 else
7153 lplf->elfLogFont.lfHeight = -lplf->elfLogFont.lfHeight;
7156 if (!NILP (*(lpef->pattern)))
7158 charset = xlfd_charset_of_font (XSTRING(*(lpef->pattern))->data);
7160 /* We already checked charsets above, but DEFAULT_CHARSET
7161 slipped through. So only allow exact matches for DEFAULT_CHARSET. */
7162 if (charset
7163 && strncmp (charset, "*-*", 3) != 0
7164 && lpef->logfont.lfCharSet == DEFAULT_CHARSET
7165 && strcmp (charset, w32_to_x_charset (DEFAULT_CHARSET)) != 0)
7166 return 1;
7169 if (charset)
7170 charset_list = Fcons (build_string (charset), Qnil);
7171 else
7172 charset_list = w32_to_all_x_charsets (lplf->elfLogFont.lfCharSet);
7174 /* Loop through the charsets. */
7175 for ( ; CONSP (charset_list); charset_list = Fcdr (charset_list))
7177 Lisp_Object this_charset = Fcar (charset_list);
7178 charset = XSTRING (this_charset)->data;
7180 /* List bold and italic variations if w32-enable-synthesized-fonts
7181 is non-nil and this is a plain font. */
7182 if (w32_enable_synthesized_fonts
7183 && lplf->elfLogFont.lfWeight == FW_NORMAL
7184 && lplf->elfLogFont.lfItalic == FALSE)
7186 enum_font_maybe_add_to_list (lpef, &(lplf->elfLogFont),
7187 charset, width);
7188 /* bold. */
7189 lplf->elfLogFont.lfWeight = FW_BOLD;
7190 enum_font_maybe_add_to_list (lpef, &(lplf->elfLogFont),
7191 charset, width);
7192 /* bold italic. */
7193 lplf->elfLogFont.lfItalic = TRUE;
7194 enum_font_maybe_add_to_list (lpef, &(lplf->elfLogFont),
7195 charset, width);
7196 /* italic. */
7197 lplf->elfLogFont.lfWeight = FW_NORMAL;
7198 enum_font_maybe_add_to_list (lpef, &(lplf->elfLogFont),
7199 charset, width);
7201 else
7202 enum_font_maybe_add_to_list (lpef, &(lplf->elfLogFont),
7203 charset, width);
7207 return 1;
7210 static void
7211 enum_font_maybe_add_to_list (lpef, logfont, match_charset, width)
7212 enumfont_t * lpef;
7213 LOGFONT * logfont;
7214 char * match_charset;
7215 Lisp_Object width;
7217 char buf[100];
7219 if (!w32_to_x_font (logfont, buf, 100, match_charset))
7220 return;
7222 if (NILP (*(lpef->pattern))
7223 || w32_font_match (buf, XSTRING (*(lpef->pattern))->data))
7225 /* Check if we already listed this font. This may happen if
7226 w32_enable_synthesized_fonts is non-nil, and there are real
7227 bold and italic versions of the font. */
7228 Lisp_Object font_name = build_string (buf);
7229 if (NILP (Fmember (font_name, lpef->list)))
7231 *lpef->tail = Fcons (Fcons (build_string (buf), width), Qnil);
7232 lpef->tail = &(XCDR (*lpef->tail));
7233 lpef->numFonts++;
7239 static int CALLBACK
7240 enum_font_cb1 (lplf, lptm, FontType, lpef)
7241 ENUMLOGFONT * lplf;
7242 NEWTEXTMETRIC * lptm;
7243 int FontType;
7244 enumfont_t * lpef;
7246 return EnumFontFamilies (lpef->hdc,
7247 lplf->elfLogFont.lfFaceName,
7248 (FONTENUMPROC) enum_font_cb2,
7249 (LPARAM) lpef);
7253 static int CALLBACK
7254 enum_fontex_cb2 (lplf, lptm, font_type, lpef)
7255 ENUMLOGFONTEX * lplf;
7256 NEWTEXTMETRICEX * lptm;
7257 int font_type;
7258 enumfont_t * lpef;
7260 /* We are not interested in the extra info we get back from the 'Ex
7261 version - only the fact that we get character set variations
7262 enumerated seperately. */
7263 return enum_font_cb2 ((ENUMLOGFONT *) lplf, (NEWTEXTMETRIC *) lptm,
7264 font_type, lpef);
7267 static int CALLBACK
7268 enum_fontex_cb1 (lplf, lptm, font_type, lpef)
7269 ENUMLOGFONTEX * lplf;
7270 NEWTEXTMETRICEX * lptm;
7271 int font_type;
7272 enumfont_t * lpef;
7274 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
7275 FARPROC enum_font_families_ex
7276 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
7277 /* We don't really expect EnumFontFamiliesEx to disappear once we
7278 get here, so don't bother handling it gracefully. */
7279 if (enum_font_families_ex == NULL)
7280 error ("gdi32.dll has disappeared!");
7281 return enum_font_families_ex (lpef->hdc,
7282 &lplf->elfLogFont,
7283 (FONTENUMPROC) enum_fontex_cb2,
7284 (LPARAM) lpef, 0);
7287 /* Interface to fontset handler. (adapted from mw32font.c in Meadow
7288 and xterm.c in Emacs 20.3) */
7290 static Lisp_Object w32_list_bdf_fonts (Lisp_Object pattern, int max_names)
7292 char *fontname, *ptnstr;
7293 Lisp_Object list, tem, newlist = Qnil;
7294 int n_fonts = 0;
7296 list = Vw32_bdf_filename_alist;
7297 ptnstr = XSTRING (pattern)->data;
7299 for ( ; CONSP (list); list = XCDR (list))
7301 tem = XCAR (list);
7302 if (CONSP (tem))
7303 fontname = XSTRING (XCAR (tem))->data;
7304 else if (STRINGP (tem))
7305 fontname = XSTRING (tem)->data;
7306 else
7307 continue;
7309 if (w32_font_match (fontname, ptnstr))
7311 newlist = Fcons (XCAR (tem), newlist);
7312 n_fonts++;
7313 if (n_fonts >= max_names)
7314 break;
7318 return newlist;
7322 /* Return a list of names of available fonts matching PATTERN on frame
7323 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
7324 to be listed. Frame F NULL means we have not yet created any
7325 frame, which means we can't get proper size info, as we don't have
7326 a device context to use for GetTextMetrics.
7327 MAXNAMES sets a limit on how many fonts to match. */
7329 Lisp_Object
7330 w32_list_fonts (f, pattern, size, maxnames)
7331 struct frame *f;
7332 Lisp_Object pattern;
7333 int size;
7334 int maxnames;
7336 Lisp_Object patterns, key = Qnil, tem, tpat;
7337 Lisp_Object list = Qnil, newlist = Qnil, second_best = Qnil;
7338 struct w32_display_info *dpyinfo = &one_w32_display_info;
7339 int n_fonts = 0;
7341 patterns = Fassoc (pattern, Valternate_fontname_alist);
7342 if (NILP (patterns))
7343 patterns = Fcons (pattern, Qnil);
7345 for (; CONSP (patterns); patterns = XCDR (patterns))
7347 enumfont_t ef;
7348 int codepage;
7350 tpat = XCAR (patterns);
7352 if (!STRINGP (tpat))
7353 continue;
7355 /* Avoid expensive EnumFontFamilies functions if we are not
7356 going to be able to output one of these anyway. */
7357 codepage = w32_codepage_for_font (XSTRING (tpat)->data);
7358 if (codepage != CP_8BIT && codepage != CP_UNICODE
7359 && codepage != CP_DEFAULT && codepage != CP_UNKNOWN
7360 && !IsValidCodePage(codepage))
7361 continue;
7363 /* See if we cached the result for this particular query.
7364 The cache is an alist of the form:
7365 ((PATTERN (FONTNAME . WIDTH) ...) ...)
7367 if (tem = XCDR (dpyinfo->name_list_element),
7368 !NILP (list = Fassoc (tpat, tem)))
7370 list = Fcdr_safe (list);
7371 /* We have a cached list. Don't have to get the list again. */
7372 goto label_cached;
7375 BLOCK_INPUT;
7376 /* At first, put PATTERN in the cache. */
7377 list = Qnil;
7378 ef.pattern = &tpat;
7379 ef.list = list;
7380 ef.tail = &list;
7381 ef.numFonts = 0;
7383 /* Use EnumFontFamiliesEx where it is available, as it knows
7384 about character sets. Fall back to EnumFontFamilies for
7385 older versions of NT that don't support the 'Ex function. */
7386 x_to_w32_font (XSTRING (tpat)->data, &ef.logfont);
7388 LOGFONT font_match_pattern;
7389 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
7390 FARPROC enum_font_families_ex
7391 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
7393 /* We do our own pattern matching so we can handle wildcards. */
7394 font_match_pattern.lfFaceName[0] = 0;
7395 font_match_pattern.lfPitchAndFamily = 0;
7396 /* We can use the charset, because if it is a wildcard it will
7397 be DEFAULT_CHARSET anyway. */
7398 font_match_pattern.lfCharSet = ef.logfont.lfCharSet;
7400 ef.hdc = GetDC (dpyinfo->root_window);
7402 if (enum_font_families_ex)
7403 enum_font_families_ex (ef.hdc,
7404 &font_match_pattern,
7405 (FONTENUMPROC) enum_fontex_cb1,
7406 (LPARAM) &ef, 0);
7407 else
7408 EnumFontFamilies (ef.hdc, NULL, (FONTENUMPROC) enum_font_cb1,
7409 (LPARAM)&ef);
7411 ReleaseDC (dpyinfo->root_window, ef.hdc);
7414 UNBLOCK_INPUT;
7416 /* Make a list of the fonts we got back.
7417 Store that in the font cache for the display. */
7418 XSETCDR (dpyinfo->name_list_element,
7419 Fcons (Fcons (tpat, list),
7420 XCDR (dpyinfo->name_list_element)));
7422 label_cached:
7423 if (NILP (list)) continue; /* Try the remaining alternatives. */
7425 newlist = second_best = Qnil;
7427 /* Make a list of the fonts that have the right width. */
7428 for (; CONSP (list); list = XCDR (list))
7430 int found_size;
7431 tem = XCAR (list);
7433 if (!CONSP (tem))
7434 continue;
7435 if (NILP (XCAR (tem)))
7436 continue;
7437 if (!size)
7439 newlist = Fcons (XCAR (tem), newlist);
7440 n_fonts++;
7441 if (n_fonts >= maxnames)
7442 break;
7443 else
7444 continue;
7446 if (!INTEGERP (XCDR (tem)))
7448 /* Since we don't yet know the size of the font, we must
7449 load it and try GetTextMetrics. */
7450 W32FontStruct thisinfo;
7451 LOGFONT lf;
7452 HDC hdc;
7453 HANDLE oldobj;
7455 if (!x_to_w32_font (XSTRING (XCAR (tem))->data, &lf))
7456 continue;
7458 BLOCK_INPUT;
7459 thisinfo.bdf = NULL;
7460 thisinfo.hfont = CreateFontIndirect (&lf);
7461 if (thisinfo.hfont == NULL)
7462 continue;
7464 hdc = GetDC (dpyinfo->root_window);
7465 oldobj = SelectObject (hdc, thisinfo.hfont);
7466 if (GetTextMetrics (hdc, &thisinfo.tm))
7467 XSETCDR (tem, make_number (FONT_WIDTH (&thisinfo)));
7468 else
7469 XSETCDR (tem, make_number (0));
7470 SelectObject (hdc, oldobj);
7471 ReleaseDC (dpyinfo->root_window, hdc);
7472 DeleteObject(thisinfo.hfont);
7473 UNBLOCK_INPUT;
7475 found_size = XINT (XCDR (tem));
7476 if (found_size == size)
7478 newlist = Fcons (XCAR (tem), newlist);
7479 n_fonts++;
7480 if (n_fonts >= maxnames)
7481 break;
7483 /* keep track of the closest matching size in case
7484 no exact match is found. */
7485 else if (found_size > 0)
7487 if (NILP (second_best))
7488 second_best = tem;
7490 else if (found_size < size)
7492 if (XINT (XCDR (second_best)) > size
7493 || XINT (XCDR (second_best)) < found_size)
7494 second_best = tem;
7496 else
7498 if (XINT (XCDR (second_best)) > size
7499 && XINT (XCDR (second_best)) >
7500 found_size)
7501 second_best = tem;
7506 if (!NILP (newlist))
7507 break;
7508 else if (!NILP (second_best))
7510 newlist = Fcons (XCAR (second_best), Qnil);
7511 break;
7515 /* Include any bdf fonts. */
7516 if (n_fonts < maxnames)
7518 Lisp_Object combined[2];
7519 combined[0] = w32_list_bdf_fonts (pattern, maxnames - n_fonts);
7520 combined[1] = newlist;
7521 newlist = Fnconc(2, combined);
7524 return newlist;
7528 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
7529 struct font_info *
7530 w32_get_font_info (f, font_idx)
7531 FRAME_PTR f;
7532 int font_idx;
7534 return (FRAME_W32_FONT_TABLE (f) + font_idx);
7538 struct font_info*
7539 w32_query_font (struct frame *f, char *fontname)
7541 int i;
7542 struct font_info *pfi;
7544 pfi = FRAME_W32_FONT_TABLE (f);
7546 for (i = 0; i < one_w32_display_info.n_fonts ;i++, pfi++)
7548 if (strcmp(pfi->name, fontname) == 0) return pfi;
7551 return NULL;
7554 /* Find a CCL program for a font specified by FONTP, and set the member
7555 `encoder' of the structure. */
7557 void
7558 w32_find_ccl_program (fontp)
7559 struct font_info *fontp;
7561 Lisp_Object list, elt;
7563 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
7565 elt = XCAR (list);
7566 if (CONSP (elt)
7567 && STRINGP (XCAR (elt))
7568 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
7569 >= 0))
7570 break;
7572 if (! NILP (list))
7574 struct ccl_program *ccl
7575 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
7577 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
7578 xfree (ccl);
7579 else
7580 fontp->font_encoder = ccl;
7585 /* Find BDF files in a specified directory. (use GCPRO when calling,
7586 as this calls lisp to get a directory listing). */
7587 static Lisp_Object
7588 w32_find_bdf_fonts_in_dir (Lisp_Object directory)
7590 Lisp_Object filelist, list = Qnil;
7591 char fontname[100];
7593 if (!STRINGP(directory))
7594 return Qnil;
7596 filelist = Fdirectory_files (directory, Qt,
7597 build_string (".*\\.[bB][dD][fF]"), Qt);
7599 for ( ; CONSP(filelist); filelist = XCDR (filelist))
7601 Lisp_Object filename = XCAR (filelist);
7602 if (w32_BDF_to_x_font (XSTRING (filename)->data, fontname, 100))
7603 store_in_alist (&list, build_string (fontname), filename);
7605 return list;
7608 DEFUN ("w32-find-bdf-fonts", Fw32_find_bdf_fonts, Sw32_find_bdf_fonts,
7609 1, 1, 0,
7610 doc: /* Return a list of BDF fonts in DIR.
7611 The list is suitable for appending to w32-bdf-filename-alist. Fonts
7612 which do not contain an xlfd description will not be included in the
7613 list. DIR may be a list of directories. */)
7614 (directory)
7615 Lisp_Object directory;
7617 Lisp_Object list = Qnil;
7618 struct gcpro gcpro1, gcpro2;
7620 if (!CONSP (directory))
7621 return w32_find_bdf_fonts_in_dir (directory);
7623 for ( ; CONSP (directory); directory = XCDR (directory))
7625 Lisp_Object pair[2];
7626 pair[0] = list;
7627 pair[1] = Qnil;
7628 GCPRO2 (directory, list);
7629 pair[1] = w32_find_bdf_fonts_in_dir( XCAR (directory) );
7630 list = Fnconc( 2, pair );
7631 UNGCPRO;
7633 return list;
7637 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
7638 doc: /* Internal function called by `color-defined-p', which see. */)
7639 (color, frame)
7640 Lisp_Object color, frame;
7642 XColor foo;
7643 FRAME_PTR f = check_x_frame (frame);
7645 CHECK_STRING (color);
7647 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
7648 return Qt;
7649 else
7650 return Qnil;
7653 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
7654 doc: /* Internal function called by `color-values', which see. */)
7655 (color, frame)
7656 Lisp_Object color, frame;
7658 XColor foo;
7659 FRAME_PTR f = check_x_frame (frame);
7661 CHECK_STRING (color);
7663 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
7665 Lisp_Object rgb[3];
7667 rgb[0] = make_number ((GetRValue (foo.pixel) << 8)
7668 | GetRValue (foo.pixel));
7669 rgb[1] = make_number ((GetGValue (foo.pixel) << 8)
7670 | GetGValue (foo.pixel));
7671 rgb[2] = make_number ((GetBValue (foo.pixel) << 8)
7672 | GetBValue (foo.pixel));
7673 return Flist (3, rgb);
7675 else
7676 return Qnil;
7679 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
7680 doc: /* Internal function called by `display-color-p', which see. */)
7681 (display)
7682 Lisp_Object display;
7684 struct w32_display_info *dpyinfo = check_x_display_info (display);
7686 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 2)
7687 return Qnil;
7689 return Qt;
7692 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p,
7693 Sx_display_grayscale_p, 0, 1, 0,
7694 doc: /* Return t if the X display supports shades of gray.
7695 Note that color displays do support shades of gray.
7696 The optional argument DISPLAY specifies which display to ask about.
7697 DISPLAY should be either a frame or a display name (a string).
7698 If omitted or nil, that stands for the selected frame's display. */)
7699 (display)
7700 Lisp_Object display;
7702 struct w32_display_info *dpyinfo = check_x_display_info (display);
7704 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 1)
7705 return Qnil;
7707 return Qt;
7710 DEFUN ("x-display-pixel-width", Fx_display_pixel_width,
7711 Sx_display_pixel_width, 0, 1, 0,
7712 doc: /* Returns the width in pixels of DISPLAY.
7713 The optional argument DISPLAY specifies which display to ask about.
7714 DISPLAY should be either a frame or a display name (a string).
7715 If omitted or nil, that stands for the selected frame's display. */)
7716 (display)
7717 Lisp_Object display;
7719 struct w32_display_info *dpyinfo = check_x_display_info (display);
7721 return make_number (dpyinfo->width);
7724 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
7725 Sx_display_pixel_height, 0, 1, 0,
7726 doc: /* Returns the height in pixels of DISPLAY.
7727 The optional argument DISPLAY specifies which display to ask about.
7728 DISPLAY should be either a frame or a display name (a string).
7729 If omitted or nil, that stands for the selected frame's display. */)
7730 (display)
7731 Lisp_Object display;
7733 struct w32_display_info *dpyinfo = check_x_display_info (display);
7735 return make_number (dpyinfo->height);
7738 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
7739 0, 1, 0,
7740 doc: /* Returns the number of bitplanes of DISPLAY.
7741 The optional argument DISPLAY specifies which display to ask about.
7742 DISPLAY should be either a frame or a display name (a string).
7743 If omitted or nil, that stands for the selected frame's display. */)
7744 (display)
7745 Lisp_Object display;
7747 struct w32_display_info *dpyinfo = check_x_display_info (display);
7749 return make_number (dpyinfo->n_planes * dpyinfo->n_cbits);
7752 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
7753 0, 1, 0,
7754 doc: /* Returns the number of color cells of DISPLAY.
7755 The optional argument DISPLAY specifies which display to ask about.
7756 DISPLAY should be either a frame or a display name (a string).
7757 If omitted or nil, that stands for the selected frame's display. */)
7758 (display)
7759 Lisp_Object display;
7761 struct w32_display_info *dpyinfo = check_x_display_info (display);
7762 HDC hdc;
7763 int cap;
7765 hdc = GetDC (dpyinfo->root_window);
7766 if (dpyinfo->has_palette)
7767 cap = GetDeviceCaps (hdc,SIZEPALETTE);
7768 else
7769 cap = GetDeviceCaps (hdc,NUMCOLORS);
7771 /* We force 24+ bit depths to 24-bit, both to prevent an overflow
7772 and because probably is more meaningful on Windows anyway */
7773 if (cap < 0)
7774 cap = 1 << min(dpyinfo->n_planes * dpyinfo->n_cbits, 24);
7776 ReleaseDC (dpyinfo->root_window, hdc);
7778 return make_number (cap);
7781 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
7782 Sx_server_max_request_size,
7783 0, 1, 0,
7784 doc: /* Returns the maximum request size of the server of DISPLAY.
7785 The optional argument DISPLAY specifies which display to ask about.
7786 DISPLAY should be either a frame or a display name (a string).
7787 If omitted or nil, that stands for the selected frame's display. */)
7788 (display)
7789 Lisp_Object display;
7791 struct w32_display_info *dpyinfo = check_x_display_info (display);
7793 return make_number (1);
7796 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
7797 doc: /* Returns the vendor ID string of the W32 system (Microsoft).
7798 The optional argument DISPLAY specifies which display to ask about.
7799 DISPLAY should be either a frame or a display name (a string).
7800 If omitted or nil, that stands for the selected frame's display. */)
7801 (display)
7802 Lisp_Object display;
7804 return build_string ("Microsoft Corp.");
7807 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
7808 doc: /* Returns the version numbers of the server of DISPLAY.
7809 The value is a list of three integers: the major and minor
7810 version numbers, and the vendor-specific release
7811 number. See also the function `x-server-vendor'.
7813 The optional argument DISPLAY specifies which display to ask about.
7814 DISPLAY should be either a frame or a display name (a string).
7815 If omitted or nil, that stands for the selected frame's display. */)
7816 (display)
7817 Lisp_Object display;
7819 return Fcons (make_number (w32_major_version),
7820 Fcons (make_number (w32_minor_version),
7821 Fcons (make_number (w32_build_number), Qnil)));
7824 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
7825 doc: /* Returns the number of screens on the server of DISPLAY.
7826 The optional argument DISPLAY specifies which display to ask about.
7827 DISPLAY should be either a frame or a display name (a string).
7828 If omitted or nil, that stands for the selected frame's display. */)
7829 (display)
7830 Lisp_Object display;
7832 return make_number (1);
7835 DEFUN ("x-display-mm-height", Fx_display_mm_height,
7836 Sx_display_mm_height, 0, 1, 0,
7837 doc: /* Returns the height in millimeters of DISPLAY.
7838 The optional argument DISPLAY specifies which display to ask about.
7839 DISPLAY should be either a frame or a display name (a string).
7840 If omitted or nil, that stands for the selected frame's display. */)
7841 (display)
7842 Lisp_Object display;
7844 struct w32_display_info *dpyinfo = check_x_display_info (display);
7845 HDC hdc;
7846 int cap;
7848 hdc = GetDC (dpyinfo->root_window);
7850 cap = GetDeviceCaps (hdc, VERTSIZE);
7852 ReleaseDC (dpyinfo->root_window, hdc);
7854 return make_number (cap);
7857 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
7858 doc: /* Returns the width in millimeters of DISPLAY.
7859 The optional argument DISPLAY specifies which display to ask about.
7860 DISPLAY should be either a frame or a display name (a string).
7861 If omitted or nil, that stands for the selected frame's display. */)
7862 (display)
7863 Lisp_Object display;
7865 struct w32_display_info *dpyinfo = check_x_display_info (display);
7867 HDC hdc;
7868 int cap;
7870 hdc = GetDC (dpyinfo->root_window);
7872 cap = GetDeviceCaps (hdc, HORZSIZE);
7874 ReleaseDC (dpyinfo->root_window, hdc);
7876 return make_number (cap);
7879 DEFUN ("x-display-backing-store", Fx_display_backing_store,
7880 Sx_display_backing_store, 0, 1, 0,
7881 doc: /* Returns an indication of whether DISPLAY does backing store.
7882 The value may be `always', `when-mapped', or `not-useful'.
7883 The optional argument DISPLAY specifies which display to ask about.
7884 DISPLAY should be either a frame or a display name (a string).
7885 If omitted or nil, that stands for the selected frame's display. */)
7886 (display)
7887 Lisp_Object display;
7889 return intern ("not-useful");
7892 DEFUN ("x-display-visual-class", Fx_display_visual_class,
7893 Sx_display_visual_class, 0, 1, 0,
7894 doc: /* Returns the visual class of DISPLAY.
7895 The value is one of the symbols `static-gray', `gray-scale',
7896 `static-color', `pseudo-color', `true-color', or `direct-color'.
7898 The optional argument DISPLAY specifies which display to ask about.
7899 DISPLAY should be either a frame or a display name (a string).
7900 If omitted or nil, that stands for the selected frame's display. */)
7901 (display)
7902 Lisp_Object display;
7904 struct w32_display_info *dpyinfo = check_x_display_info (display);
7905 Lisp_Object result = Qnil;
7907 if (dpyinfo->has_palette)
7908 result = intern ("pseudo-color");
7909 else if (dpyinfo->n_planes * dpyinfo->n_cbits == 1)
7910 result = intern ("static-grey");
7911 else if (dpyinfo->n_planes * dpyinfo->n_cbits == 4)
7912 result = intern ("static-color");
7913 else if (dpyinfo->n_planes * dpyinfo->n_cbits > 8)
7914 result = intern ("true-color");
7916 return result;
7919 DEFUN ("x-display-save-under", Fx_display_save_under,
7920 Sx_display_save_under, 0, 1, 0,
7921 doc: /* Returns t if DISPLAY supports the save-under feature.
7922 The optional argument DISPLAY specifies which display to ask about.
7923 DISPLAY should be either a frame or a display name (a string).
7924 If omitted or nil, that stands for the selected frame's display. */)
7925 (display)
7926 Lisp_Object display;
7928 return Qnil;
7932 x_pixel_width (f)
7933 register struct frame *f;
7935 return PIXEL_WIDTH (f);
7939 x_pixel_height (f)
7940 register struct frame *f;
7942 return PIXEL_HEIGHT (f);
7946 x_char_width (f)
7947 register struct frame *f;
7949 return FONT_WIDTH (f->output_data.w32->font);
7953 x_char_height (f)
7954 register struct frame *f;
7956 return f->output_data.w32->line_height;
7960 x_screen_planes (f)
7961 register struct frame *f;
7963 return FRAME_W32_DISPLAY_INFO (f)->n_planes;
7966 /* Return the display structure for the display named NAME.
7967 Open a new connection if necessary. */
7969 struct w32_display_info *
7970 x_display_info_for_name (name)
7971 Lisp_Object name;
7973 Lisp_Object names;
7974 struct w32_display_info *dpyinfo;
7976 CHECK_STRING (name);
7978 for (dpyinfo = &one_w32_display_info, names = w32_display_name_list;
7979 dpyinfo;
7980 dpyinfo = dpyinfo->next, names = XCDR (names))
7982 Lisp_Object tem;
7983 tem = Fstring_equal (XCAR (XCAR (names)), name);
7984 if (!NILP (tem))
7985 return dpyinfo;
7988 /* Use this general default value to start with. */
7989 Vx_resource_name = Vinvocation_name;
7991 validate_x_resource_name ();
7993 dpyinfo = w32_term_init (name, (unsigned char *)0,
7994 (char *) XSTRING (Vx_resource_name)->data);
7996 if (dpyinfo == 0)
7997 error ("Cannot connect to server %s", XSTRING (name)->data);
7999 w32_in_use = 1;
8000 XSETFASTINT (Vwindow_system_version, 3);
8002 return dpyinfo;
8005 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
8006 1, 3, 0, doc: /* Open a connection to a server.
8007 DISPLAY is the name of the display to connect to.
8008 Optional second arg XRM-STRING is a string of resources in xrdb format.
8009 If the optional third arg MUST-SUCCEED is non-nil,
8010 terminate Emacs if we can't open the connection. */)
8011 (display, xrm_string, must_succeed)
8012 Lisp_Object display, xrm_string, must_succeed;
8014 unsigned char *xrm_option;
8015 struct w32_display_info *dpyinfo;
8017 /* If initialization has already been done, return now to avoid
8018 overwriting critical parts of one_w32_display_info. */
8019 if (w32_in_use)
8020 return Qnil;
8022 CHECK_STRING (display);
8023 if (! NILP (xrm_string))
8024 CHECK_STRING (xrm_string);
8026 if (! EQ (Vwindow_system, intern ("w32")))
8027 error ("Not using Microsoft Windows");
8029 /* Allow color mapping to be defined externally; first look in user's
8030 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
8032 Lisp_Object color_file;
8033 struct gcpro gcpro1;
8035 color_file = build_string("~/rgb.txt");
8037 GCPRO1 (color_file);
8039 if (NILP (Ffile_readable_p (color_file)))
8040 color_file =
8041 Fexpand_file_name (build_string ("rgb.txt"),
8042 Fsymbol_value (intern ("data-directory")));
8044 Vw32_color_map = Fw32_load_color_file (color_file);
8046 UNGCPRO;
8048 if (NILP (Vw32_color_map))
8049 Vw32_color_map = Fw32_default_color_map ();
8051 if (! NILP (xrm_string))
8052 xrm_option = (unsigned char *) XSTRING (xrm_string)->data;
8053 else
8054 xrm_option = (unsigned char *) 0;
8056 /* Use this general default value to start with. */
8057 /* First remove .exe suffix from invocation-name - it looks ugly. */
8059 char basename[ MAX_PATH ], *str;
8061 strcpy (basename, XSTRING (Vinvocation_name)->data);
8062 str = strrchr (basename, '.');
8063 if (str) *str = 0;
8064 Vinvocation_name = build_string (basename);
8066 Vx_resource_name = Vinvocation_name;
8068 validate_x_resource_name ();
8070 /* This is what opens the connection and sets x_current_display.
8071 This also initializes many symbols, such as those used for input. */
8072 dpyinfo = w32_term_init (display, xrm_option,
8073 (char *) XSTRING (Vx_resource_name)->data);
8075 if (dpyinfo == 0)
8077 if (!NILP (must_succeed))
8078 fatal ("Cannot connect to server %s.\n",
8079 XSTRING (display)->data);
8080 else
8081 error ("Cannot connect to server %s", XSTRING (display)->data);
8084 w32_in_use = 1;
8086 XSETFASTINT (Vwindow_system_version, 3);
8087 return Qnil;
8090 DEFUN ("x-close-connection", Fx_close_connection,
8091 Sx_close_connection, 1, 1, 0,
8092 doc: /* Close the connection to DISPLAY's server.
8093 For DISPLAY, specify either a frame or a display name (a string).
8094 If DISPLAY is nil, that stands for the selected frame's display. */)
8095 (display)
8096 Lisp_Object display;
8098 struct w32_display_info *dpyinfo = check_x_display_info (display);
8099 int i;
8101 if (dpyinfo->reference_count > 0)
8102 error ("Display still has frames on it");
8104 BLOCK_INPUT;
8105 /* Free the fonts in the font table. */
8106 for (i = 0; i < dpyinfo->n_fonts; i++)
8107 if (dpyinfo->font_table[i].name)
8109 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
8110 xfree (dpyinfo->font_table[i].full_name);
8111 xfree (dpyinfo->font_table[i].name);
8112 w32_unload_font (dpyinfo, dpyinfo->font_table[i].font);
8114 x_destroy_all_bitmaps (dpyinfo);
8116 x_delete_display (dpyinfo);
8117 UNBLOCK_INPUT;
8119 return Qnil;
8122 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
8123 doc: /* Return the list of display names that Emacs has connections to. */)
8126 Lisp_Object tail, result;
8128 result = Qnil;
8129 for (tail = w32_display_name_list; ! NILP (tail); tail = XCDR (tail))
8130 result = Fcons (XCAR (XCAR (tail)), result);
8132 return result;
8135 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
8136 doc: /* This is a noop on W32 systems. */)
8137 (on, display)
8138 Lisp_Object display, on;
8140 return Qnil;
8145 /***********************************************************************
8146 Image types
8147 ***********************************************************************/
8149 /* Value is the number of elements of vector VECTOR. */
8151 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
8153 /* List of supported image types. Use define_image_type to add new
8154 types. Use lookup_image_type to find a type for a given symbol. */
8156 static struct image_type *image_types;
8158 /* The symbol `image' which is the car of the lists used to represent
8159 images in Lisp. */
8161 extern Lisp_Object Qimage;
8163 /* The symbol `xbm' which is used as the type symbol for XBM images. */
8165 Lisp_Object Qxbm;
8167 /* Keywords. */
8169 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
8170 extern Lisp_Object QCdata;
8171 Lisp_Object QCtype, QCascent, QCmargin, QCrelief;
8172 Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
8173 Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
8175 /* Other symbols. */
8177 Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
8179 /* Time in seconds after which images should be removed from the cache
8180 if not displayed. */
8182 Lisp_Object Vimage_cache_eviction_delay;
8184 /* Function prototypes. */
8186 static void define_image_type P_ ((struct image_type *type));
8187 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
8188 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
8189 static void x_laplace P_ ((struct frame *, struct image *));
8190 static void x_emboss P_ ((struct frame *, struct image *));
8191 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
8192 Lisp_Object));
8195 /* Define a new image type from TYPE. This adds a copy of TYPE to
8196 image_types and adds the symbol *TYPE->type to Vimage_types. */
8198 static void
8199 define_image_type (type)
8200 struct image_type *type;
8202 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
8203 The initialized data segment is read-only. */
8204 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
8205 bcopy (type, p, sizeof *p);
8206 p->next = image_types;
8207 image_types = p;
8208 Vimage_types = Fcons (*p->type, Vimage_types);
8212 /* Look up image type SYMBOL, and return a pointer to its image_type
8213 structure. Value is null if SYMBOL is not a known image type. */
8215 static INLINE struct image_type *
8216 lookup_image_type (symbol)
8217 Lisp_Object symbol;
8219 struct image_type *type;
8221 for (type = image_types; type; type = type->next)
8222 if (EQ (symbol, *type->type))
8223 break;
8225 return type;
8229 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
8230 valid image specification is a list whose car is the symbol
8231 `image', and whose rest is a property list. The property list must
8232 contain a value for key `:type'. That value must be the name of a
8233 supported image type. The rest of the property list depends on the
8234 image type. */
8237 valid_image_p (object)
8238 Lisp_Object object;
8240 int valid_p = 0;
8242 if (CONSP (object) && EQ (XCAR (object), Qimage))
8244 Lisp_Object tem;
8246 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
8247 if (EQ (XCAR (tem), QCtype))
8249 tem = XCDR (tem);
8250 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
8252 struct image_type *type;
8253 type = lookup_image_type (XCAR (tem));
8254 if (type)
8255 valid_p = type->valid_p (object);
8258 break;
8262 return valid_p;
8266 /* Log error message with format string FORMAT and argument ARG.
8267 Signaling an error, e.g. when an image cannot be loaded, is not a
8268 good idea because this would interrupt redisplay, and the error
8269 message display would lead to another redisplay. This function
8270 therefore simply displays a message. */
8272 static void
8273 image_error (format, arg1, arg2)
8274 char *format;
8275 Lisp_Object arg1, arg2;
8277 add_to_log (format, arg1, arg2);
8282 /***********************************************************************
8283 Image specifications
8284 ***********************************************************************/
8286 enum image_value_type
8288 IMAGE_DONT_CHECK_VALUE_TYPE,
8289 IMAGE_STRING_VALUE,
8290 IMAGE_STRING_OR_NIL_VALUE,
8291 IMAGE_SYMBOL_VALUE,
8292 IMAGE_POSITIVE_INTEGER_VALUE,
8293 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
8294 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
8295 IMAGE_ASCENT_VALUE,
8296 IMAGE_INTEGER_VALUE,
8297 IMAGE_FUNCTION_VALUE,
8298 IMAGE_NUMBER_VALUE,
8299 IMAGE_BOOL_VALUE
8302 /* Structure used when parsing image specifications. */
8304 struct image_keyword
8306 /* Name of keyword. */
8307 char *name;
8309 /* The type of value allowed. */
8310 enum image_value_type type;
8312 /* Non-zero means key must be present. */
8313 int mandatory_p;
8315 /* Used to recognize duplicate keywords in a property list. */
8316 int count;
8318 /* The value that was found. */
8319 Lisp_Object value;
8323 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
8324 int, Lisp_Object));
8325 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
8328 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
8329 has the format (image KEYWORD VALUE ...). One of the keyword/
8330 value pairs must be `:type TYPE'. KEYWORDS is a vector of
8331 image_keywords structures of size NKEYWORDS describing other
8332 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
8334 static int
8335 parse_image_spec (spec, keywords, nkeywords, type)
8336 Lisp_Object spec;
8337 struct image_keyword *keywords;
8338 int nkeywords;
8339 Lisp_Object type;
8341 int i;
8342 Lisp_Object plist;
8344 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
8345 return 0;
8347 plist = XCDR (spec);
8348 while (CONSP (plist))
8350 Lisp_Object key, value;
8352 /* First element of a pair must be a symbol. */
8353 key = XCAR (plist);
8354 plist = XCDR (plist);
8355 if (!SYMBOLP (key))
8356 return 0;
8358 /* There must follow a value. */
8359 if (!CONSP (plist))
8360 return 0;
8361 value = XCAR (plist);
8362 plist = XCDR (plist);
8364 /* Find key in KEYWORDS. Error if not found. */
8365 for (i = 0; i < nkeywords; ++i)
8366 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0)
8367 break;
8369 if (i == nkeywords)
8370 continue;
8372 /* Record that we recognized the keyword. If a keywords
8373 was found more than once, it's an error. */
8374 keywords[i].value = value;
8375 ++keywords[i].count;
8377 if (keywords[i].count > 1)
8378 return 0;
8380 /* Check type of value against allowed type. */
8381 switch (keywords[i].type)
8383 case IMAGE_STRING_VALUE:
8384 if (!STRINGP (value))
8385 return 0;
8386 break;
8388 case IMAGE_STRING_OR_NIL_VALUE:
8389 if (!STRINGP (value) && !NILP (value))
8390 return 0;
8391 break;
8393 case IMAGE_SYMBOL_VALUE:
8394 if (!SYMBOLP (value))
8395 return 0;
8396 break;
8398 case IMAGE_POSITIVE_INTEGER_VALUE:
8399 if (!INTEGERP (value) || XINT (value) <= 0)
8400 return 0;
8401 break;
8403 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR:
8404 if (INTEGERP (value) && XINT (value) >= 0)
8405 break;
8406 if (CONSP (value)
8407 && INTEGERP (XCAR (value)) && INTEGERP (XCDR (value))
8408 && XINT (XCAR (value)) >= 0 && XINT (XCDR (value)) >= 0)
8409 break;
8410 return 0;
8412 case IMAGE_ASCENT_VALUE:
8413 if (SYMBOLP (value) && EQ (value, Qcenter))
8414 break;
8415 else if (INTEGERP (value)
8416 && XINT (value) >= 0
8417 && XINT (value) <= 100)
8418 break;
8419 return 0;
8421 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
8422 if (!INTEGERP (value) || XINT (value) < 0)
8423 return 0;
8424 break;
8426 case IMAGE_DONT_CHECK_VALUE_TYPE:
8427 break;
8429 case IMAGE_FUNCTION_VALUE:
8430 value = indirect_function (value);
8431 if (SUBRP (value)
8432 || COMPILEDP (value)
8433 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
8434 break;
8435 return 0;
8437 case IMAGE_NUMBER_VALUE:
8438 if (!INTEGERP (value) && !FLOATP (value))
8439 return 0;
8440 break;
8442 case IMAGE_INTEGER_VALUE:
8443 if (!INTEGERP (value))
8444 return 0;
8445 break;
8447 case IMAGE_BOOL_VALUE:
8448 if (!NILP (value) && !EQ (value, Qt))
8449 return 0;
8450 break;
8452 default:
8453 abort ();
8454 break;
8457 if (EQ (key, QCtype) && !EQ (type, value))
8458 return 0;
8461 /* Check that all mandatory fields are present. */
8462 for (i = 0; i < nkeywords; ++i)
8463 if (keywords[i].mandatory_p && keywords[i].count == 0)
8464 return 0;
8466 return NILP (plist);
8470 /* Return the value of KEY in image specification SPEC. Value is nil
8471 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
8472 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
8474 static Lisp_Object
8475 image_spec_value (spec, key, found)
8476 Lisp_Object spec, key;
8477 int *found;
8479 Lisp_Object tail;
8481 xassert (valid_image_p (spec));
8483 for (tail = XCDR (spec);
8484 CONSP (tail) && CONSP (XCDR (tail));
8485 tail = XCDR (XCDR (tail)))
8487 if (EQ (XCAR (tail), key))
8489 if (found)
8490 *found = 1;
8491 return XCAR (XCDR (tail));
8495 if (found)
8496 *found = 0;
8497 return Qnil;
8503 /***********************************************************************
8504 Image type independent image structures
8505 ***********************************************************************/
8507 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
8508 static void free_image P_ ((struct frame *f, struct image *img));
8511 /* Allocate and return a new image structure for image specification
8512 SPEC. SPEC has a hash value of HASH. */
8514 static struct image *
8515 make_image (spec, hash)
8516 Lisp_Object spec;
8517 unsigned hash;
8519 struct image *img = (struct image *) xmalloc (sizeof *img);
8521 xassert (valid_image_p (spec));
8522 bzero (img, sizeof *img);
8523 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
8524 xassert (img->type != NULL);
8525 img->spec = spec;
8526 img->data.lisp_val = Qnil;
8527 img->ascent = DEFAULT_IMAGE_ASCENT;
8528 img->hash = hash;
8529 return img;
8533 /* Free image IMG which was used on frame F, including its resources. */
8535 static void
8536 free_image (f, img)
8537 struct frame *f;
8538 struct image *img;
8540 if (img)
8542 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8544 /* Remove IMG from the hash table of its cache. */
8545 if (img->prev)
8546 img->prev->next = img->next;
8547 else
8548 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
8550 if (img->next)
8551 img->next->prev = img->prev;
8553 c->images[img->id] = NULL;
8555 /* Free resources, then free IMG. */
8556 img->type->free (f, img);
8557 xfree (img);
8562 /* Prepare image IMG for display on frame F. Must be called before
8563 drawing an image. */
8565 void
8566 prepare_image_for_display (f, img)
8567 struct frame *f;
8568 struct image *img;
8570 EMACS_TIME t;
8572 /* We're about to display IMG, so set its timestamp to `now'. */
8573 EMACS_GET_TIME (t);
8574 img->timestamp = EMACS_SECS (t);
8576 /* If IMG doesn't have a pixmap yet, load it now, using the image
8577 type dependent loader function. */
8578 if (img->pixmap == 0 && !img->load_failed_p)
8579 img->load_failed_p = img->type->load (f, img) == 0;
8583 /* Value is the number of pixels for the ascent of image IMG when
8584 drawn in face FACE. */
8587 image_ascent (img, face)
8588 struct image *img;
8589 struct face *face;
8591 int height = img->height + img->vmargin;
8592 int ascent;
8594 if (img->ascent == CENTERED_IMAGE_ASCENT)
8596 if (face->font)
8597 ascent = height / 2 - (FONT_DESCENT(face->font)
8598 - FONT_BASE(face->font)) / 2;
8599 else
8600 ascent = height / 2;
8602 else
8603 ascent = height * img->ascent / 100.0;
8605 return ascent;
8610 /* Image background colors. */
8612 static unsigned long
8613 four_corners_best (ximg, width, height)
8614 XImage *ximg;
8615 unsigned long width, height;
8617 #if 0 /* TODO: Image support. */
8618 unsigned long corners[4], best;
8619 int i, best_count;
8621 /* Get the colors at the corners of ximg. */
8622 corners[0] = XGetPixel (ximg, 0, 0);
8623 corners[1] = XGetPixel (ximg, width - 1, 0);
8624 corners[2] = XGetPixel (ximg, width - 1, height - 1);
8625 corners[3] = XGetPixel (ximg, 0, height - 1);
8627 /* Choose the most frequently found color as background. */
8628 for (i = best_count = 0; i < 4; ++i)
8630 int j, n;
8632 for (j = n = 0; j < 4; ++j)
8633 if (corners[i] == corners[j])
8634 ++n;
8636 if (n > best_count)
8637 best = corners[i], best_count = n;
8640 return best;
8641 #else
8642 return 0;
8643 #endif
8646 /* Return the `background' field of IMG. If IMG doesn't have one yet,
8647 it is guessed heuristically. If non-zero, XIMG is an existing XImage
8648 object to use for the heuristic. */
8650 unsigned long
8651 image_background (img, f, ximg)
8652 struct image *img;
8653 struct frame *f;
8654 XImage *ximg;
8656 if (! img->background_valid)
8657 /* IMG doesn't have a background yet, try to guess a reasonable value. */
8659 #if 0 /* TODO: Image support. */
8660 int free_ximg = !ximg;
8662 if (! ximg)
8663 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
8664 0, 0, img->width, img->height, ~0, ZPixmap);
8666 img->background = four_corners_best (ximg, img->width, img->height);
8668 if (free_ximg)
8669 XDestroyImage (ximg);
8671 img->background_valid = 1;
8672 #endif
8675 return img->background;
8678 /* Return the `background_transparent' field of IMG. If IMG doesn't
8679 have one yet, it is guessed heuristically. If non-zero, MASK is an
8680 existing XImage object to use for the heuristic. */
8683 image_background_transparent (img, f, mask)
8684 struct image *img;
8685 struct frame *f;
8686 XImage *mask;
8688 if (! img->background_transparent_valid)
8689 /* IMG doesn't have a background yet, try to guess a reasonable value. */
8691 #if 0 /* TODO: Image support. */
8692 if (img->mask)
8694 int free_mask = !mask;
8696 if (! mask)
8697 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
8698 0, 0, img->width, img->height, ~0, ZPixmap);
8700 img->background_transparent
8701 = !four_corners_best (mask, img->width, img->height);
8703 if (free_mask)
8704 XDestroyImage (mask);
8706 else
8707 #endif
8708 img->background_transparent = 0;
8710 img->background_transparent_valid = 1;
8713 return img->background_transparent;
8717 /***********************************************************************
8718 Helper functions for X image types
8719 ***********************************************************************/
8721 static void x_clear_image_1 P_ ((struct frame *, struct image *, int,
8722 int, int));
8723 static void x_clear_image P_ ((struct frame *f, struct image *img));
8724 static unsigned long x_alloc_image_color P_ ((struct frame *f,
8725 struct image *img,
8726 Lisp_Object color_name,
8727 unsigned long dflt));
8730 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
8731 free the pixmap if any. MASK_P non-zero means clear the mask
8732 pixmap if any. COLORS_P non-zero means free colors allocated for
8733 the image, if any. */
8735 static void
8736 x_clear_image_1 (f, img, pixmap_p, mask_p, colors_p)
8737 struct frame *f;
8738 struct image *img;
8739 int pixmap_p, mask_p, colors_p;
8741 #if 0 /* TODO: W32 image support */
8742 if (pixmap_p && img->pixmap)
8744 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
8745 img->pixmap = None;
8746 img->background_valid = 0;
8749 if (mask_p && img->mask)
8751 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
8752 img->mask = None;
8753 img->background_transparent_valid = 0;
8756 if (colors_p && img->ncolors)
8758 x_free_colors (f, img->colors, img->ncolors);
8759 xfree (img->colors);
8760 img->colors = NULL;
8761 img->ncolors = 0;
8763 #endif
8766 /* Free X resources of image IMG which is used on frame F. */
8768 static void
8769 x_clear_image (f, img)
8770 struct frame *f;
8771 struct image *img;
8773 #if 0 /* TODO: W32 image support */
8775 if (img->pixmap)
8777 BLOCK_INPUT;
8778 XFreePixmap (NULL, img->pixmap);
8779 img->pixmap = 0;
8780 UNBLOCK_INPUT;
8783 if (img->ncolors)
8785 int class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
8787 /* If display has an immutable color map, freeing colors is not
8788 necessary and some servers don't allow it. So don't do it. */
8789 if (class != StaticColor
8790 && class != StaticGray
8791 && class != TrueColor)
8793 Colormap cmap;
8794 BLOCK_INPUT;
8795 cmap = DefaultColormapOfScreen (FRAME_W32_DISPLAY_INFO (f)->screen);
8796 XFreeColors (FRAME_W32_DISPLAY (f), cmap, img->colors,
8797 img->ncolors, 0);
8798 UNBLOCK_INPUT;
8801 xfree (img->colors);
8802 img->colors = NULL;
8803 img->ncolors = 0;
8805 #endif
8809 /* Allocate color COLOR_NAME for image IMG on frame F. If color
8810 cannot be allocated, use DFLT. Add a newly allocated color to
8811 IMG->colors, so that it can be freed again. Value is the pixel
8812 color. */
8814 static unsigned long
8815 x_alloc_image_color (f, img, color_name, dflt)
8816 struct frame *f;
8817 struct image *img;
8818 Lisp_Object color_name;
8819 unsigned long dflt;
8821 #if 0 /* TODO: allocing colors. */
8822 XColor color;
8823 unsigned long result;
8825 xassert (STRINGP (color_name));
8827 if (w32_defined_color (f, XSTRING (color_name)->data, &color, 1))
8829 /* This isn't called frequently so we get away with simply
8830 reallocating the color vector to the needed size, here. */
8831 ++img->ncolors;
8832 img->colors =
8833 (unsigned long *) xrealloc (img->colors,
8834 img->ncolors * sizeof *img->colors);
8835 img->colors[img->ncolors - 1] = color.pixel;
8836 result = color.pixel;
8838 else
8839 result = dflt;
8840 return result;
8841 #endif
8842 return 0;
8847 /***********************************************************************
8848 Image Cache
8849 ***********************************************************************/
8851 static void cache_image P_ ((struct frame *f, struct image *img));
8852 static void postprocess_image P_ ((struct frame *, struct image *));
8855 /* Return a new, initialized image cache that is allocated from the
8856 heap. Call free_image_cache to free an image cache. */
8858 struct image_cache *
8859 make_image_cache ()
8861 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
8862 int size;
8864 bzero (c, sizeof *c);
8865 c->size = 50;
8866 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
8867 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
8868 c->buckets = (struct image **) xmalloc (size);
8869 bzero (c->buckets, size);
8870 return c;
8874 /* Free image cache of frame F. Be aware that X frames share images
8875 caches. */
8877 void
8878 free_image_cache (f)
8879 struct frame *f;
8881 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8882 if (c)
8884 int i;
8886 /* Cache should not be referenced by any frame when freed. */
8887 xassert (c->refcount == 0);
8889 for (i = 0; i < c->used; ++i)
8890 free_image (f, c->images[i]);
8891 xfree (c->images);
8892 xfree (c);
8893 xfree (c->buckets);
8894 FRAME_X_IMAGE_CACHE (f) = NULL;
8899 /* Clear image cache of frame F. FORCE_P non-zero means free all
8900 images. FORCE_P zero means clear only images that haven't been
8901 displayed for some time. Should be called from time to time to
8902 reduce the number of loaded images. If image-eviction-seconds is
8903 non-nil, this frees images in the cache which weren't displayed for
8904 at least that many seconds. */
8906 void
8907 clear_image_cache (f, force_p)
8908 struct frame *f;
8909 int force_p;
8911 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8913 if (c && INTEGERP (Vimage_cache_eviction_delay))
8915 EMACS_TIME t;
8916 unsigned long old;
8917 int i, any_freed_p = 0;
8919 EMACS_GET_TIME (t);
8920 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
8922 for (i = 0; i < c->used; ++i)
8924 struct image *img = c->images[i];
8925 if (img != NULL
8926 && (force_p
8927 || (img->timestamp > old)))
8929 free_image (f, img);
8930 any_freed_p = 1;
8934 /* We may be clearing the image cache because, for example,
8935 Emacs was iconified for a longer period of time. In that
8936 case, current matrices may still contain references to
8937 images freed above. So, clear these matrices. */
8938 if (any_freed_p)
8940 clear_current_matrices (f);
8941 ++windows_or_buffers_changed;
8947 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
8948 0, 1, 0,
8949 doc: /* Clear the image cache of FRAME.
8950 FRAME nil or omitted means use the selected frame.
8951 FRAME t means clear the image caches of all frames. */)
8952 (frame)
8953 Lisp_Object frame;
8955 if (EQ (frame, Qt))
8957 Lisp_Object tail;
8959 FOR_EACH_FRAME (tail, frame)
8960 if (FRAME_W32_P (XFRAME (frame)))
8961 clear_image_cache (XFRAME (frame), 1);
8963 else
8964 clear_image_cache (check_x_frame (frame), 1);
8966 return Qnil;
8970 /* Compute masks and transform image IMG on frame F, as specified
8971 by the image's specification, */
8973 static void
8974 postprocess_image (f, img)
8975 struct frame *f;
8976 struct image *img;
8978 #if 0 /* TODO: image support. */
8979 /* Manipulation of the image's mask. */
8980 if (img->pixmap)
8982 Lisp_Object conversion, spec;
8983 Lisp_Object mask;
8985 spec = img->spec;
8987 /* `:heuristic-mask t'
8988 `:mask heuristic'
8989 means build a mask heuristically.
8990 `:heuristic-mask (R G B)'
8991 `:mask (heuristic (R G B))'
8992 means build a mask from color (R G B) in the
8993 image.
8994 `:mask nil'
8995 means remove a mask, if any. */
8997 mask = image_spec_value (spec, QCheuristic_mask, NULL);
8998 if (!NILP (mask))
8999 x_build_heuristic_mask (f, img, mask);
9000 else
9002 int found_p;
9004 mask = image_spec_value (spec, QCmask, &found_p);
9006 if (EQ (mask, Qheuristic))
9007 x_build_heuristic_mask (f, img, Qt);
9008 else if (CONSP (mask)
9009 && EQ (XCAR (mask), Qheuristic))
9011 if (CONSP (XCDR (mask)))
9012 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
9013 else
9014 x_build_heuristic_mask (f, img, XCDR (mask));
9016 else if (NILP (mask) && found_p && img->mask)
9018 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
9019 img->mask = NULL;
9024 /* Should we apply an image transformation algorithm? */
9025 conversion = image_spec_value (spec, QCconversion, NULL);
9026 if (EQ (conversion, Qdisabled))
9027 x_disable_image (f, img);
9028 else if (EQ (conversion, Qlaplace))
9029 x_laplace (f, img);
9030 else if (EQ (conversion, Qemboss))
9031 x_emboss (f, img);
9032 else if (CONSP (conversion)
9033 && EQ (XCAR (conversion), Qedge_detection))
9035 Lisp_Object tem;
9036 tem = XCDR (conversion);
9037 if (CONSP (tem))
9038 x_edge_detection (f, img,
9039 Fplist_get (tem, QCmatrix),
9040 Fplist_get (tem, QCcolor_adjustment));
9043 #endif
9047 /* Return the id of image with Lisp specification SPEC on frame F.
9048 SPEC must be a valid Lisp image specification (see valid_image_p). */
9051 lookup_image (f, spec)
9052 struct frame *f;
9053 Lisp_Object spec;
9055 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
9056 struct image *img;
9057 int i;
9058 unsigned hash;
9059 struct gcpro gcpro1;
9060 EMACS_TIME now;
9062 /* F must be a window-system frame, and SPEC must be a valid image
9063 specification. */
9064 xassert (FRAME_WINDOW_P (f));
9065 xassert (valid_image_p (spec));
9067 GCPRO1 (spec);
9069 /* Look up SPEC in the hash table of the image cache. */
9070 hash = sxhash (spec, 0);
9071 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
9073 for (img = c->buckets[i]; img; img = img->next)
9074 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
9075 break;
9077 /* If not found, create a new image and cache it. */
9078 if (img == NULL)
9080 extern Lisp_Object Qpostscript;
9082 BLOCK_INPUT;
9083 img = make_image (spec, hash);
9084 cache_image (f, img);
9085 img->load_failed_p = img->type->load (f, img) == 0;
9087 /* If we can't load the image, and we don't have a width and
9088 height, use some arbitrary width and height so that we can
9089 draw a rectangle for it. */
9090 if (img->load_failed_p)
9092 Lisp_Object value;
9094 value = image_spec_value (spec, QCwidth, NULL);
9095 img->width = (INTEGERP (value)
9096 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
9097 value = image_spec_value (spec, QCheight, NULL);
9098 img->height = (INTEGERP (value)
9099 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
9101 else
9103 /* Handle image type independent image attributes
9104 `:ascent PERCENT', `:margin MARGIN', `:relief RELIEF',
9105 `:background COLOR'. */
9106 Lisp_Object ascent, margin, relief, bg;
9108 ascent = image_spec_value (spec, QCascent, NULL);
9109 if (INTEGERP (ascent))
9110 img->ascent = XFASTINT (ascent);
9111 else if (EQ (ascent, Qcenter))
9112 img->ascent = CENTERED_IMAGE_ASCENT;
9114 margin = image_spec_value (spec, QCmargin, NULL);
9115 if (INTEGERP (margin) && XINT (margin) >= 0)
9116 img->vmargin = img->hmargin = XFASTINT (margin);
9117 else if (CONSP (margin) && INTEGERP (XCAR (margin))
9118 && INTEGERP (XCDR (margin)))
9120 if (XINT (XCAR (margin)) > 0)
9121 img->hmargin = XFASTINT (XCAR (margin));
9122 if (XINT (XCDR (margin)) > 0)
9123 img->vmargin = XFASTINT (XCDR (margin));
9126 relief = image_spec_value (spec, QCrelief, NULL);
9127 if (INTEGERP (relief))
9129 img->relief = XINT (relief);
9130 img->hmargin += abs (img->relief);
9131 img->vmargin += abs (img->relief);
9134 if (! img->background_valid)
9136 bg = image_spec_value (img->spec, QCbackground, NULL);
9137 if (!NILP (bg))
9139 img->background
9140 = x_alloc_image_color (f, img, bg,
9141 FRAME_BACKGROUND_PIXEL (f));
9142 img->background_valid = 1;
9146 /* Do image transformations and compute masks, unless we
9147 don't have the image yet. */
9148 if (!EQ (*img->type->type, Qpostscript))
9149 postprocess_image (f, img);
9152 UNBLOCK_INPUT;
9153 xassert (!interrupt_input_blocked);
9156 /* We're using IMG, so set its timestamp to `now'. */
9157 EMACS_GET_TIME (now);
9158 img->timestamp = EMACS_SECS (now);
9160 UNGCPRO;
9162 /* Value is the image id. */
9163 return img->id;
9167 /* Cache image IMG in the image cache of frame F. */
9169 static void
9170 cache_image (f, img)
9171 struct frame *f;
9172 struct image *img;
9174 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
9175 int i;
9177 /* Find a free slot in c->images. */
9178 for (i = 0; i < c->used; ++i)
9179 if (c->images[i] == NULL)
9180 break;
9182 /* If no free slot found, maybe enlarge c->images. */
9183 if (i == c->used && c->used == c->size)
9185 c->size *= 2;
9186 c->images = (struct image **) xrealloc (c->images,
9187 c->size * sizeof *c->images);
9190 /* Add IMG to c->images, and assign IMG an id. */
9191 c->images[i] = img;
9192 img->id = i;
9193 if (i == c->used)
9194 ++c->used;
9196 /* Add IMG to the cache's hash table. */
9197 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
9198 img->next = c->buckets[i];
9199 if (img->next)
9200 img->next->prev = img;
9201 img->prev = NULL;
9202 c->buckets[i] = img;
9206 /* Call FN on every image in the image cache of frame F. Used to mark
9207 Lisp Objects in the image cache. */
9209 void
9210 forall_images_in_image_cache (f, fn)
9211 struct frame *f;
9212 void (*fn) P_ ((struct image *img));
9214 if (FRAME_LIVE_P (f) && FRAME_W32_P (f))
9216 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
9217 if (c)
9219 int i;
9220 for (i = 0; i < c->used; ++i)
9221 if (c->images[i])
9222 fn (c->images[i]);
9229 /***********************************************************************
9230 W32 support code
9231 ***********************************************************************/
9233 #if 0 /* TODO: W32 specific image code. */
9235 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
9236 XImage **, Pixmap *));
9237 static void x_destroy_x_image P_ ((XImage *));
9238 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
9241 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
9242 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
9243 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
9244 via xmalloc. Print error messages via image_error if an error
9245 occurs. Value is non-zero if successful. */
9247 static int
9248 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
9249 struct frame *f;
9250 int width, height, depth;
9251 XImage **ximg;
9252 Pixmap *pixmap;
9254 #if 0 /* TODO: Image support for W32 */
9255 Display *display = FRAME_W32_DISPLAY (f);
9256 Screen *screen = FRAME_X_SCREEN (f);
9257 Window window = FRAME_W32_WINDOW (f);
9259 xassert (interrupt_input_blocked);
9261 if (depth <= 0)
9262 depth = one_w32_display_info.n_cbits;
9263 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
9264 depth, ZPixmap, 0, NULL, width, height,
9265 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
9266 if (*ximg == NULL)
9268 image_error ("Unable to allocate X image", Qnil, Qnil);
9269 return 0;
9272 /* Allocate image raster. */
9273 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
9275 /* Allocate a pixmap of the same size. */
9276 *pixmap = XCreatePixmap (display, window, width, height, depth);
9277 if (*pixmap == 0)
9279 x_destroy_x_image (*ximg);
9280 *ximg = NULL;
9281 image_error ("Unable to create X pixmap", Qnil, Qnil);
9282 return 0;
9284 #endif
9285 return 1;
9289 /* Destroy XImage XIMG. Free XIMG->data. */
9291 static void
9292 x_destroy_x_image (ximg)
9293 XImage *ximg;
9295 xassert (interrupt_input_blocked);
9296 if (ximg)
9298 xfree (ximg->data);
9299 ximg->data = NULL;
9300 XDestroyImage (ximg);
9305 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
9306 are width and height of both the image and pixmap. */
9308 static void
9309 x_put_x_image (f, ximg, pixmap, width, height)
9310 struct frame *f;
9311 XImage *ximg;
9312 Pixmap pixmap;
9314 GC gc;
9316 xassert (interrupt_input_blocked);
9317 gc = XCreateGC (NULL, pixmap, 0, NULL);
9318 XPutImage (NULL, pixmap, gc, ximg, 0, 0, 0, 0, width, height);
9319 XFreeGC (NULL, gc);
9322 #endif
9325 /***********************************************************************
9326 File Handling
9327 ***********************************************************************/
9329 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
9330 static char *slurp_file P_ ((char *, int *));
9333 /* Find image file FILE. Look in data-directory, then
9334 x-bitmap-file-path. Value is the full name of the file found, or
9335 nil if not found. */
9337 static Lisp_Object
9338 x_find_image_file (file)
9339 Lisp_Object file;
9341 Lisp_Object file_found, search_path;
9342 struct gcpro gcpro1, gcpro2;
9343 int fd;
9345 file_found = Qnil;
9346 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
9347 GCPRO2 (file_found, search_path);
9349 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
9350 fd = openp (search_path, file, Qnil, &file_found, 0);
9352 if (fd == -1)
9353 file_found = Qnil;
9354 else
9355 close (fd);
9357 UNGCPRO;
9358 return file_found;
9362 /* Read FILE into memory. Value is a pointer to a buffer allocated
9363 with xmalloc holding FILE's contents. Value is null if an error
9364 occurred. *SIZE is set to the size of the file. */
9366 static char *
9367 slurp_file (file, size)
9368 char *file;
9369 int *size;
9371 FILE *fp = NULL;
9372 char *buf = NULL;
9373 struct stat st;
9375 if (stat (file, &st) == 0
9376 && (fp = fopen (file, "r")) != NULL
9377 && (buf = (char *) xmalloc (st.st_size),
9378 fread (buf, 1, st.st_size, fp) == st.st_size))
9380 *size = st.st_size;
9381 fclose (fp);
9383 else
9385 if (fp)
9386 fclose (fp);
9387 if (buf)
9389 xfree (buf);
9390 buf = NULL;
9394 return buf;
9399 /***********************************************************************
9400 XBM images
9401 ***********************************************************************/
9403 static int xbm_load P_ ((struct frame *f, struct image *img));
9404 static int xbm_load_image_from_file P_ ((struct frame *f, struct image *img,
9405 Lisp_Object file));
9406 static int xbm_image_p P_ ((Lisp_Object object));
9407 static int xbm_read_bitmap_file_data P_ ((char *, int *, int *,
9408 unsigned char **));
9411 /* Indices of image specification fields in xbm_format, below. */
9413 enum xbm_keyword_index
9415 XBM_TYPE,
9416 XBM_FILE,
9417 XBM_WIDTH,
9418 XBM_HEIGHT,
9419 XBM_DATA,
9420 XBM_FOREGROUND,
9421 XBM_BACKGROUND,
9422 XBM_ASCENT,
9423 XBM_MARGIN,
9424 XBM_RELIEF,
9425 XBM_ALGORITHM,
9426 XBM_HEURISTIC_MASK,
9427 XBM_MASK,
9428 XBM_LAST
9431 /* Vector of image_keyword structures describing the format
9432 of valid XBM image specifications. */
9434 static struct image_keyword xbm_format[XBM_LAST] =
9436 {":type", IMAGE_SYMBOL_VALUE, 1},
9437 {":file", IMAGE_STRING_VALUE, 0},
9438 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9439 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9440 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9441 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
9442 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
9443 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
9444 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
9445 {":relief", IMAGE_INTEGER_VALUE, 0},
9446 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9447 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9450 /* Structure describing the image type XBM. */
9452 static struct image_type xbm_type =
9454 &Qxbm,
9455 xbm_image_p,
9456 xbm_load,
9457 x_clear_image,
9458 NULL
9461 /* Tokens returned from xbm_scan. */
9463 enum xbm_token
9465 XBM_TK_IDENT = 256,
9466 XBM_TK_NUMBER
9470 /* Return non-zero if OBJECT is a valid XBM-type image specification.
9471 A valid specification is a list starting with the symbol `image'
9472 The rest of the list is a property list which must contain an
9473 entry `:type xbm..
9475 If the specification specifies a file to load, it must contain
9476 an entry `:file FILENAME' where FILENAME is a string.
9478 If the specification is for a bitmap loaded from memory it must
9479 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
9480 WIDTH and HEIGHT are integers > 0. DATA may be:
9482 1. a string large enough to hold the bitmap data, i.e. it must
9483 have a size >= (WIDTH + 7) / 8 * HEIGHT
9485 2. a bool-vector of size >= WIDTH * HEIGHT
9487 3. a vector of strings or bool-vectors, one for each line of the
9488 bitmap.
9490 Both the file and data forms may contain the additional entries
9491 `:background COLOR' and `:foreground COLOR'. If not present,
9492 foreground and background of the frame on which the image is
9493 displayed, is used. */
9495 static int
9496 xbm_image_p (object)
9497 Lisp_Object object;
9499 struct image_keyword kw[XBM_LAST];
9501 bcopy (xbm_format, kw, sizeof kw);
9502 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
9503 return 0;
9505 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
9507 if (kw[XBM_FILE].count)
9509 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
9510 return 0;
9512 else
9514 Lisp_Object data;
9515 int width, height;
9517 /* Entries for `:width', `:height' and `:data' must be present. */
9518 if (!kw[XBM_WIDTH].count
9519 || !kw[XBM_HEIGHT].count
9520 || !kw[XBM_DATA].count)
9521 return 0;
9523 data = kw[XBM_DATA].value;
9524 width = XFASTINT (kw[XBM_WIDTH].value);
9525 height = XFASTINT (kw[XBM_HEIGHT].value);
9527 /* Check type of data, and width and height against contents of
9528 data. */
9529 if (VECTORP (data))
9531 int i;
9533 /* Number of elements of the vector must be >= height. */
9534 if (XVECTOR (data)->size < height)
9535 return 0;
9537 /* Each string or bool-vector in data must be large enough
9538 for one line of the image. */
9539 for (i = 0; i < height; ++i)
9541 Lisp_Object elt = XVECTOR (data)->contents[i];
9543 if (STRINGP (elt))
9545 if (XSTRING (elt)->size
9546 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
9547 return 0;
9549 else if (BOOL_VECTOR_P (elt))
9551 if (XBOOL_VECTOR (elt)->size < width)
9552 return 0;
9554 else
9555 return 0;
9558 else if (STRINGP (data))
9560 if (XSTRING (data)->size
9561 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
9562 return 0;
9564 else if (BOOL_VECTOR_P (data))
9566 if (XBOOL_VECTOR (data)->size < width * height)
9567 return 0;
9569 else
9570 return 0;
9573 /* Baseline must be a value between 0 and 100 (a percentage). */
9574 if (kw[XBM_ASCENT].count
9575 && XFASTINT (kw[XBM_ASCENT].value) > 100)
9576 return 0;
9578 return 1;
9582 /* Scan a bitmap file. FP is the stream to read from. Value is
9583 either an enumerator from enum xbm_token, or a character for a
9584 single-character token, or 0 at end of file. If scanning an
9585 identifier, store the lexeme of the identifier in SVAL. If
9586 scanning a number, store its value in *IVAL. */
9588 static int
9589 xbm_scan (s, end, sval, ival)
9590 char **s, *end;
9591 char *sval;
9592 int *ival;
9594 int c;
9596 loop:
9598 /* Skip white space. */
9599 while (*s < end &&(c = *(*s)++, isspace (c)))
9602 if (*s >= end)
9603 c = 0;
9604 else if (isdigit (c))
9606 int value = 0, digit;
9608 if (c == '0' && *s < end)
9610 c = *(*s)++;
9611 if (c == 'x' || c == 'X')
9613 while (*s < end)
9615 c = *(*s)++;
9616 if (isdigit (c))
9617 digit = c - '0';
9618 else if (c >= 'a' && c <= 'f')
9619 digit = c - 'a' + 10;
9620 else if (c >= 'A' && c <= 'F')
9621 digit = c - 'A' + 10;
9622 else
9623 break;
9624 value = 16 * value + digit;
9627 else if (isdigit (c))
9629 value = c - '0';
9630 while (*s < end
9631 && (c = *(*s)++, isdigit (c)))
9632 value = 8 * value + c - '0';
9635 else
9637 value = c - '0';
9638 while (*s < end
9639 && (c = *(*s)++, isdigit (c)))
9640 value = 10 * value + c - '0';
9643 if (*s < end)
9644 *s = *s - 1;
9645 *ival = value;
9646 c = XBM_TK_NUMBER;
9648 else if (isalpha (c) || c == '_')
9650 *sval++ = c;
9651 while (*s < end
9652 && (c = *(*s)++, (isalnum (c) || c == '_')))
9653 *sval++ = c;
9654 *sval = 0;
9655 if (*s < end)
9656 *s = *s - 1;
9657 c = XBM_TK_IDENT;
9659 else if (c == '/' && **s == '*')
9661 /* C-style comment. */
9662 ++*s;
9663 while (**s && (**s != '*' || *(*s + 1) != '/'))
9664 ++*s;
9665 if (**s)
9667 *s += 2;
9668 goto loop;
9672 return c;
9676 /* Replacement for XReadBitmapFileData which isn't available under old
9677 X versions. CONTENTS is a pointer to a buffer to parse; END is the
9678 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
9679 the image. Return in *DATA the bitmap data allocated with xmalloc.
9680 Value is non-zero if successful. DATA null means just test if
9681 CONTENTS looks like an in-memory XBM file. */
9683 static int
9684 xbm_read_bitmap_data (contents, end, width, height, data)
9685 char *contents, *end;
9686 int *width, *height;
9687 unsigned char **data;
9689 char *s = contents;
9690 char buffer[BUFSIZ];
9691 int padding_p = 0;
9692 int v10 = 0;
9693 int bytes_per_line, i, nbytes;
9694 unsigned char *p;
9695 int value;
9696 int LA1;
9698 #define match() \
9699 LA1 = xbm_scan (contents, end, buffer, &value)
9701 #define expect(TOKEN) \
9702 if (LA1 != (TOKEN)) \
9703 goto failure; \
9704 else \
9705 match ()
9707 #define expect_ident(IDENT) \
9708 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
9709 match (); \
9710 else \
9711 goto failure
9713 *width = *height = -1;
9714 if (data)
9715 *data = NULL;
9716 LA1 = xbm_scan (&s, end, buffer, &value);
9718 /* Parse defines for width, height and hot-spots. */
9719 while (LA1 == '#')
9721 match ();
9722 expect_ident ("define");
9723 expect (XBM_TK_IDENT);
9725 if (LA1 == XBM_TK_NUMBER);
9727 char *p = strrchr (buffer, '_');
9728 p = p ? p + 1 : buffer;
9729 if (strcmp (p, "width") == 0)
9730 *width = value;
9731 else if (strcmp (p, "height") == 0)
9732 *height = value;
9734 expect (XBM_TK_NUMBER);
9737 if (*width < 0 || *height < 0)
9738 goto failure;
9739 else if (data == NULL)
9740 goto success;
9742 /* Parse bits. Must start with `static'. */
9743 expect_ident ("static");
9744 if (LA1 == XBM_TK_IDENT)
9746 if (strcmp (buffer, "unsigned") == 0)
9748 match ();
9749 expect_ident ("char");
9751 else if (strcmp (buffer, "short") == 0)
9753 match ();
9754 v10 = 1;
9755 if (*width % 16 && *width % 16 < 9)
9756 padding_p = 1;
9758 else if (strcmp (buffer, "char") == 0)
9759 match ();
9760 else
9761 goto failure;
9763 else
9764 goto failure;
9766 expect (XBM_TK_IDENT);
9767 expect ('[');
9768 expect (']');
9769 expect ('=');
9770 expect ('{');
9772 bytes_per_line = (*width + 7) / 8 + padding_p;
9773 nbytes = bytes_per_line * *height;
9774 p = *data = (char *) xmalloc (nbytes);
9776 if (v10)
9779 for (i = 0; i < nbytes; i += 2)
9781 int val = value;
9782 expect (XBM_TK_NUMBER);
9784 *p++ = val;
9785 if (!padding_p || ((i + 2) % bytes_per_line))
9786 *p++ = value >> 8;
9788 if (LA1 == ',' || LA1 == '}')
9789 match ();
9790 else
9791 goto failure;
9794 else
9796 for (i = 0; i < nbytes; ++i)
9798 int val = value;
9799 expect (XBM_TK_NUMBER);
9801 *p++ = val;
9803 if (LA1 == ',' || LA1 == '}')
9804 match ();
9805 else
9806 goto failure;
9810 success:
9811 return 1;
9813 failure:
9815 if (data && *data)
9817 xfree (*data);
9818 *data = NULL;
9820 return 0;
9822 #undef match
9823 #undef expect
9824 #undef expect_ident
9828 /* Load XBM image IMG which will be displayed on frame F from buffer
9829 CONTENTS. END is the end of the buffer. Value is non-zero if
9830 successful. */
9832 static int
9833 xbm_load_image (f, img, contents, end)
9834 struct frame *f;
9835 struct image *img;
9836 char *contents, *end;
9838 int rc;
9839 unsigned char *data;
9840 int success_p = 0;
9842 rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
9843 if (rc)
9845 int depth = one_w32_display_info.n_cbits;
9846 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
9847 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
9848 Lisp_Object value;
9850 xassert (img->width > 0 && img->height > 0);
9852 /* Get foreground and background colors, maybe allocate colors. */
9853 value = image_spec_value (img->spec, QCforeground, NULL);
9854 if (!NILP (value))
9855 foreground = x_alloc_image_color (f, img, value, foreground);
9856 value = image_spec_value (img->spec, QCbackground, NULL);
9857 if (!NILP (value))
9859 background = x_alloc_image_color (f, img, value, background);
9860 img->background = background;
9861 img->background_valid = 1;
9864 #if 0 /* TODO : Port image display to W32 */
9865 img->pixmap
9866 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f),
9867 FRAME_W32_WINDOW (f),
9868 data,
9869 img->width, img->height,
9870 foreground, background,
9871 depth);
9872 #endif
9873 xfree (data);
9875 if (img->pixmap == 0)
9877 x_clear_image (f, img);
9878 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
9880 else
9881 success_p = 1;
9883 else
9884 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
9886 return success_p;
9890 /* Value is non-zero if DATA looks like an in-memory XBM file. */
9892 static int
9893 xbm_file_p (data)
9894 Lisp_Object data;
9896 int w, h;
9897 return (STRINGP (data)
9898 && xbm_read_bitmap_data (XSTRING (data)->data,
9899 (XSTRING (data)->data
9900 + STRING_BYTES (XSTRING (data))),
9901 &w, &h, NULL));
9905 /* Fill image IMG which is used on frame F with pixmap data. Value is
9906 non-zero if successful. */
9908 static int
9909 xbm_load (f, img)
9910 struct frame *f;
9911 struct image *img;
9913 int success_p = 0;
9914 Lisp_Object file_name;
9916 xassert (xbm_image_p (img->spec));
9918 /* If IMG->spec specifies a file name, create a non-file spec from it. */
9919 file_name = image_spec_value (img->spec, QCfile, NULL);
9920 if (STRINGP (file_name))
9922 Lisp_Object file;
9923 char *contents;
9924 int size;
9925 struct gcpro gcpro1;
9927 file = x_find_image_file (file_name);
9928 GCPRO1 (file);
9929 if (!STRINGP (file))
9931 image_error ("Cannot find image file `%s'", file_name, Qnil);
9932 UNGCPRO;
9933 return 0;
9936 contents = slurp_file (XSTRING (file)->data, &size);
9937 if (contents == NULL)
9939 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
9940 UNGCPRO;
9941 return 0;
9944 success_p = xbm_load_image (f, img, contents, contents + size);
9945 UNGCPRO;
9947 else
9949 struct image_keyword fmt[XBM_LAST];
9950 Lisp_Object data;
9951 int depth;
9952 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
9953 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
9954 char *bits;
9955 int parsed_p;
9956 int in_memory_file_p = 0;
9958 /* See if data looks like an in-memory XBM file. */
9959 data = image_spec_value (img->spec, QCdata, NULL);
9960 in_memory_file_p = xbm_file_p (data);
9962 /* Parse the list specification. */
9963 bcopy (xbm_format, fmt, sizeof fmt);
9964 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
9965 xassert (parsed_p);
9967 /* Get specified width, and height. */
9968 if (!in_memory_file_p)
9970 img->width = XFASTINT (fmt[XBM_WIDTH].value);
9971 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
9972 xassert (img->width > 0 && img->height > 0);
9974 /* Get foreground and background colors, maybe allocate colors. */
9975 if (fmt[XBM_FOREGROUND].count
9976 && STRINGP (fmt[XBM_FOREGROUND].value))
9977 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
9978 foreground);
9979 if (fmt[XBM_BACKGROUND].count
9980 && STRINGP (fmt[XBM_BACKGROUND].value))
9981 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
9982 background);
9984 if (in_memory_file_p)
9985 success_p = xbm_load_image (f, img, XSTRING (data)->data,
9986 (XSTRING (data)->data
9987 + STRING_BYTES (XSTRING (data))));
9988 else
9990 if (VECTORP (data))
9992 int i;
9993 char *p;
9994 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
9996 p = bits = (char *) alloca (nbytes * img->height);
9997 for (i = 0; i < img->height; ++i, p += nbytes)
9999 Lisp_Object line = XVECTOR (data)->contents[i];
10000 if (STRINGP (line))
10001 bcopy (XSTRING (line)->data, p, nbytes);
10002 else
10003 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
10006 else if (STRINGP (data))
10007 bits = XSTRING (data)->data;
10008 else
10009 bits = XBOOL_VECTOR (data)->data;
10010 #ifdef TODO /* image support. */
10011 /* Create the pixmap. */
10012 depth = one_w32_display_info.n_cbits;
10013 img->pixmap
10014 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
10015 FRAME_X_WINDOW (f),
10016 bits,
10017 img->width, img->height,
10018 foreground, background,
10019 depth);
10020 #endif
10021 if (img->pixmap)
10022 success_p = 1;
10023 else
10025 image_error ("Unable to create pixmap for XBM image `%s'",
10026 img->spec, Qnil);
10027 x_clear_image (f, img);
10032 return success_p;
10037 /***********************************************************************
10038 XPM images
10039 ***********************************************************************/
10041 #if HAVE_XPM
10043 static int xpm_image_p P_ ((Lisp_Object object));
10044 static int xpm_load P_ ((struct frame *f, struct image *img));
10045 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
10047 #include "X11/xpm.h"
10049 /* The symbol `xpm' identifying XPM-format images. */
10051 Lisp_Object Qxpm;
10053 /* Indices of image specification fields in xpm_format, below. */
10055 enum xpm_keyword_index
10057 XPM_TYPE,
10058 XPM_FILE,
10059 XPM_DATA,
10060 XPM_ASCENT,
10061 XPM_MARGIN,
10062 XPM_RELIEF,
10063 XPM_ALGORITHM,
10064 XPM_HEURISTIC_MASK,
10065 XPM_MASK,
10066 XPM_COLOR_SYMBOLS,
10067 XPM_BACKGROUND,
10068 XPM_LAST
10071 /* Vector of image_keyword structures describing the format
10072 of valid XPM image specifications. */
10074 static struct image_keyword xpm_format[XPM_LAST] =
10076 {":type", IMAGE_SYMBOL_VALUE, 1},
10077 {":file", IMAGE_STRING_VALUE, 0},
10078 {":data", IMAGE_STRING_VALUE, 0},
10079 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10080 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
10081 {":relief", IMAGE_INTEGER_VALUE, 0},
10082 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10083 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10084 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10085 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10086 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
10089 /* Structure describing the image type XBM. */
10091 static struct image_type xpm_type =
10093 &Qxpm,
10094 xpm_image_p,
10095 xpm_load,
10096 x_clear_image,
10097 NULL
10101 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
10102 for XPM images. Such a list must consist of conses whose car and
10103 cdr are strings. */
10105 static int
10106 xpm_valid_color_symbols_p (color_symbols)
10107 Lisp_Object color_symbols;
10109 while (CONSP (color_symbols))
10111 Lisp_Object sym = XCAR (color_symbols);
10112 if (!CONSP (sym)
10113 || !STRINGP (XCAR (sym))
10114 || !STRINGP (XCDR (sym)))
10115 break;
10116 color_symbols = XCDR (color_symbols);
10119 return NILP (color_symbols);
10123 /* Value is non-zero if OBJECT is a valid XPM image specification. */
10125 static int
10126 xpm_image_p (object)
10127 Lisp_Object object;
10129 struct image_keyword fmt[XPM_LAST];
10130 bcopy (xpm_format, fmt, sizeof fmt);
10131 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
10132 /* Either `:file' or `:data' must be present. */
10133 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
10134 /* Either no `:color-symbols' or it's a list of conses
10135 whose car and cdr are strings. */
10136 && (fmt[XPM_COLOR_SYMBOLS].count == 0
10137 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value))
10138 && (fmt[XPM_ASCENT].count == 0
10139 || XFASTINT (fmt[XPM_ASCENT].value) < 100));
10143 /* Load image IMG which will be displayed on frame F. Value is
10144 non-zero if successful. */
10146 static int
10147 xpm_load (f, img)
10148 struct frame *f;
10149 struct image *img;
10151 int rc, i;
10152 XpmAttributes attrs;
10153 Lisp_Object specified_file, color_symbols;
10155 /* Configure the XPM lib. Use the visual of frame F. Allocate
10156 close colors. Return colors allocated. */
10157 bzero (&attrs, sizeof attrs);
10158 attrs.visual = FRAME_X_VISUAL (f);
10159 attrs.colormap = FRAME_X_COLORMAP (f);
10160 attrs.valuemask |= XpmVisual;
10161 attrs.valuemask |= XpmColormap;
10162 attrs.valuemask |= XpmReturnAllocPixels;
10163 #ifdef XpmAllocCloseColors
10164 attrs.alloc_close_colors = 1;
10165 attrs.valuemask |= XpmAllocCloseColors;
10166 #else
10167 attrs.closeness = 600;
10168 attrs.valuemask |= XpmCloseness;
10169 #endif
10171 /* If image specification contains symbolic color definitions, add
10172 these to `attrs'. */
10173 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
10174 if (CONSP (color_symbols))
10176 Lisp_Object tail;
10177 XpmColorSymbol *xpm_syms;
10178 int i, size;
10180 attrs.valuemask |= XpmColorSymbols;
10182 /* Count number of symbols. */
10183 attrs.numsymbols = 0;
10184 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
10185 ++attrs.numsymbols;
10187 /* Allocate an XpmColorSymbol array. */
10188 size = attrs.numsymbols * sizeof *xpm_syms;
10189 xpm_syms = (XpmColorSymbol *) alloca (size);
10190 bzero (xpm_syms, size);
10191 attrs.colorsymbols = xpm_syms;
10193 /* Fill the color symbol array. */
10194 for (tail = color_symbols, i = 0;
10195 CONSP (tail);
10196 ++i, tail = XCDR (tail))
10198 Lisp_Object name = XCAR (XCAR (tail));
10199 Lisp_Object color = XCDR (XCAR (tail));
10200 xpm_syms[i].name = (char *) alloca (XSTRING (name)->size + 1);
10201 strcpy (xpm_syms[i].name, XSTRING (name)->data);
10202 xpm_syms[i].value = (char *) alloca (XSTRING (color)->size + 1);
10203 strcpy (xpm_syms[i].value, XSTRING (color)->data);
10207 /* Create a pixmap for the image, either from a file, or from a
10208 string buffer containing data in the same format as an XPM file. */
10209 BLOCK_INPUT;
10210 specified_file = image_spec_value (img->spec, QCfile, NULL);
10211 if (STRINGP (specified_file))
10213 Lisp_Object file = x_find_image_file (specified_file);
10214 if (!STRINGP (file))
10216 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10217 UNBLOCK_INPUT;
10218 return 0;
10221 rc = XpmReadFileToPixmap (NULL, FRAME_W32_WINDOW (f),
10222 XSTRING (file)->data, &img->pixmap, &img->mask,
10223 &attrs);
10225 else
10227 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
10228 rc = XpmCreatePixmapFromBuffer (NULL, FRAME_W32_WINDOW (f),
10229 XSTRING (buffer)->data,
10230 &img->pixmap, &img->mask,
10231 &attrs);
10233 UNBLOCK_INPUT;
10235 if (rc == XpmSuccess)
10237 /* Remember allocated colors. */
10238 img->ncolors = attrs.nalloc_pixels;
10239 img->colors = (unsigned long *) xmalloc (img->ncolors
10240 * sizeof *img->colors);
10241 for (i = 0; i < attrs.nalloc_pixels; ++i)
10242 img->colors[i] = attrs.alloc_pixels[i];
10244 img->width = attrs.width;
10245 img->height = attrs.height;
10246 xassert (img->width > 0 && img->height > 0);
10248 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
10249 BLOCK_INPUT;
10250 XpmFreeAttributes (&attrs);
10251 UNBLOCK_INPUT;
10253 else
10255 switch (rc)
10257 case XpmOpenFailed:
10258 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
10259 break;
10261 case XpmFileInvalid:
10262 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
10263 break;
10265 case XpmNoMemory:
10266 image_error ("Out of memory (%s)", img->spec, Qnil);
10267 break;
10269 case XpmColorFailed:
10270 image_error ("Color allocation error (%s)", img->spec, Qnil);
10271 break;
10273 default:
10274 image_error ("Unknown error (%s)", img->spec, Qnil);
10275 break;
10279 return rc == XpmSuccess;
10282 #endif /* HAVE_XPM != 0 */
10285 #if 0 /* TODO : Color tables on W32. */
10286 /***********************************************************************
10287 Color table
10288 ***********************************************************************/
10290 /* An entry in the color table mapping an RGB color to a pixel color. */
10292 struct ct_color
10294 int r, g, b;
10295 unsigned long pixel;
10297 /* Next in color table collision list. */
10298 struct ct_color *next;
10301 /* The bucket vector size to use. Must be prime. */
10303 #define CT_SIZE 101
10305 /* Value is a hash of the RGB color given by R, G, and B. */
10307 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
10309 /* The color hash table. */
10311 struct ct_color **ct_table;
10313 /* Number of entries in the color table. */
10315 int ct_colors_allocated;
10317 /* Function prototypes. */
10319 static void init_color_table P_ ((void));
10320 static void free_color_table P_ ((void));
10321 static unsigned long *colors_in_color_table P_ ((int *n));
10322 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
10323 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
10326 /* Initialize the color table. */
10328 static void
10329 init_color_table ()
10331 int size = CT_SIZE * sizeof (*ct_table);
10332 ct_table = (struct ct_color **) xmalloc (size);
10333 bzero (ct_table, size);
10334 ct_colors_allocated = 0;
10338 /* Free memory associated with the color table. */
10340 static void
10341 free_color_table ()
10343 int i;
10344 struct ct_color *p, *next;
10346 for (i = 0; i < CT_SIZE; ++i)
10347 for (p = ct_table[i]; p; p = next)
10349 next = p->next;
10350 xfree (p);
10353 xfree (ct_table);
10354 ct_table = NULL;
10358 /* Value is a pixel color for RGB color R, G, B on frame F. If an
10359 entry for that color already is in the color table, return the
10360 pixel color of that entry. Otherwise, allocate a new color for R,
10361 G, B, and make an entry in the color table. */
10363 static unsigned long
10364 lookup_rgb_color (f, r, g, b)
10365 struct frame *f;
10366 int r, g, b;
10368 unsigned hash = CT_HASH_RGB (r, g, b);
10369 int i = hash % CT_SIZE;
10370 struct ct_color *p;
10372 for (p = ct_table[i]; p; p = p->next)
10373 if (p->r == r && p->g == g && p->b == b)
10374 break;
10376 if (p == NULL)
10378 COLORREF color;
10379 Colormap cmap;
10380 int rc;
10382 color = PALETTERGB (r, g, b);
10384 ++ct_colors_allocated;
10386 p = (struct ct_color *) xmalloc (sizeof *p);
10387 p->r = r;
10388 p->g = g;
10389 p->b = b;
10390 p->pixel = color;
10391 p->next = ct_table[i];
10392 ct_table[i] = p;
10395 return p->pixel;
10399 /* Look up pixel color PIXEL which is used on frame F in the color
10400 table. If not already present, allocate it. Value is PIXEL. */
10402 static unsigned long
10403 lookup_pixel_color (f, pixel)
10404 struct frame *f;
10405 unsigned long pixel;
10407 int i = pixel % CT_SIZE;
10408 struct ct_color *p;
10410 for (p = ct_table[i]; p; p = p->next)
10411 if (p->pixel == pixel)
10412 break;
10414 if (p == NULL)
10416 XColor color;
10417 Colormap cmap;
10418 int rc;
10420 BLOCK_INPUT;
10422 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
10423 color.pixel = pixel;
10424 XQueryColor (NULL, cmap, &color);
10425 rc = x_alloc_nearest_color (f, cmap, &color);
10426 UNBLOCK_INPUT;
10428 if (rc)
10430 ++ct_colors_allocated;
10432 p = (struct ct_color *) xmalloc (sizeof *p);
10433 p->r = color.red;
10434 p->g = color.green;
10435 p->b = color.blue;
10436 p->pixel = pixel;
10437 p->next = ct_table[i];
10438 ct_table[i] = p;
10440 else
10441 return FRAME_FOREGROUND_PIXEL (f);
10443 return p->pixel;
10447 /* Value is a vector of all pixel colors contained in the color table,
10448 allocated via xmalloc. Set *N to the number of colors. */
10450 static unsigned long *
10451 colors_in_color_table (n)
10452 int *n;
10454 int i, j;
10455 struct ct_color *p;
10456 unsigned long *colors;
10458 if (ct_colors_allocated == 0)
10460 *n = 0;
10461 colors = NULL;
10463 else
10465 colors = (unsigned long *) xmalloc (ct_colors_allocated
10466 * sizeof *colors);
10467 *n = ct_colors_allocated;
10469 for (i = j = 0; i < CT_SIZE; ++i)
10470 for (p = ct_table[i]; p; p = p->next)
10471 colors[j++] = p->pixel;
10474 return colors;
10477 #endif /* TODO */
10480 /***********************************************************************
10481 Algorithms
10482 ***********************************************************************/
10483 #if 0 /* TODO: image support. */
10484 static XColor *x_to_xcolors P_ ((struct frame *, struct image *, int));
10485 static void x_from_xcolors P_ ((struct frame *, struct image *, XColor *));
10486 static void x_detect_edges P_ ((struct frame *, struct image *, int[9], int));
10488 /* Non-zero means draw a cross on images having `:conversion
10489 disabled'. */
10491 int cross_disabled_images;
10493 /* Edge detection matrices for different edge-detection
10494 strategies. */
10496 static int emboss_matrix[9] = {
10497 /* x - 1 x x + 1 */
10498 2, -1, 0, /* y - 1 */
10499 -1, 0, 1, /* y */
10500 0, 1, -2 /* y + 1 */
10503 static int laplace_matrix[9] = {
10504 /* x - 1 x x + 1 */
10505 1, 0, 0, /* y - 1 */
10506 0, 0, 0, /* y */
10507 0, 0, -1 /* y + 1 */
10510 /* Value is the intensity of the color whose red/green/blue values
10511 are R, G, and B. */
10513 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
10516 /* On frame F, return an array of XColor structures describing image
10517 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
10518 non-zero means also fill the red/green/blue members of the XColor
10519 structures. Value is a pointer to the array of XColors structures,
10520 allocated with xmalloc; it must be freed by the caller. */
10522 static XColor *
10523 x_to_xcolors (f, img, rgb_p)
10524 struct frame *f;
10525 struct image *img;
10526 int rgb_p;
10528 int x, y;
10529 XColor *colors, *p;
10530 XImage *ximg;
10532 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
10534 /* Get the X image IMG->pixmap. */
10535 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
10536 0, 0, img->width, img->height, ~0, ZPixmap);
10538 /* Fill the `pixel' members of the XColor array. I wished there
10539 were an easy and portable way to circumvent XGetPixel. */
10540 p = colors;
10541 for (y = 0; y < img->height; ++y)
10543 XColor *row = p;
10545 for (x = 0; x < img->width; ++x, ++p)
10546 p->pixel = XGetPixel (ximg, x, y);
10548 if (rgb_p)
10549 x_query_colors (f, row, img->width);
10552 XDestroyImage (ximg);
10553 return colors;
10557 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
10558 RGB members are set. F is the frame on which this all happens.
10559 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
10561 static void
10562 x_from_xcolors (f, img, colors)
10563 struct frame *f;
10564 struct image *img;
10565 XColor *colors;
10567 int x, y;
10568 XImage *oimg;
10569 Pixmap pixmap;
10570 XColor *p;
10572 init_color_table ();
10574 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
10575 &oimg, &pixmap);
10576 p = colors;
10577 for (y = 0; y < img->height; ++y)
10578 for (x = 0; x < img->width; ++x, ++p)
10580 unsigned long pixel;
10581 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
10582 XPutPixel (oimg, x, y, pixel);
10585 xfree (colors);
10586 x_clear_image_1 (f, img, 1, 0, 1);
10588 x_put_x_image (f, oimg, pixmap, img->width, img->height);
10589 x_destroy_x_image (oimg);
10590 img->pixmap = pixmap;
10591 img->colors = colors_in_color_table (&img->ncolors);
10592 free_color_table ();
10596 /* On frame F, perform edge-detection on image IMG.
10598 MATRIX is a nine-element array specifying the transformation
10599 matrix. See emboss_matrix for an example.
10601 COLOR_ADJUST is a color adjustment added to each pixel of the
10602 outgoing image. */
10604 static void
10605 x_detect_edges (f, img, matrix, color_adjust)
10606 struct frame *f;
10607 struct image *img;
10608 int matrix[9], color_adjust;
10610 XColor *colors = x_to_xcolors (f, img, 1);
10611 XColor *new, *p;
10612 int x, y, i, sum;
10614 for (i = sum = 0; i < 9; ++i)
10615 sum += abs (matrix[i]);
10617 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
10619 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
10621 for (y = 0; y < img->height; ++y)
10623 p = COLOR (new, 0, y);
10624 p->red = p->green = p->blue = 0xffff/2;
10625 p = COLOR (new, img->width - 1, y);
10626 p->red = p->green = p->blue = 0xffff/2;
10629 for (x = 1; x < img->width - 1; ++x)
10631 p = COLOR (new, x, 0);
10632 p->red = p->green = p->blue = 0xffff/2;
10633 p = COLOR (new, x, img->height - 1);
10634 p->red = p->green = p->blue = 0xffff/2;
10637 for (y = 1; y < img->height - 1; ++y)
10639 p = COLOR (new, 1, y);
10641 for (x = 1; x < img->width - 1; ++x, ++p)
10643 int r, g, b, y1, x1;
10645 r = g = b = i = 0;
10646 for (y1 = y - 1; y1 < y + 2; ++y1)
10647 for (x1 = x - 1; x1 < x + 2; ++x1, ++i)
10648 if (matrix[i])
10650 XColor *t = COLOR (colors, x1, y1);
10651 r += matrix[i] * t->red;
10652 g += matrix[i] * t->green;
10653 b += matrix[i] * t->blue;
10656 r = (r / sum + color_adjust) & 0xffff;
10657 g = (g / sum + color_adjust) & 0xffff;
10658 b = (b / sum + color_adjust) & 0xffff;
10659 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
10663 xfree (colors);
10664 x_from_xcolors (f, img, new);
10666 #undef COLOR
10670 /* Perform the pre-defined `emboss' edge-detection on image IMG
10671 on frame F. */
10673 static void
10674 x_emboss (f, img)
10675 struct frame *f;
10676 struct image *img;
10678 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
10682 /* Transform image IMG which is used on frame F with a Laplace
10683 edge-detection algorithm. The result is an image that can be used
10684 to draw disabled buttons, for example. */
10686 static void
10687 x_laplace (f, img)
10688 struct frame *f;
10689 struct image *img;
10691 x_detect_edges (f, img, laplace_matrix, 45000);
10695 /* Perform edge-detection on image IMG on frame F, with specified
10696 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
10698 MATRIX must be either
10700 - a list of at least 9 numbers in row-major form
10701 - a vector of at least 9 numbers
10703 COLOR_ADJUST nil means use a default; otherwise it must be a
10704 number. */
10706 static void
10707 x_edge_detection (f, img, matrix, color_adjust)
10708 struct frame *f;
10709 struct image *img;
10710 Lisp_Object matrix, color_adjust;
10712 int i = 0;
10713 int trans[9];
10715 if (CONSP (matrix))
10717 for (i = 0;
10718 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
10719 ++i, matrix = XCDR (matrix))
10720 trans[i] = XFLOATINT (XCAR (matrix));
10722 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
10724 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
10725 trans[i] = XFLOATINT (AREF (matrix, i));
10728 if (NILP (color_adjust))
10729 color_adjust = make_number (0xffff / 2);
10731 if (i == 9 && NUMBERP (color_adjust))
10732 x_detect_edges (f, img, trans, (int) XFLOATINT (color_adjust));
10736 /* Transform image IMG on frame F so that it looks disabled. */
10738 static void
10739 x_disable_image (f, img)
10740 struct frame *f;
10741 struct image *img;
10743 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
10745 if (dpyinfo->n_planes >= 2)
10747 /* Color (or grayscale). Convert to gray, and equalize. Just
10748 drawing such images with a stipple can look very odd, so
10749 we're using this method instead. */
10750 XColor *colors = x_to_xcolors (f, img, 1);
10751 XColor *p, *end;
10752 const int h = 15000;
10753 const int l = 30000;
10755 for (p = colors, end = colors + img->width * img->height;
10756 p < end;
10757 ++p)
10759 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
10760 int i2 = (0xffff - h - l) * i / 0xffff + l;
10761 p->red = p->green = p->blue = i2;
10764 x_from_xcolors (f, img, colors);
10767 /* Draw a cross over the disabled image, if we must or if we
10768 should. */
10769 if (dpyinfo->n_planes < 2 || cross_disabled_images)
10771 Display *dpy = FRAME_X_DISPLAY (f);
10772 GC gc;
10774 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
10775 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
10776 XDrawLine (dpy, img->pixmap, gc, 0, 0,
10777 img->width - 1, img->height - 1);
10778 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
10779 img->width - 1, 0);
10780 XFreeGC (dpy, gc);
10782 if (img->mask)
10784 gc = XCreateGC (dpy, img->mask, 0, NULL);
10785 XSetForeground (dpy, gc, WHITE_PIX_DEFAULT (f));
10786 XDrawLine (dpy, img->mask, gc, 0, 0,
10787 img->width - 1, img->height - 1);
10788 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
10789 img->width - 1, 0);
10790 XFreeGC (dpy, gc);
10796 /* Build a mask for image IMG which is used on frame F. FILE is the
10797 name of an image file, for error messages. HOW determines how to
10798 determine the background color of IMG. If it is a list '(R G B)',
10799 with R, G, and B being integers >= 0, take that as the color of the
10800 background. Otherwise, determine the background color of IMG
10801 heuristically. Value is non-zero if successful. */
10803 static int
10804 x_build_heuristic_mask (f, img, how)
10805 struct frame *f;
10806 struct image *img;
10807 Lisp_Object how;
10809 Display *dpy = FRAME_W32_DISPLAY (f);
10810 XImage *ximg, *mask_img;
10811 int x, y, rc, use_img_background;
10812 unsigned long bg = 0;
10814 if (img->mask)
10816 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
10817 img->mask = None;
10818 img->background_transparent_valid = 0;
10821 /* Create an image and pixmap serving as mask. */
10822 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
10823 &mask_img, &img->mask);
10824 if (!rc)
10825 return 0;
10827 /* Get the X image of IMG->pixmap. */
10828 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
10829 ~0, ZPixmap);
10831 /* Determine the background color of ximg. If HOW is `(R G B)'
10832 take that as color. Otherwise, use the image's background color. */
10833 use_img_background = 1;
10835 if (CONSP (how))
10837 int rgb[3], i;
10839 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
10841 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
10842 how = XCDR (how);
10845 if (i == 3 && NILP (how))
10847 char color_name[30];
10848 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
10849 bg = x_alloc_image_color (f, img, build_string (color_name), 0);
10850 use_img_background = 0;
10854 if (use_img_background)
10855 bg = four_corners_best (ximg, img->width, img->height);
10857 /* Set all bits in mask_img to 1 whose color in ximg is different
10858 from the background color bg. */
10859 for (y = 0; y < img->height; ++y)
10860 for (x = 0; x < img->width; ++x)
10861 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
10863 /* Fill in the background_transparent field while we have the mask handy. */
10864 image_background_transparent (img, f, mask_img);
10866 /* Put mask_img into img->mask. */
10867 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
10868 x_destroy_x_image (mask_img);
10869 XDestroyImage (ximg);
10871 return 1;
10873 #endif /* TODO */
10876 /***********************************************************************
10877 PBM (mono, gray, color)
10878 ***********************************************************************/
10879 #ifdef HAVE_PBM
10881 static int pbm_image_p P_ ((Lisp_Object object));
10882 static int pbm_load P_ ((struct frame *f, struct image *img));
10883 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
10885 /* The symbol `pbm' identifying images of this type. */
10887 Lisp_Object Qpbm;
10889 /* Indices of image specification fields in gs_format, below. */
10891 enum pbm_keyword_index
10893 PBM_TYPE,
10894 PBM_FILE,
10895 PBM_DATA,
10896 PBM_ASCENT,
10897 PBM_MARGIN,
10898 PBM_RELIEF,
10899 PBM_ALGORITHM,
10900 PBM_HEURISTIC_MASK,
10901 PBM_MASK,
10902 PBM_FOREGROUND,
10903 PBM_BACKGROUND,
10904 PBM_LAST
10907 /* Vector of image_keyword structures describing the format
10908 of valid user-defined image specifications. */
10910 static struct image_keyword pbm_format[PBM_LAST] =
10912 {":type", IMAGE_SYMBOL_VALUE, 1},
10913 {":file", IMAGE_STRING_VALUE, 0},
10914 {":data", IMAGE_STRING_VALUE, 0},
10915 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10916 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
10917 {":relief", IMAGE_INTEGER_VALUE, 0},
10918 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10919 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10920 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10921 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
10922 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
10925 /* Structure describing the image type `pbm'. */
10927 static struct image_type pbm_type =
10929 &Qpbm,
10930 pbm_image_p,
10931 pbm_load,
10932 x_clear_image,
10933 NULL
10937 /* Return non-zero if OBJECT is a valid PBM image specification. */
10939 static int
10940 pbm_image_p (object)
10941 Lisp_Object object;
10943 struct image_keyword fmt[PBM_LAST];
10945 bcopy (pbm_format, fmt, sizeof fmt);
10947 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm)
10948 || (fmt[PBM_ASCENT].count
10949 && XFASTINT (fmt[PBM_ASCENT].value) > 100))
10950 return 0;
10952 /* Must specify either :data or :file. */
10953 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
10957 /* Scan a decimal number from *S and return it. Advance *S while
10958 reading the number. END is the end of the string. Value is -1 at
10959 end of input. */
10961 static int
10962 pbm_scan_number (s, end)
10963 unsigned char **s, *end;
10965 int c, val = -1;
10967 while (*s < end)
10969 /* Skip white-space. */
10970 while (*s < end && (c = *(*s)++, isspace (c)))
10973 if (c == '#')
10975 /* Skip comment to end of line. */
10976 while (*s < end && (c = *(*s)++, c != '\n'))
10979 else if (isdigit (c))
10981 /* Read decimal number. */
10982 val = c - '0';
10983 while (*s < end && (c = *(*s)++, isdigit (c)))
10984 val = 10 * val + c - '0';
10985 break;
10987 else
10988 break;
10991 return val;
10995 /* Read FILE into memory. Value is a pointer to a buffer allocated
10996 with xmalloc holding FILE's contents. Value is null if an error
10997 occured. *SIZE is set to the size of the file. */
10999 static char *
11000 pbm_read_file (file, size)
11001 Lisp_Object file;
11002 int *size;
11004 FILE *fp = NULL;
11005 char *buf = NULL;
11006 struct stat st;
11008 if (stat (XSTRING (file)->data, &st) == 0
11009 && (fp = fopen (XSTRING (file)->data, "r")) != NULL
11010 && (buf = (char *) xmalloc (st.st_size),
11011 fread (buf, 1, st.st_size, fp) == st.st_size))
11013 *size = st.st_size;
11014 fclose (fp);
11016 else
11018 if (fp)
11019 fclose (fp);
11020 if (buf)
11022 xfree (buf);
11023 buf = NULL;
11027 return buf;
11031 /* Load PBM image IMG for use on frame F. */
11033 static int
11034 pbm_load (f, img)
11035 struct frame *f;
11036 struct image *img;
11038 int raw_p, x, y;
11039 int width, height, max_color_idx = 0;
11040 XImage *ximg;
11041 Lisp_Object file, specified_file;
11042 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
11043 struct gcpro gcpro1;
11044 unsigned char *contents = NULL;
11045 unsigned char *end, *p;
11046 int size;
11048 specified_file = image_spec_value (img->spec, QCfile, NULL);
11049 file = Qnil;
11050 GCPRO1 (file);
11052 if (STRINGP (specified_file))
11054 file = x_find_image_file (specified_file);
11055 if (!STRINGP (file))
11057 image_error ("Cannot find image file `%s'", specified_file, Qnil);
11058 UNGCPRO;
11059 return 0;
11062 contents = slurp_file (XSTRING (file)->data, &size);
11063 if (contents == NULL)
11065 image_error ("Error reading `%s'", file, Qnil);
11066 UNGCPRO;
11067 return 0;
11070 p = contents;
11071 end = contents + size;
11073 else
11075 Lisp_Object data;
11076 data = image_spec_value (img->spec, QCdata, NULL);
11077 p = XSTRING (data)->data;
11078 end = p + STRING_BYTES (XSTRING (data));
11081 /* Check magic number. */
11082 if (end - p < 2 || *p++ != 'P')
11084 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
11085 error:
11086 xfree (contents);
11087 UNGCPRO;
11088 return 0;
11091 switch (*p++)
11093 case '1':
11094 raw_p = 0, type = PBM_MONO;
11095 break;
11097 case '2':
11098 raw_p = 0, type = PBM_GRAY;
11099 break;
11101 case '3':
11102 raw_p = 0, type = PBM_COLOR;
11103 break;
11105 case '4':
11106 raw_p = 1, type = PBM_MONO;
11107 break;
11109 case '5':
11110 raw_p = 1, type = PBM_GRAY;
11111 break;
11113 case '6':
11114 raw_p = 1, type = PBM_COLOR;
11115 break;
11117 default:
11118 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
11119 goto error;
11122 /* Read width, height, maximum color-component. Characters
11123 starting with `#' up to the end of a line are ignored. */
11124 width = pbm_scan_number (&p, end);
11125 height = pbm_scan_number (&p, end);
11127 if (type != PBM_MONO)
11129 max_color_idx = pbm_scan_number (&p, end);
11130 if (raw_p && max_color_idx > 255)
11131 max_color_idx = 255;
11134 if (width < 0
11135 || height < 0
11136 || (type != PBM_MONO && max_color_idx < 0))
11137 goto error;
11139 if (!x_create_x_image_and_pixmap (f, width, height, 0,
11140 &ximg, &img->pixmap))
11141 goto error;
11143 /* Initialize the color hash table. */
11144 init_color_table ();
11146 if (type == PBM_MONO)
11148 int c = 0, g;
11149 struct image_keyword fmt[PBM_LAST];
11150 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
11151 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
11153 /* Parse the image specification. */
11154 bcopy (pbm_format, fmt, sizeof fmt);
11155 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
11157 /* Get foreground and background colors, maybe allocate colors. */
11158 if (fmt[PBM_FOREGROUND].count
11159 && STRINGP (fmt[PBM_FOREGROUND].value))
11160 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
11161 if (fmt[PBM_BACKGROUND].count
11162 && STRINGP (fmt[PBM_BACKGROUND].value))
11164 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
11165 img->background = bg;
11166 img->background_valid = 1;
11169 for (y = 0; y < height; ++y)
11170 for (x = 0; x < width; ++x)
11172 if (raw_p)
11174 if ((x & 7) == 0)
11175 c = *p++;
11176 g = c & 0x80;
11177 c <<= 1;
11179 else
11180 g = pbm_scan_number (&p, end);
11182 XPutPixel (ximg, x, y, g ? fg : bg);
11185 else
11187 for (y = 0; y < height; ++y)
11188 for (x = 0; x < width; ++x)
11190 int r, g, b;
11192 if (type == PBM_GRAY)
11193 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
11194 else if (raw_p)
11196 r = *p++;
11197 g = *p++;
11198 b = *p++;
11200 else
11202 r = pbm_scan_number (&p, end);
11203 g = pbm_scan_number (&p, end);
11204 b = pbm_scan_number (&p, end);
11207 if (r < 0 || g < 0 || b < 0)
11209 xfree (ximg->data);
11210 ximg->data = NULL;
11211 XDestroyImage (ximg);
11212 image_error ("Invalid pixel value in image `%s'",
11213 img->spec, Qnil);
11214 goto error;
11217 /* RGB values are now in the range 0..max_color_idx.
11218 Scale this to the range 0..0xffff supported by X. */
11219 r = (double) r * 65535 / max_color_idx;
11220 g = (double) g * 65535 / max_color_idx;
11221 b = (double) b * 65535 / max_color_idx;
11222 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
11226 /* Store in IMG->colors the colors allocated for the image, and
11227 free the color table. */
11228 img->colors = colors_in_color_table (&img->ncolors);
11229 free_color_table ();
11231 /* Maybe fill in the background field while we have ximg handy. */
11232 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
11233 IMAGE_BACKGROUND (img, f, ximg);
11235 /* Put the image into a pixmap. */
11236 x_put_x_image (f, ximg, img->pixmap, width, height);
11237 x_destroy_x_image (ximg);
11239 img->width = width;
11240 img->height = height;
11242 UNGCPRO;
11243 xfree (contents);
11244 return 1;
11246 #endif /* HAVE_PBM */
11249 /***********************************************************************
11251 ***********************************************************************/
11253 #if HAVE_PNG
11255 #include <png.h>
11257 /* Function prototypes. */
11259 static int png_image_p P_ ((Lisp_Object object));
11260 static int png_load P_ ((struct frame *f, struct image *img));
11262 /* The symbol `png' identifying images of this type. */
11264 Lisp_Object Qpng;
11266 /* Indices of image specification fields in png_format, below. */
11268 enum png_keyword_index
11270 PNG_TYPE,
11271 PNG_DATA,
11272 PNG_FILE,
11273 PNG_ASCENT,
11274 PNG_MARGIN,
11275 PNG_RELIEF,
11276 PNG_ALGORITHM,
11277 PNG_HEURISTIC_MASK,
11278 PNG_MASK,
11279 PNG_BACKGROUND,
11280 PNG_LAST
11283 /* Vector of image_keyword structures describing the format
11284 of valid user-defined image specifications. */
11286 static struct image_keyword png_format[PNG_LAST] =
11288 {":type", IMAGE_SYMBOL_VALUE, 1},
11289 {":data", IMAGE_STRING_VALUE, 0},
11290 {":file", IMAGE_STRING_VALUE, 0},
11291 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11292 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
11293 {":relief", IMAGE_INTEGER_VALUE, 0},
11294 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11295 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11296 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11297 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
11300 /* Structure describing the image type `png'. */
11302 static struct image_type png_type =
11304 &Qpng,
11305 png_image_p,
11306 png_load,
11307 x_clear_image,
11308 NULL
11312 /* Return non-zero if OBJECT is a valid PNG image specification. */
11314 static int
11315 png_image_p (object)
11316 Lisp_Object object;
11318 struct image_keyword fmt[PNG_LAST];
11319 bcopy (png_format, fmt, sizeof fmt);
11321 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng)
11322 || (fmt[PNG_ASCENT].count
11323 && XFASTINT (fmt[PNG_ASCENT].value) > 100))
11324 return 0;
11326 /* Must specify either the :data or :file keyword. */
11327 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
11331 /* Error and warning handlers installed when the PNG library
11332 is initialized. */
11334 static void
11335 my_png_error (png_ptr, msg)
11336 png_struct *png_ptr;
11337 char *msg;
11339 xassert (png_ptr != NULL);
11340 image_error ("PNG error: %s", build_string (msg), Qnil);
11341 longjmp (png_ptr->jmpbuf, 1);
11345 static void
11346 my_png_warning (png_ptr, msg)
11347 png_struct *png_ptr;
11348 char *msg;
11350 xassert (png_ptr != NULL);
11351 image_error ("PNG warning: %s", build_string (msg), Qnil);
11354 /* Memory source for PNG decoding. */
11356 struct png_memory_storage
11358 unsigned char *bytes; /* The data */
11359 size_t len; /* How big is it? */
11360 int index; /* Where are we? */
11364 /* Function set as reader function when reading PNG image from memory.
11365 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
11366 bytes from the input to DATA. */
11368 static void
11369 png_read_from_memory (png_ptr, data, length)
11370 png_structp png_ptr;
11371 png_bytep data;
11372 png_size_t length;
11374 struct png_memory_storage *tbr
11375 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
11377 if (length > tbr->len - tbr->index)
11378 png_error (png_ptr, "Read error");
11380 bcopy (tbr->bytes + tbr->index, data, length);
11381 tbr->index = tbr->index + length;
11384 /* Load PNG image IMG for use on frame F. Value is non-zero if
11385 successful. */
11387 static int
11388 png_load (f, img)
11389 struct frame *f;
11390 struct image *img;
11392 Lisp_Object file, specified_file;
11393 Lisp_Object specified_data;
11394 int x, y, i;
11395 XImage *ximg, *mask_img = NULL;
11396 struct gcpro gcpro1;
11397 png_struct *png_ptr = NULL;
11398 png_info *info_ptr = NULL, *end_info = NULL;
11399 FILE *volatile fp = NULL;
11400 png_byte sig[8];
11401 png_byte *volatile pixels = NULL;
11402 png_byte **volatile rows = NULL;
11403 png_uint_32 width, height;
11404 int bit_depth, color_type, interlace_type;
11405 png_byte channels;
11406 png_uint_32 row_bytes;
11407 int transparent_p;
11408 char *gamma_str;
11409 double screen_gamma, image_gamma;
11410 int intent;
11411 struct png_memory_storage tbr; /* Data to be read */
11413 /* Find out what file to load. */
11414 specified_file = image_spec_value (img->spec, QCfile, NULL);
11415 specified_data = image_spec_value (img->spec, QCdata, NULL);
11416 file = Qnil;
11417 GCPRO1 (file);
11419 if (NILP (specified_data))
11421 file = x_find_image_file (specified_file);
11422 if (!STRINGP (file))
11424 image_error ("Cannot find image file `%s'", specified_file, Qnil);
11425 UNGCPRO;
11426 return 0;
11429 /* Open the image file. */
11430 fp = fopen (XSTRING (file)->data, "rb");
11431 if (!fp)
11433 image_error ("Cannot open image file `%s'", file, Qnil);
11434 UNGCPRO;
11435 fclose (fp);
11436 return 0;
11439 /* Check PNG signature. */
11440 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
11441 || !png_check_sig (sig, sizeof sig))
11443 image_error ("Not a PNG file:` %s'", file, Qnil);
11444 UNGCPRO;
11445 fclose (fp);
11446 return 0;
11449 else
11451 /* Read from memory. */
11452 tbr.bytes = XSTRING (specified_data)->data;
11453 tbr.len = STRING_BYTES (XSTRING (specified_data));
11454 tbr.index = 0;
11456 /* Check PNG signature. */
11457 if (tbr.len < sizeof sig
11458 || !png_check_sig (tbr.bytes, sizeof sig))
11460 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
11461 UNGCPRO;
11462 return 0;
11465 /* Need to skip past the signature. */
11466 tbr.bytes += sizeof (sig);
11469 /* Initialize read and info structs for PNG lib. */
11470 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
11471 my_png_error, my_png_warning);
11472 if (!png_ptr)
11474 if (fp) fclose (fp);
11475 UNGCPRO;
11476 return 0;
11479 info_ptr = png_create_info_struct (png_ptr);
11480 if (!info_ptr)
11482 png_destroy_read_struct (&png_ptr, NULL, NULL);
11483 if (fp) fclose (fp);
11484 UNGCPRO;
11485 return 0;
11488 end_info = png_create_info_struct (png_ptr);
11489 if (!end_info)
11491 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
11492 if (fp) fclose (fp);
11493 UNGCPRO;
11494 return 0;
11497 /* Set error jump-back. We come back here when the PNG library
11498 detects an error. */
11499 if (setjmp (png_ptr->jmpbuf))
11501 error:
11502 if (png_ptr)
11503 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
11504 xfree (pixels);
11505 xfree (rows);
11506 if (fp) fclose (fp);
11507 UNGCPRO;
11508 return 0;
11511 /* Read image info. */
11512 if (!NILP (specified_data))
11513 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
11514 else
11515 png_init_io (png_ptr, fp);
11517 png_set_sig_bytes (png_ptr, sizeof sig);
11518 png_read_info (png_ptr, info_ptr);
11519 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
11520 &interlace_type, NULL, NULL);
11522 /* If image contains simply transparency data, we prefer to
11523 construct a clipping mask. */
11524 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
11525 transparent_p = 1;
11526 else
11527 transparent_p = 0;
11529 /* This function is easier to write if we only have to handle
11530 one data format: RGB or RGBA with 8 bits per channel. Let's
11531 transform other formats into that format. */
11533 /* Strip more than 8 bits per channel. */
11534 if (bit_depth == 16)
11535 png_set_strip_16 (png_ptr);
11537 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
11538 if available. */
11539 png_set_expand (png_ptr);
11541 /* Convert grayscale images to RGB. */
11542 if (color_type == PNG_COLOR_TYPE_GRAY
11543 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
11544 png_set_gray_to_rgb (png_ptr);
11546 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
11547 gamma_str = getenv ("SCREEN_GAMMA");
11548 screen_gamma = gamma_str ? atof (gamma_str) : 2.2;
11550 /* Tell the PNG lib to handle gamma correction for us. */
11552 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
11553 if (png_get_sRGB (png_ptr, info_ptr, &intent))
11554 /* There is a special chunk in the image specifying the gamma. */
11555 png_set_sRGB (png_ptr, info_ptr, intent);
11556 else
11557 #endif
11558 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
11559 /* Image contains gamma information. */
11560 png_set_gamma (png_ptr, screen_gamma, image_gamma);
11561 else
11562 /* Use a default of 0.5 for the image gamma. */
11563 png_set_gamma (png_ptr, screen_gamma, 0.5);
11565 /* Handle alpha channel by combining the image with a background
11566 color. Do this only if a real alpha channel is supplied. For
11567 simple transparency, we prefer a clipping mask. */
11568 if (!transparent_p)
11570 png_color_16 *image_background;
11571 Lisp_Object specified_bg
11572 = image_spec_value (img->spec, QCbackground, NULL);
11575 if (STRINGP (specified_bg))
11576 /* The user specified `:background', use that. */
11578 COLORREF color;
11579 if (w32_defined_color (f, XSTRING (specified_bg)->data, &color, 0))
11581 png_color_16 user_bg;
11583 bzero (&user_bg, sizeof user_bg);
11584 user_bg.red = color.red;
11585 user_bg.green = color.green;
11586 user_bg.blue = color.blue;
11588 png_set_background (png_ptr, &user_bg,
11589 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
11592 else if (png_get_bKGD (png_ptr, info_ptr, &image_background))
11593 /* Image contains a background color with which to
11594 combine the image. */
11595 png_set_background (png_ptr, image_background,
11596 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
11597 else
11599 /* Image does not contain a background color with which
11600 to combine the image data via an alpha channel. Use
11601 the frame's background instead. */
11602 XColor color;
11603 Colormap cmap;
11604 png_color_16 frame_background;
11606 cmap = FRAME_X_COLORMAP (f);
11607 color.pixel = FRAME_BACKGROUND_PIXEL (f);
11608 x_query_color (f, &color);
11610 bzero (&frame_background, sizeof frame_background);
11611 frame_background.red = color.red;
11612 frame_background.green = color.green;
11613 frame_background.blue = color.blue;
11615 png_set_background (png_ptr, &frame_background,
11616 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
11620 /* Update info structure. */
11621 png_read_update_info (png_ptr, info_ptr);
11623 /* Get number of channels. Valid values are 1 for grayscale images
11624 and images with a palette, 2 for grayscale images with transparency
11625 information (alpha channel), 3 for RGB images, and 4 for RGB
11626 images with alpha channel, i.e. RGBA. If conversions above were
11627 sufficient we should only have 3 or 4 channels here. */
11628 channels = png_get_channels (png_ptr, info_ptr);
11629 xassert (channels == 3 || channels == 4);
11631 /* Number of bytes needed for one row of the image. */
11632 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
11634 /* Allocate memory for the image. */
11635 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
11636 rows = (png_byte **) xmalloc (height * sizeof *rows);
11637 for (i = 0; i < height; ++i)
11638 rows[i] = pixels + i * row_bytes;
11640 /* Read the entire image. */
11641 png_read_image (png_ptr, rows);
11642 png_read_end (png_ptr, info_ptr);
11643 if (fp)
11645 fclose (fp);
11646 fp = NULL;
11649 /* Create the X image and pixmap. */
11650 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
11651 &img->pixmap))
11652 goto error;
11654 /* Create an image and pixmap serving as mask if the PNG image
11655 contains an alpha channel. */
11656 if (channels == 4
11657 && !transparent_p
11658 && !x_create_x_image_and_pixmap (f, width, height, 1,
11659 &mask_img, &img->mask))
11661 x_destroy_x_image (ximg);
11662 XFreePixmap (FRAME_W32_DISPLAY (f), img->pixmap);
11663 img->pixmap = 0;
11664 goto error;
11667 /* Fill the X image and mask from PNG data. */
11668 init_color_table ();
11670 for (y = 0; y < height; ++y)
11672 png_byte *p = rows[y];
11674 for (x = 0; x < width; ++x)
11676 unsigned r, g, b;
11678 r = *p++ << 8;
11679 g = *p++ << 8;
11680 b = *p++ << 8;
11681 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
11683 /* An alpha channel, aka mask channel, associates variable
11684 transparency with an image. Where other image formats
11685 support binary transparency---fully transparent or fully
11686 opaque---PNG allows up to 254 levels of partial transparency.
11687 The PNG library implements partial transparency by combining
11688 the image with a specified background color.
11690 I'm not sure how to handle this here nicely: because the
11691 background on which the image is displayed may change, for
11692 real alpha channel support, it would be necessary to create
11693 a new image for each possible background.
11695 What I'm doing now is that a mask is created if we have
11696 boolean transparency information. Otherwise I'm using
11697 the frame's background color to combine the image with. */
11699 if (channels == 4)
11701 if (mask_img)
11702 XPutPixel (mask_img, x, y, *p > 0);
11703 ++p;
11708 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
11709 /* Set IMG's background color from the PNG image, unless the user
11710 overrode it. */
11712 png_color_16 *bg;
11713 if (png_get_bKGD (png_ptr, info_ptr, &bg))
11715 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
11716 img->background_valid = 1;
11720 /* Remember colors allocated for this image. */
11721 img->colors = colors_in_color_table (&img->ncolors);
11722 free_color_table ();
11724 /* Clean up. */
11725 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
11726 xfree (rows);
11727 xfree (pixels);
11729 img->width = width;
11730 img->height = height;
11732 /* Maybe fill in the background field while we have ximg handy. */
11733 IMAGE_BACKGROUND (img, f, ximg);
11735 /* Put the image into the pixmap, then free the X image and its buffer. */
11736 x_put_x_image (f, ximg, img->pixmap, width, height);
11737 x_destroy_x_image (ximg);
11739 /* Same for the mask. */
11740 if (mask_img)
11742 /* Fill in the background_transparent field while we have the mask
11743 handy. */
11744 image_background_transparent (img, f, mask_img);
11746 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
11747 x_destroy_x_image (mask_img);
11750 UNGCPRO;
11751 return 1;
11754 #endif /* HAVE_PNG != 0 */
11758 /***********************************************************************
11759 JPEG
11760 ***********************************************************************/
11762 #if HAVE_JPEG
11764 /* Work around a warning about HAVE_STDLIB_H being redefined in
11765 jconfig.h. */
11766 #ifdef HAVE_STDLIB_H
11767 #define HAVE_STDLIB_H_1
11768 #undef HAVE_STDLIB_H
11769 #endif /* HAVE_STLIB_H */
11771 #include <jpeglib.h>
11772 #include <jerror.h>
11773 #include <setjmp.h>
11775 #ifdef HAVE_STLIB_H_1
11776 #define HAVE_STDLIB_H 1
11777 #endif
11779 static int jpeg_image_p P_ ((Lisp_Object object));
11780 static int jpeg_load P_ ((struct frame *f, struct image *img));
11782 /* The symbol `jpeg' identifying images of this type. */
11784 Lisp_Object Qjpeg;
11786 /* Indices of image specification fields in gs_format, below. */
11788 enum jpeg_keyword_index
11790 JPEG_TYPE,
11791 JPEG_DATA,
11792 JPEG_FILE,
11793 JPEG_ASCENT,
11794 JPEG_MARGIN,
11795 JPEG_RELIEF,
11796 JPEG_ALGORITHM,
11797 JPEG_HEURISTIC_MASK,
11798 JPEG_MASK,
11799 JPEG_BACKGROUND,
11800 JPEG_LAST
11803 /* Vector of image_keyword structures describing the format
11804 of valid user-defined image specifications. */
11806 static struct image_keyword jpeg_format[JPEG_LAST] =
11808 {":type", IMAGE_SYMBOL_VALUE, 1},
11809 {":data", IMAGE_STRING_VALUE, 0},
11810 {":file", IMAGE_STRING_VALUE, 0},
11811 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11812 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
11813 {":relief", IMAGE_INTEGER_VALUE, 0},
11814 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11815 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11816 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11817 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
11820 /* Structure describing the image type `jpeg'. */
11822 static struct image_type jpeg_type =
11824 &Qjpeg,
11825 jpeg_image_p,
11826 jpeg_load,
11827 x_clear_image,
11828 NULL
11832 /* Return non-zero if OBJECT is a valid JPEG image specification. */
11834 static int
11835 jpeg_image_p (object)
11836 Lisp_Object object;
11838 struct image_keyword fmt[JPEG_LAST];
11840 bcopy (jpeg_format, fmt, sizeof fmt);
11842 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg)
11843 || (fmt[JPEG_ASCENT].count
11844 && XFASTINT (fmt[JPEG_ASCENT].value) > 100))
11845 return 0;
11847 /* Must specify either the :data or :file keyword. */
11848 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
11852 struct my_jpeg_error_mgr
11854 struct jpeg_error_mgr pub;
11855 jmp_buf setjmp_buffer;
11858 static void
11859 my_error_exit (cinfo)
11860 j_common_ptr cinfo;
11862 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
11863 longjmp (mgr->setjmp_buffer, 1);
11866 /* Init source method for JPEG data source manager. Called by
11867 jpeg_read_header() before any data is actually read. See
11868 libjpeg.doc from the JPEG lib distribution. */
11870 static void
11871 our_init_source (cinfo)
11872 j_decompress_ptr cinfo;
11877 /* Fill input buffer method for JPEG data source manager. Called
11878 whenever more data is needed. We read the whole image in one step,
11879 so this only adds a fake end of input marker at the end. */
11881 static boolean
11882 our_fill_input_buffer (cinfo)
11883 j_decompress_ptr cinfo;
11885 /* Insert a fake EOI marker. */
11886 struct jpeg_source_mgr *src = cinfo->src;
11887 static JOCTET buffer[2];
11889 buffer[0] = (JOCTET) 0xFF;
11890 buffer[1] = (JOCTET) JPEG_EOI;
11892 src->next_input_byte = buffer;
11893 src->bytes_in_buffer = 2;
11894 return TRUE;
11898 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
11899 is the JPEG data source manager. */
11901 static void
11902 our_skip_input_data (cinfo, num_bytes)
11903 j_decompress_ptr cinfo;
11904 long num_bytes;
11906 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
11908 if (src)
11910 if (num_bytes > src->bytes_in_buffer)
11911 ERREXIT (cinfo, JERR_INPUT_EOF);
11913 src->bytes_in_buffer -= num_bytes;
11914 src->next_input_byte += num_bytes;
11919 /* Method to terminate data source. Called by
11920 jpeg_finish_decompress() after all data has been processed. */
11922 static void
11923 our_term_source (cinfo)
11924 j_decompress_ptr cinfo;
11929 /* Set up the JPEG lib for reading an image from DATA which contains
11930 LEN bytes. CINFO is the decompression info structure created for
11931 reading the image. */
11933 static void
11934 jpeg_memory_src (cinfo, data, len)
11935 j_decompress_ptr cinfo;
11936 JOCTET *data;
11937 unsigned int len;
11939 struct jpeg_source_mgr *src;
11941 if (cinfo->src == NULL)
11943 /* First time for this JPEG object? */
11944 cinfo->src = (struct jpeg_source_mgr *)
11945 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
11946 sizeof (struct jpeg_source_mgr));
11947 src = (struct jpeg_source_mgr *) cinfo->src;
11948 src->next_input_byte = data;
11951 src = (struct jpeg_source_mgr *) cinfo->src;
11952 src->init_source = our_init_source;
11953 src->fill_input_buffer = our_fill_input_buffer;
11954 src->skip_input_data = our_skip_input_data;
11955 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
11956 src->term_source = our_term_source;
11957 src->bytes_in_buffer = len;
11958 src->next_input_byte = data;
11962 /* Load image IMG for use on frame F. Patterned after example.c
11963 from the JPEG lib. */
11965 static int
11966 jpeg_load (f, img)
11967 struct frame *f;
11968 struct image *img;
11970 struct jpeg_decompress_struct cinfo;
11971 struct my_jpeg_error_mgr mgr;
11972 Lisp_Object file, specified_file;
11973 Lisp_Object specified_data;
11974 FILE * volatile fp = NULL;
11975 JSAMPARRAY buffer;
11976 int row_stride, x, y;
11977 XImage *ximg = NULL;
11978 int rc;
11979 unsigned long *colors;
11980 int width, height;
11981 struct gcpro gcpro1;
11983 /* Open the JPEG file. */
11984 specified_file = image_spec_value (img->spec, QCfile, NULL);
11985 specified_data = image_spec_value (img->spec, QCdata, NULL);
11986 file = Qnil;
11987 GCPRO1 (file);
11989 if (NILP (specified_data))
11991 file = x_find_image_file (specified_file);
11992 if (!STRINGP (file))
11994 image_error ("Cannot find image file `%s'", specified_file, Qnil);
11995 UNGCPRO;
11996 return 0;
11999 fp = fopen (XSTRING (file)->data, "r");
12000 if (fp == NULL)
12002 image_error ("Cannot open `%s'", file, Qnil);
12003 UNGCPRO;
12004 return 0;
12008 /* Customize libjpeg's error handling to call my_error_exit when an
12009 error is detected. This function will perform a longjmp. */
12010 cinfo.err = jpeg_std_error (&mgr.pub);
12011 mgr.pub.error_exit = my_error_exit;
12013 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
12015 if (rc == 1)
12017 /* Called from my_error_exit. Display a JPEG error. */
12018 char buffer[JMSG_LENGTH_MAX];
12019 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
12020 image_error ("Error reading JPEG image `%s': %s", img->spec,
12021 build_string (buffer));
12024 /* Close the input file and destroy the JPEG object. */
12025 if (fp)
12026 fclose (fp);
12027 jpeg_destroy_decompress (&cinfo);
12029 /* If we already have an XImage, free that. */
12030 x_destroy_x_image (ximg);
12032 /* Free pixmap and colors. */
12033 x_clear_image (f, img);
12035 UNGCPRO;
12036 return 0;
12039 /* Create the JPEG decompression object. Let it read from fp.
12040 Read the JPEG image header. */
12041 jpeg_create_decompress (&cinfo);
12043 if (NILP (specified_data))
12044 jpeg_stdio_src (&cinfo, fp);
12045 else
12046 jpeg_memory_src (&cinfo, XSTRING (specified_data)->data,
12047 STRING_BYTES (XSTRING (specified_data)));
12049 jpeg_read_header (&cinfo, TRUE);
12051 /* Customize decompression so that color quantization will be used.
12052 Start decompression. */
12053 cinfo.quantize_colors = TRUE;
12054 jpeg_start_decompress (&cinfo);
12055 width = img->width = cinfo.output_width;
12056 height = img->height = cinfo.output_height;
12058 /* Create X image and pixmap. */
12059 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
12060 &img->pixmap))
12061 longjmp (mgr.setjmp_buffer, 2);
12063 /* Allocate colors. When color quantization is used,
12064 cinfo.actual_number_of_colors has been set with the number of
12065 colors generated, and cinfo.colormap is a two-dimensional array
12066 of color indices in the range 0..cinfo.actual_number_of_colors.
12067 No more than 255 colors will be generated. */
12069 int i, ir, ig, ib;
12071 if (cinfo.out_color_components > 2)
12072 ir = 0, ig = 1, ib = 2;
12073 else if (cinfo.out_color_components > 1)
12074 ir = 0, ig = 1, ib = 0;
12075 else
12076 ir = 0, ig = 0, ib = 0;
12078 /* Use the color table mechanism because it handles colors that
12079 cannot be allocated nicely. Such colors will be replaced with
12080 a default color, and we don't have to care about which colors
12081 can be freed safely, and which can't. */
12082 init_color_table ();
12083 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
12084 * sizeof *colors);
12086 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
12088 /* Multiply RGB values with 255 because X expects RGB values
12089 in the range 0..0xffff. */
12090 int r = cinfo.colormap[ir][i] << 8;
12091 int g = cinfo.colormap[ig][i] << 8;
12092 int b = cinfo.colormap[ib][i] << 8;
12093 colors[i] = lookup_rgb_color (f, r, g, b);
12096 /* Remember those colors actually allocated. */
12097 img->colors = colors_in_color_table (&img->ncolors);
12098 free_color_table ();
12101 /* Read pixels. */
12102 row_stride = width * cinfo.output_components;
12103 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
12104 row_stride, 1);
12105 for (y = 0; y < height; ++y)
12107 jpeg_read_scanlines (&cinfo, buffer, 1);
12108 for (x = 0; x < cinfo.output_width; ++x)
12109 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
12112 /* Clean up. */
12113 jpeg_finish_decompress (&cinfo);
12114 jpeg_destroy_decompress (&cinfo);
12115 if (fp)
12116 fclose (fp);
12118 /* Maybe fill in the background field while we have ximg handy. */
12119 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
12120 IMAGE_BACKGROUND (img, f, ximg);
12122 /* Put the image into the pixmap. */
12123 x_put_x_image (f, ximg, img->pixmap, width, height);
12124 x_destroy_x_image (ximg);
12125 UNBLOCK_INPUT;
12126 UNGCPRO;
12127 return 1;
12130 #endif /* HAVE_JPEG */
12134 /***********************************************************************
12135 TIFF
12136 ***********************************************************************/
12138 #if HAVE_TIFF
12140 #include <tiffio.h>
12142 static int tiff_image_p P_ ((Lisp_Object object));
12143 static int tiff_load P_ ((struct frame *f, struct image *img));
12145 /* The symbol `tiff' identifying images of this type. */
12147 Lisp_Object Qtiff;
12149 /* Indices of image specification fields in tiff_format, below. */
12151 enum tiff_keyword_index
12153 TIFF_TYPE,
12154 TIFF_DATA,
12155 TIFF_FILE,
12156 TIFF_ASCENT,
12157 TIFF_MARGIN,
12158 TIFF_RELIEF,
12159 TIFF_ALGORITHM,
12160 TIFF_HEURISTIC_MASK,
12161 TIFF_MASK,
12162 TIFF_BACKGROUND,
12163 TIFF_LAST
12166 /* Vector of image_keyword structures describing the format
12167 of valid user-defined image specifications. */
12169 static struct image_keyword tiff_format[TIFF_LAST] =
12171 {":type", IMAGE_SYMBOL_VALUE, 1},
12172 {":data", IMAGE_STRING_VALUE, 0},
12173 {":file", IMAGE_STRING_VALUE, 0},
12174 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
12175 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
12176 {":relief", IMAGE_INTEGER_VALUE, 0},
12177 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12178 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12179 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12180 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
12183 /* Structure describing the image type `tiff'. */
12185 static struct image_type tiff_type =
12187 &Qtiff,
12188 tiff_image_p,
12189 tiff_load,
12190 x_clear_image,
12191 NULL
12195 /* Return non-zero if OBJECT is a valid TIFF image specification. */
12197 static int
12198 tiff_image_p (object)
12199 Lisp_Object object;
12201 struct image_keyword fmt[TIFF_LAST];
12202 bcopy (tiff_format, fmt, sizeof fmt);
12204 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff)
12205 || (fmt[TIFF_ASCENT].count
12206 && XFASTINT (fmt[TIFF_ASCENT].value) > 100))
12207 return 0;
12209 /* Must specify either the :data or :file keyword. */
12210 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
12214 /* Reading from a memory buffer for TIFF images Based on the PNG
12215 memory source, but we have to provide a lot of extra functions.
12216 Blah.
12218 We really only need to implement read and seek, but I am not
12219 convinced that the TIFF library is smart enough not to destroy
12220 itself if we only hand it the function pointers we need to
12221 override. */
12223 typedef struct
12225 unsigned char *bytes;
12226 size_t len;
12227 int index;
12229 tiff_memory_source;
12231 static size_t
12232 tiff_read_from_memory (data, buf, size)
12233 thandle_t data;
12234 tdata_t buf;
12235 tsize_t size;
12237 tiff_memory_source *src = (tiff_memory_source *) data;
12239 if (size > src->len - src->index)
12240 return (size_t) -1;
12241 bcopy (src->bytes + src->index, buf, size);
12242 src->index += size;
12243 return size;
12246 static size_t
12247 tiff_write_from_memory (data, buf, size)
12248 thandle_t data;
12249 tdata_t buf;
12250 tsize_t size;
12252 return (size_t) -1;
12255 static toff_t
12256 tiff_seek_in_memory (data, off, whence)
12257 thandle_t data;
12258 toff_t off;
12259 int whence;
12261 tiff_memory_source *src = (tiff_memory_source *) data;
12262 int idx;
12264 switch (whence)
12266 case SEEK_SET: /* Go from beginning of source. */
12267 idx = off;
12268 break;
12270 case SEEK_END: /* Go from end of source. */
12271 idx = src->len + off;
12272 break;
12274 case SEEK_CUR: /* Go from current position. */
12275 idx = src->index + off;
12276 break;
12278 default: /* Invalid `whence'. */
12279 return -1;
12282 if (idx > src->len || idx < 0)
12283 return -1;
12285 src->index = idx;
12286 return src->index;
12289 static int
12290 tiff_close_memory (data)
12291 thandle_t data;
12293 /* NOOP */
12294 return 0;
12297 static int
12298 tiff_mmap_memory (data, pbase, psize)
12299 thandle_t data;
12300 tdata_t *pbase;
12301 toff_t *psize;
12303 /* It is already _IN_ memory. */
12304 return 0;
12307 static void
12308 tiff_unmap_memory (data, base, size)
12309 thandle_t data;
12310 tdata_t base;
12311 toff_t size;
12313 /* We don't need to do this. */
12316 static toff_t
12317 tiff_size_of_memory (data)
12318 thandle_t data;
12320 return ((tiff_memory_source *) data)->len;
12324 static void
12325 tiff_error_handler (title, format, ap)
12326 const char *title, *format;
12327 va_list ap;
12329 char buf[512];
12330 int len;
12332 len = sprintf (buf, "TIFF error: %s ", title);
12333 vsprintf (buf + len, format, ap);
12334 add_to_log (buf, Qnil, Qnil);
12338 static void
12339 tiff_warning_handler (title, format, ap)
12340 const char *title, *format;
12341 va_list ap;
12343 char buf[512];
12344 int len;
12346 len = sprintf (buf, "TIFF warning: %s ", title);
12347 vsprintf (buf + len, format, ap);
12348 add_to_log (buf, Qnil, Qnil);
12352 /* Load TIFF image IMG for use on frame F. Value is non-zero if
12353 successful. */
12355 static int
12356 tiff_load (f, img)
12357 struct frame *f;
12358 struct image *img;
12360 Lisp_Object file, specified_file;
12361 Lisp_Object specified_data;
12362 TIFF *tiff;
12363 int width, height, x, y;
12364 uint32 *buf;
12365 int rc;
12366 XImage *ximg;
12367 struct gcpro gcpro1;
12368 tiff_memory_source memsrc;
12370 specified_file = image_spec_value (img->spec, QCfile, NULL);
12371 specified_data = image_spec_value (img->spec, QCdata, NULL);
12372 file = Qnil;
12373 GCPRO1 (file);
12375 TIFFSetErrorHandler (tiff_error_handler);
12376 TIFFSetWarningHandler (tiff_warning_handler);
12378 if (NILP (specified_data))
12380 /* Read from a file */
12381 file = x_find_image_file (specified_file);
12382 if (!STRINGP (file))
12384 image_error ("Cannot find image file `%s'", file, Qnil);
12385 UNGCPRO;
12386 return 0;
12389 /* Try to open the image file. */
12390 tiff = TIFFOpen (XSTRING (file)->data, "r");
12391 if (tiff == NULL)
12393 image_error ("Cannot open `%s'", file, Qnil);
12394 UNGCPRO;
12395 return 0;
12398 else
12400 /* Memory source! */
12401 memsrc.bytes = XSTRING (specified_data)->data;
12402 memsrc.len = STRING_BYTES (XSTRING (specified_data));
12403 memsrc.index = 0;
12405 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
12406 (TIFFReadWriteProc) tiff_read_from_memory,
12407 (TIFFReadWriteProc) tiff_write_from_memory,
12408 tiff_seek_in_memory,
12409 tiff_close_memory,
12410 tiff_size_of_memory,
12411 tiff_mmap_memory,
12412 tiff_unmap_memory);
12414 if (!tiff)
12416 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
12417 UNGCPRO;
12418 return 0;
12422 /* Get width and height of the image, and allocate a raster buffer
12423 of width x height 32-bit values. */
12424 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
12425 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
12426 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
12428 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
12429 TIFFClose (tiff);
12430 if (!rc)
12432 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
12433 xfree (buf);
12434 UNGCPRO;
12435 return 0;
12438 /* Create the X image and pixmap. */
12439 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
12441 xfree (buf);
12442 UNGCPRO;
12443 return 0;
12446 /* Initialize the color table. */
12447 init_color_table ();
12449 /* Process the pixel raster. Origin is in the lower-left corner. */
12450 for (y = 0; y < height; ++y)
12452 uint32 *row = buf + y * width;
12454 for (x = 0; x < width; ++x)
12456 uint32 abgr = row[x];
12457 int r = TIFFGetR (abgr) << 8;
12458 int g = TIFFGetG (abgr) << 8;
12459 int b = TIFFGetB (abgr) << 8;
12460 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
12464 /* Remember the colors allocated for the image. Free the color table. */
12465 img->colors = colors_in_color_table (&img->ncolors);
12466 free_color_table ();
12468 img->width = width;
12469 img->height = height;
12471 /* Maybe fill in the background field while we have ximg handy. */
12472 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
12473 IMAGE_BACKGROUND (img, f, ximg);
12475 /* Put the image into the pixmap, then free the X image and its buffer. */
12476 x_put_x_image (f, ximg, img->pixmap, width, height);
12477 x_destroy_x_image (ximg);
12478 xfree (buf);
12480 UNGCPRO;
12481 return 1;
12484 #endif /* HAVE_TIFF != 0 */
12488 /***********************************************************************
12490 ***********************************************************************/
12492 #if HAVE_GIF
12494 #include <gif_lib.h>
12496 static int gif_image_p P_ ((Lisp_Object object));
12497 static int gif_load P_ ((struct frame *f, struct image *img));
12499 /* The symbol `gif' identifying images of this type. */
12501 Lisp_Object Qgif;
12503 /* Indices of image specification fields in gif_format, below. */
12505 enum gif_keyword_index
12507 GIF_TYPE,
12508 GIF_DATA,
12509 GIF_FILE,
12510 GIF_ASCENT,
12511 GIF_MARGIN,
12512 GIF_RELIEF,
12513 GIF_ALGORITHM,
12514 GIF_HEURISTIC_MASK,
12515 GIF_MASK,
12516 GIF_IMAGE,
12517 GIF_BACKGROUND,
12518 GIF_LAST
12521 /* Vector of image_keyword structures describing the format
12522 of valid user-defined image specifications. */
12524 static struct image_keyword gif_format[GIF_LAST] =
12526 {":type", IMAGE_SYMBOL_VALUE, 1},
12527 {":data", IMAGE_STRING_VALUE, 0},
12528 {":file", IMAGE_STRING_VALUE, 0},
12529 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
12530 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
12531 {":relief", IMAGE_INTEGER_VALUE, 0},
12532 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12533 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12534 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12535 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
12536 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
12539 /* Structure describing the image type `gif'. */
12541 static struct image_type gif_type =
12543 &Qgif,
12544 gif_image_p,
12545 gif_load,
12546 x_clear_image,
12547 NULL
12550 /* Return non-zero if OBJECT is a valid GIF image specification. */
12552 static int
12553 gif_image_p (object)
12554 Lisp_Object object;
12556 struct image_keyword fmt[GIF_LAST];
12557 bcopy (gif_format, fmt, sizeof fmt);
12559 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif)
12560 || (fmt[GIF_ASCENT].count
12561 && XFASTINT (fmt[GIF_ASCENT].value) > 100))
12562 return 0;
12564 /* Must specify either the :data or :file keyword. */
12565 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
12568 /* Reading a GIF image from memory
12569 Based on the PNG memory stuff to a certain extent. */
12571 typedef struct
12573 unsigned char *bytes;
12574 size_t len;
12575 int index;
12577 gif_memory_source;
12579 /* Make the current memory source available to gif_read_from_memory.
12580 It's done this way because not all versions of libungif support
12581 a UserData field in the GifFileType structure. */
12582 static gif_memory_source *current_gif_memory_src;
12584 static int
12585 gif_read_from_memory (file, buf, len)
12586 GifFileType *file;
12587 GifByteType *buf;
12588 int len;
12590 gif_memory_source *src = current_gif_memory_src;
12592 if (len > src->len - src->index)
12593 return -1;
12595 bcopy (src->bytes + src->index, buf, len);
12596 src->index += len;
12597 return len;
12601 /* Load GIF image IMG for use on frame F. Value is non-zero if
12602 successful. */
12604 static int
12605 gif_load (f, img)
12606 struct frame *f;
12607 struct image *img;
12609 Lisp_Object file, specified_file;
12610 Lisp_Object specified_data;
12611 int rc, width, height, x, y, i;
12612 XImage *ximg;
12613 ColorMapObject *gif_color_map;
12614 unsigned long pixel_colors[256];
12615 GifFileType *gif;
12616 struct gcpro gcpro1;
12617 Lisp_Object image;
12618 int ino, image_left, image_top, image_width, image_height;
12619 gif_memory_source memsrc;
12620 unsigned char *raster;
12622 specified_file = image_spec_value (img->spec, QCfile, NULL);
12623 specified_data = image_spec_value (img->spec, QCdata, NULL);
12624 file = Qnil;
12625 GCPRO1 (file);
12627 if (NILP (specified_data))
12629 file = x_find_image_file (specified_file);
12630 if (!STRINGP (file))
12632 image_error ("Cannot find image file `%s'", specified_file, Qnil);
12633 UNGCPRO;
12634 return 0;
12637 /* Open the GIF file. */
12638 gif = DGifOpenFileName (XSTRING (file)->data);
12639 if (gif == NULL)
12641 image_error ("Cannot open `%s'", file, Qnil);
12642 UNGCPRO;
12643 return 0;
12646 else
12648 /* Read from memory! */
12649 current_gif_memory_src = &memsrc;
12650 memsrc.bytes = XSTRING (specified_data)->data;
12651 memsrc.len = STRING_BYTES (XSTRING (specified_data));
12652 memsrc.index = 0;
12654 gif = DGifOpen(&memsrc, gif_read_from_memory);
12655 if (!gif)
12657 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
12658 UNGCPRO;
12659 return 0;
12663 /* Read entire contents. */
12664 rc = DGifSlurp (gif);
12665 if (rc == GIF_ERROR)
12667 image_error ("Error reading `%s'", img->spec, Qnil);
12668 DGifCloseFile (gif);
12669 UNGCPRO;
12670 return 0;
12673 image = image_spec_value (img->spec, QCindex, NULL);
12674 ino = INTEGERP (image) ? XFASTINT (image) : 0;
12675 if (ino >= gif->ImageCount)
12677 image_error ("Invalid image number `%s' in image `%s'",
12678 image, img->spec);
12679 DGifCloseFile (gif);
12680 UNGCPRO;
12681 return 0;
12684 width = img->width = gif->SWidth;
12685 height = img->height = gif->SHeight;
12687 /* Create the X image and pixmap. */
12688 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
12690 DGifCloseFile (gif);
12691 UNGCPRO;
12692 return 0;
12695 /* Allocate colors. */
12696 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
12697 if (!gif_color_map)
12698 gif_color_map = gif->SColorMap;
12699 init_color_table ();
12700 bzero (pixel_colors, sizeof pixel_colors);
12702 for (i = 0; i < gif_color_map->ColorCount; ++i)
12704 int r = gif_color_map->Colors[i].Red << 8;
12705 int g = gif_color_map->Colors[i].Green << 8;
12706 int b = gif_color_map->Colors[i].Blue << 8;
12707 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
12710 img->colors = colors_in_color_table (&img->ncolors);
12711 free_color_table ();
12713 /* Clear the part of the screen image that are not covered by
12714 the image from the GIF file. Full animated GIF support
12715 requires more than can be done here (see the gif89 spec,
12716 disposal methods). Let's simply assume that the part
12717 not covered by a sub-image is in the frame's background color. */
12718 image_top = gif->SavedImages[ino].ImageDesc.Top;
12719 image_left = gif->SavedImages[ino].ImageDesc.Left;
12720 image_width = gif->SavedImages[ino].ImageDesc.Width;
12721 image_height = gif->SavedImages[ino].ImageDesc.Height;
12723 for (y = 0; y < image_top; ++y)
12724 for (x = 0; x < width; ++x)
12725 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
12727 for (y = image_top + image_height; y < height; ++y)
12728 for (x = 0; x < width; ++x)
12729 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
12731 for (y = image_top; y < image_top + image_height; ++y)
12733 for (x = 0; x < image_left; ++x)
12734 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
12735 for (x = image_left + image_width; x < width; ++x)
12736 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
12739 /* Read the GIF image into the X image. We use a local variable
12740 `raster' here because RasterBits below is a char *, and invites
12741 problems with bytes >= 0x80. */
12742 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
12744 if (gif->SavedImages[ino].ImageDesc.Interlace)
12746 static int interlace_start[] = {0, 4, 2, 1};
12747 static int interlace_increment[] = {8, 8, 4, 2};
12748 int pass;
12749 int row = interlace_start[0];
12751 pass = 0;
12753 for (y = 0; y < image_height; y++)
12755 if (row >= image_height)
12757 row = interlace_start[++pass];
12758 while (row >= image_height)
12759 row = interlace_start[++pass];
12762 for (x = 0; x < image_width; x++)
12764 int i = raster[(y * image_width) + x];
12765 XPutPixel (ximg, x + image_left, row + image_top,
12766 pixel_colors[i]);
12769 row += interlace_increment[pass];
12772 else
12774 for (y = 0; y < image_height; ++y)
12775 for (x = 0; x < image_width; ++x)
12777 int i = raster[y* image_width + x];
12778 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
12782 DGifCloseFile (gif);
12784 /* Maybe fill in the background field while we have ximg handy. */
12785 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
12786 IMAGE_BACKGROUND (img, f, ximg);
12788 /* Put the image into the pixmap, then free the X image and its buffer. */
12789 x_put_x_image (f, ximg, img->pixmap, width, height);
12790 x_destroy_x_image (ximg);
12792 UNGCPRO;
12793 return 1;
12796 #endif /* HAVE_GIF != 0 */
12800 /***********************************************************************
12801 Ghostscript
12802 ***********************************************************************/
12804 Lisp_Object Qpostscript;
12806 #ifdef HAVE_GHOSTSCRIPT
12807 static int gs_image_p P_ ((Lisp_Object object));
12808 static int gs_load P_ ((struct frame *f, struct image *img));
12809 static void gs_clear_image P_ ((struct frame *f, struct image *img));
12811 /* The symbol `postscript' identifying images of this type. */
12813 /* Keyword symbols. */
12815 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
12817 /* Indices of image specification fields in gs_format, below. */
12819 enum gs_keyword_index
12821 GS_TYPE,
12822 GS_PT_WIDTH,
12823 GS_PT_HEIGHT,
12824 GS_FILE,
12825 GS_LOADER,
12826 GS_BOUNDING_BOX,
12827 GS_ASCENT,
12828 GS_MARGIN,
12829 GS_RELIEF,
12830 GS_ALGORITHM,
12831 GS_HEURISTIC_MASK,
12832 GS_MASK,
12833 GS_BACKGROUND,
12834 GS_LAST
12837 /* Vector of image_keyword structures describing the format
12838 of valid user-defined image specifications. */
12840 static struct image_keyword gs_format[GS_LAST] =
12842 {":type", IMAGE_SYMBOL_VALUE, 1},
12843 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
12844 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
12845 {":file", IMAGE_STRING_VALUE, 1},
12846 {":loader", IMAGE_FUNCTION_VALUE, 0},
12847 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
12848 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
12849 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
12850 {":relief", IMAGE_INTEGER_VALUE, 0},
12851 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12852 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12853 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
12854 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
12857 /* Structure describing the image type `ghostscript'. */
12859 static struct image_type gs_type =
12861 &Qpostscript,
12862 gs_image_p,
12863 gs_load,
12864 gs_clear_image,
12865 NULL
12869 /* Free X resources of Ghostscript image IMG which is used on frame F. */
12871 static void
12872 gs_clear_image (f, img)
12873 struct frame *f;
12874 struct image *img;
12876 /* IMG->data.ptr_val may contain a recorded colormap. */
12877 xfree (img->data.ptr_val);
12878 x_clear_image (f, img);
12882 /* Return non-zero if OBJECT is a valid Ghostscript image
12883 specification. */
12885 static int
12886 gs_image_p (object)
12887 Lisp_Object object;
12889 struct image_keyword fmt[GS_LAST];
12890 Lisp_Object tem;
12891 int i;
12893 bcopy (gs_format, fmt, sizeof fmt);
12895 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript)
12896 || (fmt[GS_ASCENT].count
12897 && XFASTINT (fmt[GS_ASCENT].value) > 100))
12898 return 0;
12900 /* Bounding box must be a list or vector containing 4 integers. */
12901 tem = fmt[GS_BOUNDING_BOX].value;
12902 if (CONSP (tem))
12904 for (i = 0; i < 4; ++i, tem = XCDR (tem))
12905 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
12906 return 0;
12907 if (!NILP (tem))
12908 return 0;
12910 else if (VECTORP (tem))
12912 if (XVECTOR (tem)->size != 4)
12913 return 0;
12914 for (i = 0; i < 4; ++i)
12915 if (!INTEGERP (XVECTOR (tem)->contents[i]))
12916 return 0;
12918 else
12919 return 0;
12921 return 1;
12925 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
12926 if successful. */
12928 static int
12929 gs_load (f, img)
12930 struct frame *f;
12931 struct image *img;
12933 char buffer[100];
12934 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
12935 struct gcpro gcpro1, gcpro2;
12936 Lisp_Object frame;
12937 double in_width, in_height;
12938 Lisp_Object pixel_colors = Qnil;
12940 /* Compute pixel size of pixmap needed from the given size in the
12941 image specification. Sizes in the specification are in pt. 1 pt
12942 = 1/72 in, xdpi and ydpi are stored in the frame's X display
12943 info. */
12944 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
12945 in_width = XFASTINT (pt_width) / 72.0;
12946 img->width = in_width * FRAME_W32_DISPLAY_INFO (f)->resx;
12947 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
12948 in_height = XFASTINT (pt_height) / 72.0;
12949 img->height = in_height * FRAME_W32_DISPLAY_INFO (f)->resy;
12951 /* Create the pixmap. */
12952 BLOCK_INPUT;
12953 xassert (img->pixmap == 0);
12954 img->pixmap = XCreatePixmap (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
12955 img->width, img->height,
12956 one_w32_display_info.n_cbits);
12957 UNBLOCK_INPUT;
12959 if (!img->pixmap)
12961 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
12962 return 0;
12965 /* Call the loader to fill the pixmap. It returns a process object
12966 if successful. We do not record_unwind_protect here because
12967 other places in redisplay like calling window scroll functions
12968 don't either. Let the Lisp loader use `unwind-protect' instead. */
12969 GCPRO2 (window_and_pixmap_id, pixel_colors);
12971 sprintf (buffer, "%lu %lu",
12972 (unsigned long) FRAME_W32_WINDOW (f),
12973 (unsigned long) img->pixmap);
12974 window_and_pixmap_id = build_string (buffer);
12976 sprintf (buffer, "%lu %lu",
12977 FRAME_FOREGROUND_PIXEL (f),
12978 FRAME_BACKGROUND_PIXEL (f));
12979 pixel_colors = build_string (buffer);
12981 XSETFRAME (frame, f);
12982 loader = image_spec_value (img->spec, QCloader, NULL);
12983 if (NILP (loader))
12984 loader = intern ("gs-load-image");
12986 img->data.lisp_val = call6 (loader, frame, img->spec,
12987 make_number (img->width),
12988 make_number (img->height),
12989 window_and_pixmap_id,
12990 pixel_colors);
12991 UNGCPRO;
12992 return PROCESSP (img->data.lisp_val);
12996 /* Kill the Ghostscript process that was started to fill PIXMAP on
12997 frame F. Called from XTread_socket when receiving an event
12998 telling Emacs that Ghostscript has finished drawing. */
13000 void
13001 x_kill_gs_process (pixmap, f)
13002 Pixmap pixmap;
13003 struct frame *f;
13005 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
13006 int class, i;
13007 struct image *img;
13009 /* Find the image containing PIXMAP. */
13010 for (i = 0; i < c->used; ++i)
13011 if (c->images[i]->pixmap == pixmap)
13012 break;
13014 /* Should someone in between have cleared the image cache, for
13015 instance, give up. */
13016 if (i == c->used)
13017 return;
13019 /* Kill the GS process. We should have found PIXMAP in the image
13020 cache and its image should contain a process object. */
13021 img = c->images[i];
13022 xassert (PROCESSP (img->data.lisp_val));
13023 Fkill_process (img->data.lisp_val, Qnil);
13024 img->data.lisp_val = Qnil;
13026 /* On displays with a mutable colormap, figure out the colors
13027 allocated for the image by looking at the pixels of an XImage for
13028 img->pixmap. */
13029 class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
13030 if (class != StaticColor && class != StaticGray && class != TrueColor)
13032 XImage *ximg;
13034 BLOCK_INPUT;
13036 /* Try to get an XImage for img->pixmep. */
13037 ximg = XGetImage (FRAME_W32_DISPLAY (f), img->pixmap,
13038 0, 0, img->width, img->height, ~0, ZPixmap);
13039 if (ximg)
13041 int x, y;
13043 /* Initialize the color table. */
13044 init_color_table ();
13046 /* For each pixel of the image, look its color up in the
13047 color table. After having done so, the color table will
13048 contain an entry for each color used by the image. */
13049 for (y = 0; y < img->height; ++y)
13050 for (x = 0; x < img->width; ++x)
13052 unsigned long pixel = XGetPixel (ximg, x, y);
13053 lookup_pixel_color (f, pixel);
13056 /* Record colors in the image. Free color table and XImage. */
13057 img->colors = colors_in_color_table (&img->ncolors);
13058 free_color_table ();
13059 XDestroyImage (ximg);
13061 #if 0 /* This doesn't seem to be the case. If we free the colors
13062 here, we get a BadAccess later in x_clear_image when
13063 freeing the colors. */
13064 /* We have allocated colors once, but Ghostscript has also
13065 allocated colors on behalf of us. So, to get the
13066 reference counts right, free them once. */
13067 if (img->ncolors)
13068 x_free_colors (FRAME_W32_DISPLAY (f), cmap,
13069 img->colors, img->ncolors, 0);
13070 #endif
13072 else
13073 image_error ("Cannot get X image of `%s'; colors will not be freed",
13074 img->spec, Qnil);
13076 UNBLOCK_INPUT;
13079 /* Now that we have the pixmap, compute mask and transform the
13080 image if requested. */
13081 BLOCK_INPUT;
13082 postprocess_image (f, img);
13083 UNBLOCK_INPUT;
13086 #endif /* HAVE_GHOSTSCRIPT */
13089 /***********************************************************************
13090 Window properties
13091 ***********************************************************************/
13093 DEFUN ("x-change-window-property", Fx_change_window_property,
13094 Sx_change_window_property, 2, 3, 0,
13095 doc: /* Change window property PROP to VALUE on the X window of FRAME.
13096 PROP and VALUE must be strings. FRAME nil or omitted means use the
13097 selected frame. Value is VALUE. */)
13098 (prop, value, frame)
13099 Lisp_Object frame, prop, value;
13101 #if 0 /* TODO : port window properties to W32 */
13102 struct frame *f = check_x_frame (frame);
13103 Atom prop_atom;
13105 CHECK_STRING (prop);
13106 CHECK_STRING (value);
13108 BLOCK_INPUT;
13109 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
13110 XChangeProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
13111 prop_atom, XA_STRING, 8, PropModeReplace,
13112 XSTRING (value)->data, XSTRING (value)->size);
13114 /* Make sure the property is set when we return. */
13115 XFlush (FRAME_W32_DISPLAY (f));
13116 UNBLOCK_INPUT;
13118 #endif /* TODO */
13120 return value;
13124 DEFUN ("x-delete-window-property", Fx_delete_window_property,
13125 Sx_delete_window_property, 1, 2, 0,
13126 doc: /* Remove window property PROP from X window of FRAME.
13127 FRAME nil or omitted means use the selected frame. Value is PROP. */)
13128 (prop, frame)
13129 Lisp_Object prop, frame;
13131 #if 0 /* TODO : port window properties to W32 */
13133 struct frame *f = check_x_frame (frame);
13134 Atom prop_atom;
13136 CHECK_STRING (prop);
13137 BLOCK_INPUT;
13138 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
13139 XDeleteProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), prop_atom);
13141 /* Make sure the property is removed when we return. */
13142 XFlush (FRAME_W32_DISPLAY (f));
13143 UNBLOCK_INPUT;
13144 #endif /* TODO */
13146 return prop;
13150 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
13151 1, 2, 0,
13152 doc: /* Value is the value of window property PROP on FRAME.
13153 If FRAME is nil or omitted, use the selected frame. Value is nil
13154 if FRAME hasn't a property with name PROP or if PROP has no string
13155 value. */)
13156 (prop, frame)
13157 Lisp_Object prop, frame;
13159 #if 0 /* TODO : port window properties to W32 */
13161 struct frame *f = check_x_frame (frame);
13162 Atom prop_atom;
13163 int rc;
13164 Lisp_Object prop_value = Qnil;
13165 char *tmp_data = NULL;
13166 Atom actual_type;
13167 int actual_format;
13168 unsigned long actual_size, bytes_remaining;
13170 CHECK_STRING (prop);
13171 BLOCK_INPUT;
13172 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
13173 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
13174 prop_atom, 0, 0, False, XA_STRING,
13175 &actual_type, &actual_format, &actual_size,
13176 &bytes_remaining, (unsigned char **) &tmp_data);
13177 if (rc == Success)
13179 int size = bytes_remaining;
13181 XFree (tmp_data);
13182 tmp_data = NULL;
13184 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
13185 prop_atom, 0, bytes_remaining,
13186 False, XA_STRING,
13187 &actual_type, &actual_format,
13188 &actual_size, &bytes_remaining,
13189 (unsigned char **) &tmp_data);
13190 if (rc == Success)
13191 prop_value = make_string (tmp_data, size);
13193 XFree (tmp_data);
13196 UNBLOCK_INPUT;
13198 return prop_value;
13200 #endif /* TODO */
13201 return Qnil;
13206 /***********************************************************************
13207 Busy cursor
13208 ***********************************************************************/
13210 /* If non-null, an asynchronous timer that, when it expires, displays
13211 an hourglass cursor on all frames. */
13213 static struct atimer *hourglass_atimer;
13215 /* Non-zero means an hourglass cursor is currently shown. */
13217 static int hourglass_shown_p;
13219 /* Number of seconds to wait before displaying an hourglass cursor. */
13221 static Lisp_Object Vhourglass_delay;
13223 /* Default number of seconds to wait before displaying an hourglass
13224 cursor. */
13226 #define DEFAULT_HOURGLASS_DELAY 1
13228 /* Function prototypes. */
13230 static void show_hourglass P_ ((struct atimer *));
13231 static void hide_hourglass P_ ((void));
13234 /* Cancel a currently active hourglass timer, and start a new one. */
13236 void
13237 start_hourglass ()
13239 #if 0 /* TODO: cursor shape changes. */
13240 EMACS_TIME delay;
13241 int secs, usecs = 0;
13243 cancel_hourglass ();
13245 if (INTEGERP (Vhourglass_delay)
13246 && XINT (Vhourglass_delay) > 0)
13247 secs = XFASTINT (Vhourglass_delay);
13248 else if (FLOATP (Vhourglass_delay)
13249 && XFLOAT_DATA (Vhourglass_delay) > 0)
13251 Lisp_Object tem;
13252 tem = Ftruncate (Vhourglass_delay, Qnil);
13253 secs = XFASTINT (tem);
13254 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
13256 else
13257 secs = DEFAULT_HOURGLASS_DELAY;
13259 EMACS_SET_SECS_USECS (delay, secs, usecs);
13260 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
13261 show_hourglass, NULL);
13262 #endif
13266 /* Cancel the hourglass cursor timer if active, hide an hourglass
13267 cursor if shown. */
13269 void
13270 cancel_hourglass ()
13272 if (hourglass_atimer)
13274 cancel_atimer (hourglass_atimer);
13275 hourglass_atimer = NULL;
13278 if (hourglass_shown_p)
13279 hide_hourglass ();
13283 /* Timer function of hourglass_atimer. TIMER is equal to
13284 hourglass_atimer.
13286 Display an hourglass cursor on all frames by mapping the frames'
13287 hourglass_window. Set the hourglass_p flag in the frames'
13288 output_data.x structure to indicate that an hourglass cursor is
13289 shown on the frames. */
13291 static void
13292 show_hourglass (timer)
13293 struct atimer *timer;
13295 #if 0 /* TODO: cursor shape changes. */
13296 /* The timer implementation will cancel this timer automatically
13297 after this function has run. Set hourglass_atimer to null
13298 so that we know the timer doesn't have to be canceled. */
13299 hourglass_atimer = NULL;
13301 if (!hourglass_shown_p)
13303 Lisp_Object rest, frame;
13305 BLOCK_INPUT;
13307 FOR_EACH_FRAME (rest, frame)
13308 if (FRAME_W32_P (XFRAME (frame)))
13310 struct frame *f = XFRAME (frame);
13312 f->output_data.w32->hourglass_p = 1;
13314 if (!f->output_data.w32->hourglass_window)
13316 unsigned long mask = CWCursor;
13317 XSetWindowAttributes attrs;
13319 attrs.cursor = f->output_data.w32->hourglass_cursor;
13321 f->output_data.w32->hourglass_window
13322 = XCreateWindow (FRAME_X_DISPLAY (f),
13323 FRAME_OUTER_WINDOW (f),
13324 0, 0, 32000, 32000, 0, 0,
13325 InputOnly,
13326 CopyFromParent,
13327 mask, &attrs);
13330 XMapRaised (FRAME_X_DISPLAY (f),
13331 f->output_data.w32->hourglass_window);
13332 XFlush (FRAME_X_DISPLAY (f));
13335 hourglass_shown_p = 1;
13336 UNBLOCK_INPUT;
13338 #endif
13342 /* Hide the hourglass cursor on all frames, if it is currently shown. */
13344 static void
13345 hide_hourglass ()
13347 #if 0 /* TODO: cursor shape changes. */
13348 if (hourglass_shown_p)
13350 Lisp_Object rest, frame;
13352 BLOCK_INPUT;
13353 FOR_EACH_FRAME (rest, frame)
13355 struct frame *f = XFRAME (frame);
13357 if (FRAME_W32_P (f)
13358 /* Watch out for newly created frames. */
13359 && f->output_data.x->hourglass_window)
13361 XUnmapWindow (FRAME_X_DISPLAY (f),
13362 f->output_data.x->hourglass_window);
13363 /* Sync here because XTread_socket looks at the
13364 hourglass_p flag that is reset to zero below. */
13365 XSync (FRAME_X_DISPLAY (f), False);
13366 f->output_data.x->hourglass_p = 0;
13370 hourglass_shown_p = 0;
13371 UNBLOCK_INPUT;
13373 #endif
13378 /***********************************************************************
13379 Tool tips
13380 ***********************************************************************/
13382 static Lisp_Object x_create_tip_frame P_ ((struct w32_display_info *,
13383 Lisp_Object, Lisp_Object));
13384 static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
13385 Lisp_Object, int, int, int *, int *));
13387 /* The frame of a currently visible tooltip. */
13389 Lisp_Object tip_frame;
13391 /* If non-nil, a timer started that hides the last tooltip when it
13392 fires. */
13394 Lisp_Object tip_timer;
13395 Window tip_window;
13397 /* If non-nil, a vector of 3 elements containing the last args
13398 with which x-show-tip was called. See there. */
13400 Lisp_Object last_show_tip_args;
13402 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
13404 Lisp_Object Vx_max_tooltip_size;
13407 static Lisp_Object
13408 unwind_create_tip_frame (frame)
13409 Lisp_Object frame;
13411 Lisp_Object deleted;
13413 deleted = unwind_create_frame (frame);
13414 if (EQ (deleted, Qt))
13416 tip_window = NULL;
13417 tip_frame = Qnil;
13420 return deleted;
13424 /* Create a frame for a tooltip on the display described by DPYINFO.
13425 PARMS is a list of frame parameters. TEXT is the string to
13426 display in the tip frame. Value is the frame.
13428 Note that functions called here, esp. x_default_parameter can
13429 signal errors, for instance when a specified color name is
13430 undefined. We have to make sure that we're in a consistent state
13431 when this happens. */
13433 static Lisp_Object
13434 x_create_tip_frame (dpyinfo, parms, text)
13435 struct w32_display_info *dpyinfo;
13436 Lisp_Object parms, text;
13438 struct frame *f;
13439 Lisp_Object frame, tem;
13440 Lisp_Object name;
13441 long window_prompting = 0;
13442 int width, height;
13443 int count = BINDING_STACK_SIZE ();
13444 struct gcpro gcpro1, gcpro2, gcpro3;
13445 struct kboard *kb;
13446 int face_change_count_before = face_change_count;
13447 Lisp_Object buffer;
13448 struct buffer *old_buffer;
13450 check_w32 ();
13452 /* Use this general default value to start with until we know if
13453 this frame has a specified name. */
13454 Vx_resource_name = Vinvocation_name;
13456 #ifdef MULTI_KBOARD
13457 kb = dpyinfo->kboard;
13458 #else
13459 kb = &the_only_kboard;
13460 #endif
13462 /* Get the name of the frame to use for resource lookup. */
13463 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
13464 if (!STRINGP (name)
13465 && !EQ (name, Qunbound)
13466 && !NILP (name))
13467 error ("Invalid frame name--not a string or nil");
13468 Vx_resource_name = name;
13470 frame = Qnil;
13471 GCPRO3 (parms, name, frame);
13472 /* Make a frame without minibuffer nor mode-line. */
13473 f = make_frame (0);
13474 f->wants_modeline = 0;
13475 XSETFRAME (frame, f);
13477 buffer = Fget_buffer_create (build_string (" *tip*"));
13478 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer);
13479 old_buffer = current_buffer;
13480 set_buffer_internal_1 (XBUFFER (buffer));
13481 current_buffer->truncate_lines = Qnil;
13482 Ferase_buffer ();
13483 Finsert (1, &text);
13484 set_buffer_internal_1 (old_buffer);
13486 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
13487 record_unwind_protect (unwind_create_tip_frame, frame);
13489 /* By setting the output method, we're essentially saying that
13490 the frame is live, as per FRAME_LIVE_P. If we get a signal
13491 from this point on, x_destroy_window might screw up reference
13492 counts etc. */
13493 f->output_method = output_w32;
13494 f->output_data.w32 =
13495 (struct w32_output *) xmalloc (sizeof (struct w32_output));
13496 bzero (f->output_data.w32, sizeof (struct w32_output));
13498 FRAME_FONTSET (f) = -1;
13499 f->icon_name = Qnil;
13501 #if 0 /* GLYPH_DEBUG TODO: image support. */
13502 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
13503 dpyinfo_refcount = dpyinfo->reference_count;
13504 #endif /* GLYPH_DEBUG */
13505 #ifdef MULTI_KBOARD
13506 FRAME_KBOARD (f) = kb;
13507 #endif
13508 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
13509 f->output_data.w32->explicit_parent = 0;
13511 /* Set the name; the functions to which we pass f expect the name to
13512 be set. */
13513 if (EQ (name, Qunbound) || NILP (name))
13515 f->name = build_string (dpyinfo->w32_id_name);
13516 f->explicit_name = 0;
13518 else
13520 f->name = name;
13521 f->explicit_name = 1;
13522 /* use the frame's title when getting resources for this frame. */
13523 specbind (Qx_resource_name, name);
13526 /* Extract the window parameters from the supplied values
13527 that are needed to determine window geometry. */
13529 Lisp_Object font;
13531 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
13533 BLOCK_INPUT;
13534 /* First, try whatever font the caller has specified. */
13535 if (STRINGP (font))
13537 tem = Fquery_fontset (font, Qnil);
13538 if (STRINGP (tem))
13539 font = x_new_fontset (f, XSTRING (tem)->data);
13540 else
13541 font = x_new_font (f, XSTRING (font)->data);
13544 /* Try out a font which we hope has bold and italic variations. */
13545 if (!STRINGP (font))
13546 font = x_new_font (f, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
13547 if (! STRINGP (font))
13548 font = x_new_font (f, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
13549 /* If those didn't work, look for something which will at least work. */
13550 if (! STRINGP (font))
13551 font = x_new_font (f, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
13552 UNBLOCK_INPUT;
13553 if (! STRINGP (font))
13554 font = build_string ("Fixedsys");
13556 x_default_parameter (f, parms, Qfont, font,
13557 "font", "Font", RES_TYPE_STRING);
13560 x_default_parameter (f, parms, Qborder_width, make_number (2),
13561 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
13562 /* This defaults to 2 in order to match xterm. We recognize either
13563 internalBorderWidth or internalBorder (which is what xterm calls
13564 it). */
13565 if (NILP (Fassq (Qinternal_border_width, parms)))
13567 Lisp_Object value;
13569 value = w32_get_arg (parms, Qinternal_border_width,
13570 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
13571 if (! EQ (value, Qunbound))
13572 parms = Fcons (Fcons (Qinternal_border_width, value),
13573 parms);
13575 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
13576 "internalBorderWidth", "internalBorderWidth",
13577 RES_TYPE_NUMBER);
13579 /* Also do the stuff which must be set before the window exists. */
13580 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
13581 "foreground", "Foreground", RES_TYPE_STRING);
13582 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
13583 "background", "Background", RES_TYPE_STRING);
13584 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
13585 "pointerColor", "Foreground", RES_TYPE_STRING);
13586 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
13587 "cursorColor", "Foreground", RES_TYPE_STRING);
13588 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
13589 "borderColor", "BorderColor", RES_TYPE_STRING);
13591 /* Init faces before x_default_parameter is called for scroll-bar
13592 parameters because that function calls x_set_scroll_bar_width,
13593 which calls change_frame_size, which calls Fset_window_buffer,
13594 which runs hooks, which call Fvertical_motion. At the end, we
13595 end up in init_iterator with a null face cache, which should not
13596 happen. */
13597 init_frame_faces (f);
13599 f->output_data.w32->dwStyle = WS_BORDER | WS_POPUP | WS_DISABLED;
13600 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
13602 window_prompting = x_figure_window_size (f, parms);
13604 /* No fringes on tip frame. */
13605 f->output_data.w32->fringes_extra = 0;
13606 f->output_data.w32->fringe_cols = 0;
13607 f->output_data.w32->left_fringe_width = 0;
13608 f->output_data.w32->right_fringe_width = 0;
13610 if (window_prompting & XNegative)
13612 if (window_prompting & YNegative)
13613 f->output_data.w32->win_gravity = SouthEastGravity;
13614 else
13615 f->output_data.w32->win_gravity = NorthEastGravity;
13617 else
13619 if (window_prompting & YNegative)
13620 f->output_data.w32->win_gravity = SouthWestGravity;
13621 else
13622 f->output_data.w32->win_gravity = NorthWestGravity;
13625 f->output_data.w32->size_hint_flags = window_prompting;
13627 BLOCK_INPUT;
13628 my_create_tip_window (f);
13629 UNBLOCK_INPUT;
13631 x_make_gc (f);
13633 x_default_parameter (f, parms, Qauto_raise, Qnil,
13634 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
13635 x_default_parameter (f, parms, Qauto_lower, Qnil,
13636 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
13637 x_default_parameter (f, parms, Qcursor_type, Qbox,
13638 "cursorType", "CursorType", RES_TYPE_SYMBOL);
13640 /* Dimensions, especially f->height, must be done via change_frame_size.
13641 Change will not be effected unless different from the current
13642 f->height. */
13643 width = f->width;
13644 height = f->height;
13645 f->height = 0;
13646 SET_FRAME_WIDTH (f, 0);
13647 change_frame_size (f, height, width, 1, 0, 0);
13649 /* Set up faces after all frame parameters are known. This call
13650 also merges in face attributes specified for new frames.
13652 Frame parameters may be changed if .Xdefaults contains
13653 specifications for the default font. For example, if there is an
13654 `Emacs.default.attributeBackground: pink', the `background-color'
13655 attribute of the frame get's set, which let's the internal border
13656 of the tooltip frame appear in pink. Prevent this. */
13658 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
13660 /* Set tip_frame here, so that */
13661 tip_frame = frame;
13662 call1 (Qface_set_after_frame_default, frame);
13664 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
13665 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
13666 Qnil));
13669 f->no_split = 1;
13671 UNGCPRO;
13673 /* It is now ok to make the frame official even if we get an error
13674 below. And the frame needs to be on Vframe_list or making it
13675 visible won't work. */
13676 Vframe_list = Fcons (frame, Vframe_list);
13678 /* Now that the frame is official, it counts as a reference to
13679 its display. */
13680 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
13682 /* Setting attributes of faces of the tooltip frame from resources
13683 and similar will increment face_change_count, which leads to the
13684 clearing of all current matrices. Since this isn't necessary
13685 here, avoid it by resetting face_change_count to the value it
13686 had before we created the tip frame. */
13687 face_change_count = face_change_count_before;
13689 /* Discard the unwind_protect. */
13690 return unbind_to (count, frame);
13694 /* Compute where to display tip frame F. PARMS is the list of frame
13695 parameters for F. DX and DY are specified offsets from the current
13696 location of the mouse. WIDTH and HEIGHT are the width and height
13697 of the tooltip. Return coordinates relative to the root window of
13698 the display in *ROOT_X, and *ROOT_Y. */
13700 static void
13701 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
13702 struct frame *f;
13703 Lisp_Object parms, dx, dy;
13704 int width, height;
13705 int *root_x, *root_y;
13707 Lisp_Object left, top;
13709 /* User-specified position? */
13710 left = Fcdr (Fassq (Qleft, parms));
13711 top = Fcdr (Fassq (Qtop, parms));
13713 /* Move the tooltip window where the mouse pointer is. Resize and
13714 show it. */
13715 if (!INTEGERP (left) || !INTEGERP (top))
13717 POINT pt;
13719 BLOCK_INPUT;
13720 GetCursorPos (&pt);
13721 *root_x = pt.x;
13722 *root_y = pt.y;
13723 UNBLOCK_INPUT;
13726 if (INTEGERP (top))
13727 *root_y = XINT (top);
13728 else if (*root_y + XINT (dy) - height < 0)
13729 *root_y -= XINT (dy);
13730 else
13732 *root_y -= height;
13733 *root_y += XINT (dy);
13736 if (INTEGERP (left))
13737 *root_x = XINT (left);
13738 else if (*root_x + XINT (dx) + width <= FRAME_W32_DISPLAY_INFO (f)->width)
13739 /* It fits to the right of the pointer. */
13740 *root_x += XINT (dx);
13741 else if (width + XINT (dx) <= *root_x)
13742 /* It fits to the left of the pointer. */
13743 *root_x -= width + XINT (dx);
13744 else
13745 /* Put it left justified on the screen -- it ought to fit that way. */
13746 *root_x = 0;
13750 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
13751 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
13752 A tooltip window is a small window displaying a string.
13754 FRAME nil or omitted means use the selected frame.
13756 PARMS is an optional list of frame parameters which can be
13757 used to change the tooltip's appearance.
13759 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
13760 means use the default timeout of 5 seconds.
13762 If the list of frame parameters PARAMS contains a `left' parameter,
13763 the tooltip is displayed at that x-position. Otherwise it is
13764 displayed at the mouse position, with offset DX added (default is 5 if
13765 DX isn't specified). Likewise for the y-position; if a `top' frame
13766 parameter is specified, it determines the y-position of the tooltip
13767 window, otherwise it is displayed at the mouse position, with offset
13768 DY added (default is -10).
13770 A tooltip's maximum size is specified by `x-max-tooltip-size'.
13771 Text larger than the specified size is clipped. */)
13772 (string, frame, parms, timeout, dx, dy)
13773 Lisp_Object string, frame, parms, timeout, dx, dy;
13775 struct frame *f;
13776 struct window *w;
13777 int root_x, root_y;
13778 struct buffer *old_buffer;
13779 struct text_pos pos;
13780 int i, width, height;
13781 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
13782 int old_windows_or_buffers_changed = windows_or_buffers_changed;
13783 int count = BINDING_STACK_SIZE ();
13785 specbind (Qinhibit_redisplay, Qt);
13787 GCPRO4 (string, parms, frame, timeout);
13789 CHECK_STRING (string);
13790 f = check_x_frame (frame);
13791 if (NILP (timeout))
13792 timeout = make_number (5);
13793 else
13794 CHECK_NATNUM (timeout);
13796 if (NILP (dx))
13797 dx = make_number (5);
13798 else
13799 CHECK_NUMBER (dx);
13801 if (NILP (dy))
13802 dy = make_number (-10);
13803 else
13804 CHECK_NUMBER (dy);
13806 if (NILP (last_show_tip_args))
13807 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
13809 if (!NILP (tip_frame))
13811 Lisp_Object last_string = AREF (last_show_tip_args, 0);
13812 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
13813 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
13815 if (EQ (frame, last_frame)
13816 && !NILP (Fequal (last_string, string))
13817 && !NILP (Fequal (last_parms, parms)))
13819 struct frame *f = XFRAME (tip_frame);
13821 /* Only DX and DY have changed. */
13822 if (!NILP (tip_timer))
13824 Lisp_Object timer = tip_timer;
13825 tip_timer = Qnil;
13826 call1 (Qcancel_timer, timer);
13829 BLOCK_INPUT;
13830 compute_tip_xy (f, parms, dx, dy, PIXEL_WIDTH (f),
13831 PIXEL_HEIGHT (f), &root_x, &root_y);
13833 /* Put tooltip in topmost group and in position. */
13834 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST,
13835 root_x, root_y, 0, 0,
13836 SWP_NOSIZE | SWP_NOACTIVATE);
13838 /* Ensure tooltip is on top of other topmost windows (eg menus). */
13839 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP,
13840 0, 0, 0, 0,
13841 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
13843 UNBLOCK_INPUT;
13844 goto start_timer;
13848 /* Hide a previous tip, if any. */
13849 Fx_hide_tip ();
13851 ASET (last_show_tip_args, 0, string);
13852 ASET (last_show_tip_args, 1, frame);
13853 ASET (last_show_tip_args, 2, parms);
13855 /* Add default values to frame parameters. */
13856 if (NILP (Fassq (Qname, parms)))
13857 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
13858 if (NILP (Fassq (Qinternal_border_width, parms)))
13859 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
13860 if (NILP (Fassq (Qborder_width, parms)))
13861 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
13862 if (NILP (Fassq (Qborder_color, parms)))
13863 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
13864 if (NILP (Fassq (Qbackground_color, parms)))
13865 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
13866 parms);
13868 /* Block input until the tip has been fully drawn, to avoid crashes
13869 when drawing tips in menus. */
13870 BLOCK_INPUT;
13872 /* Create a frame for the tooltip, and record it in the global
13873 variable tip_frame. */
13874 frame = x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f), parms, string);
13875 f = XFRAME (frame);
13877 /* Set up the frame's root window. */
13878 w = XWINDOW (FRAME_ROOT_WINDOW (f));
13879 w->left = w->top = make_number (0);
13881 if (CONSP (Vx_max_tooltip_size)
13882 && INTEGERP (XCAR (Vx_max_tooltip_size))
13883 && XINT (XCAR (Vx_max_tooltip_size)) > 0
13884 && INTEGERP (XCDR (Vx_max_tooltip_size))
13885 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
13887 w->width = XCAR (Vx_max_tooltip_size);
13888 w->height = XCDR (Vx_max_tooltip_size);
13890 else
13892 w->width = make_number (80);
13893 w->height = make_number (40);
13896 f->window_width = XINT (w->width);
13897 adjust_glyphs (f);
13898 w->pseudo_window_p = 1;
13900 /* Display the tooltip text in a temporary buffer. */
13901 old_buffer = current_buffer;
13902 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
13903 current_buffer->truncate_lines = Qnil;
13904 clear_glyph_matrix (w->desired_matrix);
13905 clear_glyph_matrix (w->current_matrix);
13906 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
13907 try_window (FRAME_ROOT_WINDOW (f), pos);
13909 /* Compute width and height of the tooltip. */
13910 width = height = 0;
13911 for (i = 0; i < w->desired_matrix->nrows; ++i)
13913 struct glyph_row *row = &w->desired_matrix->rows[i];
13914 struct glyph *last;
13915 int row_width;
13917 /* Stop at the first empty row at the end. */
13918 if (!row->enabled_p || !row->displays_text_p)
13919 break;
13921 /* Let the row go over the full width of the frame. */
13922 row->full_width_p = 1;
13924 #ifdef TODO /* Investigate why some fonts need more width than is
13925 calculated for some tooltips. */
13926 /* There's a glyph at the end of rows that is use to place
13927 the cursor there. Don't include the width of this glyph. */
13928 if (row->used[TEXT_AREA])
13930 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
13931 row_width = row->pixel_width - last->pixel_width;
13933 else
13934 #endif
13935 row_width = row->pixel_width;
13937 /* TODO: find why tips do not draw along baseline as instructed. */
13938 height += row->height;
13939 width = max (width, row_width);
13942 /* Add the frame's internal border to the width and height the X
13943 window should have. */
13944 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
13945 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
13947 /* Move the tooltip window where the mouse pointer is. Resize and
13948 show it. */
13949 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
13952 /* Adjust Window size to take border into account. */
13953 RECT rect;
13954 rect.left = rect.top = 0;
13955 rect.right = width;
13956 rect.bottom = height;
13957 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
13958 FRAME_EXTERNAL_MENU_BAR (f));
13960 /* Position and size tooltip, and put it in the topmost group. */
13961 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST,
13962 root_x, root_y, rect.right - rect.left,
13963 rect.bottom - rect.top, SWP_NOACTIVATE);
13965 /* Ensure tooltip is on top of other topmost windows (eg menus). */
13966 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP,
13967 0, 0, 0, 0,
13968 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
13970 /* Let redisplay know that we have made the frame visible already. */
13971 f->async_visible = 1;
13973 ShowWindow (FRAME_W32_WINDOW (f), SW_SHOWNOACTIVATE);
13976 /* Draw into the window. */
13977 w->must_be_updated_p = 1;
13978 update_single_window (w, 1);
13980 UNBLOCK_INPUT;
13982 /* Restore original current buffer. */
13983 set_buffer_internal_1 (old_buffer);
13984 windows_or_buffers_changed = old_windows_or_buffers_changed;
13986 start_timer:
13987 /* Let the tip disappear after timeout seconds. */
13988 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
13989 intern ("x-hide-tip"));
13991 UNGCPRO;
13992 return unbind_to (count, Qnil);
13996 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
13997 doc: /* Hide the current tooltip window, if there is any.
13998 Value is t if tooltip was open, nil otherwise. */)
14001 int count;
14002 Lisp_Object deleted, frame, timer;
14003 struct gcpro gcpro1, gcpro2;
14005 /* Return quickly if nothing to do. */
14006 if (NILP (tip_timer) && NILP (tip_frame))
14007 return Qnil;
14009 frame = tip_frame;
14010 timer = tip_timer;
14011 GCPRO2 (frame, timer);
14012 tip_frame = tip_timer = deleted = Qnil;
14014 count = BINDING_STACK_SIZE ();
14015 specbind (Qinhibit_redisplay, Qt);
14016 specbind (Qinhibit_quit, Qt);
14018 if (!NILP (timer))
14019 call1 (Qcancel_timer, timer);
14021 if (FRAMEP (frame))
14023 Fdelete_frame (frame, Qnil);
14024 deleted = Qt;
14027 UNGCPRO;
14028 return unbind_to (count, deleted);
14033 /***********************************************************************
14034 File selection dialog
14035 ***********************************************************************/
14037 extern Lisp_Object Qfile_name_history;
14039 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
14040 doc: /* Read file name, prompting with PROMPT in directory DIR.
14041 Use a file selection dialog.
14042 Select DEFAULT-FILENAME in the dialog's file selection box, if
14043 specified. Ensure that file exists if MUSTMATCH is non-nil. */)
14044 (prompt, dir, default_filename, mustmatch)
14045 Lisp_Object prompt, dir, default_filename, mustmatch;
14047 struct frame *f = SELECTED_FRAME ();
14048 Lisp_Object file = Qnil;
14049 int count = specpdl_ptr - specpdl;
14050 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
14051 char filename[MAX_PATH + 1];
14052 char init_dir[MAX_PATH + 1];
14053 int use_dialog_p = 1;
14055 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
14056 CHECK_STRING (prompt);
14057 CHECK_STRING (dir);
14059 /* Create the dialog with PROMPT as title, using DIR as initial
14060 directory and using "*" as pattern. */
14061 dir = Fexpand_file_name (dir, Qnil);
14062 strncpy (init_dir, XSTRING (dir)->data, MAX_PATH);
14063 init_dir[MAX_PATH] = '\0';
14064 unixtodos_filename (init_dir);
14066 if (STRINGP (default_filename))
14068 char *file_name_only;
14069 char *full_path_name = XSTRING (default_filename)->data;
14071 unixtodos_filename (full_path_name);
14073 file_name_only = strrchr (full_path_name, '\\');
14074 if (!file_name_only)
14075 file_name_only = full_path_name;
14076 else
14078 file_name_only++;
14080 /* If default_file_name is a directory, don't use the open
14081 file dialog, as it does not support selecting
14082 directories. */
14083 if (!(*file_name_only))
14084 use_dialog_p = 0;
14087 strncpy (filename, file_name_only, MAX_PATH);
14088 filename[MAX_PATH] = '\0';
14090 else
14091 filename[0] = '\0';
14093 if (use_dialog_p)
14095 OPENFILENAME file_details;
14097 /* Prevent redisplay. */
14098 specbind (Qinhibit_redisplay, Qt);
14099 BLOCK_INPUT;
14101 bzero (&file_details, sizeof (file_details));
14102 file_details.lStructSize = sizeof (file_details);
14103 file_details.hwndOwner = FRAME_W32_WINDOW (f);
14104 /* Undocumented Bug in Common File Dialog:
14105 If a filter is not specified, shell links are not resolved. */
14106 file_details.lpstrFilter = "ALL Files (*.*)\0*.*\0\0";
14107 file_details.lpstrFile = filename;
14108 file_details.nMaxFile = sizeof (filename);
14109 file_details.lpstrInitialDir = init_dir;
14110 file_details.lpstrTitle = XSTRING (prompt)->data;
14111 file_details.Flags = OFN_HIDEREADONLY | OFN_NOCHANGEDIR;
14113 if (!NILP (mustmatch))
14114 file_details.Flags |= OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
14116 if (GetOpenFileName (&file_details))
14118 dostounix_filename (filename);
14119 file = build_string (filename);
14121 else
14122 file = Qnil;
14124 UNBLOCK_INPUT;
14125 file = unbind_to (count, file);
14127 /* Open File dialog will not allow folders to be selected, so resort
14128 to minibuffer completing reads for directories. */
14129 else
14130 file = Fcompleting_read (prompt, intern ("read-file-name-internal"),
14131 dir, mustmatch, dir, Qfile_name_history,
14132 default_filename, Qnil);
14134 UNGCPRO;
14136 /* Make "Cancel" equivalent to C-g. */
14137 if (NILP (file))
14138 Fsignal (Qquit, Qnil);
14140 return unbind_to (count, file);
14145 /***********************************************************************
14146 w32 specialized functions
14147 ***********************************************************************/
14149 DEFUN ("w32-select-font", Fw32_select_font, Sw32_select_font, 0, 2, 0,
14150 doc: /* Select a font using the W32 font dialog.
14151 Returns an X font string corresponding to the selection. */)
14152 (frame, include_proportional)
14153 Lisp_Object frame, include_proportional;
14155 FRAME_PTR f = check_x_frame (frame);
14156 CHOOSEFONT cf;
14157 LOGFONT lf;
14158 TEXTMETRIC tm;
14159 HDC hdc;
14160 HANDLE oldobj;
14161 char buf[100];
14163 bzero (&cf, sizeof (cf));
14164 bzero (&lf, sizeof (lf));
14166 cf.lStructSize = sizeof (cf);
14167 cf.hwndOwner = FRAME_W32_WINDOW (f);
14168 cf.Flags = CF_FORCEFONTEXIST | CF_SCREENFONTS | CF_NOVERTFONTS;
14170 /* Unless include_proportional is non-nil, limit the selection to
14171 monospaced fonts. */
14172 if (NILP (include_proportional))
14173 cf.Flags |= CF_FIXEDPITCHONLY;
14175 cf.lpLogFont = &lf;
14177 /* Initialize as much of the font details as we can from the current
14178 default font. */
14179 hdc = GetDC (FRAME_W32_WINDOW (f));
14180 oldobj = SelectObject (hdc, FRAME_FONT (f)->hfont);
14181 GetTextFace (hdc, LF_FACESIZE, lf.lfFaceName);
14182 if (GetTextMetrics (hdc, &tm))
14184 lf.lfHeight = tm.tmInternalLeading - tm.tmHeight;
14185 lf.lfWeight = tm.tmWeight;
14186 lf.lfItalic = tm.tmItalic;
14187 lf.lfUnderline = tm.tmUnderlined;
14188 lf.lfStrikeOut = tm.tmStruckOut;
14189 lf.lfCharSet = tm.tmCharSet;
14190 cf.Flags |= CF_INITTOLOGFONTSTRUCT;
14192 SelectObject (hdc, oldobj);
14193 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
14195 if (!ChooseFont (&cf) || !w32_to_x_font (&lf, buf, 100, NULL))
14196 return Qnil;
14198 return build_string (buf);
14201 DEFUN ("w32-send-sys-command", Fw32_send_sys_command,
14202 Sw32_send_sys_command, 1, 2, 0,
14203 doc: /* Send frame a Windows WM_SYSCOMMAND message of type COMMAND.
14204 Some useful values for command are #xf030 to maximise frame (#xf020
14205 to minimize), #xf120 to restore frame to original size, and #xf100
14206 to activate the menubar for keyboard access. #xf140 activates the
14207 screen saver if defined.
14209 If optional parameter FRAME is not specified, use selected frame. */)
14210 (command, frame)
14211 Lisp_Object command, frame;
14213 FRAME_PTR f = check_x_frame (frame);
14215 CHECK_NUMBER (command);
14217 PostMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, XINT (command), 0);
14219 return Qnil;
14222 DEFUN ("w32-shell-execute", Fw32_shell_execute, Sw32_shell_execute, 2, 4, 0,
14223 doc: /* Get Windows to perform OPERATION on DOCUMENT.
14224 This is a wrapper around the ShellExecute system function, which
14225 invokes the application registered to handle OPERATION for DOCUMENT.
14226 OPERATION is typically \"open\", \"print\" or \"explore\" (but can be
14227 nil for the default action), and DOCUMENT is typically the name of a
14228 document file or URL, but can also be a program executable to run or
14229 a directory to open in the Windows Explorer.
14231 If DOCUMENT is a program executable, PARAMETERS can be a string
14232 containing command line parameters, but otherwise should be nil.
14234 SHOW-FLAG can be used to control whether the invoked application is hidden
14235 or minimized. If SHOW-FLAG is nil, the application is displayed normally,
14236 otherwise it is an integer representing a ShowWindow flag:
14238 0 - start hidden
14239 1 - start normally
14240 3 - start maximized
14241 6 - start minimized */)
14242 (operation, document, parameters, show_flag)
14243 Lisp_Object operation, document, parameters, show_flag;
14245 Lisp_Object current_dir;
14247 CHECK_STRING (document);
14249 /* Encode filename and current directory. */
14250 current_dir = ENCODE_FILE (current_buffer->directory);
14251 document = ENCODE_FILE (document);
14252 if ((int) ShellExecute (NULL,
14253 (STRINGP (operation) ?
14254 XSTRING (operation)->data : NULL),
14255 XSTRING (document)->data,
14256 (STRINGP (parameters) ?
14257 XSTRING (parameters)->data : NULL),
14258 XSTRING (current_dir)->data,
14259 (INTEGERP (show_flag) ?
14260 XINT (show_flag) : SW_SHOWDEFAULT))
14261 > 32)
14262 return Qt;
14263 error ("ShellExecute failed: %s", w32_strerror (0));
14266 /* Lookup virtual keycode from string representing the name of a
14267 non-ascii keystroke into the corresponding virtual key, using
14268 lispy_function_keys. */
14269 static int
14270 lookup_vk_code (char *key)
14272 int i;
14274 for (i = 0; i < 256; i++)
14275 if (lispy_function_keys[i] != 0
14276 && strcmp (lispy_function_keys[i], key) == 0)
14277 return i;
14279 return -1;
14282 /* Convert a one-element vector style key sequence to a hot key
14283 definition. */
14284 static int
14285 w32_parse_hot_key (key)
14286 Lisp_Object key;
14288 /* Copied from Fdefine_key and store_in_keymap. */
14289 register Lisp_Object c;
14290 int vk_code;
14291 int lisp_modifiers;
14292 int w32_modifiers;
14293 struct gcpro gcpro1;
14295 CHECK_VECTOR (key);
14297 if (XFASTINT (Flength (key)) != 1)
14298 return Qnil;
14300 GCPRO1 (key);
14302 c = Faref (key, make_number (0));
14304 if (CONSP (c) && lucid_event_type_list_p (c))
14305 c = Fevent_convert_list (c);
14307 UNGCPRO;
14309 if (! INTEGERP (c) && ! SYMBOLP (c))
14310 error ("Key definition is invalid");
14312 /* Work out the base key and the modifiers. */
14313 if (SYMBOLP (c))
14315 c = parse_modifiers (c);
14316 lisp_modifiers = Fcar (Fcdr (c));
14317 c = Fcar (c);
14318 if (!SYMBOLP (c))
14319 abort ();
14320 vk_code = lookup_vk_code (XSYMBOL (c)->name->data);
14322 else if (INTEGERP (c))
14324 lisp_modifiers = XINT (c) & ~CHARACTERBITS;
14325 /* Many ascii characters are their own virtual key code. */
14326 vk_code = XINT (c) & CHARACTERBITS;
14329 if (vk_code < 0 || vk_code > 255)
14330 return Qnil;
14332 if ((lisp_modifiers & meta_modifier) != 0
14333 && !NILP (Vw32_alt_is_meta))
14334 lisp_modifiers |= alt_modifier;
14336 /* Supply defs missing from mingw32. */
14337 #ifndef MOD_ALT
14338 #define MOD_ALT 0x0001
14339 #define MOD_CONTROL 0x0002
14340 #define MOD_SHIFT 0x0004
14341 #define MOD_WIN 0x0008
14342 #endif
14344 /* Convert lisp modifiers to Windows hot-key form. */
14345 w32_modifiers = (lisp_modifiers & hyper_modifier) ? MOD_WIN : 0;
14346 w32_modifiers |= (lisp_modifiers & alt_modifier) ? MOD_ALT : 0;
14347 w32_modifiers |= (lisp_modifiers & ctrl_modifier) ? MOD_CONTROL : 0;
14348 w32_modifiers |= (lisp_modifiers & shift_modifier) ? MOD_SHIFT : 0;
14350 return HOTKEY (vk_code, w32_modifiers);
14353 DEFUN ("w32-register-hot-key", Fw32_register_hot_key,
14354 Sw32_register_hot_key, 1, 1, 0,
14355 doc: /* Register KEY as a hot-key combination.
14356 Certain key combinations like Alt-Tab are reserved for system use on
14357 Windows, and therefore are normally intercepted by the system. However,
14358 most of these key combinations can be received by registering them as
14359 hot-keys, overriding their special meaning.
14361 KEY must be a one element key definition in vector form that would be
14362 acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta
14363 modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper
14364 is always interpreted as the Windows modifier keys.
14366 The return value is the hotkey-id if registered, otherwise nil. */)
14367 (key)
14368 Lisp_Object key;
14370 key = w32_parse_hot_key (key);
14372 if (NILP (Fmemq (key, w32_grabbed_keys)))
14374 /* Reuse an empty slot if possible. */
14375 Lisp_Object item = Fmemq (Qnil, w32_grabbed_keys);
14377 /* Safe to add new key to list, even if we have focus. */
14378 if (NILP (item))
14379 w32_grabbed_keys = Fcons (key, w32_grabbed_keys);
14380 else
14381 XSETCAR (item, key);
14383 /* Notify input thread about new hot-key definition, so that it
14384 takes effect without needing to switch focus. */
14385 PostThreadMessage (dwWindowsThreadId, WM_EMACS_REGISTER_HOT_KEY,
14386 (WPARAM) key, 0);
14389 return key;
14392 DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key,
14393 Sw32_unregister_hot_key, 1, 1, 0,
14394 doc: /* Unregister HOTKEY as a hot-key combination. */)
14395 (key)
14396 Lisp_Object key;
14398 Lisp_Object item;
14400 if (!INTEGERP (key))
14401 key = w32_parse_hot_key (key);
14403 item = Fmemq (key, w32_grabbed_keys);
14405 if (!NILP (item))
14407 /* Notify input thread about hot-key definition being removed, so
14408 that it takes effect without needing focus switch. */
14409 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
14410 (WPARAM) XINT (XCAR (item)), (LPARAM) item))
14412 MSG msg;
14413 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
14415 return Qt;
14417 return Qnil;
14420 DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys,
14421 Sw32_registered_hot_keys, 0, 0, 0,
14422 doc: /* Return list of registered hot-key IDs. */)
14425 return Fcopy_sequence (w32_grabbed_keys);
14428 DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key,
14429 Sw32_reconstruct_hot_key, 1, 1, 0,
14430 doc: /* Convert hot-key ID to a lisp key combination. */)
14431 (hotkeyid)
14432 Lisp_Object hotkeyid;
14434 int vk_code, w32_modifiers;
14435 Lisp_Object key;
14437 CHECK_NUMBER (hotkeyid);
14439 vk_code = HOTKEY_VK_CODE (hotkeyid);
14440 w32_modifiers = HOTKEY_MODIFIERS (hotkeyid);
14442 if (lispy_function_keys[vk_code])
14443 key = intern (lispy_function_keys[vk_code]);
14444 else
14445 key = make_number (vk_code);
14447 key = Fcons (key, Qnil);
14448 if (w32_modifiers & MOD_SHIFT)
14449 key = Fcons (Qshift, key);
14450 if (w32_modifiers & MOD_CONTROL)
14451 key = Fcons (Qctrl, key);
14452 if (w32_modifiers & MOD_ALT)
14453 key = Fcons (NILP (Vw32_alt_is_meta) ? Qalt : Qmeta, key);
14454 if (w32_modifiers & MOD_WIN)
14455 key = Fcons (Qhyper, key);
14457 return key;
14460 DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key,
14461 Sw32_toggle_lock_key, 1, 2, 0,
14462 doc: /* Toggle the state of the lock key KEY.
14463 KEY can be `capslock', `kp-numlock', or `scroll'.
14464 If the optional parameter NEW-STATE is a number, then the state of KEY
14465 is set to off if the low bit of NEW-STATE is zero, otherwise on. */)
14466 (key, new_state)
14467 Lisp_Object key, new_state;
14469 int vk_code;
14471 if (EQ (key, intern ("capslock")))
14472 vk_code = VK_CAPITAL;
14473 else if (EQ (key, intern ("kp-numlock")))
14474 vk_code = VK_NUMLOCK;
14475 else if (EQ (key, intern ("scroll")))
14476 vk_code = VK_SCROLL;
14477 else
14478 return Qnil;
14480 if (!dwWindowsThreadId)
14481 return make_number (w32_console_toggle_lock_key (vk_code, new_state));
14483 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
14484 (WPARAM) vk_code, (LPARAM) new_state))
14486 MSG msg;
14487 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
14488 return make_number (msg.wParam);
14490 return Qnil;
14493 DEFUN ("file-system-info", Ffile_system_info, Sfile_system_info, 1, 1, 0,
14494 doc: /* Return storage information about the file system FILENAME is on.
14495 Value is a list of floats (TOTAL FREE AVAIL), where TOTAL is the total
14496 storage of the file system, FREE is the free storage, and AVAIL is the
14497 storage available to a non-superuser. All 3 numbers are in bytes.
14498 If the underlying system call fails, value is nil. */)
14499 (filename)
14500 Lisp_Object filename;
14502 Lisp_Object encoded, value;
14504 CHECK_STRING (filename);
14505 filename = Fexpand_file_name (filename, Qnil);
14506 encoded = ENCODE_FILE (filename);
14508 value = Qnil;
14510 /* Determining the required information on Windows turns out, sadly,
14511 to be more involved than one would hope. The original Win32 api
14512 call for this will return bogus information on some systems, but we
14513 must dynamically probe for the replacement api, since that was
14514 added rather late on. */
14516 HMODULE hKernel = GetModuleHandle ("kernel32");
14517 BOOL (*pfn_GetDiskFreeSpaceEx)
14518 (char *, PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER)
14519 = (void *) GetProcAddress (hKernel, "GetDiskFreeSpaceEx");
14521 /* On Windows, we may need to specify the root directory of the
14522 volume holding FILENAME. */
14523 char rootname[MAX_PATH];
14524 char *name = XSTRING (encoded)->data;
14526 /* find the root name of the volume if given */
14527 if (isalpha (name[0]) && name[1] == ':')
14529 rootname[0] = name[0];
14530 rootname[1] = name[1];
14531 rootname[2] = '\\';
14532 rootname[3] = 0;
14534 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
14536 char *str = rootname;
14537 int slashes = 4;
14540 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
14541 break;
14542 *str++ = *name++;
14544 while ( *name );
14546 *str++ = '\\';
14547 *str = 0;
14550 if (pfn_GetDiskFreeSpaceEx)
14552 LARGE_INTEGER availbytes;
14553 LARGE_INTEGER freebytes;
14554 LARGE_INTEGER totalbytes;
14556 if (pfn_GetDiskFreeSpaceEx(rootname,
14557 &availbytes,
14558 &totalbytes,
14559 &freebytes))
14560 value = list3 (make_float ((double) totalbytes.QuadPart),
14561 make_float ((double) freebytes.QuadPart),
14562 make_float ((double) availbytes.QuadPart));
14564 else
14566 DWORD sectors_per_cluster;
14567 DWORD bytes_per_sector;
14568 DWORD free_clusters;
14569 DWORD total_clusters;
14571 if (GetDiskFreeSpace(rootname,
14572 &sectors_per_cluster,
14573 &bytes_per_sector,
14574 &free_clusters,
14575 &total_clusters))
14576 value = list3 (make_float ((double) total_clusters
14577 * sectors_per_cluster * bytes_per_sector),
14578 make_float ((double) free_clusters
14579 * sectors_per_cluster * bytes_per_sector),
14580 make_float ((double) free_clusters
14581 * sectors_per_cluster * bytes_per_sector));
14585 return value;
14588 /***********************************************************************
14589 Initialization
14590 ***********************************************************************/
14592 void
14593 syms_of_w32fns ()
14595 HMODULE user32_lib = GetModuleHandle ("user32.dll");
14597 /* This is zero if not using MS-Windows. */
14598 w32_in_use = 0;
14600 /* TrackMouseEvent not available in all versions of Windows, so must load
14601 it dynamically. Do it once, here, instead of every time it is used. */
14602 track_mouse_event_fn = GetProcAddress (user32_lib, "TrackMouseEvent");
14603 track_mouse_window = NULL;
14605 w32_visible_system_caret_hwnd = NULL;
14607 Qauto_raise = intern ("auto-raise");
14608 staticpro (&Qauto_raise);
14609 Qauto_lower = intern ("auto-lower");
14610 staticpro (&Qauto_lower);
14611 Qbar = intern ("bar");
14612 staticpro (&Qbar);
14613 Qborder_color = intern ("border-color");
14614 staticpro (&Qborder_color);
14615 Qborder_width = intern ("border-width");
14616 staticpro (&Qborder_width);
14617 Qbox = intern ("box");
14618 staticpro (&Qbox);
14619 Qcursor_color = intern ("cursor-color");
14620 staticpro (&Qcursor_color);
14621 Qcursor_type = intern ("cursor-type");
14622 staticpro (&Qcursor_type);
14623 Qgeometry = intern ("geometry");
14624 staticpro (&Qgeometry);
14625 Qicon_left = intern ("icon-left");
14626 staticpro (&Qicon_left);
14627 Qicon_top = intern ("icon-top");
14628 staticpro (&Qicon_top);
14629 Qicon_type = intern ("icon-type");
14630 staticpro (&Qicon_type);
14631 Qicon_name = intern ("icon-name");
14632 staticpro (&Qicon_name);
14633 Qinternal_border_width = intern ("internal-border-width");
14634 staticpro (&Qinternal_border_width);
14635 Qleft = intern ("left");
14636 staticpro (&Qleft);
14637 Qright = intern ("right");
14638 staticpro (&Qright);
14639 Qmouse_color = intern ("mouse-color");
14640 staticpro (&Qmouse_color);
14641 Qnone = intern ("none");
14642 staticpro (&Qnone);
14643 Qparent_id = intern ("parent-id");
14644 staticpro (&Qparent_id);
14645 Qscroll_bar_width = intern ("scroll-bar-width");
14646 staticpro (&Qscroll_bar_width);
14647 Qsuppress_icon = intern ("suppress-icon");
14648 staticpro (&Qsuppress_icon);
14649 Qundefined_color = intern ("undefined-color");
14650 staticpro (&Qundefined_color);
14651 Qvertical_scroll_bars = intern ("vertical-scroll-bars");
14652 staticpro (&Qvertical_scroll_bars);
14653 Qvisibility = intern ("visibility");
14654 staticpro (&Qvisibility);
14655 Qwindow_id = intern ("window-id");
14656 staticpro (&Qwindow_id);
14657 Qx_frame_parameter = intern ("x-frame-parameter");
14658 staticpro (&Qx_frame_parameter);
14659 Qx_resource_name = intern ("x-resource-name");
14660 staticpro (&Qx_resource_name);
14661 Quser_position = intern ("user-position");
14662 staticpro (&Quser_position);
14663 Quser_size = intern ("user-size");
14664 staticpro (&Quser_size);
14665 Qscreen_gamma = intern ("screen-gamma");
14666 staticpro (&Qscreen_gamma);
14667 Qline_spacing = intern ("line-spacing");
14668 staticpro (&Qline_spacing);
14669 Qcenter = intern ("center");
14670 staticpro (&Qcenter);
14671 Qcancel_timer = intern ("cancel-timer");
14672 staticpro (&Qcancel_timer);
14673 Qfullscreen = intern ("fullscreen");
14674 staticpro (&Qfullscreen);
14675 Qfullwidth = intern ("fullwidth");
14676 staticpro (&Qfullwidth);
14677 Qfullheight = intern ("fullheight");
14678 staticpro (&Qfullheight);
14679 Qfullboth = intern ("fullboth");
14680 staticpro (&Qfullboth);
14682 Qhyper = intern ("hyper");
14683 staticpro (&Qhyper);
14684 Qsuper = intern ("super");
14685 staticpro (&Qsuper);
14686 Qmeta = intern ("meta");
14687 staticpro (&Qmeta);
14688 Qalt = intern ("alt");
14689 staticpro (&Qalt);
14690 Qctrl = intern ("ctrl");
14691 staticpro (&Qctrl);
14692 Qcontrol = intern ("control");
14693 staticpro (&Qcontrol);
14694 Qshift = intern ("shift");
14695 staticpro (&Qshift);
14696 /* This is the end of symbol initialization. */
14698 /* Text property `display' should be nonsticky by default. */
14699 Vtext_property_default_nonsticky
14700 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
14703 Qlaplace = intern ("laplace");
14704 staticpro (&Qlaplace);
14705 Qemboss = intern ("emboss");
14706 staticpro (&Qemboss);
14707 Qedge_detection = intern ("edge-detection");
14708 staticpro (&Qedge_detection);
14709 Qheuristic = intern ("heuristic");
14710 staticpro (&Qheuristic);
14711 QCmatrix = intern (":matrix");
14712 staticpro (&QCmatrix);
14713 QCcolor_adjustment = intern (":color-adjustment");
14714 staticpro (&QCcolor_adjustment);
14715 QCmask = intern (":mask");
14716 staticpro (&QCmask);
14718 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
14719 staticpro (&Qface_set_after_frame_default);
14721 Fput (Qundefined_color, Qerror_conditions,
14722 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
14723 Fput (Qundefined_color, Qerror_message,
14724 build_string ("Undefined color"));
14726 staticpro (&w32_grabbed_keys);
14727 w32_grabbed_keys = Qnil;
14729 DEFVAR_LISP ("w32-color-map", &Vw32_color_map,
14730 doc: /* An array of color name mappings for windows. */);
14731 Vw32_color_map = Qnil;
14733 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system,
14734 doc: /* Non-nil if alt key presses are passed on to Windows.
14735 When non-nil, for example, alt pressed and released and then space will
14736 open the System menu. When nil, Emacs silently swallows alt key events. */);
14737 Vw32_pass_alt_to_system = Qnil;
14739 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta,
14740 doc: /* Non-nil if the alt key is to be considered the same as the meta key.
14741 When nil, Emacs will translate the alt key to the Alt modifier, and not Meta. */);
14742 Vw32_alt_is_meta = Qt;
14744 DEFVAR_INT ("w32-quit-key", &Vw32_quit_key,
14745 doc: /* If non-zero, the virtual key code for an alternative quit key. */);
14746 XSETINT (Vw32_quit_key, 0);
14748 DEFVAR_LISP ("w32-pass-lwindow-to-system",
14749 &Vw32_pass_lwindow_to_system,
14750 doc: /* Non-nil if the left \"Windows\" key is passed on to Windows.
14751 When non-nil, the Start menu is opened by tapping the key. */);
14752 Vw32_pass_lwindow_to_system = Qt;
14754 DEFVAR_LISP ("w32-pass-rwindow-to-system",
14755 &Vw32_pass_rwindow_to_system,
14756 doc: /* Non-nil if the right \"Windows\" key is passed on to Windows.
14757 When non-nil, the Start menu is opened by tapping the key. */);
14758 Vw32_pass_rwindow_to_system = Qt;
14760 DEFVAR_INT ("w32-phantom-key-code",
14761 &Vw32_phantom_key_code,
14762 doc: /* Virtual key code used to generate \"phantom\" key presses.
14763 Value is a number between 0 and 255.
14765 Phantom key presses are generated in order to stop the system from
14766 acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or
14767 `w32-pass-rwindow-to-system' is nil. */);
14768 /* Although 255 is technically not a valid key code, it works and
14769 means that this hack won't interfere with any real key code. */
14770 Vw32_phantom_key_code = 255;
14772 DEFVAR_LISP ("w32-enable-num-lock",
14773 &Vw32_enable_num_lock,
14774 doc: /* Non-nil if Num Lock should act normally.
14775 Set to nil to see Num Lock as the key `kp-numlock'. */);
14776 Vw32_enable_num_lock = Qt;
14778 DEFVAR_LISP ("w32-enable-caps-lock",
14779 &Vw32_enable_caps_lock,
14780 doc: /* Non-nil if Caps Lock should act normally.
14781 Set to nil to see Caps Lock as the key `capslock'. */);
14782 Vw32_enable_caps_lock = Qt;
14784 DEFVAR_LISP ("w32-scroll-lock-modifier",
14785 &Vw32_scroll_lock_modifier,
14786 doc: /* Modifier to use for the Scroll Lock on state.
14787 The value can be hyper, super, meta, alt, control or shift for the
14788 respective modifier, or nil to see Scroll Lock as the key `scroll'.
14789 Any other value will cause the key to be ignored. */);
14790 Vw32_scroll_lock_modifier = Qt;
14792 DEFVAR_LISP ("w32-lwindow-modifier",
14793 &Vw32_lwindow_modifier,
14794 doc: /* Modifier to use for the left \"Windows\" key.
14795 The value can be hyper, super, meta, alt, control or shift for the
14796 respective modifier, or nil to appear as the key `lwindow'.
14797 Any other value will cause the key to be ignored. */);
14798 Vw32_lwindow_modifier = Qnil;
14800 DEFVAR_LISP ("w32-rwindow-modifier",
14801 &Vw32_rwindow_modifier,
14802 doc: /* Modifier to use for the right \"Windows\" key.
14803 The value can be hyper, super, meta, alt, control or shift for the
14804 respective modifier, or nil to appear as the key `rwindow'.
14805 Any other value will cause the key to be ignored. */);
14806 Vw32_rwindow_modifier = Qnil;
14808 DEFVAR_LISP ("w32-apps-modifier",
14809 &Vw32_apps_modifier,
14810 doc: /* Modifier to use for the \"Apps\" key.
14811 The value can be hyper, super, meta, alt, control or shift for the
14812 respective modifier, or nil to appear as the key `apps'.
14813 Any other value will cause the key to be ignored. */);
14814 Vw32_apps_modifier = Qnil;
14816 DEFVAR_BOOL ("w32-enable-synthesized-fonts", &w32_enable_synthesized_fonts,
14817 doc: /* Non-nil enables selection of artificially italicized and bold fonts. */);
14818 w32_enable_synthesized_fonts = 0;
14820 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette,
14821 doc: /* Non-nil enables Windows palette management to map colors exactly. */);
14822 Vw32_enable_palette = Qt;
14824 DEFVAR_INT ("w32-mouse-button-tolerance",
14825 &Vw32_mouse_button_tolerance,
14826 doc: /* Analogue of double click interval for faking middle mouse events.
14827 The value is the minimum time in milliseconds that must elapse between
14828 left/right button down events before they are considered distinct events.
14829 If both mouse buttons are depressed within this interval, a middle mouse
14830 button down event is generated instead. */);
14831 XSETINT (Vw32_mouse_button_tolerance, GetDoubleClickTime () / 2);
14833 DEFVAR_INT ("w32-mouse-move-interval",
14834 &Vw32_mouse_move_interval,
14835 doc: /* Minimum interval between mouse move events.
14836 The value is the minimum time in milliseconds that must elapse between
14837 successive mouse move (or scroll bar drag) events before they are
14838 reported as lisp events. */);
14839 XSETINT (Vw32_mouse_move_interval, 0);
14841 DEFVAR_BOOL ("w32-pass-extra-mouse-buttons-to-system",
14842 &w32_pass_extra_mouse_buttons_to_system,
14843 doc: /* Non-nil if the fourth and fifth mouse buttons are passed to Windows.
14844 Recent versions of Windows support mice with up to five buttons.
14845 Since most applications don't support these extra buttons, most mouse
14846 drivers will allow you to map them to functions at the system level.
14847 If this variable is non-nil, Emacs will pass them on, allowing the
14848 system to handle them. */);
14849 w32_pass_extra_mouse_buttons_to_system = 0;
14851 init_x_parm_symbols ();
14853 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
14854 doc: /* List of directories to search for bitmap files for w32. */);
14855 Vx_bitmap_file_path = decode_env_path ((char *) 0, "PATH");
14857 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
14858 doc: /* The shape of the pointer when over text.
14859 Changing the value does not affect existing frames
14860 unless you set the mouse color. */);
14861 Vx_pointer_shape = Qnil;
14863 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
14864 doc: /* The name Emacs uses to look up resources; for internal use only.
14865 `x-get-resource' uses this as the first component of the instance name
14866 when requesting resource values.
14867 Emacs initially sets `x-resource-name' to the name under which Emacs
14868 was invoked, or to the value specified with the `-name' or `-rn'
14869 switches, if present. */);
14870 Vx_resource_name = Qnil;
14872 Vx_nontext_pointer_shape = Qnil;
14874 Vx_mode_pointer_shape = Qnil;
14876 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
14877 doc: /* The shape of the pointer when Emacs is busy.
14878 This variable takes effect when you create a new frame
14879 or when you set the mouse color. */);
14880 Vx_hourglass_pointer_shape = Qnil;
14882 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
14883 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
14884 display_hourglass_p = 1;
14886 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
14887 doc: /* *Seconds to wait before displaying an hourglass pointer.
14888 Value must be an integer or float. */);
14889 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
14891 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
14892 &Vx_sensitive_text_pointer_shape,
14893 doc: /* The shape of the pointer when over mouse-sensitive text.
14894 This variable takes effect when you create a new frame
14895 or when you set the mouse color. */);
14896 Vx_sensitive_text_pointer_shape = Qnil;
14898 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
14899 &Vx_window_horizontal_drag_shape,
14900 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
14901 This variable takes effect when you create a new frame
14902 or when you set the mouse color. */);
14903 Vx_window_horizontal_drag_shape = Qnil;
14905 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
14906 doc: /* A string indicating the foreground color of the cursor box. */);
14907 Vx_cursor_fore_pixel = Qnil;
14909 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
14910 doc: /* Maximum size for tooltips.
14911 Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
14912 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
14914 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
14915 doc: /* Non-nil if no window manager is in use.
14916 Emacs doesn't try to figure this out; this is always nil
14917 unless you set it to something else. */);
14918 /* We don't have any way to find this out, so set it to nil
14919 and maybe the user would like to set it to t. */
14920 Vx_no_window_manager = Qnil;
14922 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
14923 &Vx_pixel_size_width_font_regexp,
14924 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
14926 Since Emacs gets width of a font matching with this regexp from
14927 PIXEL_SIZE field of the name, font finding mechanism gets faster for
14928 such a font. This is especially effective for such large fonts as
14929 Chinese, Japanese, and Korean. */);
14930 Vx_pixel_size_width_font_regexp = Qnil;
14932 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
14933 doc: /* Time after which cached images are removed from the cache.
14934 When an image has not been displayed this many seconds, remove it
14935 from the image cache. Value must be an integer or nil with nil
14936 meaning don't clear the cache. */);
14937 Vimage_cache_eviction_delay = make_number (30 * 60);
14939 DEFVAR_LISP ("w32-bdf-filename-alist",
14940 &Vw32_bdf_filename_alist,
14941 doc: /* List of bdf fonts and their corresponding filenames. */);
14942 Vw32_bdf_filename_alist = Qnil;
14944 DEFVAR_BOOL ("w32-strict-fontnames",
14945 &w32_strict_fontnames,
14946 doc: /* Non-nil means only use fonts that are exact matches for those requested.
14947 Default is nil, which allows old fontnames that are not XLFD compliant,
14948 and allows third-party CJK display to work by specifying false charset
14949 fields to trick Emacs into translating to Big5, SJIS etc.
14950 Setting this to t will prevent wrong fonts being selected when
14951 fontsets are automatically created. */);
14952 w32_strict_fontnames = 0;
14954 DEFVAR_BOOL ("w32-strict-painting",
14955 &w32_strict_painting,
14956 doc: /* Non-nil means use strict rules for repainting frames.
14957 Set this to nil to get the old behaviour for repainting; this should
14958 only be necessary if the default setting causes problems. */);
14959 w32_strict_painting = 1;
14961 DEFVAR_LISP ("w32-charset-info-alist",
14962 &Vw32_charset_info_alist,
14963 doc: /* Alist linking Emacs character sets to Windows fonts and codepages.
14964 Each entry should be of the form:
14966 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))
14968 where CHARSET_NAME is a string used in font names to identify the charset,
14969 WINDOWS_CHARSET is a symbol that can be one of:
14970 w32-charset-ansi, w32-charset-default, w32-charset-symbol,
14971 w32-charset-shiftjis, w32-charset-hangeul, w32-charset-gb2312,
14972 w32-charset-chinesebig5,
14973 #ifdef JOHAB_CHARSET
14974 w32-charset-johab, w32-charset-hebrew,
14975 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,
14976 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,
14977 w32-charset-russian, w32-charset-mac, w32-charset-baltic,
14978 #endif
14979 #ifdef UNICODE_CHARSET
14980 w32-charset-unicode,
14981 #endif
14982 or w32-charset-oem.
14983 CODEPAGE should be an integer specifying the codepage that should be used
14984 to display the character set, t to do no translation and output as Unicode,
14985 or nil to do no translation and output as 8 bit (or multibyte on far-east
14986 versions of Windows) characters. */);
14987 Vw32_charset_info_alist = Qnil;
14989 staticpro (&Qw32_charset_ansi);
14990 Qw32_charset_ansi = intern ("w32-charset-ansi");
14991 staticpro (&Qw32_charset_symbol);
14992 Qw32_charset_symbol = intern ("w32-charset-symbol");
14993 staticpro (&Qw32_charset_shiftjis);
14994 Qw32_charset_shiftjis = intern ("w32-charset-shiftjis");
14995 staticpro (&Qw32_charset_hangeul);
14996 Qw32_charset_hangeul = intern ("w32-charset-hangeul");
14997 staticpro (&Qw32_charset_chinesebig5);
14998 Qw32_charset_chinesebig5 = intern ("w32-charset-chinesebig5");
14999 staticpro (&Qw32_charset_gb2312);
15000 Qw32_charset_gb2312 = intern ("w32-charset-gb2312");
15001 staticpro (&Qw32_charset_oem);
15002 Qw32_charset_oem = intern ("w32-charset-oem");
15004 #ifdef JOHAB_CHARSET
15006 static int w32_extra_charsets_defined = 1;
15007 DEFVAR_BOOL ("w32-extra-charsets-defined", &w32_extra_charsets_defined,
15008 doc: /* Internal variable. */);
15010 staticpro (&Qw32_charset_johab);
15011 Qw32_charset_johab = intern ("w32-charset-johab");
15012 staticpro (&Qw32_charset_easteurope);
15013 Qw32_charset_easteurope = intern ("w32-charset-easteurope");
15014 staticpro (&Qw32_charset_turkish);
15015 Qw32_charset_turkish = intern ("w32-charset-turkish");
15016 staticpro (&Qw32_charset_baltic);
15017 Qw32_charset_baltic = intern ("w32-charset-baltic");
15018 staticpro (&Qw32_charset_russian);
15019 Qw32_charset_russian = intern ("w32-charset-russian");
15020 staticpro (&Qw32_charset_arabic);
15021 Qw32_charset_arabic = intern ("w32-charset-arabic");
15022 staticpro (&Qw32_charset_greek);
15023 Qw32_charset_greek = intern ("w32-charset-greek");
15024 staticpro (&Qw32_charset_hebrew);
15025 Qw32_charset_hebrew = intern ("w32-charset-hebrew");
15026 staticpro (&Qw32_charset_vietnamese);
15027 Qw32_charset_vietnamese = intern ("w32-charset-vietnamese");
15028 staticpro (&Qw32_charset_thai);
15029 Qw32_charset_thai = intern ("w32-charset-thai");
15030 staticpro (&Qw32_charset_mac);
15031 Qw32_charset_mac = intern ("w32-charset-mac");
15033 #endif
15035 #ifdef UNICODE_CHARSET
15037 static int w32_unicode_charset_defined = 1;
15038 DEFVAR_BOOL ("w32-unicode-charset-defined",
15039 &w32_unicode_charset_defined,
15040 doc: /* Internal variable. */);
15042 staticpro (&Qw32_charset_unicode);
15043 Qw32_charset_unicode = intern ("w32-charset-unicode");
15044 #endif
15046 defsubr (&Sx_get_resource);
15047 #if 0 /* TODO: Port to W32 */
15048 defsubr (&Sx_change_window_property);
15049 defsubr (&Sx_delete_window_property);
15050 defsubr (&Sx_window_property);
15051 #endif
15052 defsubr (&Sxw_display_color_p);
15053 defsubr (&Sx_display_grayscale_p);
15054 defsubr (&Sxw_color_defined_p);
15055 defsubr (&Sxw_color_values);
15056 defsubr (&Sx_server_max_request_size);
15057 defsubr (&Sx_server_vendor);
15058 defsubr (&Sx_server_version);
15059 defsubr (&Sx_display_pixel_width);
15060 defsubr (&Sx_display_pixel_height);
15061 defsubr (&Sx_display_mm_width);
15062 defsubr (&Sx_display_mm_height);
15063 defsubr (&Sx_display_screens);
15064 defsubr (&Sx_display_planes);
15065 defsubr (&Sx_display_color_cells);
15066 defsubr (&Sx_display_visual_class);
15067 defsubr (&Sx_display_backing_store);
15068 defsubr (&Sx_display_save_under);
15069 defsubr (&Sx_parse_geometry);
15070 defsubr (&Sx_create_frame);
15071 defsubr (&Sx_open_connection);
15072 defsubr (&Sx_close_connection);
15073 defsubr (&Sx_display_list);
15074 defsubr (&Sx_synchronize);
15076 /* W32 specific functions */
15078 defsubr (&Sw32_focus_frame);
15079 defsubr (&Sw32_select_font);
15080 defsubr (&Sw32_define_rgb_color);
15081 defsubr (&Sw32_default_color_map);
15082 defsubr (&Sw32_load_color_file);
15083 defsubr (&Sw32_send_sys_command);
15084 defsubr (&Sw32_shell_execute);
15085 defsubr (&Sw32_register_hot_key);
15086 defsubr (&Sw32_unregister_hot_key);
15087 defsubr (&Sw32_registered_hot_keys);
15088 defsubr (&Sw32_reconstruct_hot_key);
15089 defsubr (&Sw32_toggle_lock_key);
15090 defsubr (&Sw32_find_bdf_fonts);
15092 defsubr (&Sfile_system_info);
15094 /* Setting callback functions for fontset handler. */
15095 get_font_info_func = w32_get_font_info;
15097 #if 0 /* This function pointer doesn't seem to be used anywhere.
15098 And the pointer assigned has the wrong type, anyway. */
15099 list_fonts_func = w32_list_fonts;
15100 #endif
15102 load_font_func = w32_load_font;
15103 find_ccl_program_func = w32_find_ccl_program;
15104 query_font_func = w32_query_font;
15105 set_frame_fontset_func = x_set_font;
15106 check_window_system_func = check_w32;
15108 #if 0 /* TODO Image support for W32 */
15109 /* Images. */
15110 Qxbm = intern ("xbm");
15111 staticpro (&Qxbm);
15112 QCtype = intern (":type");
15113 staticpro (&QCtype);
15114 QCconversion = intern (":conversion");
15115 staticpro (&QCconversion);
15116 QCheuristic_mask = intern (":heuristic-mask");
15117 staticpro (&QCheuristic_mask);
15118 QCcolor_symbols = intern (":color-symbols");
15119 staticpro (&QCcolor_symbols);
15120 QCascent = intern (":ascent");
15121 staticpro (&QCascent);
15122 QCmargin = intern (":margin");
15123 staticpro (&QCmargin);
15124 QCrelief = intern (":relief");
15125 staticpro (&QCrelief);
15126 Qpostscript = intern ("postscript");
15127 staticpro (&Qpostscript);
15128 QCloader = intern (":loader");
15129 staticpro (&QCloader);
15130 QCbounding_box = intern (":bounding-box");
15131 staticpro (&QCbounding_box);
15132 QCpt_width = intern (":pt-width");
15133 staticpro (&QCpt_width);
15134 QCpt_height = intern (":pt-height");
15135 staticpro (&QCpt_height);
15136 QCindex = intern (":index");
15137 staticpro (&QCindex);
15138 Qpbm = intern ("pbm");
15139 staticpro (&Qpbm);
15141 #if HAVE_XPM
15142 Qxpm = intern ("xpm");
15143 staticpro (&Qxpm);
15144 #endif
15146 #if HAVE_JPEG
15147 Qjpeg = intern ("jpeg");
15148 staticpro (&Qjpeg);
15149 #endif
15151 #if HAVE_TIFF
15152 Qtiff = intern ("tiff");
15153 staticpro (&Qtiff);
15154 #endif
15156 #if HAVE_GIF
15157 Qgif = intern ("gif");
15158 staticpro (&Qgif);
15159 #endif
15161 #if HAVE_PNG
15162 Qpng = intern ("png");
15163 staticpro (&Qpng);
15164 #endif
15166 defsubr (&Sclear_image_cache);
15168 #if GLYPH_DEBUG
15169 defsubr (&Simagep);
15170 defsubr (&Slookup_image);
15171 #endif
15172 #endif /* TODO */
15174 hourglass_atimer = NULL;
15175 hourglass_shown_p = 0;
15176 defsubr (&Sx_show_tip);
15177 defsubr (&Sx_hide_tip);
15178 tip_timer = Qnil;
15179 staticpro (&tip_timer);
15180 tip_frame = Qnil;
15181 staticpro (&tip_frame);
15183 last_show_tip_args = Qnil;
15184 staticpro (&last_show_tip_args);
15186 defsubr (&Sx_file_dialog);
15190 void
15191 init_xfns ()
15193 image_types = NULL;
15194 Vimage_types = Qnil;
15196 #if 0 /* TODO : Image support for W32 */
15197 define_image_type (&xbm_type);
15198 define_image_type (&gs_type);
15199 define_image_type (&pbm_type);
15201 #if HAVE_XPM
15202 define_image_type (&xpm_type);
15203 #endif
15205 #if HAVE_JPEG
15206 define_image_type (&jpeg_type);
15207 #endif
15209 #if HAVE_TIFF
15210 define_image_type (&tiff_type);
15211 #endif
15213 #if HAVE_GIF
15214 define_image_type (&gif_type);
15215 #endif
15217 #if HAVE_PNG
15218 define_image_type (&png_type);
15219 #endif
15220 #endif /* TODO */
15223 #undef abort
15225 void
15226 w32_abort()
15228 int button;
15229 button = MessageBox (NULL,
15230 "A fatal error has occurred!\n\n"
15231 "Select Abort to exit, Retry to debug, Ignore to continue",
15232 "Emacs Abort Dialog",
15233 MB_ICONEXCLAMATION | MB_TASKMODAL
15234 | MB_SETFOREGROUND | MB_ABORTRETRYIGNORE);
15235 switch (button)
15237 case IDRETRY:
15238 DebugBreak ();
15239 break;
15240 case IDIGNORE:
15241 break;
15242 case IDABORT:
15243 default:
15244 abort ();
15245 break;
15249 /* For convenience when debugging. */
15251 w32_last_error()
15253 return GetLastError ();