]> code.delx.au - gnu-emacs/blob - src/w32fns.c
(Fx_server_version): Include w32_build_number in the
[gnu-emacs] / src / w32fns.c
1 /* Graphical user interface functions for the Microsoft W32 API.
2 Copyright (C) 1989, 92, 93, 94, 95, 1996, 1997, 1998, 1999
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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. */
21
22 /* Added by Kevin Gallo */
23
24 #include <config.h>
25
26 #include <signal.h>
27 #include <stdio.h>
28 #include <limits.h>
29 #include <errno.h>
30
31 #include "lisp.h"
32 #include "charset.h"
33 #include "dispextern.h"
34 #include "w32term.h"
35 #include "frame.h"
36 #include "window.h"
37 #include "buffer.h"
38 #include "fontset.h"
39 #include "intervals.h"
40 #include "keyboard.h"
41 #include "blockinput.h"
42 #include "epaths.h"
43 #include "w32heap.h"
44 #include "termhooks.h"
45 #include "coding.h"
46 #include "ccl.h"
47 #include "systime.h"
48
49 #include "bitmaps/gray.xbm"
50
51 #include <commdlg.h>
52 #include <shellapi.h>
53 #include <ctype.h>
54
55 #define max(a, b) ((a) > (b) ? (a) : (b))
56
57 extern void free_frame_menubar ();
58 extern double atof ();
59 extern int w32_console_toggle_lock_key (int vk_code, Lisp_Object new_state);
60 extern int quit_char;
61
62 /* A definition of XColor for non-X frames. */
63 #ifndef HAVE_X_WINDOWS
64 typedef struct {
65 unsigned long pixel;
66 unsigned short red, green, blue;
67 char flags;
68 char pad;
69 } XColor;
70 #endif
71
72 extern char *lispy_function_keys[];
73
74 /* The gray bitmap `bitmaps/gray'. This is done because w32term.c uses
75 it, and including `bitmaps/gray' more than once is a problem when
76 config.h defines `static' as an empty replacement string. */
77
78 int gray_bitmap_width = gray_width;
79 int gray_bitmap_height = gray_height;
80 unsigned char *gray_bitmap_bits = gray_bits;
81
82 /* The colormap for converting color names to RGB values */
83 Lisp_Object Vw32_color_map;
84
85 /* Non nil if alt key presses are passed on to Windows. */
86 Lisp_Object Vw32_pass_alt_to_system;
87
88 /* Non nil if alt key is translated to meta_modifier, nil if it is translated
89 to alt_modifier. */
90 Lisp_Object Vw32_alt_is_meta;
91
92 /* If non-zero, the windows virtual key code for an alternative quit key. */
93 Lisp_Object Vw32_quit_key;
94
95 /* Non nil if left window key events are passed on to Windows (this only
96 affects whether "tapping" the key opens the Start menu). */
97 Lisp_Object Vw32_pass_lwindow_to_system;
98
99 /* Non nil if right window key events are passed on to Windows (this
100 only affects whether "tapping" the key opens the Start menu). */
101 Lisp_Object Vw32_pass_rwindow_to_system;
102
103 /* Virtual key code used to generate "phantom" key presses in order
104 to stop system from acting on Windows key events. */
105 Lisp_Object Vw32_phantom_key_code;
106
107 /* Modifier associated with the left "Windows" key, or nil to act as a
108 normal key. */
109 Lisp_Object Vw32_lwindow_modifier;
110
111 /* Modifier associated with the right "Windows" key, or nil to act as a
112 normal key. */
113 Lisp_Object Vw32_rwindow_modifier;
114
115 /* Modifier associated with the "Apps" key, or nil to act as a normal
116 key. */
117 Lisp_Object Vw32_apps_modifier;
118
119 /* Value is nil if Num Lock acts as a function key. */
120 Lisp_Object Vw32_enable_num_lock;
121
122 /* Value is nil if Caps Lock acts as a function key. */
123 Lisp_Object Vw32_enable_caps_lock;
124
125 /* Modifier associated with Scroll Lock, or nil to act as a normal key. */
126 Lisp_Object Vw32_scroll_lock_modifier;
127
128 /* Switch to control whether we inhibit requests for synthesized bold
129 and italic versions of fonts. */
130 Lisp_Object Vw32_enable_synthesized_fonts;
131
132 /* Enable palette management. */
133 Lisp_Object Vw32_enable_palette;
134
135 /* Control how close left/right button down events must be to
136 be converted to a middle button down event. */
137 Lisp_Object Vw32_mouse_button_tolerance;
138
139 /* Minimum interval between mouse movement (and scroll bar drag)
140 events that are passed on to the event loop. */
141 Lisp_Object Vw32_mouse_move_interval;
142
143 /* The name we're using in resource queries. */
144 Lisp_Object Vx_resource_name;
145
146 /* Non nil if no window manager is in use. */
147 Lisp_Object Vx_no_window_manager;
148
149 /* Non-zero means we're allowed to display a busy cursor. */
150
151 int display_busy_cursor_p;
152
153 /* The background and shape of the mouse pointer, and shape when not
154 over text or in the modeline. */
155
156 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
157 Lisp_Object Vx_busy_pointer_shape;
158
159 /* The shape when over mouse-sensitive text. */
160
161 Lisp_Object Vx_sensitive_text_pointer_shape;
162
163 /* Color of chars displayed in cursor box. */
164
165 Lisp_Object Vx_cursor_fore_pixel;
166
167 /* Nonzero if using Windows. */
168
169 static int w32_in_use;
170
171 /* Search path for bitmap files. */
172
173 Lisp_Object Vx_bitmap_file_path;
174
175 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
176
177 Lisp_Object Vx_pixel_size_width_font_regexp;
178
179 /* Alist of bdf fonts and the files that define them. */
180 Lisp_Object Vw32_bdf_filename_alist;
181
182 Lisp_Object Vw32_system_coding_system;
183
184 /* A flag to control whether fonts are matched strictly or not. */
185 int w32_strict_fontnames;
186
187 /* A flag to control whether we should only repaint if GetUpdateRect
188 indicates there is an update region. */
189 int w32_strict_painting;
190
191 /* Associative list linking character set strings to Windows codepages. */
192 Lisp_Object Vw32_charset_info_alist;
193
194 /* VIETNAMESE_CHARSET is not defined in some versions of MSVC. */
195 #ifndef VIETNAMESE_CHARSET
196 #define VIETNAMESE_CHARSET 163
197 #endif
198
199
200 /* Evaluate this expression to rebuild the section of syms_of_w32fns
201 that initializes and staticpros the symbols declared below. Note
202 that Emacs 18 has a bug that keeps C-x C-e from being able to
203 evaluate this expression.
204
205 (progn
206 ;; Accumulate a list of the symbols we want to initialize from the
207 ;; declarations at the top of the file.
208 (goto-char (point-min))
209 (search-forward "/\*&&& symbols declared here &&&*\/\n")
210 (let (symbol-list)
211 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
212 (setq symbol-list
213 (cons (buffer-substring (match-beginning 1) (match-end 1))
214 symbol-list))
215 (forward-line 1))
216 (setq symbol-list (nreverse symbol-list))
217 ;; Delete the section of syms_of_... where we initialize the symbols.
218 (search-forward "\n /\*&&& init symbols here &&&*\/\n")
219 (let ((start (point)))
220 (while (looking-at "^ Q")
221 (forward-line 2))
222 (kill-region start (point)))
223 ;; Write a new symbol initialization section.
224 (while symbol-list
225 (insert (format " %s = intern (\"" (car symbol-list)))
226 (let ((start (point)))
227 (insert (substring (car symbol-list) 1))
228 (subst-char-in-region start (point) ?_ ?-))
229 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
230 (setq symbol-list (cdr symbol-list)))))
231
232 */
233
234 /*&&& symbols declared here &&&*/
235 Lisp_Object Qauto_raise;
236 Lisp_Object Qauto_lower;
237 Lisp_Object Qbar;
238 Lisp_Object Qborder_color;
239 Lisp_Object Qborder_width;
240 Lisp_Object Qbox;
241 Lisp_Object Qcursor_color;
242 Lisp_Object Qcursor_type;
243 Lisp_Object Qgeometry;
244 Lisp_Object Qicon_left;
245 Lisp_Object Qicon_top;
246 Lisp_Object Qicon_type;
247 Lisp_Object Qicon_name;
248 Lisp_Object Qinternal_border_width;
249 Lisp_Object Qleft;
250 Lisp_Object Qright;
251 Lisp_Object Qmouse_color;
252 Lisp_Object Qnone;
253 Lisp_Object Qparent_id;
254 Lisp_Object Qscroll_bar_width;
255 Lisp_Object Qsuppress_icon;
256 Lisp_Object Qundefined_color;
257 Lisp_Object Qvertical_scroll_bars;
258 Lisp_Object Qvisibility;
259 Lisp_Object Qwindow_id;
260 Lisp_Object Qx_frame_parameter;
261 Lisp_Object Qx_resource_name;
262 Lisp_Object Quser_position;
263 Lisp_Object Quser_size;
264 Lisp_Object Qscreen_gamma;
265 Lisp_Object Qline_spacing;
266 Lisp_Object Qcenter;
267 Lisp_Object Qhyper;
268 Lisp_Object Qsuper;
269 Lisp_Object Qmeta;
270 Lisp_Object Qalt;
271 Lisp_Object Qctrl;
272 Lisp_Object Qcontrol;
273 Lisp_Object Qshift;
274
275 Lisp_Object Qw32_charset_ansi;
276 Lisp_Object Qw32_charset_default;
277 Lisp_Object Qw32_charset_symbol;
278 Lisp_Object Qw32_charset_shiftjis;
279 Lisp_Object Qw32_charset_hangul;
280 Lisp_Object Qw32_charset_gb2312;
281 Lisp_Object Qw32_charset_chinesebig5;
282 Lisp_Object Qw32_charset_oem;
283
284 #ifndef JOHAB_CHARSET
285 #define JOHAB_CHARSET 130
286 #endif
287 #ifdef JOHAB_CHARSET
288 Lisp_Object Qw32_charset_easteurope;
289 Lisp_Object Qw32_charset_turkish;
290 Lisp_Object Qw32_charset_baltic;
291 Lisp_Object Qw32_charset_russian;
292 Lisp_Object Qw32_charset_arabic;
293 Lisp_Object Qw32_charset_greek;
294 Lisp_Object Qw32_charset_hebrew;
295 Lisp_Object Qw32_charset_thai;
296 Lisp_Object Qw32_charset_johab;
297 Lisp_Object Qw32_charset_mac;
298 #endif
299
300 #ifdef UNICODE_CHARSET
301 Lisp_Object Qw32_charset_unicode;
302 #endif
303
304 extern Lisp_Object Qtop;
305 extern Lisp_Object Qdisplay;
306 extern Lisp_Object Qtool_bar_lines;
307
308 /* State variables for emulating a three button mouse. */
309 #define LMOUSE 1
310 #define MMOUSE 2
311 #define RMOUSE 4
312
313 static int button_state = 0;
314 static W32Msg saved_mouse_button_msg;
315 static unsigned mouse_button_timer; /* non-zero when timer is active */
316 static W32Msg saved_mouse_move_msg;
317 static unsigned mouse_move_timer;
318
319 /* W95 mousewheel handler */
320 unsigned int msh_mousewheel = 0;
321
322 #define MOUSE_BUTTON_ID 1
323 #define MOUSE_MOVE_ID 2
324
325 /* The below are defined in frame.c. */
326
327 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
328 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
329 extern Lisp_Object Qtool_bar_lines;
330
331 extern Lisp_Object Vwindow_system_version;
332
333 Lisp_Object Qface_set_after_frame_default;
334
335 /* From w32term.c. */
336 extern Lisp_Object Vw32_num_mouse_buttons;
337 extern Lisp_Object Vw32_recognize_altgr;
338
339 \f
340 /* Error if we are not connected to MS-Windows. */
341 void
342 check_w32 ()
343 {
344 if (! w32_in_use)
345 error ("MS-Windows not in use or not initialized");
346 }
347
348 /* Nonzero if we can use mouse menus.
349 You should not call this unless HAVE_MENUS is defined. */
350
351 int
352 have_menus_p ()
353 {
354 return w32_in_use;
355 }
356
357 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
358 and checking validity for W32. */
359
360 FRAME_PTR
361 check_x_frame (frame)
362 Lisp_Object frame;
363 {
364 FRAME_PTR f;
365
366 if (NILP (frame))
367 frame = selected_frame;
368 CHECK_LIVE_FRAME (frame, 0);
369 f = XFRAME (frame);
370 if (! FRAME_W32_P (f))
371 error ("non-w32 frame used");
372 return f;
373 }
374
375 /* Let the user specify an display with a frame.
376 nil stands for the selected frame--or, if that is not a w32 frame,
377 the first display on the list. */
378
379 static struct w32_display_info *
380 check_x_display_info (frame)
381 Lisp_Object frame;
382 {
383 if (NILP (frame))
384 {
385 struct frame *sf = XFRAME (selected_frame);
386
387 if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
388 return FRAME_W32_DISPLAY_INFO (sf);
389 else
390 return &one_w32_display_info;
391 }
392 else if (STRINGP (frame))
393 return x_display_info_for_name (frame);
394 else
395 {
396 FRAME_PTR f;
397
398 CHECK_LIVE_FRAME (frame, 0);
399 f = XFRAME (frame);
400 if (! FRAME_W32_P (f))
401 error ("non-w32 frame used");
402 return FRAME_W32_DISPLAY_INFO (f);
403 }
404 }
405 \f
406 /* Return the Emacs frame-object corresponding to an w32 window.
407 It could be the frame's main window or an icon window. */
408
409 /* This function can be called during GC, so use GC_xxx type test macros. */
410
411 struct frame *
412 x_window_to_frame (dpyinfo, wdesc)
413 struct w32_display_info *dpyinfo;
414 HWND wdesc;
415 {
416 Lisp_Object tail, frame;
417 struct frame *f;
418
419 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
420 {
421 frame = XCAR (tail);
422 if (!GC_FRAMEP (frame))
423 continue;
424 f = XFRAME (frame);
425 if (!FRAME_W32_P (f) || FRAME_W32_DISPLAY_INFO (f) != dpyinfo)
426 continue;
427 if (f->output_data.w32->busy_window == wdesc)
428 return f;
429
430 /* NTEMACS_TODO: Check tooltips when supported. */
431 if (FRAME_W32_WINDOW (f) == wdesc)
432 return f;
433 }
434 return 0;
435 }
436
437 \f
438
439 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
440 id, which is just an int that this section returns. Bitmaps are
441 reference counted so they can be shared among frames.
442
443 Bitmap indices are guaranteed to be > 0, so a negative number can
444 be used to indicate no bitmap.
445
446 If you use x_create_bitmap_from_data, then you must keep track of
447 the bitmaps yourself. That is, creating a bitmap from the same
448 data more than once will not be caught. */
449
450
451 /* Functions to access the contents of a bitmap, given an id. */
452
453 int
454 x_bitmap_height (f, id)
455 FRAME_PTR f;
456 int id;
457 {
458 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].height;
459 }
460
461 int
462 x_bitmap_width (f, id)
463 FRAME_PTR f;
464 int id;
465 {
466 return FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].width;
467 }
468
469 int
470 x_bitmap_pixmap (f, id)
471 FRAME_PTR f;
472 int id;
473 {
474 return (int) FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
475 }
476
477
478 /* Allocate a new bitmap record. Returns index of new record. */
479
480 static int
481 x_allocate_bitmap_record (f)
482 FRAME_PTR f;
483 {
484 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
485 int i;
486
487 if (dpyinfo->bitmaps == NULL)
488 {
489 dpyinfo->bitmaps_size = 10;
490 dpyinfo->bitmaps
491 = (struct w32_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
492 dpyinfo->bitmaps_last = 1;
493 return 1;
494 }
495
496 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
497 return ++dpyinfo->bitmaps_last;
498
499 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
500 if (dpyinfo->bitmaps[i].refcount == 0)
501 return i + 1;
502
503 dpyinfo->bitmaps_size *= 2;
504 dpyinfo->bitmaps
505 = (struct w32_bitmap_record *) xrealloc (dpyinfo->bitmaps,
506 dpyinfo->bitmaps_size * sizeof (struct w32_bitmap_record));
507 return ++dpyinfo->bitmaps_last;
508 }
509
510 /* Add one reference to the reference count of the bitmap with id ID. */
511
512 void
513 x_reference_bitmap (f, id)
514 FRAME_PTR f;
515 int id;
516 {
517 ++FRAME_W32_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
518 }
519
520 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
521
522 int
523 x_create_bitmap_from_data (f, bits, width, height)
524 struct frame *f;
525 char *bits;
526 unsigned int width, height;
527 {
528 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
529 Pixmap bitmap;
530 int id;
531
532 bitmap = CreateBitmap (width, height,
533 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_planes,
534 FRAME_W32_DISPLAY_INFO (XFRAME (frame))->n_cbits,
535 bits);
536
537 if (! bitmap)
538 return -1;
539
540 id = x_allocate_bitmap_record (f);
541 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
542 dpyinfo->bitmaps[id - 1].file = NULL;
543 dpyinfo->bitmaps[id - 1].hinst = NULL;
544 dpyinfo->bitmaps[id - 1].refcount = 1;
545 dpyinfo->bitmaps[id - 1].depth = 1;
546 dpyinfo->bitmaps[id - 1].height = height;
547 dpyinfo->bitmaps[id - 1].width = width;
548
549 return id;
550 }
551
552 /* Create bitmap from file FILE for frame F. */
553
554 int
555 x_create_bitmap_from_file (f, file)
556 struct frame *f;
557 Lisp_Object file;
558 {
559 return -1;
560 #if 0 /* NTEMACS_TODO : bitmap support */
561 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
562 unsigned int width, height;
563 HBITMAP bitmap;
564 int xhot, yhot, result, id;
565 Lisp_Object found;
566 int fd;
567 char *filename;
568 HINSTANCE hinst;
569
570 /* Look for an existing bitmap with the same name. */
571 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
572 {
573 if (dpyinfo->bitmaps[id].refcount
574 && dpyinfo->bitmaps[id].file
575 && !strcmp (dpyinfo->bitmaps[id].file, (char *) XSTRING (file)->data))
576 {
577 ++dpyinfo->bitmaps[id].refcount;
578 return id + 1;
579 }
580 }
581
582 /* Search bitmap-file-path for the file, if appropriate. */
583 fd = openp (Vx_bitmap_file_path, file, "", &found, 0);
584 if (fd < 0)
585 return -1;
586 /* LoadLibraryEx won't handle special files handled by Emacs handler. */
587 if (fd == 0)
588 return -1;
589 emacs_close (fd);
590
591 filename = (char *) XSTRING (found)->data;
592
593 hinst = LoadLibraryEx (filename, NULL, LOAD_LIBRARY_AS_DATAFILE);
594
595 if (hinst == NULL)
596 return -1;
597
598
599 result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
600 filename, &width, &height, &bitmap, &xhot, &yhot);
601 if (result != BitmapSuccess)
602 return -1;
603
604 id = x_allocate_bitmap_record (f);
605 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
606 dpyinfo->bitmaps[id - 1].refcount = 1;
607 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (XSTRING (file)->size + 1);
608 dpyinfo->bitmaps[id - 1].depth = 1;
609 dpyinfo->bitmaps[id - 1].height = height;
610 dpyinfo->bitmaps[id - 1].width = width;
611 strcpy (dpyinfo->bitmaps[id - 1].file, XSTRING (file)->data);
612
613 return id;
614 #endif /* NTEMACS_TODO */
615 }
616
617 /* Remove reference to bitmap with id number ID. */
618
619 void
620 x_destroy_bitmap (f, id)
621 FRAME_PTR f;
622 int id;
623 {
624 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
625
626 if (id > 0)
627 {
628 --dpyinfo->bitmaps[id - 1].refcount;
629 if (dpyinfo->bitmaps[id - 1].refcount == 0)
630 {
631 BLOCK_INPUT;
632 DeleteObject (dpyinfo->bitmaps[id - 1].pixmap);
633 if (dpyinfo->bitmaps[id - 1].file)
634 {
635 xfree (dpyinfo->bitmaps[id - 1].file);
636 dpyinfo->bitmaps[id - 1].file = NULL;
637 }
638 UNBLOCK_INPUT;
639 }
640 }
641 }
642
643 /* Free all the bitmaps for the display specified by DPYINFO. */
644
645 static void
646 x_destroy_all_bitmaps (dpyinfo)
647 struct w32_display_info *dpyinfo;
648 {
649 int i;
650 for (i = 0; i < dpyinfo->bitmaps_last; i++)
651 if (dpyinfo->bitmaps[i].refcount > 0)
652 {
653 DeleteObject (dpyinfo->bitmaps[i].pixmap);
654 if (dpyinfo->bitmaps[i].file)
655 xfree (dpyinfo->bitmaps[i].file);
656 }
657 dpyinfo->bitmaps_last = 0;
658 }
659 \f
660 /* Connect the frame-parameter names for W32 frames
661 to the ways of passing the parameter values to the window system.
662
663 The name of a parameter, as a Lisp symbol,
664 has an `x-frame-parameter' property which is an integer in Lisp
665 but can be interpreted as an `enum x_frame_parm' in C. */
666
667 enum x_frame_parm
668 {
669 X_PARM_FOREGROUND_COLOR,
670 X_PARM_BACKGROUND_COLOR,
671 X_PARM_MOUSE_COLOR,
672 X_PARM_CURSOR_COLOR,
673 X_PARM_BORDER_COLOR,
674 X_PARM_ICON_TYPE,
675 X_PARM_FONT,
676 X_PARM_BORDER_WIDTH,
677 X_PARM_INTERNAL_BORDER_WIDTH,
678 X_PARM_NAME,
679 X_PARM_AUTORAISE,
680 X_PARM_AUTOLOWER,
681 X_PARM_VERT_SCROLL_BAR,
682 X_PARM_VISIBILITY,
683 X_PARM_MENU_BAR_LINES
684 };
685
686
687 struct x_frame_parm_table
688 {
689 char *name;
690 void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object));
691 };
692
693 /* NTEMACS_TODO: Native Input Method support; see x_create_im. */
694 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
695 static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
696 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
697 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
698 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
699 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
700 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
701 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
702 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
703 void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
704 void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
705 void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
706 Lisp_Object));
707 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
708 void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
709 void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
710 void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
711 Lisp_Object));
712 void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
713 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
714 void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
715 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
716 void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
717 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
718 static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
719
720 static struct x_frame_parm_table x_frame_parms[] =
721 {
722 "auto-raise", x_set_autoraise,
723 "auto-lower", x_set_autolower,
724 "background-color", x_set_background_color,
725 "border-color", x_set_border_color,
726 "border-width", x_set_border_width,
727 "cursor-color", x_set_cursor_color,
728 "cursor-type", x_set_cursor_type,
729 "font", x_set_font,
730 "foreground-color", x_set_foreground_color,
731 "icon-name", x_set_icon_name,
732 "icon-type", x_set_icon_type,
733 "internal-border-width", x_set_internal_border_width,
734 "menu-bar-lines", x_set_menu_bar_lines,
735 "mouse-color", x_set_mouse_color,
736 "name", x_explicitly_set_name,
737 "scroll-bar-width", x_set_scroll_bar_width,
738 "title", x_set_title,
739 "unsplittable", x_set_unsplittable,
740 "vertical-scroll-bars", x_set_vertical_scroll_bars,
741 "visibility", x_set_visibility,
742 "tool-bar-lines", x_set_tool_bar_lines,
743 "screen-gamma", x_set_screen_gamma,
744 "line-spacing", x_set_line_spacing
745 };
746
747 /* Attach the `x-frame-parameter' properties to
748 the Lisp symbol names of parameters relevant to W32. */
749
750 void
751 init_x_parm_symbols ()
752 {
753 int i;
754
755 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++)
756 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter,
757 make_number (i));
758 }
759 \f
760 /* Change the parameters of frame F as specified by ALIST.
761 If a parameter is not specially recognized, do nothing;
762 otherwise call the `x_set_...' function for that parameter. */
763
764 void
765 x_set_frame_parameters (f, alist)
766 FRAME_PTR f;
767 Lisp_Object alist;
768 {
769 Lisp_Object tail;
770
771 /* If both of these parameters are present, it's more efficient to
772 set them both at once. So we wait until we've looked at the
773 entire list before we set them. */
774 int width, height;
775
776 /* Same here. */
777 Lisp_Object left, top;
778
779 /* Same with these. */
780 Lisp_Object icon_left, icon_top;
781
782 /* Record in these vectors all the parms specified. */
783 Lisp_Object *parms;
784 Lisp_Object *values;
785 int i, p;
786 int left_no_change = 0, top_no_change = 0;
787 int icon_left_no_change = 0, icon_top_no_change = 0;
788
789 struct gcpro gcpro1, gcpro2;
790
791 i = 0;
792 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
793 i++;
794
795 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
796 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
797
798 /* Extract parm names and values into those vectors. */
799
800 i = 0;
801 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
802 {
803 Lisp_Object elt;
804
805 elt = Fcar (tail);
806 parms[i] = Fcar (elt);
807 values[i] = Fcdr (elt);
808 i++;
809 }
810 /* TAIL and ALIST are not used again below here. */
811 alist = tail = Qnil;
812
813 GCPRO2 (*parms, *values);
814 gcpro1.nvars = i;
815 gcpro2.nvars = i;
816
817 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
818 because their values appear in VALUES and strings are not valid. */
819 top = left = Qunbound;
820 icon_left = icon_top = Qunbound;
821
822 /* Provide default values for HEIGHT and WIDTH. */
823 if (FRAME_NEW_WIDTH (f))
824 width = FRAME_NEW_WIDTH (f);
825 else
826 width = FRAME_WIDTH (f);
827
828 if (FRAME_NEW_HEIGHT (f))
829 height = FRAME_NEW_HEIGHT (f);
830 else
831 height = FRAME_HEIGHT (f);
832
833 /* Process foreground_color and background_color before anything else.
834 They are independent of other properties, but other properties (e.g.,
835 cursor_color) are dependent upon them. */
836 for (p = 0; p < i; p++)
837 {
838 Lisp_Object prop, val;
839
840 prop = parms[p];
841 val = values[p];
842 if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
843 {
844 register Lisp_Object param_index, old_value;
845
846 param_index = Fget (prop, Qx_frame_parameter);
847 old_value = get_frame_param (f, prop);
848 store_frame_param (f, prop, val);
849 if (NATNUMP (param_index)
850 && (XFASTINT (param_index)
851 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
852 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
853 }
854 }
855
856 /* Now process them in reverse of specified order. */
857 for (i--; i >= 0; i--)
858 {
859 Lisp_Object prop, val;
860
861 prop = parms[i];
862 val = values[i];
863
864 if (EQ (prop, Qwidth) && NUMBERP (val))
865 width = XFASTINT (val);
866 else if (EQ (prop, Qheight) && NUMBERP (val))
867 height = XFASTINT (val);
868 else if (EQ (prop, Qtop))
869 top = val;
870 else if (EQ (prop, Qleft))
871 left = val;
872 else if (EQ (prop, Qicon_top))
873 icon_top = val;
874 else if (EQ (prop, Qicon_left))
875 icon_left = val;
876 else if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
877 /* Processed above. */
878 continue;
879 else
880 {
881 register Lisp_Object param_index, old_value;
882
883 param_index = Fget (prop, Qx_frame_parameter);
884 old_value = get_frame_param (f, prop);
885 store_frame_param (f, prop, val);
886 if (NATNUMP (param_index)
887 && (XFASTINT (param_index)
888 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
889 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
890 }
891 }
892
893 /* Don't die if just one of these was set. */
894 if (EQ (left, Qunbound))
895 {
896 left_no_change = 1;
897 if (f->output_data.w32->left_pos < 0)
898 left = Fcons (Qplus, Fcons (make_number (f->output_data.w32->left_pos), Qnil));
899 else
900 XSETINT (left, f->output_data.w32->left_pos);
901 }
902 if (EQ (top, Qunbound))
903 {
904 top_no_change = 1;
905 if (f->output_data.w32->top_pos < 0)
906 top = Fcons (Qplus, Fcons (make_number (f->output_data.w32->top_pos), Qnil));
907 else
908 XSETINT (top, f->output_data.w32->top_pos);
909 }
910
911 /* If one of the icon positions was not set, preserve or default it. */
912 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
913 {
914 icon_left_no_change = 1;
915 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
916 if (NILP (icon_left))
917 XSETINT (icon_left, 0);
918 }
919 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
920 {
921 icon_top_no_change = 1;
922 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
923 if (NILP (icon_top))
924 XSETINT (icon_top, 0);
925 }
926
927 /* Don't set these parameters unless they've been explicitly
928 specified. The window might be mapped or resized while we're in
929 this function, and we don't want to override that unless the lisp
930 code has asked for it.
931
932 Don't set these parameters unless they actually differ from the
933 window's current parameters; the window may not actually exist
934 yet. */
935 {
936 Lisp_Object frame;
937
938 check_frame_size (f, &height, &width);
939
940 XSETFRAME (frame, f);
941
942 if (width != FRAME_WIDTH (f)
943 || height != FRAME_HEIGHT (f)
944 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
945 Fset_frame_size (frame, make_number (width), make_number (height));
946
947 if ((!NILP (left) || !NILP (top))
948 && ! (left_no_change && top_no_change)
949 && ! (NUMBERP (left) && XINT (left) == f->output_data.w32->left_pos
950 && NUMBERP (top) && XINT (top) == f->output_data.w32->top_pos))
951 {
952 int leftpos = 0;
953 int toppos = 0;
954
955 /* Record the signs. */
956 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
957 if (EQ (left, Qminus))
958 f->output_data.w32->size_hint_flags |= XNegative;
959 else if (INTEGERP (left))
960 {
961 leftpos = XINT (left);
962 if (leftpos < 0)
963 f->output_data.w32->size_hint_flags |= XNegative;
964 }
965 else if (CONSP (left) && EQ (XCAR (left), Qminus)
966 && CONSP (XCDR (left))
967 && INTEGERP (XCAR (XCDR (left))))
968 {
969 leftpos = - XINT (XCAR (XCDR (left)));
970 f->output_data.w32->size_hint_flags |= XNegative;
971 }
972 else if (CONSP (left) && EQ (XCAR (left), Qplus)
973 && CONSP (XCDR (left))
974 && INTEGERP (XCAR (XCDR (left))))
975 {
976 leftpos = XINT (XCAR (XCDR (left)));
977 }
978
979 if (EQ (top, Qminus))
980 f->output_data.w32->size_hint_flags |= YNegative;
981 else if (INTEGERP (top))
982 {
983 toppos = XINT (top);
984 if (toppos < 0)
985 f->output_data.w32->size_hint_flags |= YNegative;
986 }
987 else if (CONSP (top) && EQ (XCAR (top), Qminus)
988 && CONSP (XCDR (top))
989 && INTEGERP (XCAR (XCDR (top))))
990 {
991 toppos = - XINT (XCAR (XCDR (top)));
992 f->output_data.w32->size_hint_flags |= YNegative;
993 }
994 else if (CONSP (top) && EQ (XCAR (top), Qplus)
995 && CONSP (XCDR (top))
996 && INTEGERP (XCAR (XCDR (top))))
997 {
998 toppos = XINT (XCAR (XCDR (top)));
999 }
1000
1001
1002 /* Store the numeric value of the position. */
1003 f->output_data.w32->top_pos = toppos;
1004 f->output_data.w32->left_pos = leftpos;
1005
1006 f->output_data.w32->win_gravity = NorthWestGravity;
1007
1008 /* Actually set that position, and convert to absolute. */
1009 x_set_offset (f, leftpos, toppos, -1);
1010 }
1011
1012 if ((!NILP (icon_left) || !NILP (icon_top))
1013 && ! (icon_left_no_change && icon_top_no_change))
1014 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
1015 }
1016
1017 UNGCPRO;
1018 }
1019
1020 /* Store the screen positions of frame F into XPTR and YPTR.
1021 These are the positions of the containing window manager window,
1022 not Emacs's own window. */
1023
1024 void
1025 x_real_positions (f, xptr, yptr)
1026 FRAME_PTR f;
1027 int *xptr, *yptr;
1028 {
1029 POINT pt;
1030
1031 {
1032 RECT rect;
1033
1034 GetClientRect(FRAME_W32_WINDOW(f), &rect);
1035 AdjustWindowRect(&rect, f->output_data.w32->dwStyle, FRAME_EXTERNAL_MENU_BAR(f));
1036
1037 pt.x = rect.left;
1038 pt.y = rect.top;
1039 }
1040
1041 ClientToScreen (FRAME_W32_WINDOW(f), &pt);
1042
1043 *xptr = pt.x;
1044 *yptr = pt.y;
1045 }
1046
1047 /* Insert a description of internally-recorded parameters of frame X
1048 into the parameter alist *ALISTPTR that is to be given to the user.
1049 Only parameters that are specific to W32
1050 and whose values are not correctly recorded in the frame's
1051 param_alist need to be considered here. */
1052
1053 void
1054 x_report_frame_params (f, alistptr)
1055 struct frame *f;
1056 Lisp_Object *alistptr;
1057 {
1058 char buf[16];
1059 Lisp_Object tem;
1060
1061 /* Represent negative positions (off the top or left screen edge)
1062 in a way that Fmodify_frame_parameters will understand correctly. */
1063 XSETINT (tem, f->output_data.w32->left_pos);
1064 if (f->output_data.w32->left_pos >= 0)
1065 store_in_alist (alistptr, Qleft, tem);
1066 else
1067 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
1068
1069 XSETINT (tem, f->output_data.w32->top_pos);
1070 if (f->output_data.w32->top_pos >= 0)
1071 store_in_alist (alistptr, Qtop, tem);
1072 else
1073 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
1074
1075 store_in_alist (alistptr, Qborder_width,
1076 make_number (f->output_data.w32->border_width));
1077 store_in_alist (alistptr, Qinternal_border_width,
1078 make_number (f->output_data.w32->internal_border_width));
1079 sprintf (buf, "%ld", (long) FRAME_W32_WINDOW (f));
1080 store_in_alist (alistptr, Qwindow_id,
1081 build_string (buf));
1082 store_in_alist (alistptr, Qicon_name, f->icon_name);
1083 FRAME_SAMPLE_VISIBILITY (f);
1084 store_in_alist (alistptr, Qvisibility,
1085 (FRAME_VISIBLE_P (f) ? Qt
1086 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
1087 store_in_alist (alistptr, Qdisplay,
1088 XCAR (FRAME_W32_DISPLAY_INFO (f)->name_list_element));
1089 }
1090 \f
1091
1092 DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color, Sw32_define_rgb_color, 4, 4, 0,
1093 "Convert RGB numbers to a windows color reference and associate with NAME (a string).\n\
1094 This adds or updates a named color to w32-color-map, making it available for use.\n\
1095 The original entry's RGB ref is returned, or nil if the entry is new.")
1096 (red, green, blue, name)
1097 Lisp_Object red, green, blue, name;
1098 {
1099 Lisp_Object rgb;
1100 Lisp_Object oldrgb = Qnil;
1101 Lisp_Object entry;
1102
1103 CHECK_NUMBER (red, 0);
1104 CHECK_NUMBER (green, 0);
1105 CHECK_NUMBER (blue, 0);
1106 CHECK_STRING (name, 0);
1107
1108 XSET (rgb, Lisp_Int, RGB(XUINT (red), XUINT (green), XUINT (blue)));
1109
1110 BLOCK_INPUT;
1111
1112 /* replace existing entry in w32-color-map or add new entry. */
1113 entry = Fassoc (name, Vw32_color_map);
1114 if (NILP (entry))
1115 {
1116 entry = Fcons (name, rgb);
1117 Vw32_color_map = Fcons (entry, Vw32_color_map);
1118 }
1119 else
1120 {
1121 oldrgb = Fcdr (entry);
1122 Fsetcdr (entry, rgb);
1123 }
1124
1125 UNBLOCK_INPUT;
1126
1127 return (oldrgb);
1128 }
1129
1130 DEFUN ("w32-load-color-file", Fw32_load_color_file, Sw32_load_color_file, 1, 1, 0,
1131 "Create an alist of color entries from an external file (ie. rgb.txt).\n\
1132 Assign this value to w32-color-map to replace the existing color map.\n\
1133 \
1134 The file should define one named RGB color per line like so:\
1135 R G B name\n\
1136 where R,G,B are numbers between 0 and 255 and name is an arbitrary string.")
1137 (filename)
1138 Lisp_Object filename;
1139 {
1140 FILE *fp;
1141 Lisp_Object cmap = Qnil;
1142 Lisp_Object abspath;
1143
1144 CHECK_STRING (filename, 0);
1145 abspath = Fexpand_file_name (filename, Qnil);
1146
1147 fp = fopen (XSTRING (filename)->data, "rt");
1148 if (fp)
1149 {
1150 char buf[512];
1151 int red, green, blue;
1152 int num;
1153
1154 BLOCK_INPUT;
1155
1156 while (fgets (buf, sizeof (buf), fp) != NULL) {
1157 if (sscanf (buf, "%u %u %u %n", &red, &green, &blue, &num) == 3)
1158 {
1159 char *name = buf + num;
1160 num = strlen (name) - 1;
1161 if (name[num] == '\n')
1162 name[num] = 0;
1163 cmap = Fcons (Fcons (build_string (name),
1164 make_number (RGB (red, green, blue))),
1165 cmap);
1166 }
1167 }
1168 fclose (fp);
1169
1170 UNBLOCK_INPUT;
1171 }
1172
1173 return cmap;
1174 }
1175
1176 /* The default colors for the w32 color map */
1177 typedef struct colormap_t
1178 {
1179 char *name;
1180 COLORREF colorref;
1181 } colormap_t;
1182
1183 colormap_t w32_color_map[] =
1184 {
1185 {"snow" , PALETTERGB (255,250,250)},
1186 {"ghost white" , PALETTERGB (248,248,255)},
1187 {"GhostWhite" , PALETTERGB (248,248,255)},
1188 {"white smoke" , PALETTERGB (245,245,245)},
1189 {"WhiteSmoke" , PALETTERGB (245,245,245)},
1190 {"gainsboro" , PALETTERGB (220,220,220)},
1191 {"floral white" , PALETTERGB (255,250,240)},
1192 {"FloralWhite" , PALETTERGB (255,250,240)},
1193 {"old lace" , PALETTERGB (253,245,230)},
1194 {"OldLace" , PALETTERGB (253,245,230)},
1195 {"linen" , PALETTERGB (250,240,230)},
1196 {"antique white" , PALETTERGB (250,235,215)},
1197 {"AntiqueWhite" , PALETTERGB (250,235,215)},
1198 {"papaya whip" , PALETTERGB (255,239,213)},
1199 {"PapayaWhip" , PALETTERGB (255,239,213)},
1200 {"blanched almond" , PALETTERGB (255,235,205)},
1201 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
1202 {"bisque" , PALETTERGB (255,228,196)},
1203 {"peach puff" , PALETTERGB (255,218,185)},
1204 {"PeachPuff" , PALETTERGB (255,218,185)},
1205 {"navajo white" , PALETTERGB (255,222,173)},
1206 {"NavajoWhite" , PALETTERGB (255,222,173)},
1207 {"moccasin" , PALETTERGB (255,228,181)},
1208 {"cornsilk" , PALETTERGB (255,248,220)},
1209 {"ivory" , PALETTERGB (255,255,240)},
1210 {"lemon chiffon" , PALETTERGB (255,250,205)},
1211 {"LemonChiffon" , PALETTERGB (255,250,205)},
1212 {"seashell" , PALETTERGB (255,245,238)},
1213 {"honeydew" , PALETTERGB (240,255,240)},
1214 {"mint cream" , PALETTERGB (245,255,250)},
1215 {"MintCream" , PALETTERGB (245,255,250)},
1216 {"azure" , PALETTERGB (240,255,255)},
1217 {"alice blue" , PALETTERGB (240,248,255)},
1218 {"AliceBlue" , PALETTERGB (240,248,255)},
1219 {"lavender" , PALETTERGB (230,230,250)},
1220 {"lavender blush" , PALETTERGB (255,240,245)},
1221 {"LavenderBlush" , PALETTERGB (255,240,245)},
1222 {"misty rose" , PALETTERGB (255,228,225)},
1223 {"MistyRose" , PALETTERGB (255,228,225)},
1224 {"white" , PALETTERGB (255,255,255)},
1225 {"black" , PALETTERGB ( 0, 0, 0)},
1226 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
1227 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
1228 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
1229 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
1230 {"dim gray" , PALETTERGB (105,105,105)},
1231 {"DimGray" , PALETTERGB (105,105,105)},
1232 {"dim grey" , PALETTERGB (105,105,105)},
1233 {"DimGrey" , PALETTERGB (105,105,105)},
1234 {"slate gray" , PALETTERGB (112,128,144)},
1235 {"SlateGray" , PALETTERGB (112,128,144)},
1236 {"slate grey" , PALETTERGB (112,128,144)},
1237 {"SlateGrey" , PALETTERGB (112,128,144)},
1238 {"light slate gray" , PALETTERGB (119,136,153)},
1239 {"LightSlateGray" , PALETTERGB (119,136,153)},
1240 {"light slate grey" , PALETTERGB (119,136,153)},
1241 {"LightSlateGrey" , PALETTERGB (119,136,153)},
1242 {"gray" , PALETTERGB (190,190,190)},
1243 {"grey" , PALETTERGB (190,190,190)},
1244 {"light grey" , PALETTERGB (211,211,211)},
1245 {"LightGrey" , PALETTERGB (211,211,211)},
1246 {"light gray" , PALETTERGB (211,211,211)},
1247 {"LightGray" , PALETTERGB (211,211,211)},
1248 {"midnight blue" , PALETTERGB ( 25, 25,112)},
1249 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
1250 {"navy" , PALETTERGB ( 0, 0,128)},
1251 {"navy blue" , PALETTERGB ( 0, 0,128)},
1252 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
1253 {"cornflower blue" , PALETTERGB (100,149,237)},
1254 {"CornflowerBlue" , PALETTERGB (100,149,237)},
1255 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
1256 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
1257 {"slate blue" , PALETTERGB (106, 90,205)},
1258 {"SlateBlue" , PALETTERGB (106, 90,205)},
1259 {"medium slate blue" , PALETTERGB (123,104,238)},
1260 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
1261 {"light slate blue" , PALETTERGB (132,112,255)},
1262 {"LightSlateBlue" , PALETTERGB (132,112,255)},
1263 {"medium blue" , PALETTERGB ( 0, 0,205)},
1264 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
1265 {"royal blue" , PALETTERGB ( 65,105,225)},
1266 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
1267 {"blue" , PALETTERGB ( 0, 0,255)},
1268 {"dodger blue" , PALETTERGB ( 30,144,255)},
1269 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
1270 {"deep sky blue" , PALETTERGB ( 0,191,255)},
1271 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
1272 {"sky blue" , PALETTERGB (135,206,235)},
1273 {"SkyBlue" , PALETTERGB (135,206,235)},
1274 {"light sky blue" , PALETTERGB (135,206,250)},
1275 {"LightSkyBlue" , PALETTERGB (135,206,250)},
1276 {"steel blue" , PALETTERGB ( 70,130,180)},
1277 {"SteelBlue" , PALETTERGB ( 70,130,180)},
1278 {"light steel blue" , PALETTERGB (176,196,222)},
1279 {"LightSteelBlue" , PALETTERGB (176,196,222)},
1280 {"light blue" , PALETTERGB (173,216,230)},
1281 {"LightBlue" , PALETTERGB (173,216,230)},
1282 {"powder blue" , PALETTERGB (176,224,230)},
1283 {"PowderBlue" , PALETTERGB (176,224,230)},
1284 {"pale turquoise" , PALETTERGB (175,238,238)},
1285 {"PaleTurquoise" , PALETTERGB (175,238,238)},
1286 {"dark turquoise" , PALETTERGB ( 0,206,209)},
1287 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
1288 {"medium turquoise" , PALETTERGB ( 72,209,204)},
1289 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
1290 {"turquoise" , PALETTERGB ( 64,224,208)},
1291 {"cyan" , PALETTERGB ( 0,255,255)},
1292 {"light cyan" , PALETTERGB (224,255,255)},
1293 {"LightCyan" , PALETTERGB (224,255,255)},
1294 {"cadet blue" , PALETTERGB ( 95,158,160)},
1295 {"CadetBlue" , PALETTERGB ( 95,158,160)},
1296 {"medium aquamarine" , PALETTERGB (102,205,170)},
1297 {"MediumAquamarine" , PALETTERGB (102,205,170)},
1298 {"aquamarine" , PALETTERGB (127,255,212)},
1299 {"dark green" , PALETTERGB ( 0,100, 0)},
1300 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
1301 {"dark olive green" , PALETTERGB ( 85,107, 47)},
1302 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
1303 {"dark sea green" , PALETTERGB (143,188,143)},
1304 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
1305 {"sea green" , PALETTERGB ( 46,139, 87)},
1306 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
1307 {"medium sea green" , PALETTERGB ( 60,179,113)},
1308 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
1309 {"light sea green" , PALETTERGB ( 32,178,170)},
1310 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
1311 {"pale green" , PALETTERGB (152,251,152)},
1312 {"PaleGreen" , PALETTERGB (152,251,152)},
1313 {"spring green" , PALETTERGB ( 0,255,127)},
1314 {"SpringGreen" , PALETTERGB ( 0,255,127)},
1315 {"lawn green" , PALETTERGB (124,252, 0)},
1316 {"LawnGreen" , PALETTERGB (124,252, 0)},
1317 {"green" , PALETTERGB ( 0,255, 0)},
1318 {"chartreuse" , PALETTERGB (127,255, 0)},
1319 {"medium spring green" , PALETTERGB ( 0,250,154)},
1320 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
1321 {"green yellow" , PALETTERGB (173,255, 47)},
1322 {"GreenYellow" , PALETTERGB (173,255, 47)},
1323 {"lime green" , PALETTERGB ( 50,205, 50)},
1324 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
1325 {"yellow green" , PALETTERGB (154,205, 50)},
1326 {"YellowGreen" , PALETTERGB (154,205, 50)},
1327 {"forest green" , PALETTERGB ( 34,139, 34)},
1328 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
1329 {"olive drab" , PALETTERGB (107,142, 35)},
1330 {"OliveDrab" , PALETTERGB (107,142, 35)},
1331 {"dark khaki" , PALETTERGB (189,183,107)},
1332 {"DarkKhaki" , PALETTERGB (189,183,107)},
1333 {"khaki" , PALETTERGB (240,230,140)},
1334 {"pale goldenrod" , PALETTERGB (238,232,170)},
1335 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
1336 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
1337 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
1338 {"light yellow" , PALETTERGB (255,255,224)},
1339 {"LightYellow" , PALETTERGB (255,255,224)},
1340 {"yellow" , PALETTERGB (255,255, 0)},
1341 {"gold" , PALETTERGB (255,215, 0)},
1342 {"light goldenrod" , PALETTERGB (238,221,130)},
1343 {"LightGoldenrod" , PALETTERGB (238,221,130)},
1344 {"goldenrod" , PALETTERGB (218,165, 32)},
1345 {"dark goldenrod" , PALETTERGB (184,134, 11)},
1346 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
1347 {"rosy brown" , PALETTERGB (188,143,143)},
1348 {"RosyBrown" , PALETTERGB (188,143,143)},
1349 {"indian red" , PALETTERGB (205, 92, 92)},
1350 {"IndianRed" , PALETTERGB (205, 92, 92)},
1351 {"saddle brown" , PALETTERGB (139, 69, 19)},
1352 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
1353 {"sienna" , PALETTERGB (160, 82, 45)},
1354 {"peru" , PALETTERGB (205,133, 63)},
1355 {"burlywood" , PALETTERGB (222,184,135)},
1356 {"beige" , PALETTERGB (245,245,220)},
1357 {"wheat" , PALETTERGB (245,222,179)},
1358 {"sandy brown" , PALETTERGB (244,164, 96)},
1359 {"SandyBrown" , PALETTERGB (244,164, 96)},
1360 {"tan" , PALETTERGB (210,180,140)},
1361 {"chocolate" , PALETTERGB (210,105, 30)},
1362 {"firebrick" , PALETTERGB (178,34, 34)},
1363 {"brown" , PALETTERGB (165,42, 42)},
1364 {"dark salmon" , PALETTERGB (233,150,122)},
1365 {"DarkSalmon" , PALETTERGB (233,150,122)},
1366 {"salmon" , PALETTERGB (250,128,114)},
1367 {"light salmon" , PALETTERGB (255,160,122)},
1368 {"LightSalmon" , PALETTERGB (255,160,122)},
1369 {"orange" , PALETTERGB (255,165, 0)},
1370 {"dark orange" , PALETTERGB (255,140, 0)},
1371 {"DarkOrange" , PALETTERGB (255,140, 0)},
1372 {"coral" , PALETTERGB (255,127, 80)},
1373 {"light coral" , PALETTERGB (240,128,128)},
1374 {"LightCoral" , PALETTERGB (240,128,128)},
1375 {"tomato" , PALETTERGB (255, 99, 71)},
1376 {"orange red" , PALETTERGB (255, 69, 0)},
1377 {"OrangeRed" , PALETTERGB (255, 69, 0)},
1378 {"red" , PALETTERGB (255, 0, 0)},
1379 {"hot pink" , PALETTERGB (255,105,180)},
1380 {"HotPink" , PALETTERGB (255,105,180)},
1381 {"deep pink" , PALETTERGB (255, 20,147)},
1382 {"DeepPink" , PALETTERGB (255, 20,147)},
1383 {"pink" , PALETTERGB (255,192,203)},
1384 {"light pink" , PALETTERGB (255,182,193)},
1385 {"LightPink" , PALETTERGB (255,182,193)},
1386 {"pale violet red" , PALETTERGB (219,112,147)},
1387 {"PaleVioletRed" , PALETTERGB (219,112,147)},
1388 {"maroon" , PALETTERGB (176, 48, 96)},
1389 {"medium violet red" , PALETTERGB (199, 21,133)},
1390 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
1391 {"violet red" , PALETTERGB (208, 32,144)},
1392 {"VioletRed" , PALETTERGB (208, 32,144)},
1393 {"magenta" , PALETTERGB (255, 0,255)},
1394 {"violet" , PALETTERGB (238,130,238)},
1395 {"plum" , PALETTERGB (221,160,221)},
1396 {"orchid" , PALETTERGB (218,112,214)},
1397 {"medium orchid" , PALETTERGB (186, 85,211)},
1398 {"MediumOrchid" , PALETTERGB (186, 85,211)},
1399 {"dark orchid" , PALETTERGB (153, 50,204)},
1400 {"DarkOrchid" , PALETTERGB (153, 50,204)},
1401 {"dark violet" , PALETTERGB (148, 0,211)},
1402 {"DarkViolet" , PALETTERGB (148, 0,211)},
1403 {"blue violet" , PALETTERGB (138, 43,226)},
1404 {"BlueViolet" , PALETTERGB (138, 43,226)},
1405 {"purple" , PALETTERGB (160, 32,240)},
1406 {"medium purple" , PALETTERGB (147,112,219)},
1407 {"MediumPurple" , PALETTERGB (147,112,219)},
1408 {"thistle" , PALETTERGB (216,191,216)},
1409 {"gray0" , PALETTERGB ( 0, 0, 0)},
1410 {"grey0" , PALETTERGB ( 0, 0, 0)},
1411 {"dark grey" , PALETTERGB (169,169,169)},
1412 {"DarkGrey" , PALETTERGB (169,169,169)},
1413 {"dark gray" , PALETTERGB (169,169,169)},
1414 {"DarkGray" , PALETTERGB (169,169,169)},
1415 {"dark blue" , PALETTERGB ( 0, 0,139)},
1416 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
1417 {"dark cyan" , PALETTERGB ( 0,139,139)},
1418 {"DarkCyan" , PALETTERGB ( 0,139,139)},
1419 {"dark magenta" , PALETTERGB (139, 0,139)},
1420 {"DarkMagenta" , PALETTERGB (139, 0,139)},
1421 {"dark red" , PALETTERGB (139, 0, 0)},
1422 {"DarkRed" , PALETTERGB (139, 0, 0)},
1423 {"light green" , PALETTERGB (144,238,144)},
1424 {"LightGreen" , PALETTERGB (144,238,144)},
1425 };
1426
1427 DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map,
1428 0, 0, 0, "Return the default color map.")
1429 ()
1430 {
1431 int i;
1432 colormap_t *pc = w32_color_map;
1433 Lisp_Object cmap;
1434
1435 BLOCK_INPUT;
1436
1437 cmap = Qnil;
1438
1439 for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
1440 pc++, i++)
1441 cmap = Fcons (Fcons (build_string (pc->name),
1442 make_number (pc->colorref)),
1443 cmap);
1444
1445 UNBLOCK_INPUT;
1446
1447 return (cmap);
1448 }
1449
1450 Lisp_Object
1451 w32_to_x_color (rgb)
1452 Lisp_Object rgb;
1453 {
1454 Lisp_Object color;
1455
1456 CHECK_NUMBER (rgb, 0);
1457
1458 BLOCK_INPUT;
1459
1460 color = Frassq (rgb, Vw32_color_map);
1461
1462 UNBLOCK_INPUT;
1463
1464 if (!NILP (color))
1465 return (Fcar (color));
1466 else
1467 return Qnil;
1468 }
1469
1470 COLORREF
1471 w32_color_map_lookup (colorname)
1472 char *colorname;
1473 {
1474 Lisp_Object tail, ret = Qnil;
1475
1476 BLOCK_INPUT;
1477
1478 for (tail = Vw32_color_map; !NILP (tail); tail = Fcdr (tail))
1479 {
1480 register Lisp_Object elt, tem;
1481
1482 elt = Fcar (tail);
1483 if (!CONSP (elt)) continue;
1484
1485 tem = Fcar (elt);
1486
1487 if (lstrcmpi (XSTRING (tem)->data, colorname) == 0)
1488 {
1489 ret = XUINT (Fcdr (elt));
1490 break;
1491 }
1492
1493 QUIT;
1494 }
1495
1496
1497 UNBLOCK_INPUT;
1498
1499 return ret;
1500 }
1501
1502 COLORREF
1503 x_to_w32_color (colorname)
1504 char * colorname;
1505 {
1506 register Lisp_Object tail, ret = Qnil;
1507
1508 BLOCK_INPUT;
1509
1510 if (colorname[0] == '#')
1511 {
1512 /* Could be an old-style RGB Device specification. */
1513 char *color;
1514 int size;
1515 color = colorname + 1;
1516
1517 size = strlen(color);
1518 if (size == 3 || size == 6 || size == 9 || size == 12)
1519 {
1520 UINT colorval;
1521 int i, pos;
1522 pos = 0;
1523 size /= 3;
1524 colorval = 0;
1525
1526 for (i = 0; i < 3; i++)
1527 {
1528 char *end;
1529 char t;
1530 unsigned long value;
1531
1532 /* The check for 'x' in the following conditional takes into
1533 account the fact that strtol allows a "0x" in front of
1534 our numbers, and we don't. */
1535 if (!isxdigit(color[0]) || color[1] == 'x')
1536 break;
1537 t = color[size];
1538 color[size] = '\0';
1539 value = strtoul(color, &end, 16);
1540 color[size] = t;
1541 if (errno == ERANGE || end - color != size)
1542 break;
1543 switch (size)
1544 {
1545 case 1:
1546 value = value * 0x10;
1547 break;
1548 case 2:
1549 break;
1550 case 3:
1551 value /= 0x10;
1552 break;
1553 case 4:
1554 value /= 0x100;
1555 break;
1556 }
1557 colorval |= (value << pos);
1558 pos += 0x8;
1559 if (i == 2)
1560 {
1561 UNBLOCK_INPUT;
1562 return (colorval);
1563 }
1564 color = end;
1565 }
1566 }
1567 }
1568 else if (strnicmp(colorname, "rgb:", 4) == 0)
1569 {
1570 char *color;
1571 UINT colorval;
1572 int i, pos;
1573 pos = 0;
1574
1575 colorval = 0;
1576 color = colorname + 4;
1577 for (i = 0; i < 3; i++)
1578 {
1579 char *end;
1580 unsigned long value;
1581
1582 /* The check for 'x' in the following conditional takes into
1583 account the fact that strtol allows a "0x" in front of
1584 our numbers, and we don't. */
1585 if (!isxdigit(color[0]) || color[1] == 'x')
1586 break;
1587 value = strtoul(color, &end, 16);
1588 if (errno == ERANGE)
1589 break;
1590 switch (end - color)
1591 {
1592 case 1:
1593 value = value * 0x10 + value;
1594 break;
1595 case 2:
1596 break;
1597 case 3:
1598 value /= 0x10;
1599 break;
1600 case 4:
1601 value /= 0x100;
1602 break;
1603 default:
1604 value = ULONG_MAX;
1605 }
1606 if (value == ULONG_MAX)
1607 break;
1608 colorval |= (value << pos);
1609 pos += 0x8;
1610 if (i == 2)
1611 {
1612 if (*end != '\0')
1613 break;
1614 UNBLOCK_INPUT;
1615 return (colorval);
1616 }
1617 if (*end != '/')
1618 break;
1619 color = end + 1;
1620 }
1621 }
1622 else if (strnicmp(colorname, "rgbi:", 5) == 0)
1623 {
1624 /* This is an RGB Intensity specification. */
1625 char *color;
1626 UINT colorval;
1627 int i, pos;
1628 pos = 0;
1629
1630 colorval = 0;
1631 color = colorname + 5;
1632 for (i = 0; i < 3; i++)
1633 {
1634 char *end;
1635 double value;
1636 UINT val;
1637
1638 value = strtod(color, &end);
1639 if (errno == ERANGE)
1640 break;
1641 if (value < 0.0 || value > 1.0)
1642 break;
1643 val = (UINT)(0x100 * value);
1644 /* We used 0x100 instead of 0xFF to give an continuous
1645 range between 0.0 and 1.0 inclusive. The next statement
1646 fixes the 1.0 case. */
1647 if (val == 0x100)
1648 val = 0xFF;
1649 colorval |= (val << pos);
1650 pos += 0x8;
1651 if (i == 2)
1652 {
1653 if (*end != '\0')
1654 break;
1655 UNBLOCK_INPUT;
1656 return (colorval);
1657 }
1658 if (*end != '/')
1659 break;
1660 color = end + 1;
1661 }
1662 }
1663 /* I am not going to attempt to handle any of the CIE color schemes
1664 or TekHVC, since I don't know the algorithms for conversion to
1665 RGB. */
1666
1667 /* If we fail to lookup the color name in w32_color_map, then check the
1668 colorname to see if it can be crudely approximated: If the X color
1669 ends in a number (e.g., "darkseagreen2"), strip the number and
1670 return the result of looking up the base color name. */
1671 ret = w32_color_map_lookup (colorname);
1672 if (NILP (ret))
1673 {
1674 int len = strlen (colorname);
1675
1676 if (isdigit (colorname[len - 1]))
1677 {
1678 char *ptr, *approx = alloca (len);
1679
1680 strcpy (approx, colorname);
1681 ptr = &approx[len - 1];
1682 while (ptr > approx && isdigit (*ptr))
1683 *ptr-- = '\0';
1684
1685 ret = w32_color_map_lookup (approx);
1686 }
1687 }
1688
1689 UNBLOCK_INPUT;
1690 return ret;
1691 }
1692
1693
1694 void
1695 w32_regenerate_palette (FRAME_PTR f)
1696 {
1697 struct w32_palette_entry * list;
1698 LOGPALETTE * log_palette;
1699 HPALETTE new_palette;
1700 int i;
1701
1702 /* don't bother trying to create palette if not supported */
1703 if (! FRAME_W32_DISPLAY_INFO (f)->has_palette)
1704 return;
1705
1706 log_palette = (LOGPALETTE *)
1707 alloca (sizeof (LOGPALETTE) +
1708 FRAME_W32_DISPLAY_INFO (f)->num_colors * sizeof (PALETTEENTRY));
1709 log_palette->palVersion = 0x300;
1710 log_palette->palNumEntries = FRAME_W32_DISPLAY_INFO (f)->num_colors;
1711
1712 list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1713 for (i = 0;
1714 i < FRAME_W32_DISPLAY_INFO (f)->num_colors;
1715 i++, list = list->next)
1716 log_palette->palPalEntry[i] = list->entry;
1717
1718 new_palette = CreatePalette (log_palette);
1719
1720 enter_crit ();
1721
1722 if (FRAME_W32_DISPLAY_INFO (f)->palette)
1723 DeleteObject (FRAME_W32_DISPLAY_INFO (f)->palette);
1724 FRAME_W32_DISPLAY_INFO (f)->palette = new_palette;
1725
1726 /* Realize display palette and garbage all frames. */
1727 release_frame_dc (f, get_frame_dc (f));
1728
1729 leave_crit ();
1730 }
1731
1732 #define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1733 #define SET_W32_COLOR(pe, color) \
1734 do \
1735 { \
1736 pe.peRed = GetRValue (color); \
1737 pe.peGreen = GetGValue (color); \
1738 pe.peBlue = GetBValue (color); \
1739 pe.peFlags = 0; \
1740 } while (0)
1741
1742 #if 0
1743 /* Keep these around in case we ever want to track color usage. */
1744 void
1745 w32_map_color (FRAME_PTR f, COLORREF color)
1746 {
1747 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1748
1749 if (NILP (Vw32_enable_palette))
1750 return;
1751
1752 /* check if color is already mapped */
1753 while (list)
1754 {
1755 if (W32_COLOR (list->entry) == color)
1756 {
1757 ++list->refcount;
1758 return;
1759 }
1760 list = list->next;
1761 }
1762
1763 /* not already mapped, so add to list and recreate Windows palette */
1764 list = (struct w32_palette_entry *)
1765 xmalloc (sizeof (struct w32_palette_entry));
1766 SET_W32_COLOR (list->entry, color);
1767 list->refcount = 1;
1768 list->next = FRAME_W32_DISPLAY_INFO (f)->color_list;
1769 FRAME_W32_DISPLAY_INFO (f)->color_list = list;
1770 FRAME_W32_DISPLAY_INFO (f)->num_colors++;
1771
1772 /* set flag that palette must be regenerated */
1773 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1774 }
1775
1776 void
1777 w32_unmap_color (FRAME_PTR f, COLORREF color)
1778 {
1779 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1780 struct w32_palette_entry **prev = &FRAME_W32_DISPLAY_INFO (f)->color_list;
1781
1782 if (NILP (Vw32_enable_palette))
1783 return;
1784
1785 /* check if color is already mapped */
1786 while (list)
1787 {
1788 if (W32_COLOR (list->entry) == color)
1789 {
1790 if (--list->refcount == 0)
1791 {
1792 *prev = list->next;
1793 xfree (list);
1794 FRAME_W32_DISPLAY_INFO (f)->num_colors--;
1795 break;
1796 }
1797 else
1798 return;
1799 }
1800 prev = &list->next;
1801 list = list->next;
1802 }
1803
1804 /* set flag that palette must be regenerated */
1805 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
1806 }
1807 #endif
1808
1809
1810 /* Gamma-correct COLOR on frame F. */
1811
1812 void
1813 gamma_correct (f, color)
1814 struct frame *f;
1815 COLORREF *color;
1816 {
1817 if (f->gamma)
1818 {
1819 *color = PALETTERGB (
1820 pow (GetRValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1821 pow (GetGValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1822 pow (GetBValue (*color) / 255.0, f->gamma) * 255.0 + 0.5);
1823 }
1824 }
1825
1826
1827 /* Decide if color named COLOR is valid for the display associated with
1828 the selected frame; if so, return the rgb values in COLOR_DEF.
1829 If ALLOC is nonzero, allocate a new colormap cell. */
1830
1831 int
1832 w32_defined_color (f, color, color_def, alloc)
1833 FRAME_PTR f;
1834 char *color;
1835 XColor *color_def;
1836 int alloc;
1837 {
1838 register Lisp_Object tem;
1839 COLORREF w32_color_ref;
1840
1841 tem = x_to_w32_color (color);
1842
1843 if (!NILP (tem))
1844 {
1845 if (f)
1846 {
1847 /* Apply gamma correction. */
1848 w32_color_ref = XUINT (tem);
1849 gamma_correct (f, &w32_color_ref);
1850 XSETINT (tem, w32_color_ref);
1851 }
1852
1853 /* Map this color to the palette if it is enabled. */
1854 if (!NILP (Vw32_enable_palette))
1855 {
1856 struct w32_palette_entry * entry =
1857 one_w32_display_info.color_list;
1858 struct w32_palette_entry ** prev =
1859 &one_w32_display_info.color_list;
1860
1861 /* check if color is already mapped */
1862 while (entry)
1863 {
1864 if (W32_COLOR (entry->entry) == XUINT (tem))
1865 break;
1866 prev = &entry->next;
1867 entry = entry->next;
1868 }
1869
1870 if (entry == NULL && alloc)
1871 {
1872 /* not already mapped, so add to list */
1873 entry = (struct w32_palette_entry *)
1874 xmalloc (sizeof (struct w32_palette_entry));
1875 SET_W32_COLOR (entry->entry, XUINT (tem));
1876 entry->next = NULL;
1877 *prev = entry;
1878 one_w32_display_info.num_colors++;
1879
1880 /* set flag that palette must be regenerated */
1881 one_w32_display_info.regen_palette = TRUE;
1882 }
1883 }
1884 /* Ensure COLORREF value is snapped to nearest color in (default)
1885 palette by simulating the PALETTERGB macro. This works whether
1886 or not the display device has a palette. */
1887 w32_color_ref = XUINT (tem) | 0x2000000;
1888
1889 color_def->pixel = w32_color_ref;
1890 color_def->red = GetRValue (w32_color_ref);
1891 color_def->green = GetGValue (w32_color_ref);
1892 color_def->blue = GetBValue (w32_color_ref);
1893
1894 return 1;
1895 }
1896 else
1897 {
1898 return 0;
1899 }
1900 }
1901
1902 /* Given a string ARG naming a color, compute a pixel value from it
1903 suitable for screen F.
1904 If F is not a color screen, return DEF (default) regardless of what
1905 ARG says. */
1906
1907 int
1908 x_decode_color (f, arg, def)
1909 FRAME_PTR f;
1910 Lisp_Object arg;
1911 int def;
1912 {
1913 XColor cdef;
1914
1915 CHECK_STRING (arg, 0);
1916
1917 if (strcmp (XSTRING (arg)->data, "black") == 0)
1918 return BLACK_PIX_DEFAULT (f);
1919 else if (strcmp (XSTRING (arg)->data, "white") == 0)
1920 return WHITE_PIX_DEFAULT (f);
1921
1922 if ((FRAME_W32_DISPLAY_INFO (f)->n_planes * FRAME_W32_DISPLAY_INFO (f)->n_cbits) == 1)
1923 return def;
1924
1925 /* w32_defined_color is responsible for coping with failures
1926 by looking for a near-miss. */
1927 if (w32_defined_color (f, XSTRING (arg)->data, &cdef, 1))
1928 return cdef.pixel;
1929
1930 /* defined_color failed; return an ultimate default. */
1931 return def;
1932 }
1933 \f
1934 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1935 the previous value of that parameter, NEW_VALUE is the new value. */
1936
1937 static void
1938 x_set_line_spacing (f, new_value, old_value)
1939 struct frame *f;
1940 Lisp_Object new_value, old_value;
1941 {
1942 if (NILP (new_value))
1943 f->extra_line_spacing = 0;
1944 else if (NATNUMP (new_value))
1945 f->extra_line_spacing = XFASTINT (new_value);
1946 else
1947 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
1948 Fcons (new_value, Qnil)));
1949 if (FRAME_VISIBLE_P (f))
1950 redraw_frame (f);
1951 }
1952
1953
1954 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1955 the previous value of that parameter, NEW_VALUE is the new value. */
1956
1957 static void
1958 x_set_screen_gamma (f, new_value, old_value)
1959 struct frame *f;
1960 Lisp_Object new_value, old_value;
1961 {
1962 if (NILP (new_value))
1963 f->gamma = 0;
1964 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
1965 /* The value 0.4545 is the normal viewing gamma. */
1966 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
1967 else
1968 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
1969 Fcons (new_value, Qnil)));
1970
1971 clear_face_cache (0);
1972 }
1973
1974
1975 /* Functions called only from `x_set_frame_param'
1976 to set individual parameters.
1977
1978 If FRAME_W32_WINDOW (f) is 0,
1979 the frame is being created and its window does not exist yet.
1980 In that case, just record the parameter's new value
1981 in the standard place; do not attempt to change the window. */
1982
1983 void
1984 x_set_foreground_color (f, arg, oldval)
1985 struct frame *f;
1986 Lisp_Object arg, oldval;
1987 {
1988 FRAME_FOREGROUND_PIXEL (f)
1989 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1990
1991 if (FRAME_W32_WINDOW (f) != 0)
1992 {
1993 update_face_from_frame_parameter (f, Qforeground_color, arg);
1994 if (FRAME_VISIBLE_P (f))
1995 redraw_frame (f);
1996 }
1997 }
1998
1999 void
2000 x_set_background_color (f, arg, oldval)
2001 struct frame *f;
2002 Lisp_Object arg, oldval;
2003 {
2004 FRAME_BACKGROUND_PIXEL (f)
2005 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
2006
2007 if (FRAME_W32_WINDOW (f) != 0)
2008 {
2009 SetWindowLong (FRAME_W32_WINDOW (f), WND_BACKGROUND_INDEX,
2010 FRAME_BACKGROUND_PIXEL (f));
2011
2012 update_face_from_frame_parameter (f, Qbackground_color, arg);
2013
2014 if (FRAME_VISIBLE_P (f))
2015 redraw_frame (f);
2016 }
2017 }
2018
2019 void
2020 x_set_mouse_color (f, arg, oldval)
2021 struct frame *f;
2022 Lisp_Object arg, oldval;
2023 {
2024
2025 Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
2026 int count;
2027 int mask_color;
2028
2029 if (!EQ (Qnil, arg))
2030 f->output_data.w32->mouse_pixel
2031 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2032 mask_color = FRAME_BACKGROUND_PIXEL (f);
2033
2034 /* Don't let pointers be invisible. */
2035 if (mask_color == f->output_data.w32->mouse_pixel
2036 && mask_color == FRAME_BACKGROUND_PIXEL (f))
2037 f->output_data.w32->mouse_pixel = FRAME_FOREGROUND_PIXEL (f);
2038
2039 #if 0 /* NTEMACS_TODO : cursor changes */
2040 BLOCK_INPUT;
2041
2042 /* It's not okay to crash if the user selects a screwy cursor. */
2043 count = x_catch_errors (FRAME_W32_DISPLAY (f));
2044
2045 if (!EQ (Qnil, Vx_pointer_shape))
2046 {
2047 CHECK_NUMBER (Vx_pointer_shape, 0);
2048 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape));
2049 }
2050 else
2051 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2052 x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s");
2053
2054 if (!EQ (Qnil, Vx_nontext_pointer_shape))
2055 {
2056 CHECK_NUMBER (Vx_nontext_pointer_shape, 0);
2057 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2058 XINT (Vx_nontext_pointer_shape));
2059 }
2060 else
2061 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr);
2062 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2063
2064 if (!EQ (Qnil, Vx_busy_pointer_shape))
2065 {
2066 CHECK_NUMBER (Vx_busy_pointer_shape, 0);
2067 busy_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2068 XINT (Vx_busy_pointer_shape));
2069 }
2070 else
2071 busy_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
2072 x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
2073
2074 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
2075 if (!EQ (Qnil, Vx_mode_pointer_shape))
2076 {
2077 CHECK_NUMBER (Vx_mode_pointer_shape, 0);
2078 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2079 XINT (Vx_mode_pointer_shape));
2080 }
2081 else
2082 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
2083 x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s");
2084
2085 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
2086 {
2087 CHECK_NUMBER (Vx_sensitive_text_pointer_shape, 0);
2088 cross_cursor
2089 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
2090 XINT (Vx_sensitive_text_pointer_shape));
2091 }
2092 else
2093 cross_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair);
2094
2095 /* Check and report errors with the above calls. */
2096 x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
2097 x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
2098
2099 {
2100 XColor fore_color, back_color;
2101
2102 fore_color.pixel = f->output_data.w32->mouse_pixel;
2103 back_color.pixel = mask_color;
2104 XQueryColor (FRAME_W32_DISPLAY (f),
2105 DefaultColormap (FRAME_W32_DISPLAY (f),
2106 DefaultScreen (FRAME_W32_DISPLAY (f))),
2107 &fore_color);
2108 XQueryColor (FRAME_W32_DISPLAY (f),
2109 DefaultColormap (FRAME_W32_DISPLAY (f),
2110 DefaultScreen (FRAME_W32_DISPLAY (f))),
2111 &back_color);
2112 XRecolorCursor (FRAME_W32_DISPLAY (f), cursor,
2113 &fore_color, &back_color);
2114 XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor,
2115 &fore_color, &back_color);
2116 XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor,
2117 &fore_color, &back_color);
2118 XRecolorCursor (FRAME_W32_DISPLAY (f), cross_cursor,
2119 &fore_color, &back_color);
2120 XRecolorCursor (FRAME_W32_DISPLAY (f), busy_cursor,
2121 &fore_color, &back_color);
2122 }
2123
2124 if (FRAME_W32_WINDOW (f) != 0)
2125 XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor);
2126
2127 if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0)
2128 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor);
2129 f->output_data.w32->text_cursor = cursor;
2130
2131 if (nontext_cursor != f->output_data.w32->nontext_cursor
2132 && f->output_data.w32->nontext_cursor != 0)
2133 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor);
2134 f->output_data.w32->nontext_cursor = nontext_cursor;
2135
2136 if (busy_cursor != f->output_data.w32->busy_cursor
2137 && f->output_data.w32->busy_cursor != 0)
2138 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->busy_cursor);
2139 f->output_data.w32->busy_cursor = busy_cursor;
2140
2141 if (mode_cursor != f->output_data.w32->modeline_cursor
2142 && f->output_data.w32->modeline_cursor != 0)
2143 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
2144 f->output_data.w32->modeline_cursor = mode_cursor;
2145
2146 if (cross_cursor != f->output_data.w32->cross_cursor
2147 && f->output_data.w32->cross_cursor != 0)
2148 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor);
2149 f->output_data.w32->cross_cursor = cross_cursor;
2150
2151 XFlush (FRAME_W32_DISPLAY (f));
2152 UNBLOCK_INPUT;
2153
2154 update_face_from_frame_parameter (f, Qmouse_color, arg);
2155 #endif /* NTEMACS_TODO */
2156 }
2157
2158 void
2159 x_set_cursor_color (f, arg, oldval)
2160 struct frame *f;
2161 Lisp_Object arg, oldval;
2162 {
2163 unsigned long fore_pixel;
2164
2165 if (!NILP (Vx_cursor_fore_pixel))
2166 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
2167 WHITE_PIX_DEFAULT (f));
2168 else
2169 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2170 f->output_data.w32->cursor_pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2171
2172 /* Make sure that the cursor color differs from the background color. */
2173 if (f->output_data.w32->cursor_pixel == FRAME_BACKGROUND_PIXEL (f))
2174 {
2175 f->output_data.w32->cursor_pixel = f->output_data.w32->mouse_pixel;
2176 if (f->output_data.w32->cursor_pixel == fore_pixel)
2177 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
2178 }
2179 FRAME_FOREGROUND_PIXEL (f) = fore_pixel;
2180
2181 if (FRAME_W32_WINDOW (f) != 0)
2182 {
2183 if (FRAME_VISIBLE_P (f))
2184 {
2185 x_display_cursor (f, 0);
2186 x_display_cursor (f, 1);
2187 }
2188 }
2189
2190 update_face_from_frame_parameter (f, Qcursor_color, arg);
2191 }
2192
2193 /* Set the border-color of frame F to pixel value PIX.
2194 Note that this does not fully take effect if done before
2195 F has an window. */
2196 void
2197 x_set_border_pixel (f, pix)
2198 struct frame *f;
2199 int pix;
2200 {
2201 f->output_data.w32->border_pixel = pix;
2202
2203 if (FRAME_W32_WINDOW (f) != 0 && f->output_data.w32->border_width > 0)
2204 {
2205 if (FRAME_VISIBLE_P (f))
2206 redraw_frame (f);
2207 }
2208 }
2209
2210 /* Set the border-color of frame F to value described by ARG.
2211 ARG can be a string naming a color.
2212 The border-color is used for the border that is drawn by the server.
2213 Note that this does not fully take effect if done before
2214 F has a window; it must be redone when the window is created. */
2215
2216 void
2217 x_set_border_color (f, arg, oldval)
2218 struct frame *f;
2219 Lisp_Object arg, oldval;
2220 {
2221 int pix;
2222
2223 CHECK_STRING (arg, 0);
2224 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
2225 x_set_border_pixel (f, pix);
2226 update_face_from_frame_parameter (f, Qborder_color, arg);
2227 }
2228
2229 /* Value is the internal representation of the specified cursor type
2230 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
2231 of the bar cursor. */
2232
2233 enum text_cursor_kinds
2234 x_specified_cursor_type (arg, width)
2235 Lisp_Object arg;
2236 int *width;
2237 {
2238 enum text_cursor_kinds type;
2239
2240 if (EQ (arg, Qbar))
2241 {
2242 type = BAR_CURSOR;
2243 *width = 2;
2244 }
2245 else if (CONSP (arg)
2246 && EQ (XCAR (arg), Qbar)
2247 && INTEGERP (XCDR (arg))
2248 && XINT (XCDR (arg)) >= 0)
2249 {
2250 type = BAR_CURSOR;
2251 *width = XINT (XCDR (arg));
2252 }
2253 else if (NILP (arg))
2254 type = NO_CURSOR;
2255 else
2256 /* Treat anything unknown as "box cursor".
2257 It was bad to signal an error; people have trouble fixing
2258 .Xdefaults with Emacs, when it has something bad in it. */
2259 type = FILLED_BOX_CURSOR;
2260
2261 return type;
2262 }
2263
2264 void
2265 x_set_cursor_type (f, arg, oldval)
2266 FRAME_PTR f;
2267 Lisp_Object arg, oldval;
2268 {
2269 int width;
2270
2271 FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width);
2272 f->output_data.w32->cursor_width = width;
2273
2274 /* Make sure the cursor gets redrawn. This is overkill, but how
2275 often do people change cursor types? */
2276 update_mode_lines++;
2277 }
2278 \f
2279 void
2280 x_set_icon_type (f, arg, oldval)
2281 struct frame *f;
2282 Lisp_Object arg, oldval;
2283 {
2284 int result;
2285
2286 if (NILP (arg) && NILP (oldval))
2287 return;
2288
2289 if (STRINGP (arg) && STRINGP (oldval)
2290 && EQ (Fstring_equal (oldval, arg), Qt))
2291 return;
2292
2293 if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval))
2294 return;
2295
2296 BLOCK_INPUT;
2297
2298 result = x_bitmap_icon (f, arg);
2299 if (result)
2300 {
2301 UNBLOCK_INPUT;
2302 error ("No icon window available");
2303 }
2304
2305 UNBLOCK_INPUT;
2306 }
2307
2308 /* Return non-nil if frame F wants a bitmap icon. */
2309
2310 Lisp_Object
2311 x_icon_type (f)
2312 FRAME_PTR f;
2313 {
2314 Lisp_Object tem;
2315
2316 tem = assq_no_quit (Qicon_type, f->param_alist);
2317 if (CONSP (tem))
2318 return XCDR (tem);
2319 else
2320 return Qnil;
2321 }
2322
2323 void
2324 x_set_icon_name (f, arg, oldval)
2325 struct frame *f;
2326 Lisp_Object arg, oldval;
2327 {
2328 int result;
2329
2330 if (STRINGP (arg))
2331 {
2332 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
2333 return;
2334 }
2335 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
2336 return;
2337
2338 f->icon_name = arg;
2339
2340 #if 0
2341 if (f->output_data.w32->icon_bitmap != 0)
2342 return;
2343
2344 BLOCK_INPUT;
2345
2346 result = x_text_icon (f,
2347 (char *) XSTRING ((!NILP (f->icon_name)
2348 ? f->icon_name
2349 : !NILP (f->title)
2350 ? f->title
2351 : f->name))->data);
2352
2353 if (result)
2354 {
2355 UNBLOCK_INPUT;
2356 error ("No icon window available");
2357 }
2358
2359 /* If the window was unmapped (and its icon was mapped),
2360 the new icon is not mapped, so map the window in its stead. */
2361 if (FRAME_VISIBLE_P (f))
2362 {
2363 #ifdef USE_X_TOOLKIT
2364 XtPopup (f->output_data.w32->widget, XtGrabNone);
2365 #endif
2366 XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f));
2367 }
2368
2369 XFlush (FRAME_W32_DISPLAY (f));
2370 UNBLOCK_INPUT;
2371 #endif
2372 }
2373
2374 extern Lisp_Object x_new_font ();
2375 extern Lisp_Object x_new_fontset();
2376
2377 void
2378 x_set_font (f, arg, oldval)
2379 struct frame *f;
2380 Lisp_Object arg, oldval;
2381 {
2382 Lisp_Object result;
2383 Lisp_Object fontset_name;
2384 Lisp_Object frame;
2385
2386 CHECK_STRING (arg, 1);
2387
2388 fontset_name = Fquery_fontset (arg, Qnil);
2389
2390 BLOCK_INPUT;
2391 result = (STRINGP (fontset_name)
2392 ? x_new_fontset (f, XSTRING (fontset_name)->data)
2393 : x_new_font (f, XSTRING (arg)->data));
2394 UNBLOCK_INPUT;
2395
2396 if (EQ (result, Qnil))
2397 error ("Font `%s' is not defined", XSTRING (arg)->data);
2398 else if (EQ (result, Qt))
2399 error ("The characters of the given font have varying widths");
2400 else if (STRINGP (result))
2401 {
2402 store_frame_param (f, Qfont, result);
2403 recompute_basic_faces (f);
2404 }
2405 else
2406 abort ();
2407
2408 do_pending_window_change (0);
2409
2410 /* Don't call `face-set-after-frame-default' when faces haven't been
2411 initialized yet. This is the case when called from
2412 Fx_create_frame. In that case, the X widget or window doesn't
2413 exist either, and we can end up in x_report_frame_params with a
2414 null widget which gives a segfault. */
2415 if (FRAME_FACE_CACHE (f))
2416 {
2417 XSETFRAME (frame, f);
2418 call1 (Qface_set_after_frame_default, frame);
2419 }
2420 }
2421
2422 void
2423 x_set_border_width (f, arg, oldval)
2424 struct frame *f;
2425 Lisp_Object arg, oldval;
2426 {
2427 CHECK_NUMBER (arg, 0);
2428
2429 if (XINT (arg) == f->output_data.w32->border_width)
2430 return;
2431
2432 if (FRAME_W32_WINDOW (f) != 0)
2433 error ("Cannot change the border width of a window");
2434
2435 f->output_data.w32->border_width = XINT (arg);
2436 }
2437
2438 void
2439 x_set_internal_border_width (f, arg, oldval)
2440 struct frame *f;
2441 Lisp_Object arg, oldval;
2442 {
2443 int old = f->output_data.w32->internal_border_width;
2444
2445 CHECK_NUMBER (arg, 0);
2446 f->output_data.w32->internal_border_width = XINT (arg);
2447 if (f->output_data.w32->internal_border_width < 0)
2448 f->output_data.w32->internal_border_width = 0;
2449
2450 if (f->output_data.w32->internal_border_width == old)
2451 return;
2452
2453 if (FRAME_W32_WINDOW (f) != 0)
2454 {
2455 x_set_window_size (f, 0, f->width, f->height);
2456 SET_FRAME_GARBAGED (f);
2457 do_pending_window_change (0);
2458 }
2459 }
2460
2461 void
2462 x_set_visibility (f, value, oldval)
2463 struct frame *f;
2464 Lisp_Object value, oldval;
2465 {
2466 Lisp_Object frame;
2467 XSETFRAME (frame, f);
2468
2469 if (NILP (value))
2470 Fmake_frame_invisible (frame, Qt);
2471 else if (EQ (value, Qicon))
2472 Ficonify_frame (frame);
2473 else
2474 Fmake_frame_visible (frame);
2475 }
2476
2477 void
2478 x_set_menu_bar_lines (f, value, oldval)
2479 struct frame *f;
2480 Lisp_Object value, oldval;
2481 {
2482 int nlines;
2483 int olines = FRAME_MENU_BAR_LINES (f);
2484
2485 /* Right now, menu bars don't work properly in minibuf-only frames;
2486 most of the commands try to apply themselves to the minibuffer
2487 frame itself, and get an error because you can't switch buffers
2488 in or split the minibuffer window. */
2489 if (FRAME_MINIBUF_ONLY_P (f))
2490 return;
2491
2492 if (INTEGERP (value))
2493 nlines = XINT (value);
2494 else
2495 nlines = 0;
2496
2497 FRAME_MENU_BAR_LINES (f) = 0;
2498 if (nlines)
2499 FRAME_EXTERNAL_MENU_BAR (f) = 1;
2500 else
2501 {
2502 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
2503 free_frame_menubar (f);
2504 FRAME_EXTERNAL_MENU_BAR (f) = 0;
2505
2506 /* Adjust the frame size so that the client (text) dimensions
2507 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
2508 set correctly. */
2509 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2510 do_pending_window_change (0);
2511 }
2512 adjust_glyphs (f);
2513 }
2514
2515
2516 /* Set the number of lines used for the tool bar of frame F to VALUE.
2517 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2518 is the old number of tool bar lines. This function changes the
2519 height of all windows on frame F to match the new tool bar height.
2520 The frame's height doesn't change. */
2521
2522 void
2523 x_set_tool_bar_lines (f, value, oldval)
2524 struct frame *f;
2525 Lisp_Object value, oldval;
2526 {
2527 int delta, nlines;
2528
2529 /* Use VALUE only if an integer >= 0. */
2530 if (INTEGERP (value) && XINT (value) >= 0)
2531 nlines = XFASTINT (value);
2532 else
2533 nlines = 0;
2534
2535 /* Make sure we redisplay all windows in this frame. */
2536 ++windows_or_buffers_changed;
2537
2538 delta = nlines - FRAME_TOOL_BAR_LINES (f);
2539 FRAME_TOOL_BAR_LINES (f) = nlines;
2540 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2541 do_pending_window_change (0);
2542 adjust_glyphs (f);
2543 }
2544
2545
2546 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2547 w32_id_name.
2548
2549 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2550 name; if NAME is a string, set F's name to NAME and set
2551 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2552
2553 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2554 suggesting a new name, which lisp code should override; if
2555 F->explicit_name is set, ignore the new name; otherwise, set it. */
2556
2557 void
2558 x_set_name (f, name, explicit)
2559 struct frame *f;
2560 Lisp_Object name;
2561 int explicit;
2562 {
2563 /* Make sure that requests from lisp code override requests from
2564 Emacs redisplay code. */
2565 if (explicit)
2566 {
2567 /* If we're switching from explicit to implicit, we had better
2568 update the mode lines and thereby update the title. */
2569 if (f->explicit_name && NILP (name))
2570 update_mode_lines = 1;
2571
2572 f->explicit_name = ! NILP (name);
2573 }
2574 else if (f->explicit_name)
2575 return;
2576
2577 /* If NAME is nil, set the name to the w32_id_name. */
2578 if (NILP (name))
2579 {
2580 /* Check for no change needed in this very common case
2581 before we do any consing. */
2582 if (!strcmp (FRAME_W32_DISPLAY_INFO (f)->w32_id_name,
2583 XSTRING (f->name)->data))
2584 return;
2585 name = build_string (FRAME_W32_DISPLAY_INFO (f)->w32_id_name);
2586 }
2587 else
2588 CHECK_STRING (name, 0);
2589
2590 /* Don't change the name if it's already NAME. */
2591 if (! NILP (Fstring_equal (name, f->name)))
2592 return;
2593
2594 f->name = name;
2595
2596 /* For setting the frame title, the title parameter should override
2597 the name parameter. */
2598 if (! NILP (f->title))
2599 name = f->title;
2600
2601 if (FRAME_W32_WINDOW (f))
2602 {
2603 if (STRING_MULTIBYTE (name))
2604 name = ENCODE_SYSTEM (name);
2605
2606 BLOCK_INPUT;
2607 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2608 UNBLOCK_INPUT;
2609 }
2610 }
2611
2612 /* This function should be called when the user's lisp code has
2613 specified a name for the frame; the name will override any set by the
2614 redisplay code. */
2615 void
2616 x_explicitly_set_name (f, arg, oldval)
2617 FRAME_PTR f;
2618 Lisp_Object arg, oldval;
2619 {
2620 x_set_name (f, arg, 1);
2621 }
2622
2623 /* This function should be called by Emacs redisplay code to set the
2624 name; names set this way will never override names set by the user's
2625 lisp code. */
2626 void
2627 x_implicitly_set_name (f, arg, oldval)
2628 FRAME_PTR f;
2629 Lisp_Object arg, oldval;
2630 {
2631 x_set_name (f, arg, 0);
2632 }
2633 \f
2634 /* Change the title of frame F to NAME.
2635 If NAME is nil, use the frame name as the title.
2636
2637 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2638 name; if NAME is a string, set F's name to NAME and set
2639 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2640
2641 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2642 suggesting a new name, which lisp code should override; if
2643 F->explicit_name is set, ignore the new name; otherwise, set it. */
2644
2645 void
2646 x_set_title (f, name, old_name)
2647 struct frame *f;
2648 Lisp_Object name, old_name;
2649 {
2650 /* Don't change the title if it's already NAME. */
2651 if (EQ (name, f->title))
2652 return;
2653
2654 update_mode_lines = 1;
2655
2656 f->title = name;
2657
2658 if (NILP (name))
2659 name = f->name;
2660
2661 if (FRAME_W32_WINDOW (f))
2662 {
2663 if (STRING_MULTIBYTE (name))
2664 name = ENCODE_SYSTEM (name);
2665
2666 BLOCK_INPUT;
2667 SetWindowText(FRAME_W32_WINDOW (f), XSTRING (name)->data);
2668 UNBLOCK_INPUT;
2669 }
2670 }
2671 \f
2672 void
2673 x_set_autoraise (f, arg, oldval)
2674 struct frame *f;
2675 Lisp_Object arg, oldval;
2676 {
2677 f->auto_raise = !EQ (Qnil, arg);
2678 }
2679
2680 void
2681 x_set_autolower (f, arg, oldval)
2682 struct frame *f;
2683 Lisp_Object arg, oldval;
2684 {
2685 f->auto_lower = !EQ (Qnil, arg);
2686 }
2687
2688 void
2689 x_set_unsplittable (f, arg, oldval)
2690 struct frame *f;
2691 Lisp_Object arg, oldval;
2692 {
2693 f->no_split = !NILP (arg);
2694 }
2695
2696 void
2697 x_set_vertical_scroll_bars (f, arg, oldval)
2698 struct frame *f;
2699 Lisp_Object arg, oldval;
2700 {
2701 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
2702 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
2703 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2704 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
2705 {
2706 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = NILP (arg) ?
2707 vertical_scroll_bar_none :
2708 /* Put scroll bars on the right by default, as is conventional
2709 on MS-Windows. */
2710 EQ (Qleft, arg)
2711 ? vertical_scroll_bar_left
2712 : vertical_scroll_bar_right;
2713
2714 /* We set this parameter before creating the window for the
2715 frame, so we can get the geometry right from the start.
2716 However, if the window hasn't been created yet, we shouldn't
2717 call x_set_window_size. */
2718 if (FRAME_W32_WINDOW (f))
2719 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2720 do_pending_window_change (0);
2721 }
2722 }
2723
2724 void
2725 x_set_scroll_bar_width (f, arg, oldval)
2726 struct frame *f;
2727 Lisp_Object arg, oldval;
2728 {
2729 int wid = FONT_WIDTH (f->output_data.w32->font);
2730
2731 if (NILP (arg))
2732 {
2733 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = GetSystemMetrics (SM_CXVSCROLL);
2734 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) +
2735 wid - 1) / wid;
2736 if (FRAME_W32_WINDOW (f))
2737 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2738 do_pending_window_change (0);
2739 }
2740 else if (INTEGERP (arg) && XINT (arg) > 0
2741 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
2742 {
2743 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg);
2744 FRAME_SCROLL_BAR_COLS (f) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
2745 + wid-1) / wid;
2746 if (FRAME_W32_WINDOW (f))
2747 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2748 do_pending_window_change (0);
2749 }
2750 change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
2751 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
2752 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
2753 }
2754 \f
2755 /* Subroutines of creating an frame. */
2756
2757 /* Make sure that Vx_resource_name is set to a reasonable value.
2758 Fix it up, or set it to `emacs' if it is too hopeless. */
2759
2760 static void
2761 validate_x_resource_name ()
2762 {
2763 int len = 0;
2764 /* Number of valid characters in the resource name. */
2765 int good_count = 0;
2766 /* Number of invalid characters in the resource name. */
2767 int bad_count = 0;
2768 Lisp_Object new;
2769 int i;
2770
2771 if (STRINGP (Vx_resource_name))
2772 {
2773 unsigned char *p = XSTRING (Vx_resource_name)->data;
2774 int i;
2775
2776 len = STRING_BYTES (XSTRING (Vx_resource_name));
2777
2778 /* Only letters, digits, - and _ are valid in resource names.
2779 Count the valid characters and count the invalid ones. */
2780 for (i = 0; i < len; i++)
2781 {
2782 int c = p[i];
2783 if (! ((c >= 'a' && c <= 'z')
2784 || (c >= 'A' && c <= 'Z')
2785 || (c >= '0' && c <= '9')
2786 || c == '-' || c == '_'))
2787 bad_count++;
2788 else
2789 good_count++;
2790 }
2791 }
2792 else
2793 /* Not a string => completely invalid. */
2794 bad_count = 5, good_count = 0;
2795
2796 /* If name is valid already, return. */
2797 if (bad_count == 0)
2798 return;
2799
2800 /* If name is entirely invalid, or nearly so, use `emacs'. */
2801 if (good_count == 0
2802 || (good_count == 1 && bad_count > 0))
2803 {
2804 Vx_resource_name = build_string ("emacs");
2805 return;
2806 }
2807
2808 /* Name is partly valid. Copy it and replace the invalid characters
2809 with underscores. */
2810
2811 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
2812
2813 for (i = 0; i < len; i++)
2814 {
2815 int c = XSTRING (new)->data[i];
2816 if (! ((c >= 'a' && c <= 'z')
2817 || (c >= 'A' && c <= 'Z')
2818 || (c >= '0' && c <= '9')
2819 || c == '-' || c == '_'))
2820 XSTRING (new)->data[i] = '_';
2821 }
2822 }
2823
2824
2825 extern char *x_get_string_resource ();
2826
2827 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
2828 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\
2829 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\
2830 class, where INSTANCE is the name under which Emacs was invoked, or\n\
2831 the name specified by the `-name' or `-rn' command-line arguments.\n\
2832 \n\
2833 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\
2834 class, respectively. You must specify both of them or neither.\n\
2835 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\
2836 and the class is `Emacs.CLASS.SUBCLASS'.")
2837 (attribute, class, component, subclass)
2838 Lisp_Object attribute, class, component, subclass;
2839 {
2840 register char *value;
2841 char *name_key;
2842 char *class_key;
2843
2844 CHECK_STRING (attribute, 0);
2845 CHECK_STRING (class, 0);
2846
2847 if (!NILP (component))
2848 CHECK_STRING (component, 1);
2849 if (!NILP (subclass))
2850 CHECK_STRING (subclass, 2);
2851 if (NILP (component) != NILP (subclass))
2852 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2853
2854 validate_x_resource_name ();
2855
2856 /* Allocate space for the components, the dots which separate them,
2857 and the final '\0'. Make them big enough for the worst case. */
2858 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name))
2859 + (STRINGP (component)
2860 ? STRING_BYTES (XSTRING (component)) : 0)
2861 + STRING_BYTES (XSTRING (attribute))
2862 + 3);
2863
2864 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
2865 + STRING_BYTES (XSTRING (class))
2866 + (STRINGP (subclass)
2867 ? STRING_BYTES (XSTRING (subclass)) : 0)
2868 + 3);
2869
2870 /* Start with emacs.FRAMENAME for the name (the specific one)
2871 and with `Emacs' for the class key (the general one). */
2872 strcpy (name_key, XSTRING (Vx_resource_name)->data);
2873 strcpy (class_key, EMACS_CLASS);
2874
2875 strcat (class_key, ".");
2876 strcat (class_key, XSTRING (class)->data);
2877
2878 if (!NILP (component))
2879 {
2880 strcat (class_key, ".");
2881 strcat (class_key, XSTRING (subclass)->data);
2882
2883 strcat (name_key, ".");
2884 strcat (name_key, XSTRING (component)->data);
2885 }
2886
2887 strcat (name_key, ".");
2888 strcat (name_key, XSTRING (attribute)->data);
2889
2890 value = x_get_string_resource (Qnil,
2891 name_key, class_key);
2892
2893 if (value != (char *) 0)
2894 return build_string (value);
2895 else
2896 return Qnil;
2897 }
2898
2899 /* Used when C code wants a resource value. */
2900
2901 char *
2902 x_get_resource_string (attribute, class)
2903 char *attribute, *class;
2904 {
2905 char *name_key;
2906 char *class_key;
2907 struct frame *sf = SELECTED_FRAME ();
2908
2909 /* Allocate space for the components, the dots which separate them,
2910 and the final '\0'. */
2911 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name))
2912 + strlen (attribute) + 2);
2913 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
2914 + strlen (class) + 2);
2915
2916 sprintf (name_key, "%s.%s",
2917 XSTRING (Vinvocation_name)->data,
2918 attribute);
2919 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
2920
2921 return x_get_string_resource (sf, name_key, class_key);
2922 }
2923
2924 /* Types we might convert a resource string into. */
2925 enum resource_types
2926 {
2927 RES_TYPE_NUMBER,
2928 RES_TYPE_FLOAT,
2929 RES_TYPE_BOOLEAN,
2930 RES_TYPE_STRING,
2931 RES_TYPE_SYMBOL
2932 };
2933
2934 /* Return the value of parameter PARAM.
2935
2936 First search ALIST, then Vdefault_frame_alist, then the X defaults
2937 database, using ATTRIBUTE as the attribute name and CLASS as its class.
2938
2939 Convert the resource to the type specified by desired_type.
2940
2941 If no default is specified, return Qunbound. If you call
2942 w32_get_arg, make sure you deal with Qunbound in a reasonable way,
2943 and don't let it get stored in any Lisp-visible variables! */
2944
2945 static Lisp_Object
2946 w32_get_arg (alist, param, attribute, class, type)
2947 Lisp_Object alist, param;
2948 char *attribute;
2949 char *class;
2950 enum resource_types type;
2951 {
2952 register Lisp_Object tem;
2953
2954 tem = Fassq (param, alist);
2955 if (EQ (tem, Qnil))
2956 tem = Fassq (param, Vdefault_frame_alist);
2957 if (EQ (tem, Qnil))
2958 {
2959
2960 if (attribute)
2961 {
2962 tem = Fx_get_resource (build_string (attribute),
2963 build_string (class),
2964 Qnil, Qnil);
2965
2966 if (NILP (tem))
2967 return Qunbound;
2968
2969 switch (type)
2970 {
2971 case RES_TYPE_NUMBER:
2972 return make_number (atoi (XSTRING (tem)->data));
2973
2974 case RES_TYPE_FLOAT:
2975 return make_float (atof (XSTRING (tem)->data));
2976
2977 case RES_TYPE_BOOLEAN:
2978 tem = Fdowncase (tem);
2979 if (!strcmp (XSTRING (tem)->data, "on")
2980 || !strcmp (XSTRING (tem)->data, "true"))
2981 return Qt;
2982 else
2983 return Qnil;
2984
2985 case RES_TYPE_STRING:
2986 return tem;
2987
2988 case RES_TYPE_SYMBOL:
2989 /* As a special case, we map the values `true' and `on'
2990 to Qt, and `false' and `off' to Qnil. */
2991 {
2992 Lisp_Object lower;
2993 lower = Fdowncase (tem);
2994 if (!strcmp (XSTRING (lower)->data, "on")
2995 || !strcmp (XSTRING (lower)->data, "true"))
2996 return Qt;
2997 else if (!strcmp (XSTRING (lower)->data, "off")
2998 || !strcmp (XSTRING (lower)->data, "false"))
2999 return Qnil;
3000 else
3001 return Fintern (tem, Qnil);
3002 }
3003
3004 default:
3005 abort ();
3006 }
3007 }
3008 else
3009 return Qunbound;
3010 }
3011 return Fcdr (tem);
3012 }
3013
3014 /* Record in frame F the specified or default value according to ALIST
3015 of the parameter named PROP (a Lisp symbol).
3016 If no value is specified for PROP, look for an X default for XPROP
3017 on the frame named NAME.
3018 If that is not found either, use the value DEFLT. */
3019
3020 static Lisp_Object
3021 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
3022 struct frame *f;
3023 Lisp_Object alist;
3024 Lisp_Object prop;
3025 Lisp_Object deflt;
3026 char *xprop;
3027 char *xclass;
3028 enum resource_types type;
3029 {
3030 Lisp_Object tem;
3031
3032 tem = w32_get_arg (alist, prop, xprop, xclass, type);
3033 if (EQ (tem, Qunbound))
3034 tem = deflt;
3035 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
3036 return tem;
3037 }
3038 \f
3039 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
3040 "Parse an X-style geometry string STRING.\n\
3041 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\
3042 The properties returned may include `top', `left', `height', and `width'.\n\
3043 The value of `left' or `top' may be an integer,\n\
3044 or a list (+ N) meaning N pixels relative to top/left corner,\n\
3045 or a list (- N) meaning -N pixels relative to bottom/right corner.")
3046 (string)
3047 Lisp_Object string;
3048 {
3049 int geometry, x, y;
3050 unsigned int width, height;
3051 Lisp_Object result;
3052
3053 CHECK_STRING (string, 0);
3054
3055 geometry = XParseGeometry ((char *) XSTRING (string)->data,
3056 &x, &y, &width, &height);
3057
3058 result = Qnil;
3059 if (geometry & XValue)
3060 {
3061 Lisp_Object element;
3062
3063 if (x >= 0 && (geometry & XNegative))
3064 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
3065 else if (x < 0 && ! (geometry & XNegative))
3066 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
3067 else
3068 element = Fcons (Qleft, make_number (x));
3069 result = Fcons (element, result);
3070 }
3071
3072 if (geometry & YValue)
3073 {
3074 Lisp_Object element;
3075
3076 if (y >= 0 && (geometry & YNegative))
3077 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3078 else if (y < 0 && ! (geometry & YNegative))
3079 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3080 else
3081 element = Fcons (Qtop, make_number (y));
3082 result = Fcons (element, result);
3083 }
3084
3085 if (geometry & WidthValue)
3086 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3087 if (geometry & HeightValue)
3088 result = Fcons (Fcons (Qheight, make_number (height)), result);
3089
3090 return result;
3091 }
3092
3093 /* Calculate the desired size and position of this window,
3094 and return the flags saying which aspects were specified.
3095
3096 This function does not make the coordinates positive. */
3097
3098 #define DEFAULT_ROWS 40
3099 #define DEFAULT_COLS 80
3100
3101 static int
3102 x_figure_window_size (f, parms)
3103 struct frame *f;
3104 Lisp_Object parms;
3105 {
3106 register Lisp_Object tem0, tem1, tem2;
3107 long window_prompting = 0;
3108
3109 /* Default values if we fall through.
3110 Actually, if that happens we should get
3111 window manager prompting. */
3112 SET_FRAME_WIDTH (f, DEFAULT_COLS);
3113 f->height = DEFAULT_ROWS;
3114 /* Window managers expect that if program-specified
3115 positions are not (0,0), they're intentional, not defaults. */
3116 f->output_data.w32->top_pos = 0;
3117 f->output_data.w32->left_pos = 0;
3118
3119 tem0 = w32_get_arg (parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3120 tem1 = w32_get_arg (parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3121 tem2 = w32_get_arg (parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3122 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3123 {
3124 if (!EQ (tem0, Qunbound))
3125 {
3126 CHECK_NUMBER (tem0, 0);
3127 f->height = XINT (tem0);
3128 }
3129 if (!EQ (tem1, Qunbound))
3130 {
3131 CHECK_NUMBER (tem1, 0);
3132 SET_FRAME_WIDTH (f, XINT (tem1));
3133 }
3134 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3135 window_prompting |= USSize;
3136 else
3137 window_prompting |= PSize;
3138 }
3139
3140 f->output_data.w32->vertical_scroll_bar_extra
3141 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3142 ? 0
3143 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
3144 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
3145 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.w32->font)));
3146 f->output_data.w32->flags_areas_extra
3147 = FRAME_FLAGS_AREA_WIDTH (f);
3148 f->output_data.w32->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3149 f->output_data.w32->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3150
3151 tem0 = w32_get_arg (parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3152 tem1 = w32_get_arg (parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3153 tem2 = w32_get_arg (parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3154 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3155 {
3156 if (EQ (tem0, Qminus))
3157 {
3158 f->output_data.w32->top_pos = 0;
3159 window_prompting |= YNegative;
3160 }
3161 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3162 && CONSP (XCDR (tem0))
3163 && INTEGERP (XCAR (XCDR (tem0))))
3164 {
3165 f->output_data.w32->top_pos = - XINT (XCAR (XCDR (tem0)));
3166 window_prompting |= YNegative;
3167 }
3168 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3169 && CONSP (XCDR (tem0))
3170 && INTEGERP (XCAR (XCDR (tem0))))
3171 {
3172 f->output_data.w32->top_pos = XINT (XCAR (XCDR (tem0)));
3173 }
3174 else if (EQ (tem0, Qunbound))
3175 f->output_data.w32->top_pos = 0;
3176 else
3177 {
3178 CHECK_NUMBER (tem0, 0);
3179 f->output_data.w32->top_pos = XINT (tem0);
3180 if (f->output_data.w32->top_pos < 0)
3181 window_prompting |= YNegative;
3182 }
3183
3184 if (EQ (tem1, Qminus))
3185 {
3186 f->output_data.w32->left_pos = 0;
3187 window_prompting |= XNegative;
3188 }
3189 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3190 && CONSP (XCDR (tem1))
3191 && INTEGERP (XCAR (XCDR (tem1))))
3192 {
3193 f->output_data.w32->left_pos = - XINT (XCAR (XCDR (tem1)));
3194 window_prompting |= XNegative;
3195 }
3196 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3197 && CONSP (XCDR (tem1))
3198 && INTEGERP (XCAR (XCDR (tem1))))
3199 {
3200 f->output_data.w32->left_pos = XINT (XCAR (XCDR (tem1)));
3201 }
3202 else if (EQ (tem1, Qunbound))
3203 f->output_data.w32->left_pos = 0;
3204 else
3205 {
3206 CHECK_NUMBER (tem1, 0);
3207 f->output_data.w32->left_pos = XINT (tem1);
3208 if (f->output_data.w32->left_pos < 0)
3209 window_prompting |= XNegative;
3210 }
3211
3212 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3213 window_prompting |= USPosition;
3214 else
3215 window_prompting |= PPosition;
3216 }
3217
3218 return window_prompting;
3219 }
3220
3221 \f
3222
3223 extern LRESULT CALLBACK w32_wnd_proc ();
3224
3225 BOOL
3226 w32_init_class (hinst)
3227 HINSTANCE hinst;
3228 {
3229 WNDCLASS wc;
3230
3231 wc.style = CS_HREDRAW | CS_VREDRAW;
3232 wc.lpfnWndProc = (WNDPROC) w32_wnd_proc;
3233 wc.cbClsExtra = 0;
3234 wc.cbWndExtra = WND_EXTRA_BYTES;
3235 wc.hInstance = hinst;
3236 wc.hIcon = LoadIcon (hinst, EMACS_CLASS);
3237 wc.hCursor = LoadCursor (NULL, IDC_ARROW);
3238 wc.hbrBackground = NULL; /* GetStockObject (WHITE_BRUSH); */
3239 wc.lpszMenuName = NULL;
3240 wc.lpszClassName = EMACS_CLASS;
3241
3242 return (RegisterClass (&wc));
3243 }
3244
3245 HWND
3246 w32_createscrollbar (f, bar)
3247 struct frame *f;
3248 struct scroll_bar * bar;
3249 {
3250 return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
3251 /* Position and size of scroll bar. */
3252 XINT(bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3253 XINT(bar->top),
3254 XINT(bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3255 XINT(bar->height),
3256 FRAME_W32_WINDOW (f),
3257 NULL,
3258 hinst,
3259 NULL));
3260 }
3261
3262 void
3263 w32_createwindow (f)
3264 struct frame *f;
3265 {
3266 HWND hwnd;
3267 RECT rect;
3268
3269 rect.left = rect.top = 0;
3270 rect.right = PIXEL_WIDTH (f);
3271 rect.bottom = PIXEL_HEIGHT (f);
3272
3273 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
3274 FRAME_EXTERNAL_MENU_BAR (f));
3275
3276 /* Do first time app init */
3277
3278 if (!hprevinst)
3279 {
3280 w32_init_class (hinst);
3281 }
3282
3283 FRAME_W32_WINDOW (f) = hwnd
3284 = CreateWindow (EMACS_CLASS,
3285 f->namebuf,
3286 f->output_data.w32->dwStyle | WS_CLIPCHILDREN,
3287 f->output_data.w32->left_pos,
3288 f->output_data.w32->top_pos,
3289 rect.right - rect.left,
3290 rect.bottom - rect.top,
3291 NULL,
3292 NULL,
3293 hinst,
3294 NULL);
3295
3296 if (hwnd)
3297 {
3298 SetWindowLong (hwnd, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
3299 SetWindowLong (hwnd, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
3300 SetWindowLong (hwnd, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
3301 SetWindowLong (hwnd, WND_SCROLLBAR_INDEX, f->output_data.w32->vertical_scroll_bar_extra);
3302 SetWindowLong (hwnd, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
3303
3304 /* Enable drag-n-drop. */
3305 DragAcceptFiles (hwnd, TRUE);
3306
3307 /* Do this to discard the default setting specified by our parent. */
3308 ShowWindow (hwnd, SW_HIDE);
3309 }
3310 }
3311
3312 void
3313 my_post_msg (wmsg, hwnd, msg, wParam, lParam)
3314 W32Msg * wmsg;
3315 HWND hwnd;
3316 UINT msg;
3317 WPARAM wParam;
3318 LPARAM lParam;
3319 {
3320 wmsg->msg.hwnd = hwnd;
3321 wmsg->msg.message = msg;
3322 wmsg->msg.wParam = wParam;
3323 wmsg->msg.lParam = lParam;
3324 wmsg->msg.time = GetMessageTime ();
3325
3326 post_msg (wmsg);
3327 }
3328
3329 /* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
3330 between left and right keys as advertised. We test for this
3331 support dynamically, and set a flag when the support is absent. If
3332 absent, we keep track of the left and right control and alt keys
3333 ourselves. This is particularly necessary on keyboards that rely
3334 upon the AltGr key, which is represented as having the left control
3335 and right alt keys pressed. For these keyboards, we need to know
3336 when the left alt key has been pressed in addition to the AltGr key
3337 so that we can properly support M-AltGr-key sequences (such as M-@
3338 on Swedish keyboards). */
3339
3340 #define EMACS_LCONTROL 0
3341 #define EMACS_RCONTROL 1
3342 #define EMACS_LMENU 2
3343 #define EMACS_RMENU 3
3344
3345 static int modifiers[4];
3346 static int modifiers_recorded;
3347 static int modifier_key_support_tested;
3348
3349 static void
3350 test_modifier_support (unsigned int wparam)
3351 {
3352 unsigned int l, r;
3353
3354 if (wparam != VK_CONTROL && wparam != VK_MENU)
3355 return;
3356 if (wparam == VK_CONTROL)
3357 {
3358 l = VK_LCONTROL;
3359 r = VK_RCONTROL;
3360 }
3361 else
3362 {
3363 l = VK_LMENU;
3364 r = VK_RMENU;
3365 }
3366 if (!(GetKeyState (l) & 0x8000) && !(GetKeyState (r) & 0x8000))
3367 modifiers_recorded = 1;
3368 else
3369 modifiers_recorded = 0;
3370 modifier_key_support_tested = 1;
3371 }
3372
3373 static void
3374 record_keydown (unsigned int wparam, unsigned int lparam)
3375 {
3376 int i;
3377
3378 if (!modifier_key_support_tested)
3379 test_modifier_support (wparam);
3380
3381 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3382 return;
3383
3384 if (wparam == VK_CONTROL)
3385 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3386 else
3387 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3388
3389 modifiers[i] = 1;
3390 }
3391
3392 static void
3393 record_keyup (unsigned int wparam, unsigned int lparam)
3394 {
3395 int i;
3396
3397 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
3398 return;
3399
3400 if (wparam == VK_CONTROL)
3401 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
3402 else
3403 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
3404
3405 modifiers[i] = 0;
3406 }
3407
3408 /* Emacs can lose focus while a modifier key has been pressed. When
3409 it regains focus, be conservative and clear all modifiers since
3410 we cannot reconstruct the left and right modifier state. */
3411 static void
3412 reset_modifiers ()
3413 {
3414 SHORT ctrl, alt;
3415
3416 if (GetFocus () == NULL)
3417 /* Emacs doesn't have keyboard focus. Do nothing. */
3418 return;
3419
3420 ctrl = GetAsyncKeyState (VK_CONTROL);
3421 alt = GetAsyncKeyState (VK_MENU);
3422
3423 if (!(ctrl & 0x08000))
3424 /* Clear any recorded control modifier state. */
3425 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3426
3427 if (!(alt & 0x08000))
3428 /* Clear any recorded alt modifier state. */
3429 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3430
3431 /* Update the state of all modifier keys, because modifiers used in
3432 hot-key combinations can get stuck on if Emacs loses focus as a
3433 result of a hot-key being pressed. */
3434 {
3435 BYTE keystate[256];
3436
3437 #define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
3438
3439 GetKeyboardState (keystate);
3440 keystate[VK_SHIFT] = CURRENT_STATE (VK_SHIFT);
3441 keystate[VK_CONTROL] = CURRENT_STATE (VK_CONTROL);
3442 keystate[VK_LCONTROL] = CURRENT_STATE (VK_LCONTROL);
3443 keystate[VK_RCONTROL] = CURRENT_STATE (VK_RCONTROL);
3444 keystate[VK_MENU] = CURRENT_STATE (VK_MENU);
3445 keystate[VK_LMENU] = CURRENT_STATE (VK_LMENU);
3446 keystate[VK_RMENU] = CURRENT_STATE (VK_RMENU);
3447 keystate[VK_LWIN] = CURRENT_STATE (VK_LWIN);
3448 keystate[VK_RWIN] = CURRENT_STATE (VK_RWIN);
3449 keystate[VK_APPS] = CURRENT_STATE (VK_APPS);
3450 SetKeyboardState (keystate);
3451 }
3452 }
3453
3454 /* Synchronize modifier state with what is reported with the current
3455 keystroke. Even if we cannot distinguish between left and right
3456 modifier keys, we know that, if no modifiers are set, then neither
3457 the left or right modifier should be set. */
3458 static void
3459 sync_modifiers ()
3460 {
3461 if (!modifiers_recorded)
3462 return;
3463
3464 if (!(GetKeyState (VK_CONTROL) & 0x8000))
3465 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
3466
3467 if (!(GetKeyState (VK_MENU) & 0x8000))
3468 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
3469 }
3470
3471 static int
3472 modifier_set (int vkey)
3473 {
3474 if (vkey == VK_CAPITAL || vkey == VK_SCROLL)
3475 return (GetKeyState (vkey) & 0x1);
3476 if (!modifiers_recorded)
3477 return (GetKeyState (vkey) & 0x8000);
3478
3479 switch (vkey)
3480 {
3481 case VK_LCONTROL:
3482 return modifiers[EMACS_LCONTROL];
3483 case VK_RCONTROL:
3484 return modifiers[EMACS_RCONTROL];
3485 case VK_LMENU:
3486 return modifiers[EMACS_LMENU];
3487 case VK_RMENU:
3488 return modifiers[EMACS_RMENU];
3489 }
3490 return (GetKeyState (vkey) & 0x8000);
3491 }
3492
3493 /* Convert between the modifier bits W32 uses and the modifier bits
3494 Emacs uses. */
3495
3496 unsigned int
3497 w32_key_to_modifier (int key)
3498 {
3499 Lisp_Object key_mapping;
3500
3501 switch (key)
3502 {
3503 case VK_LWIN:
3504 key_mapping = Vw32_lwindow_modifier;
3505 break;
3506 case VK_RWIN:
3507 key_mapping = Vw32_rwindow_modifier;
3508 break;
3509 case VK_APPS:
3510 key_mapping = Vw32_apps_modifier;
3511 break;
3512 case VK_SCROLL:
3513 key_mapping = Vw32_scroll_lock_modifier;
3514 break;
3515 default:
3516 key_mapping = Qnil;
3517 }
3518
3519 /* NB. This code runs in the input thread, asychronously to the lisp
3520 thread, so we must be careful to ensure access to lisp data is
3521 thread-safe. The following code is safe because the modifier
3522 variable values are updated atomically from lisp and symbols are
3523 not relocated by GC. Also, we don't have to worry about seeing GC
3524 markbits here. */
3525 if (EQ (key_mapping, Qhyper))
3526 return hyper_modifier;
3527 if (EQ (key_mapping, Qsuper))
3528 return super_modifier;
3529 if (EQ (key_mapping, Qmeta))
3530 return meta_modifier;
3531 if (EQ (key_mapping, Qalt))
3532 return alt_modifier;
3533 if (EQ (key_mapping, Qctrl))
3534 return ctrl_modifier;
3535 if (EQ (key_mapping, Qcontrol)) /* synonym for ctrl */
3536 return ctrl_modifier;
3537 if (EQ (key_mapping, Qshift))
3538 return shift_modifier;
3539
3540 /* Don't generate any modifier if not explicitly requested. */
3541 return 0;
3542 }
3543
3544 unsigned int
3545 w32_get_modifiers ()
3546 {
3547 return ((modifier_set (VK_SHIFT) ? shift_modifier : 0) |
3548 (modifier_set (VK_CONTROL) ? ctrl_modifier : 0) |
3549 (modifier_set (VK_LWIN) ? w32_key_to_modifier (VK_LWIN) : 0) |
3550 (modifier_set (VK_RWIN) ? w32_key_to_modifier (VK_RWIN) : 0) |
3551 (modifier_set (VK_APPS) ? w32_key_to_modifier (VK_APPS) : 0) |
3552 (modifier_set (VK_SCROLL) ? w32_key_to_modifier (VK_SCROLL) : 0) |
3553 (modifier_set (VK_MENU) ?
3554 ((NILP (Vw32_alt_is_meta)) ? alt_modifier : meta_modifier) : 0));
3555 }
3556
3557 /* We map the VK_* modifiers into console modifier constants
3558 so that we can use the same routines to handle both console
3559 and window input. */
3560
3561 static int
3562 construct_console_modifiers ()
3563 {
3564 int mods;
3565
3566 mods = 0;
3567 mods |= (modifier_set (VK_SHIFT)) ? SHIFT_PRESSED : 0;
3568 mods |= (modifier_set (VK_CAPITAL)) ? CAPSLOCK_ON : 0;
3569 mods |= (modifier_set (VK_SCROLL)) ? SCROLLLOCK_ON : 0;
3570 mods |= (modifier_set (VK_NUMLOCK)) ? NUMLOCK_ON : 0;
3571 mods |= (modifier_set (VK_LCONTROL)) ? LEFT_CTRL_PRESSED : 0;
3572 mods |= (modifier_set (VK_RCONTROL)) ? RIGHT_CTRL_PRESSED : 0;
3573 mods |= (modifier_set (VK_LMENU)) ? LEFT_ALT_PRESSED : 0;
3574 mods |= (modifier_set (VK_RMENU)) ? RIGHT_ALT_PRESSED : 0;
3575 mods |= (modifier_set (VK_LWIN)) ? LEFT_WIN_PRESSED : 0;
3576 mods |= (modifier_set (VK_RWIN)) ? RIGHT_WIN_PRESSED : 0;
3577 mods |= (modifier_set (VK_APPS)) ? APPS_PRESSED : 0;
3578
3579 return mods;
3580 }
3581
3582 static int
3583 w32_get_key_modifiers (unsigned int wparam, unsigned int lparam)
3584 {
3585 int mods;
3586
3587 /* Convert to emacs modifiers. */
3588 mods = w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam);
3589
3590 return mods;
3591 }
3592
3593 unsigned int
3594 map_keypad_keys (unsigned int virt_key, unsigned int extended)
3595 {
3596 if (virt_key < VK_CLEAR || virt_key > VK_DELETE)
3597 return virt_key;
3598
3599 if (virt_key == VK_RETURN)
3600 return (extended ? VK_NUMPAD_ENTER : VK_RETURN);
3601
3602 if (virt_key >= VK_PRIOR && virt_key <= VK_DOWN)
3603 return (!extended ? (VK_NUMPAD_PRIOR + (virt_key - VK_PRIOR)) : virt_key);
3604
3605 if (virt_key == VK_INSERT || virt_key == VK_DELETE)
3606 return (!extended ? (VK_NUMPAD_INSERT + (virt_key - VK_INSERT)) : virt_key);
3607
3608 if (virt_key == VK_CLEAR)
3609 return (!extended ? VK_NUMPAD_CLEAR : virt_key);
3610
3611 return virt_key;
3612 }
3613
3614 /* List of special key combinations which w32 would normally capture,
3615 but emacs should grab instead. Not directly visible to lisp, to
3616 simplify synchronization. Each item is an integer encoding a virtual
3617 key code and modifier combination to capture. */
3618 Lisp_Object w32_grabbed_keys;
3619
3620 #define HOTKEY(vk,mods) make_number (((vk) & 255) | ((mods) << 8))
3621 #define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
3622 #define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
3623 #define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
3624
3625 /* Register hot-keys for reserved key combinations when Emacs has
3626 keyboard focus, since this is the only way Emacs can receive key
3627 combinations like Alt-Tab which are used by the system. */
3628
3629 static void
3630 register_hot_keys (hwnd)
3631 HWND hwnd;
3632 {
3633 Lisp_Object keylist;
3634
3635 /* Use GC_CONSP, since we are called asynchronously. */
3636 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3637 {
3638 Lisp_Object key = XCAR (keylist);
3639
3640 /* Deleted entries get set to nil. */
3641 if (!INTEGERP (key))
3642 continue;
3643
3644 RegisterHotKey (hwnd, HOTKEY_ID (key),
3645 HOTKEY_MODIFIERS (key), HOTKEY_VK_CODE (key));
3646 }
3647 }
3648
3649 static void
3650 unregister_hot_keys (hwnd)
3651 HWND hwnd;
3652 {
3653 Lisp_Object keylist;
3654
3655 /* Use GC_CONSP, since we are called asynchronously. */
3656 for (keylist = w32_grabbed_keys; GC_CONSP (keylist); keylist = XCDR (keylist))
3657 {
3658 Lisp_Object key = XCAR (keylist);
3659
3660 if (!INTEGERP (key))
3661 continue;
3662
3663 UnregisterHotKey (hwnd, HOTKEY_ID (key));
3664 }
3665 }
3666
3667 /* Main message dispatch loop. */
3668
3669 static void
3670 w32_msg_pump (deferred_msg * msg_buf)
3671 {
3672 MSG msg;
3673 int result;
3674 HWND focus_window;
3675
3676 msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
3677
3678 while (GetMessage (&msg, NULL, 0, 0))
3679 {
3680 if (msg.hwnd == NULL)
3681 {
3682 switch (msg.message)
3683 {
3684 case WM_NULL:
3685 /* Produced by complete_deferred_msg; just ignore. */
3686 break;
3687 case WM_EMACS_CREATEWINDOW:
3688 w32_createwindow ((struct frame *) msg.wParam);
3689 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3690 abort ();
3691 break;
3692 case WM_EMACS_SETLOCALE:
3693 SetThreadLocale (msg.wParam);
3694 /* Reply is not expected. */
3695 break;
3696 case WM_EMACS_SETKEYBOARDLAYOUT:
3697 result = (int) ActivateKeyboardLayout ((HKL) msg.wParam, 0);
3698 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3699 result, 0))
3700 abort ();
3701 break;
3702 case WM_EMACS_REGISTER_HOT_KEY:
3703 focus_window = GetFocus ();
3704 if (focus_window != NULL)
3705 RegisterHotKey (focus_window,
3706 HOTKEY_ID (msg.wParam),
3707 HOTKEY_MODIFIERS (msg.wParam),
3708 HOTKEY_VK_CODE (msg.wParam));
3709 /* Reply is not expected. */
3710 break;
3711 case WM_EMACS_UNREGISTER_HOT_KEY:
3712 focus_window = GetFocus ();
3713 if (focus_window != NULL)
3714 UnregisterHotKey (focus_window, HOTKEY_ID (msg.wParam));
3715 /* Mark item as erased. NB: this code must be
3716 thread-safe. The next line is okay because the cons
3717 cell is never made into garbage and is not relocated by
3718 GC. */
3719 XCAR ((Lisp_Object) msg.lParam) = Qnil;
3720 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3721 abort ();
3722 break;
3723 case WM_EMACS_TOGGLE_LOCK_KEY:
3724 {
3725 int vk_code = (int) msg.wParam;
3726 int cur_state = (GetKeyState (vk_code) & 1);
3727 Lisp_Object new_state = (Lisp_Object) msg.lParam;
3728
3729 /* NB: This code must be thread-safe. It is safe to
3730 call NILP because symbols are not relocated by GC,
3731 and pointer here is not touched by GC (so the markbit
3732 can't be set). Numbers are safe because they are
3733 immediate values. */
3734 if (NILP (new_state)
3735 || (NUMBERP (new_state)
3736 && (XUINT (new_state)) & 1 != cur_state))
3737 {
3738 one_w32_display_info.faked_key = vk_code;
3739
3740 keybd_event ((BYTE) vk_code,
3741 (BYTE) MapVirtualKey (vk_code, 0),
3742 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3743 keybd_event ((BYTE) vk_code,
3744 (BYTE) MapVirtualKey (vk_code, 0),
3745 KEYEVENTF_EXTENDEDKEY | 0, 0);
3746 keybd_event ((BYTE) vk_code,
3747 (BYTE) MapVirtualKey (vk_code, 0),
3748 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3749 cur_state = !cur_state;
3750 }
3751 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
3752 cur_state, 0))
3753 abort ();
3754 }
3755 break;
3756 default:
3757 DebPrint (("msg %x not expected by w32_msg_pump\n", msg.message));
3758 }
3759 }
3760 else
3761 {
3762 DispatchMessage (&msg);
3763 }
3764
3765 /* Exit nested loop when our deferred message has completed. */
3766 if (msg_buf->completed)
3767 break;
3768 }
3769 }
3770
3771 deferred_msg * deferred_msg_head;
3772
3773 static deferred_msg *
3774 find_deferred_msg (HWND hwnd, UINT msg)
3775 {
3776 deferred_msg * item;
3777
3778 /* Don't actually need synchronization for read access, since
3779 modification of single pointer is always atomic. */
3780 /* enter_crit (); */
3781
3782 for (item = deferred_msg_head; item != NULL; item = item->next)
3783 if (item->w32msg.msg.hwnd == hwnd
3784 && item->w32msg.msg.message == msg)
3785 break;
3786
3787 /* leave_crit (); */
3788
3789 return item;
3790 }
3791
3792 static LRESULT
3793 send_deferred_msg (deferred_msg * msg_buf,
3794 HWND hwnd,
3795 UINT msg,
3796 WPARAM wParam,
3797 LPARAM lParam)
3798 {
3799 /* Only input thread can send deferred messages. */
3800 if (GetCurrentThreadId () != dwWindowsThreadId)
3801 abort ();
3802
3803 /* It is an error to send a message that is already deferred. */
3804 if (find_deferred_msg (hwnd, msg) != NULL)
3805 abort ();
3806
3807 /* Enforced synchronization is not needed because this is the only
3808 function that alters deferred_msg_head, and the following critical
3809 section is guaranteed to only be serially reentered (since only the
3810 input thread can call us). */
3811
3812 /* enter_crit (); */
3813
3814 msg_buf->completed = 0;
3815 msg_buf->next = deferred_msg_head;
3816 deferred_msg_head = msg_buf;
3817 my_post_msg (&msg_buf->w32msg, hwnd, msg, wParam, lParam);
3818
3819 /* leave_crit (); */
3820
3821 /* Start a new nested message loop to process other messages until
3822 this one is completed. */
3823 w32_msg_pump (msg_buf);
3824
3825 deferred_msg_head = msg_buf->next;
3826
3827 return msg_buf->result;
3828 }
3829
3830 void
3831 complete_deferred_msg (HWND hwnd, UINT msg, LRESULT result)
3832 {
3833 deferred_msg * msg_buf = find_deferred_msg (hwnd, msg);
3834
3835 if (msg_buf == NULL)
3836 /* Message may have been cancelled, so don't abort(). */
3837 return;
3838
3839 msg_buf->result = result;
3840 msg_buf->completed = 1;
3841
3842 /* Ensure input thread is woken so it notices the completion. */
3843 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
3844 }
3845
3846 void
3847 cancel_all_deferred_msgs ()
3848 {
3849 deferred_msg * item;
3850
3851 /* Don't actually need synchronization for read access, since
3852 modification of single pointer is always atomic. */
3853 /* enter_crit (); */
3854
3855 for (item = deferred_msg_head; item != NULL; item = item->next)
3856 {
3857 item->result = 0;
3858 item->completed = 1;
3859 }
3860
3861 /* leave_crit (); */
3862
3863 /* Ensure input thread is woken so it notices the completion. */
3864 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
3865 }
3866
3867 DWORD
3868 w32_msg_worker (dw)
3869 DWORD dw;
3870 {
3871 MSG msg;
3872 deferred_msg dummy_buf;
3873
3874 /* Ensure our message queue is created */
3875
3876 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
3877
3878 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
3879 abort ();
3880
3881 memset (&dummy_buf, 0, sizeof (dummy_buf));
3882 dummy_buf.w32msg.msg.hwnd = NULL;
3883 dummy_buf.w32msg.msg.message = WM_NULL;
3884
3885 /* This is the inital message loop which should only exit when the
3886 application quits. */
3887 w32_msg_pump (&dummy_buf);
3888
3889 return 0;
3890 }
3891
3892 static void
3893 post_character_message (hwnd, msg, wParam, lParam, modifiers)
3894 HWND hwnd;
3895 UINT msg;
3896 WPARAM wParam;
3897 LPARAM lParam;
3898 DWORD modifiers;
3899
3900 {
3901 W32Msg wmsg;
3902
3903 wmsg.dwModifiers = modifiers;
3904
3905 /* Detect quit_char and set quit-flag directly. Note that we
3906 still need to post a message to ensure the main thread will be
3907 woken up if blocked in sys_select(), but we do NOT want to post
3908 the quit_char message itself (because it will usually be as if
3909 the user had typed quit_char twice). Instead, we post a dummy
3910 message that has no particular effect. */
3911 {
3912 int c = wParam;
3913 if (isalpha (c) && wmsg.dwModifiers == ctrl_modifier)
3914 c = make_ctrl_char (c) & 0377;
3915 if (c == quit_char
3916 || (wmsg.dwModifiers == 0 &&
3917 XFASTINT (Vw32_quit_key) && wParam == XFASTINT (Vw32_quit_key)))
3918 {
3919 Vquit_flag = Qt;
3920
3921 /* The choice of message is somewhat arbitrary, as long as
3922 the main thread handler just ignores it. */
3923 msg = WM_NULL;
3924
3925 /* Interrupt any blocking system calls. */
3926 signal_quit ();
3927
3928 /* As a safety precaution, forcibly complete any deferred
3929 messages. This is a kludge, but I don't see any particularly
3930 clean way to handle the situation where a deferred message is
3931 "dropped" in the lisp thread, and will thus never be
3932 completed, eg. by the user trying to activate the menubar
3933 when the lisp thread is busy, and then typing C-g when the
3934 menubar doesn't open promptly (with the result that the
3935 menubar never responds at all because the deferred
3936 WM_INITMENU message is never completed). Another problem
3937 situation is when the lisp thread calls SendMessage (to send
3938 a window manager command) when a message has been deferred;
3939 the lisp thread gets blocked indefinitely waiting for the
3940 deferred message to be completed, which itself is waiting for
3941 the lisp thread to respond.
3942
3943 Note that we don't want to block the input thread waiting for
3944 a reponse from the lisp thread (although that would at least
3945 solve the deadlock problem above), because we want to be able
3946 to receive C-g to interrupt the lisp thread. */
3947 cancel_all_deferred_msgs ();
3948 }
3949 }
3950
3951 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3952 }
3953
3954 /* Main window procedure */
3955
3956 LRESULT CALLBACK
3957 w32_wnd_proc (hwnd, msg, wParam, lParam)
3958 HWND hwnd;
3959 UINT msg;
3960 WPARAM wParam;
3961 LPARAM lParam;
3962 {
3963 struct frame *f;
3964 struct w32_display_info *dpyinfo = &one_w32_display_info;
3965 W32Msg wmsg;
3966 int windows_translate;
3967 int key;
3968
3969 /* Note that it is okay to call x_window_to_frame, even though we are
3970 not running in the main lisp thread, because frame deletion
3971 requires the lisp thread to synchronize with this thread. Thus, if
3972 a frame struct is returned, it can be used without concern that the
3973 lisp thread might make it disappear while we are using it.
3974
3975 NB. Walking the frame list in this thread is safe (as long as
3976 writes of Lisp_Object slots are atomic, which they are on Windows).
3977 Although delete-frame can destructively modify the frame list while
3978 we are walking it, a garbage collection cannot occur until after
3979 delete-frame has synchronized with this thread.
3980
3981 It is also safe to use functions that make GDI calls, such as
3982 w32_clear_rect, because these functions must obtain a DC handle
3983 from the frame struct using get_frame_dc which is thread-aware. */
3984
3985 switch (msg)
3986 {
3987 case WM_ERASEBKGND:
3988 f = x_window_to_frame (dpyinfo, hwnd);
3989 if (f)
3990 {
3991 HDC hdc = get_frame_dc (f);
3992 GetUpdateRect (hwnd, &wmsg.rect, FALSE);
3993 w32_clear_rect (f, hdc, &wmsg.rect);
3994 release_frame_dc (f, hdc);
3995
3996 #if defined (W32_DEBUG_DISPLAY)
3997 DebPrint (("WM_ERASEBKGND: erasing %d,%d-%d,%d\n",
3998 wmsg.rect.left, wmsg.rect.top, wmsg.rect.right,
3999 wmsg.rect.bottom));
4000 #endif /* W32_DEBUG_DISPLAY */
4001 }
4002 return 1;
4003 case WM_PALETTECHANGED:
4004 /* ignore our own changes */
4005 if ((HWND)wParam != hwnd)
4006 {
4007 f = x_window_to_frame (dpyinfo, hwnd);
4008 if (f)
4009 /* get_frame_dc will realize our palette and force all
4010 frames to be redrawn if needed. */
4011 release_frame_dc (f, get_frame_dc (f));
4012 }
4013 return 0;
4014 case WM_PAINT:
4015 {
4016 PAINTSTRUCT paintStruct;
4017 RECT update_rect;
4018
4019 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
4020 fails. Apparently this can happen under some
4021 circumstances. */
4022 if (!w32_strict_painting || GetUpdateRect (hwnd, &update_rect, FALSE))
4023 {
4024 enter_crit ();
4025 BeginPaint (hwnd, &paintStruct);
4026
4027 if (w32_strict_painting)
4028 /* The rectangles returned by GetUpdateRect and BeginPaint
4029 do not always match. GetUpdateRect seems to be the
4030 more reliable of the two. */
4031 wmsg.rect = update_rect;
4032 else
4033 wmsg.rect = paintStruct.rcPaint;
4034
4035 #if defined (W32_DEBUG_DISPLAY)
4036 DebPrint (("WM_PAINT: painting %d,%d-%d,%d\n", wmsg.rect.left,
4037 wmsg.rect.top, wmsg.rect.right, wmsg.rect.bottom));
4038 DebPrint (("WM_PAINT: update region is %d,%d-%d,%d\n",
4039 update_rect.left, update_rect.top,
4040 update_rect.right, update_rect.bottom));
4041 #endif
4042 EndPaint (hwnd, &paintStruct);
4043 leave_crit ();
4044
4045 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4046
4047 return 0;
4048 }
4049
4050 /* If GetUpdateRect returns 0 (meaning there is no update
4051 region), assume the whole window needs to be repainted. */
4052 GetClientRect(hwnd, &wmsg.rect);
4053 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4054 return 0;
4055 }
4056
4057 case WM_INPUTLANGCHANGE:
4058 /* Inform lisp thread of keyboard layout changes. */
4059 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4060
4061 /* Clear dead keys in the keyboard state; for simplicity only
4062 preserve modifier key states. */
4063 {
4064 int i;
4065 BYTE keystate[256];
4066
4067 GetKeyboardState (keystate);
4068 for (i = 0; i < 256; i++)
4069 if (1
4070 && i != VK_SHIFT
4071 && i != VK_LSHIFT
4072 && i != VK_RSHIFT
4073 && i != VK_CAPITAL
4074 && i != VK_NUMLOCK
4075 && i != VK_SCROLL
4076 && i != VK_CONTROL
4077 && i != VK_LCONTROL
4078 && i != VK_RCONTROL
4079 && i != VK_MENU
4080 && i != VK_LMENU
4081 && i != VK_RMENU
4082 && i != VK_LWIN
4083 && i != VK_RWIN)
4084 keystate[i] = 0;
4085 SetKeyboardState (keystate);
4086 }
4087 goto dflt;
4088
4089 case WM_HOTKEY:
4090 /* Synchronize hot keys with normal input. */
4091 PostMessage (hwnd, WM_KEYDOWN, HIWORD (lParam), 0);
4092 return (0);
4093
4094 case WM_KEYUP:
4095 case WM_SYSKEYUP:
4096 record_keyup (wParam, lParam);
4097 goto dflt;
4098
4099 case WM_KEYDOWN:
4100 case WM_SYSKEYDOWN:
4101 /* Ignore keystrokes we fake ourself; see below. */
4102 if (dpyinfo->faked_key == wParam)
4103 {
4104 dpyinfo->faked_key = 0;
4105 /* Make sure TranslateMessage sees them though (as long as
4106 they don't produce WM_CHAR messages). This ensures that
4107 indicator lights are toggled promptly on Windows 9x, for
4108 example. */
4109 if (lispy_function_keys[wParam] != 0)
4110 {
4111 windows_translate = 1;
4112 goto translate;
4113 }
4114 return 0;
4115 }
4116
4117 /* Synchronize modifiers with current keystroke. */
4118 sync_modifiers ();
4119 record_keydown (wParam, lParam);
4120 wParam = map_keypad_keys (wParam, (lParam & 0x1000000L) != 0);
4121
4122 windows_translate = 0;
4123
4124 switch (wParam)
4125 {
4126 case VK_LWIN:
4127 if (NILP (Vw32_pass_lwindow_to_system))
4128 {
4129 /* Prevent system from acting on keyup (which opens the
4130 Start menu if no other key was pressed) by simulating a
4131 press of Space which we will ignore. */
4132 if (GetAsyncKeyState (wParam) & 1)
4133 {
4134 if (NUMBERP (Vw32_phantom_key_code))
4135 key = XUINT (Vw32_phantom_key_code) & 255;
4136 else
4137 key = VK_SPACE;
4138 dpyinfo->faked_key = key;
4139 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4140 }
4141 }
4142 if (!NILP (Vw32_lwindow_modifier))
4143 return 0;
4144 break;
4145 case VK_RWIN:
4146 if (NILP (Vw32_pass_rwindow_to_system))
4147 {
4148 if (GetAsyncKeyState (wParam) & 1)
4149 {
4150 if (NUMBERP (Vw32_phantom_key_code))
4151 key = XUINT (Vw32_phantom_key_code) & 255;
4152 else
4153 key = VK_SPACE;
4154 dpyinfo->faked_key = key;
4155 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
4156 }
4157 }
4158 if (!NILP (Vw32_rwindow_modifier))
4159 return 0;
4160 break;
4161 case VK_APPS:
4162 if (!NILP (Vw32_apps_modifier))
4163 return 0;
4164 break;
4165 case VK_MENU:
4166 if (NILP (Vw32_pass_alt_to_system))
4167 /* Prevent DefWindowProc from activating the menu bar if an
4168 Alt key is pressed and released by itself. */
4169 return 0;
4170 windows_translate = 1;
4171 break;
4172 case VK_CAPITAL:
4173 /* Decide whether to treat as modifier or function key. */
4174 if (NILP (Vw32_enable_caps_lock))
4175 goto disable_lock_key;
4176 windows_translate = 1;
4177 break;
4178 case VK_NUMLOCK:
4179 /* Decide whether to treat as modifier or function key. */
4180 if (NILP (Vw32_enable_num_lock))
4181 goto disable_lock_key;
4182 windows_translate = 1;
4183 break;
4184 case VK_SCROLL:
4185 /* Decide whether to treat as modifier or function key. */
4186 if (NILP (Vw32_scroll_lock_modifier))
4187 goto disable_lock_key;
4188 windows_translate = 1;
4189 break;
4190 disable_lock_key:
4191 /* Ensure the appropriate lock key state (and indicator light)
4192 remains in the same state. We do this by faking another
4193 press of the relevant key. Apparently, this really is the
4194 only way to toggle the state of the indicator lights. */
4195 dpyinfo->faked_key = wParam;
4196 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4197 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4198 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4199 KEYEVENTF_EXTENDEDKEY | 0, 0);
4200 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
4201 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
4202 /* Ensure indicator lights are updated promptly on Windows 9x
4203 (TranslateMessage apparently does this), after forwarding
4204 input event. */
4205 post_character_message (hwnd, msg, wParam, lParam,
4206 w32_get_key_modifiers (wParam, lParam));
4207 windows_translate = 1;
4208 break;
4209 case VK_CONTROL:
4210 case VK_SHIFT:
4211 case VK_PROCESSKEY: /* Generated by IME. */
4212 windows_translate = 1;
4213 break;
4214 case VK_CANCEL:
4215 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
4216 which is confusing for purposes of key binding; convert
4217 VK_CANCEL events into VK_PAUSE events. */
4218 wParam = VK_PAUSE;
4219 break;
4220 case VK_PAUSE:
4221 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
4222 for purposes of key binding; convert these back into
4223 VK_NUMLOCK events, at least when we want to see NumLock key
4224 presses. (Note that there is never any possibility that
4225 VK_PAUSE with Ctrl really is C-Pause as per above.) */
4226 if (NILP (Vw32_enable_num_lock) && modifier_set (VK_CONTROL))
4227 wParam = VK_NUMLOCK;
4228 break;
4229 default:
4230 /* If not defined as a function key, change it to a WM_CHAR message. */
4231 if (lispy_function_keys[wParam] == 0)
4232 {
4233 DWORD modifiers = construct_console_modifiers ();
4234
4235 if (!NILP (Vw32_recognize_altgr)
4236 && modifier_set (VK_LCONTROL) && modifier_set (VK_RMENU))
4237 {
4238 /* Always let TranslateMessage handle AltGr key chords;
4239 for some reason, ToAscii doesn't always process AltGr
4240 chords correctly. */
4241 windows_translate = 1;
4242 }
4243 else if ((modifiers & (~SHIFT_PRESSED & ~CAPSLOCK_ON)) != 0)
4244 {
4245 /* Handle key chords including any modifiers other
4246 than shift directly, in order to preserve as much
4247 modifier information as possible. */
4248 if ('A' <= wParam && wParam <= 'Z')
4249 {
4250 /* Don't translate modified alphabetic keystrokes,
4251 so the user doesn't need to constantly switch
4252 layout to type control or meta keystrokes when
4253 the normal layout translates alphabetic
4254 characters to non-ascii characters. */
4255 if (!modifier_set (VK_SHIFT))
4256 wParam += ('a' - 'A');
4257 msg = WM_CHAR;
4258 }
4259 else
4260 {
4261 /* Try to handle other keystrokes by determining the
4262 base character (ie. translating the base key plus
4263 shift modifier). */
4264 int add;
4265 int isdead = 0;
4266 KEY_EVENT_RECORD key;
4267
4268 key.bKeyDown = TRUE;
4269 key.wRepeatCount = 1;
4270 key.wVirtualKeyCode = wParam;
4271 key.wVirtualScanCode = (lParam & 0xFF0000) >> 16;
4272 key.uChar.AsciiChar = 0;
4273 key.dwControlKeyState = modifiers;
4274
4275 add = w32_kbd_patch_key (&key);
4276 /* 0 means an unrecognised keycode, negative means
4277 dead key. Ignore both. */
4278 while (--add >= 0)
4279 {
4280 /* Forward asciified character sequence. */
4281 post_character_message
4282 (hwnd, WM_CHAR, key.uChar.AsciiChar, lParam,
4283 w32_get_key_modifiers (wParam, lParam));
4284 w32_kbd_patch_key (&key);
4285 }
4286 return 0;
4287 }
4288 }
4289 else
4290 {
4291 /* Let TranslateMessage handle everything else. */
4292 windows_translate = 1;
4293 }
4294 }
4295 }
4296
4297 translate:
4298 if (windows_translate)
4299 {
4300 MSG windows_msg = { hwnd, msg, wParam, lParam, 0, {0,0} };
4301
4302 windows_msg.time = GetMessageTime ();
4303 TranslateMessage (&windows_msg);
4304 goto dflt;
4305 }
4306
4307 /* Fall through */
4308
4309 case WM_SYSCHAR:
4310 case WM_CHAR:
4311 post_character_message (hwnd, msg, wParam, lParam,
4312 w32_get_key_modifiers (wParam, lParam));
4313 break;
4314
4315 /* Simulate middle mouse button events when left and right buttons
4316 are used together, but only if user has two button mouse. */
4317 case WM_LBUTTONDOWN:
4318 case WM_RBUTTONDOWN:
4319 if (XINT (Vw32_num_mouse_buttons) > 2)
4320 goto handle_plain_button;
4321
4322 {
4323 int this = (msg == WM_LBUTTONDOWN) ? LMOUSE : RMOUSE;
4324 int other = (msg == WM_LBUTTONDOWN) ? RMOUSE : LMOUSE;
4325
4326 if (button_state & this)
4327 return 0;
4328
4329 if (button_state == 0)
4330 SetCapture (hwnd);
4331
4332 button_state |= this;
4333
4334 if (button_state & other)
4335 {
4336 if (mouse_button_timer)
4337 {
4338 KillTimer (hwnd, mouse_button_timer);
4339 mouse_button_timer = 0;
4340
4341 /* Generate middle mouse event instead. */
4342 msg = WM_MBUTTONDOWN;
4343 button_state |= MMOUSE;
4344 }
4345 else if (button_state & MMOUSE)
4346 {
4347 /* Ignore button event if we've already generated a
4348 middle mouse down event. This happens if the
4349 user releases and press one of the two buttons
4350 after we've faked a middle mouse event. */
4351 return 0;
4352 }
4353 else
4354 {
4355 /* Flush out saved message. */
4356 post_msg (&saved_mouse_button_msg);
4357 }
4358 wmsg.dwModifiers = w32_get_modifiers ();
4359 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4360
4361 /* Clear message buffer. */
4362 saved_mouse_button_msg.msg.hwnd = 0;
4363 }
4364 else
4365 {
4366 /* Hold onto message for now. */
4367 mouse_button_timer =
4368 SetTimer (hwnd, MOUSE_BUTTON_ID,
4369 XINT (Vw32_mouse_button_tolerance), NULL);
4370 saved_mouse_button_msg.msg.hwnd = hwnd;
4371 saved_mouse_button_msg.msg.message = msg;
4372 saved_mouse_button_msg.msg.wParam = wParam;
4373 saved_mouse_button_msg.msg.lParam = lParam;
4374 saved_mouse_button_msg.msg.time = GetMessageTime ();
4375 saved_mouse_button_msg.dwModifiers = w32_get_modifiers ();
4376 }
4377 }
4378 return 0;
4379
4380 case WM_LBUTTONUP:
4381 case WM_RBUTTONUP:
4382 if (XINT (Vw32_num_mouse_buttons) > 2)
4383 goto handle_plain_button;
4384
4385 {
4386 int this = (msg == WM_LBUTTONUP) ? LMOUSE : RMOUSE;
4387 int other = (msg == WM_LBUTTONUP) ? RMOUSE : LMOUSE;
4388
4389 if ((button_state & this) == 0)
4390 return 0;
4391
4392 button_state &= ~this;
4393
4394 if (button_state & MMOUSE)
4395 {
4396 /* Only generate event when second button is released. */
4397 if ((button_state & other) == 0)
4398 {
4399 msg = WM_MBUTTONUP;
4400 button_state &= ~MMOUSE;
4401
4402 if (button_state) abort ();
4403 }
4404 else
4405 return 0;
4406 }
4407 else
4408 {
4409 /* Flush out saved message if necessary. */
4410 if (saved_mouse_button_msg.msg.hwnd)
4411 {
4412 post_msg (&saved_mouse_button_msg);
4413 }
4414 }
4415 wmsg.dwModifiers = w32_get_modifiers ();
4416 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4417
4418 /* Always clear message buffer and cancel timer. */
4419 saved_mouse_button_msg.msg.hwnd = 0;
4420 KillTimer (hwnd, mouse_button_timer);
4421 mouse_button_timer = 0;
4422
4423 if (button_state == 0)
4424 ReleaseCapture ();
4425 }
4426 return 0;
4427
4428 case WM_MBUTTONDOWN:
4429 case WM_MBUTTONUP:
4430 handle_plain_button:
4431 {
4432 BOOL up;
4433 int button;
4434
4435 if (parse_button (msg, &button, &up))
4436 {
4437 if (up) ReleaseCapture ();
4438 else SetCapture (hwnd);
4439 button = (button == 0) ? LMOUSE :
4440 ((button == 1) ? MMOUSE : RMOUSE);
4441 if (up)
4442 button_state &= ~button;
4443 else
4444 button_state |= button;
4445 }
4446 }
4447
4448 wmsg.dwModifiers = w32_get_modifiers ();
4449 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4450 return 0;
4451
4452 case WM_VSCROLL:
4453 case WM_MOUSEMOVE:
4454 if (XINT (Vw32_mouse_move_interval) <= 0
4455 || (msg == WM_MOUSEMOVE && button_state == 0))
4456 {
4457 wmsg.dwModifiers = w32_get_modifiers ();
4458 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4459 return 0;
4460 }
4461
4462 /* Hang onto mouse move and scroll messages for a bit, to avoid
4463 sending such events to Emacs faster than it can process them.
4464 If we get more events before the timer from the first message
4465 expires, we just replace the first message. */
4466
4467 if (saved_mouse_move_msg.msg.hwnd == 0)
4468 mouse_move_timer =
4469 SetTimer (hwnd, MOUSE_MOVE_ID,
4470 XINT (Vw32_mouse_move_interval), NULL);
4471
4472 /* Hold onto message for now. */
4473 saved_mouse_move_msg.msg.hwnd = hwnd;
4474 saved_mouse_move_msg.msg.message = msg;
4475 saved_mouse_move_msg.msg.wParam = wParam;
4476 saved_mouse_move_msg.msg.lParam = lParam;
4477 saved_mouse_move_msg.msg.time = GetMessageTime ();
4478 saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
4479
4480 return 0;
4481
4482 case WM_MOUSEWHEEL:
4483 wmsg.dwModifiers = w32_get_modifiers ();
4484 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4485 return 0;
4486
4487 case WM_DROPFILES:
4488 wmsg.dwModifiers = w32_get_modifiers ();
4489 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4490 return 0;
4491
4492 case WM_TIMER:
4493 /* Flush out saved messages if necessary. */
4494 if (wParam == mouse_button_timer)
4495 {
4496 if (saved_mouse_button_msg.msg.hwnd)
4497 {
4498 post_msg (&saved_mouse_button_msg);
4499 saved_mouse_button_msg.msg.hwnd = 0;
4500 }
4501 KillTimer (hwnd, mouse_button_timer);
4502 mouse_button_timer = 0;
4503 }
4504 else if (wParam == mouse_move_timer)
4505 {
4506 if (saved_mouse_move_msg.msg.hwnd)
4507 {
4508 post_msg (&saved_mouse_move_msg);
4509 saved_mouse_move_msg.msg.hwnd = 0;
4510 }
4511 KillTimer (hwnd, mouse_move_timer);
4512 mouse_move_timer = 0;
4513 }
4514 return 0;
4515
4516 case WM_NCACTIVATE:
4517 /* Windows doesn't send us focus messages when putting up and
4518 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
4519 The only indication we get that something happened is receiving
4520 this message afterwards. So this is a good time to reset our
4521 keyboard modifiers' state. */
4522 reset_modifiers ();
4523 goto dflt;
4524
4525 case WM_INITMENU:
4526 button_state = 0;
4527 ReleaseCapture ();
4528 /* We must ensure menu bar is fully constructed and up to date
4529 before allowing user interaction with it. To achieve this
4530 we send this message to the lisp thread and wait for a
4531 reply (whose value is not actually needed) to indicate that
4532 the menu bar is now ready for use, so we can now return.
4533
4534 To remain responsive in the meantime, we enter a nested message
4535 loop that can process all other messages.
4536
4537 However, we skip all this if the message results from calling
4538 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
4539 thread a message because it is blocked on us at this point. We
4540 set menubar_active before calling TrackPopupMenu to indicate
4541 this (there is no possibility of confusion with real menubar
4542 being active). */
4543
4544 f = x_window_to_frame (dpyinfo, hwnd);
4545 if (f
4546 && (f->output_data.w32->menubar_active
4547 /* We can receive this message even in the absence of a
4548 menubar (ie. when the system menu is activated) - in this
4549 case we do NOT want to forward the message, otherwise it
4550 will cause the menubar to suddenly appear when the user
4551 had requested it to be turned off! */
4552 || f->output_data.w32->menubar_widget == NULL))
4553 return 0;
4554
4555 {
4556 deferred_msg msg_buf;
4557
4558 /* Detect if message has already been deferred; in this case
4559 we cannot return any sensible value to ignore this. */
4560 if (find_deferred_msg (hwnd, msg) != NULL)
4561 abort ();
4562
4563 return send_deferred_msg (&msg_buf, hwnd, msg, wParam, lParam);
4564 }
4565
4566 case WM_EXITMENULOOP:
4567 f = x_window_to_frame (dpyinfo, hwnd);
4568
4569 /* Indicate that menubar can be modified again. */
4570 if (f)
4571 f->output_data.w32->menubar_active = 0;
4572 goto dflt;
4573
4574 case WM_MENUSELECT:
4575 wmsg.dwModifiers = w32_get_modifiers ();
4576 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4577 return 0;
4578
4579 case WM_MEASUREITEM:
4580 f = x_window_to_frame (dpyinfo, hwnd);
4581 if (f)
4582 {
4583 MEASUREITEMSTRUCT * pMis = (MEASUREITEMSTRUCT *) lParam;
4584
4585 if (pMis->CtlType == ODT_MENU)
4586 {
4587 /* Work out dimensions for popup menu titles. */
4588 char * title = (char *) pMis->itemData;
4589 HDC hdc = GetDC (hwnd);
4590 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4591 LOGFONT menu_logfont;
4592 HFONT old_font;
4593 SIZE size;
4594
4595 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4596 menu_logfont.lfWeight = FW_BOLD;
4597 menu_font = CreateFontIndirect (&menu_logfont);
4598 old_font = SelectObject (hdc, menu_font);
4599
4600 pMis->itemHeight = GetSystemMetrics (SM_CYMENUSIZE);
4601 if (title)
4602 {
4603 GetTextExtentPoint32 (hdc, title, strlen (title), &size);
4604 pMis->itemWidth = size.cx;
4605 if (pMis->itemHeight < size.cy)
4606 pMis->itemHeight = size.cy;
4607 }
4608 else
4609 pMis->itemWidth = 0;
4610
4611 SelectObject (hdc, old_font);
4612 DeleteObject (menu_font);
4613 ReleaseDC (hwnd, hdc);
4614 return TRUE;
4615 }
4616 }
4617 return 0;
4618
4619 case WM_DRAWITEM:
4620 f = x_window_to_frame (dpyinfo, hwnd);
4621 if (f)
4622 {
4623 DRAWITEMSTRUCT * pDis = (DRAWITEMSTRUCT *) lParam;
4624
4625 if (pDis->CtlType == ODT_MENU)
4626 {
4627 /* Draw popup menu title. */
4628 char * title = (char *) pDis->itemData;
4629 if (title)
4630 {
4631 HDC hdc = pDis->hDC;
4632 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
4633 LOGFONT menu_logfont;
4634 HFONT old_font;
4635
4636 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
4637 menu_logfont.lfWeight = FW_BOLD;
4638 menu_font = CreateFontIndirect (&menu_logfont);
4639 old_font = SelectObject (hdc, menu_font);
4640
4641 /* Always draw title as if not selected. */
4642 ExtTextOut (hdc,
4643 pDis->rcItem.left
4644 + GetSystemMetrics (SM_CXMENUCHECK),
4645 pDis->rcItem.top,
4646 ETO_OPAQUE, &pDis->rcItem,
4647 title, strlen (title), NULL);
4648
4649 SelectObject (hdc, old_font);
4650 DeleteObject (menu_font);
4651 }
4652 return TRUE;
4653 }
4654 }
4655 return 0;
4656
4657 #if 0
4658 /* Still not right - can't distinguish between clicks in the
4659 client area of the frame from clicks forwarded from the scroll
4660 bars - may have to hook WM_NCHITTEST to remember the mouse
4661 position and then check if it is in the client area ourselves. */
4662 case WM_MOUSEACTIVATE:
4663 /* Discard the mouse click that activates a frame, allowing the
4664 user to click anywhere without changing point (or worse!).
4665 Don't eat mouse clicks on scrollbars though!! */
4666 if (LOWORD (lParam) == HTCLIENT )
4667 return MA_ACTIVATEANDEAT;
4668 goto dflt;
4669 #endif
4670
4671 case WM_ACTIVATEAPP:
4672 case WM_ACTIVATE:
4673 case WM_WINDOWPOSCHANGED:
4674 case WM_SHOWWINDOW:
4675 /* Inform lisp thread that a frame might have just been obscured
4676 or exposed, so should recheck visibility of all frames. */
4677 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4678 goto dflt;
4679
4680 case WM_SETFOCUS:
4681 dpyinfo->faked_key = 0;
4682 reset_modifiers ();
4683 register_hot_keys (hwnd);
4684 goto command;
4685 case WM_KILLFOCUS:
4686 unregister_hot_keys (hwnd);
4687 button_state = 0;
4688 ReleaseCapture ();
4689 case WM_MOVE:
4690 case WM_SIZE:
4691 case WM_COMMAND:
4692 command:
4693 wmsg.dwModifiers = w32_get_modifiers ();
4694 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4695 goto dflt;
4696
4697 case WM_CLOSE:
4698 wmsg.dwModifiers = w32_get_modifiers ();
4699 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4700 return 0;
4701
4702 case WM_WINDOWPOSCHANGING:
4703 {
4704 WINDOWPLACEMENT wp;
4705 LPWINDOWPOS lppos = (WINDOWPOS *) lParam;
4706
4707 wp.length = sizeof (WINDOWPLACEMENT);
4708 GetWindowPlacement (hwnd, &wp);
4709
4710 if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
4711 {
4712 RECT rect;
4713 int wdiff;
4714 int hdiff;
4715 DWORD font_width;
4716 DWORD line_height;
4717 DWORD internal_border;
4718 DWORD scrollbar_extra;
4719 RECT wr;
4720
4721 wp.length = sizeof(wp);
4722 GetWindowRect (hwnd, &wr);
4723
4724 enter_crit ();
4725
4726 font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
4727 line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
4728 internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
4729 scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
4730
4731 leave_crit ();
4732
4733 memset (&rect, 0, sizeof (rect));
4734 AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
4735 GetMenu (hwnd) != NULL);
4736
4737 /* Force width and height of client area to be exact
4738 multiples of the character cell dimensions. */
4739 wdiff = (lppos->cx - (rect.right - rect.left)
4740 - 2 * internal_border - scrollbar_extra)
4741 % font_width;
4742 hdiff = (lppos->cy - (rect.bottom - rect.top)
4743 - 2 * internal_border)
4744 % line_height;
4745
4746 if (wdiff || hdiff)
4747 {
4748 /* For right/bottom sizing we can just fix the sizes.
4749 However for top/left sizing we will need to fix the X
4750 and Y positions as well. */
4751
4752 lppos->cx -= wdiff;
4753 lppos->cy -= hdiff;
4754
4755 if (wp.showCmd != SW_SHOWMAXIMIZED
4756 && (lppos->flags & SWP_NOMOVE) == 0)
4757 {
4758 if (lppos->x != wr.left || lppos->y != wr.top)
4759 {
4760 lppos->x += wdiff;
4761 lppos->y += hdiff;
4762 }
4763 else
4764 {
4765 lppos->flags |= SWP_NOMOVE;
4766 }
4767 }
4768
4769 return 0;
4770 }
4771 }
4772 }
4773
4774 goto dflt;
4775
4776 case WM_GETMINMAXINFO:
4777 /* Hack to correct bug that allows Emacs frames to be resized
4778 below the Minimum Tracking Size. */
4779 ((LPMINMAXINFO) lParam)->ptMinTrackSize.y++;
4780 return 0;
4781
4782 case WM_EMACS_CREATESCROLLBAR:
4783 return (LRESULT) w32_createscrollbar ((struct frame *) wParam,
4784 (struct scroll_bar *) lParam);
4785
4786 case WM_EMACS_SHOWWINDOW:
4787 return ShowWindow ((HWND) wParam, (WPARAM) lParam);
4788
4789 case WM_EMACS_SETFOREGROUND:
4790 {
4791 HWND foreground_window;
4792 DWORD foreground_thread, retval;
4793
4794 /* On NT 5.0, and apparently Windows 98, it is necessary to
4795 attach to the thread that currently has focus in order to
4796 pull the focus away from it. */
4797 foreground_window = GetForegroundWindow ();
4798 foreground_thread = GetWindowThreadProcessId (foreground_window, NULL);
4799 if (!foreground_window
4800 || foreground_thread == GetCurrentThreadId ()
4801 || !AttachThreadInput (GetCurrentThreadId (),
4802 foreground_thread, TRUE))
4803 foreground_thread = 0;
4804
4805 retval = SetForegroundWindow ((HWND) wParam);
4806
4807 /* Detach from the previous foreground thread. */
4808 if (foreground_thread)
4809 AttachThreadInput (GetCurrentThreadId (),
4810 foreground_thread, FALSE);
4811
4812 return retval;
4813 }
4814
4815 case WM_EMACS_SETWINDOWPOS:
4816 {
4817 WINDOWPOS * pos = (WINDOWPOS *) wParam;
4818 return SetWindowPos (hwnd, pos->hwndInsertAfter,
4819 pos->x, pos->y, pos->cx, pos->cy, pos->flags);
4820 }
4821
4822 case WM_EMACS_DESTROYWINDOW:
4823 DragAcceptFiles ((HWND) wParam, FALSE);
4824 return DestroyWindow ((HWND) wParam);
4825
4826 case WM_EMACS_TRACKPOPUPMENU:
4827 {
4828 UINT flags;
4829 POINT *pos;
4830 int retval;
4831 pos = (POINT *)lParam;
4832 flags = TPM_CENTERALIGN;
4833 if (button_state & LMOUSE)
4834 flags |= TPM_LEFTBUTTON;
4835 else if (button_state & RMOUSE)
4836 flags |= TPM_RIGHTBUTTON;
4837
4838 /* Remember we did a SetCapture on the initial mouse down event,
4839 so for safety, we make sure the capture is cancelled now. */
4840 ReleaseCapture ();
4841 button_state = 0;
4842
4843 /* Use menubar_active to indicate that WM_INITMENU is from
4844 TrackPopupMenu below, and should be ignored. */
4845 f = x_window_to_frame (dpyinfo, hwnd);
4846 if (f)
4847 f->output_data.w32->menubar_active = 1;
4848
4849 if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
4850 0, hwnd, NULL))
4851 {
4852 MSG amsg;
4853 /* Eat any mouse messages during popupmenu */
4854 while (PeekMessage (&amsg, hwnd, WM_MOUSEFIRST, WM_MOUSELAST,
4855 PM_REMOVE));
4856 /* Get the menu selection, if any */
4857 if (PeekMessage (&amsg, hwnd, WM_COMMAND, WM_COMMAND, PM_REMOVE))
4858 {
4859 retval = LOWORD (amsg.wParam);
4860 }
4861 else
4862 {
4863 retval = 0;
4864 }
4865 }
4866 else
4867 {
4868 retval = -1;
4869 }
4870
4871 return retval;
4872 }
4873
4874 default:
4875 /* Check for messages registered at runtime. */
4876 if (msg == msh_mousewheel)
4877 {
4878 wmsg.dwModifiers = w32_get_modifiers ();
4879 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4880 return 0;
4881 }
4882
4883 dflt:
4884 return DefWindowProc (hwnd, msg, wParam, lParam);
4885 }
4886
4887
4888 /* The most common default return code for handled messages is 0. */
4889 return 0;
4890 }
4891
4892 void
4893 my_create_window (f)
4894 struct frame * f;
4895 {
4896 MSG msg;
4897
4898 if (!PostThreadMessage (dwWindowsThreadId, WM_EMACS_CREATEWINDOW, (WPARAM)f, 0))
4899 abort ();
4900 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
4901 }
4902
4903 /* Create and set up the w32 window for frame F. */
4904
4905 static void
4906 w32_window (f, window_prompting, minibuffer_only)
4907 struct frame *f;
4908 long window_prompting;
4909 int minibuffer_only;
4910 {
4911 BLOCK_INPUT;
4912
4913 /* Use the resource name as the top-level window name
4914 for looking up resources. Make a non-Lisp copy
4915 for the window manager, so GC relocation won't bother it.
4916
4917 Elsewhere we specify the window name for the window manager. */
4918
4919 {
4920 char *str = (char *) XSTRING (Vx_resource_name)->data;
4921 f->namebuf = (char *) xmalloc (strlen (str) + 1);
4922 strcpy (f->namebuf, str);
4923 }
4924
4925 my_create_window (f);
4926
4927 validate_x_resource_name ();
4928
4929 /* x_set_name normally ignores requests to set the name if the
4930 requested name is the same as the current name. This is the one
4931 place where that assumption isn't correct; f->name is set, but
4932 the server hasn't been told. */
4933 {
4934 Lisp_Object name;
4935 int explicit = f->explicit_name;
4936
4937 f->explicit_name = 0;
4938 name = f->name;
4939 f->name = Qnil;
4940 x_set_name (f, name, explicit);
4941 }
4942
4943 UNBLOCK_INPUT;
4944
4945 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
4946 initialize_frame_menubar (f);
4947
4948 if (FRAME_W32_WINDOW (f) == 0)
4949 error ("Unable to create window");
4950 }
4951
4952 /* Handle the icon stuff for this window. Perhaps later we might
4953 want an x_set_icon_position which can be called interactively as
4954 well. */
4955
4956 static void
4957 x_icon (f, parms)
4958 struct frame *f;
4959 Lisp_Object parms;
4960 {
4961 Lisp_Object icon_x, icon_y;
4962
4963 /* Set the position of the icon. Note that Windows 95 groups all
4964 icons in the tray. */
4965 icon_x = w32_get_arg (parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
4966 icon_y = w32_get_arg (parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
4967 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
4968 {
4969 CHECK_NUMBER (icon_x, 0);
4970 CHECK_NUMBER (icon_y, 0);
4971 }
4972 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
4973 error ("Both left and top icon corners of icon must be specified");
4974
4975 BLOCK_INPUT;
4976
4977 if (! EQ (icon_x, Qunbound))
4978 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
4979
4980 #if 0 /* TODO */
4981 /* Start up iconic or window? */
4982 x_wm_set_window_state
4983 (f, (EQ (w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon)
4984 ? IconicState
4985 : NormalState));
4986
4987 x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name)
4988 ? f->icon_name
4989 : f->name))->data);
4990 #endif
4991
4992 UNBLOCK_INPUT;
4993 }
4994
4995
4996 static void
4997 x_make_gc (f)
4998 struct frame *f;
4999 {
5000 XGCValues gc_values;
5001
5002 BLOCK_INPUT;
5003
5004 /* Create the GC's of this frame.
5005 Note that many default values are used. */
5006
5007 /* Normal video */
5008 gc_values.font = f->output_data.w32->font;
5009
5010 /* Cursor has cursor-color background, background-color foreground. */
5011 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
5012 gc_values.background = f->output_data.w32->cursor_pixel;
5013 f->output_data.w32->cursor_gc
5014 = XCreateGC (NULL, FRAME_W32_WINDOW (f),
5015 (GCFont | GCForeground | GCBackground),
5016 &gc_values);
5017
5018 /* Reliefs. */
5019 f->output_data.w32->white_relief.gc = 0;
5020 f->output_data.w32->black_relief.gc = 0;
5021
5022 UNBLOCK_INPUT;
5023 }
5024
5025
5026 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
5027 1, 1, 0,
5028 "Make a new window, which is called a \"frame\" in Emacs terms.\n\
5029 Returns an Emacs frame object.\n\
5030 ALIST is an alist of frame parameters.\n\
5031 If the parameters specify that the frame should not have a minibuffer,\n\
5032 and do not specify a specific minibuffer window to use,\n\
5033 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\
5034 be shared by the new frame.\n\
5035 \n\
5036 This function is an internal primitive--use `make-frame' instead.")
5037 (parms)
5038 Lisp_Object parms;
5039 {
5040 struct frame *f;
5041 Lisp_Object frame, tem;
5042 Lisp_Object name;
5043 int minibuffer_only = 0;
5044 long window_prompting = 0;
5045 int width, height;
5046 int count = specpdl_ptr - specpdl;
5047 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5048 Lisp_Object display;
5049 struct w32_display_info *dpyinfo = NULL;
5050 Lisp_Object parent;
5051 struct kboard *kb;
5052
5053 check_w32 ();
5054
5055 /* Use this general default value to start with
5056 until we know if this frame has a specified name. */
5057 Vx_resource_name = Vinvocation_name;
5058
5059 display = w32_get_arg (parms, Qdisplay, 0, 0, RES_TYPE_STRING);
5060 if (EQ (display, Qunbound))
5061 display = Qnil;
5062 dpyinfo = check_x_display_info (display);
5063 #ifdef MULTI_KBOARD
5064 kb = dpyinfo->kboard;
5065 #else
5066 kb = &the_only_kboard;
5067 #endif
5068
5069 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
5070 if (!STRINGP (name)
5071 && ! EQ (name, Qunbound)
5072 && ! NILP (name))
5073 error ("Invalid frame name--not a string or nil");
5074
5075 if (STRINGP (name))
5076 Vx_resource_name = name;
5077
5078 /* See if parent window is specified. */
5079 parent = w32_get_arg (parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
5080 if (EQ (parent, Qunbound))
5081 parent = Qnil;
5082 if (! NILP (parent))
5083 CHECK_NUMBER (parent, 0);
5084
5085 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
5086 /* No need to protect DISPLAY because that's not used after passing
5087 it to make_frame_without_minibuffer. */
5088 frame = Qnil;
5089 GCPRO4 (parms, parent, name, frame);
5090 tem = w32_get_arg (parms, Qminibuffer, "minibuffer", "Minibuffer",
5091 RES_TYPE_SYMBOL);
5092 if (EQ (tem, Qnone) || NILP (tem))
5093 f = make_frame_without_minibuffer (Qnil, kb, display);
5094 else if (EQ (tem, Qonly))
5095 {
5096 f = make_minibuffer_frame ();
5097 minibuffer_only = 1;
5098 }
5099 else if (WINDOWP (tem))
5100 f = make_frame_without_minibuffer (tem, kb, display);
5101 else
5102 f = make_frame (1);
5103
5104 XSETFRAME (frame, f);
5105
5106 /* Note that Windows does support scroll bars. */
5107 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
5108 /* By default, make scrollbars the system standard width. */
5109 f->scroll_bar_pixel_width = GetSystemMetrics (SM_CXVSCROLL);
5110
5111 f->output_method = output_w32;
5112 f->output_data.w32 =
5113 (struct w32_output *) xmalloc (sizeof (struct w32_output));
5114 bzero (f->output_data.w32, sizeof (struct w32_output));
5115
5116 FRAME_FONTSET (f) = -1;
5117
5118 f->icon_name
5119 = w32_get_arg (parms, Qicon_name, "iconName", "Title", RES_TYPE_STRING);
5120 if (! STRINGP (f->icon_name))
5121 f->icon_name = Qnil;
5122
5123 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
5124 #ifdef MULTI_KBOARD
5125 FRAME_KBOARD (f) = kb;
5126 #endif
5127
5128 /* Specify the parent under which to make this window. */
5129
5130 if (!NILP (parent))
5131 {
5132 f->output_data.w32->parent_desc = (Window) XFASTINT (parent);
5133 f->output_data.w32->explicit_parent = 1;
5134 }
5135 else
5136 {
5137 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5138 f->output_data.w32->explicit_parent = 0;
5139 }
5140
5141 /* Set the name; the functions to which we pass f expect the name to
5142 be set. */
5143 if (EQ (name, Qunbound) || NILP (name))
5144 {
5145 f->name = build_string (dpyinfo->w32_id_name);
5146 f->explicit_name = 0;
5147 }
5148 else
5149 {
5150 f->name = name;
5151 f->explicit_name = 1;
5152 /* use the frame's title when getting resources for this frame. */
5153 specbind (Qx_resource_name, name);
5154 }
5155
5156 /* Extract the window parameters from the supplied values
5157 that are needed to determine window geometry. */
5158 {
5159 Lisp_Object font;
5160
5161 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
5162
5163 BLOCK_INPUT;
5164 /* First, try whatever font the caller has specified. */
5165 if (STRINGP (font))
5166 {
5167 tem = Fquery_fontset (font, Qnil);
5168 if (STRINGP (tem))
5169 font = x_new_fontset (f, XSTRING (tem)->data);
5170 else
5171 font = x_new_font (f, XSTRING (font)->data);
5172 }
5173 /* Try out a font which we hope has bold and italic variations. */
5174 if (!STRINGP (font))
5175 font = x_new_font (f, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
5176 if (! STRINGP (font))
5177 font = x_new_font (f, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
5178 /* If those didn't work, look for something which will at least work. */
5179 if (! STRINGP (font))
5180 font = x_new_font (f, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
5181 UNBLOCK_INPUT;
5182 if (! STRINGP (font))
5183 font = build_string ("Fixedsys");
5184
5185 x_default_parameter (f, parms, Qfont, font,
5186 "font", "Font", RES_TYPE_STRING);
5187 }
5188
5189 x_default_parameter (f, parms, Qborder_width, make_number (2),
5190 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
5191 /* This defaults to 2 in order to match xterm. We recognize either
5192 internalBorderWidth or internalBorder (which is what xterm calls
5193 it). */
5194 if (NILP (Fassq (Qinternal_border_width, parms)))
5195 {
5196 Lisp_Object value;
5197
5198 value = w32_get_arg (parms, Qinternal_border_width,
5199 "internalBorder", "InternalBorder", RES_TYPE_NUMBER);
5200 if (! EQ (value, Qunbound))
5201 parms = Fcons (Fcons (Qinternal_border_width, value),
5202 parms);
5203 }
5204 /* Default internalBorderWidth to 0 on Windows to match other programs. */
5205 x_default_parameter (f, parms, Qinternal_border_width, make_number (0),
5206 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER);
5207 x_default_parameter (f, parms, Qvertical_scroll_bars, Qright,
5208 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL);
5209
5210 /* Also do the stuff which must be set before the window exists. */
5211 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
5212 "foreground", "Foreground", RES_TYPE_STRING);
5213 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
5214 "background", "Background", RES_TYPE_STRING);
5215 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
5216 "pointerColor", "Foreground", RES_TYPE_STRING);
5217 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
5218 "cursorColor", "Foreground", RES_TYPE_STRING);
5219 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
5220 "borderColor", "BorderColor", RES_TYPE_STRING);
5221 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
5222 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
5223 x_default_parameter (f, parms, Qline_spacing, Qnil,
5224 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
5225
5226
5227 /* Init faces before x_default_parameter is called for scroll-bar
5228 parameters because that function calls x_set_scroll_bar_width,
5229 which calls change_frame_size, which calls Fset_window_buffer,
5230 which runs hooks, which call Fvertical_motion. At the end, we
5231 end up in init_iterator with a null face cache, which should not
5232 happen. */
5233 init_frame_faces (f);
5234
5235 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
5236 "menuBar", "MenuBar", RES_TYPE_NUMBER);
5237 x_default_parameter (f, parms, Qtool_bar_lines, make_number (0),
5238 "toolBar", "ToolBar", RES_TYPE_NUMBER);
5239 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
5240 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL);
5241 x_default_parameter (f, parms, Qtitle, Qnil,
5242 "title", "Title", RES_TYPE_STRING);
5243
5244 f->output_data.w32->dwStyle = WS_OVERLAPPEDWINDOW;
5245 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5246 window_prompting = x_figure_window_size (f, parms);
5247
5248 if (window_prompting & XNegative)
5249 {
5250 if (window_prompting & YNegative)
5251 f->output_data.w32->win_gravity = SouthEastGravity;
5252 else
5253 f->output_data.w32->win_gravity = NorthEastGravity;
5254 }
5255 else
5256 {
5257 if (window_prompting & YNegative)
5258 f->output_data.w32->win_gravity = SouthWestGravity;
5259 else
5260 f->output_data.w32->win_gravity = NorthWestGravity;
5261 }
5262
5263 f->output_data.w32->size_hint_flags = window_prompting;
5264
5265 tem = w32_get_arg (parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
5266 f->no_split = minibuffer_only || EQ (tem, Qt);
5267
5268 /* Create the window. Add the tool-bar height to the initial frame
5269 height so that the user gets a text display area of the size he
5270 specified with -g or via the registry. Later changes of the
5271 tool-bar height don't change the frame size. This is done so that
5272 users can create tall Emacs frames without having to guess how
5273 tall the tool-bar will get. */
5274 f->height += FRAME_TOOL_BAR_LINES (f);
5275 w32_window (f, window_prompting, minibuffer_only);
5276 x_icon (f, parms);
5277
5278 x_make_gc (f);
5279
5280 /* Now consider the frame official. */
5281 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
5282 Vframe_list = Fcons (frame, Vframe_list);
5283
5284 /* We need to do this after creating the window, so that the
5285 icon-creation functions can say whose icon they're describing. */
5286 x_default_parameter (f, parms, Qicon_type, Qnil,
5287 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
5288
5289 x_default_parameter (f, parms, Qauto_raise, Qnil,
5290 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5291 x_default_parameter (f, parms, Qauto_lower, Qnil,
5292 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5293 x_default_parameter (f, parms, Qcursor_type, Qbox,
5294 "cursorType", "CursorType", RES_TYPE_SYMBOL);
5295 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
5296 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER);
5297
5298 /* Dimensions, especially f->height, must be done via change_frame_size.
5299 Change will not be effected unless different from the current
5300 f->height. */
5301 width = f->width;
5302 height = f->height;
5303 f->height = 0;
5304 SET_FRAME_WIDTH (f, 0);
5305 change_frame_size (f, height, width, 1, 0, 0);
5306
5307 /* Tell the server what size and position, etc, we want, and how
5308 badly we want them. This should be done after we have the menu
5309 bar so that its size can be taken into account. */
5310 BLOCK_INPUT;
5311 x_wm_set_size_hint (f, window_prompting, 0);
5312 UNBLOCK_INPUT;
5313
5314 /* Make the window appear on the frame and enable display, unless
5315 the caller says not to. However, with explicit parent, Emacs
5316 cannot control visibility, so don't try. */
5317 if (! f->output_data.w32->explicit_parent)
5318 {
5319 Lisp_Object visibility;
5320
5321 visibility = w32_get_arg (parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
5322 if (EQ (visibility, Qunbound))
5323 visibility = Qt;
5324
5325 if (EQ (visibility, Qicon))
5326 x_iconify_frame (f);
5327 else if (! NILP (visibility))
5328 x_make_frame_visible (f);
5329 else
5330 /* Must have been Qnil. */
5331 ;
5332 }
5333 UNGCPRO;
5334 return unbind_to (count, frame);
5335 }
5336
5337 /* FRAME is used only to get a handle on the X display. We don't pass the
5338 display info directly because we're called from frame.c, which doesn't
5339 know about that structure. */
5340 Lisp_Object
5341 x_get_focus_frame (frame)
5342 struct frame *frame;
5343 {
5344 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (frame);
5345 Lisp_Object xfocus;
5346 if (! dpyinfo->w32_focus_frame)
5347 return Qnil;
5348
5349 XSETFRAME (xfocus, dpyinfo->w32_focus_frame);
5350 return xfocus;
5351 }
5352
5353 DEFUN ("w32-focus-frame", Fw32_focus_frame, Sw32_focus_frame, 1, 1, 0,
5354 "Give FRAME input focus, raising to foreground if necessary.")
5355 (frame)
5356 Lisp_Object frame;
5357 {
5358 x_focus_on_frame (check_x_frame (frame));
5359 return Qnil;
5360 }
5361
5362 \f
5363 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
5364 int size, char* filename);
5365
5366 struct font_info *
5367 w32_load_system_font (f,fontname,size)
5368 struct frame *f;
5369 char * fontname;
5370 int size;
5371 {
5372 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5373 Lisp_Object font_names;
5374
5375 /* Get a list of all the fonts that match this name. Once we
5376 have a list of matching fonts, we compare them against the fonts
5377 we already have loaded by comparing names. */
5378 font_names = w32_list_fonts (f, build_string (fontname), size, 100);
5379
5380 if (!NILP (font_names))
5381 {
5382 Lisp_Object tail;
5383 int i;
5384
5385 /* First check if any are already loaded, as that is cheaper
5386 than loading another one. */
5387 for (i = 0; i < dpyinfo->n_fonts; i++)
5388 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
5389 if (dpyinfo->font_table[i].name
5390 && (!strcmp (dpyinfo->font_table[i].name,
5391 XSTRING (XCAR (tail))->data)
5392 || !strcmp (dpyinfo->font_table[i].full_name,
5393 XSTRING (XCAR (tail))->data)))
5394 return (dpyinfo->font_table + i);
5395
5396 fontname = (char *) XSTRING (XCAR (font_names))->data;
5397 }
5398 else if (w32_strict_fontnames)
5399 {
5400 /* If EnumFontFamiliesEx was available, we got a full list of
5401 fonts back so stop now to avoid the possibility of loading a
5402 random font. If we had to fall back to EnumFontFamilies, the
5403 list is incomplete, so continue whether the font we want was
5404 listed or not. */
5405 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
5406 FARPROC enum_font_families_ex
5407 = GetProcAddress (gdi32, "EnumFontFamiliesExA");
5408 if (enum_font_families_ex)
5409 return NULL;
5410 }
5411
5412 /* Load the font and add it to the table. */
5413 {
5414 char *full_name, *encoding;
5415 XFontStruct *font;
5416 struct font_info *fontp;
5417 LOGFONT lf;
5418 BOOL ok;
5419 int i;
5420
5421 if (!fontname || !x_to_w32_font (fontname, &lf))
5422 return (NULL);
5423
5424 if (!*lf.lfFaceName)
5425 /* If no name was specified for the font, we get a random font
5426 from CreateFontIndirect - this is not particularly
5427 desirable, especially since CreateFontIndirect does not
5428 fill out the missing name in lf, so we never know what we
5429 ended up with. */
5430 return NULL;
5431
5432 font = (XFontStruct *) xmalloc (sizeof (XFontStruct));
5433 bzero (font, sizeof (*font));
5434
5435 /* Set bdf to NULL to indicate that this is a Windows font. */
5436 font->bdf = NULL;
5437
5438 BLOCK_INPUT;
5439
5440 font->hfont = CreateFontIndirect (&lf);
5441
5442 if (font->hfont == NULL)
5443 {
5444 ok = FALSE;
5445 }
5446 else
5447 {
5448 HDC hdc;
5449 HANDLE oldobj;
5450
5451 hdc = GetDC (dpyinfo->root_window);
5452 oldobj = SelectObject (hdc, font->hfont);
5453 ok = GetTextMetrics (hdc, &font->tm);
5454 font->double_byte_p = GetFontLanguageInfo(hdc) & GCP_DBCS;
5455 SelectObject (hdc, oldobj);
5456 ReleaseDC (dpyinfo->root_window, hdc);
5457 /* Fill out details in lf according to the font that was
5458 actually loaded. */
5459 lf.lfHeight = font->tm.tmInternalLeading - font->tm.tmHeight;
5460 lf.lfWidth = font->tm.tmAveCharWidth;
5461 lf.lfWeight = font->tm.tmWeight;
5462 lf.lfItalic = font->tm.tmItalic;
5463 lf.lfCharSet = font->tm.tmCharSet;
5464 lf.lfPitchAndFamily = ((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH)
5465 ? VARIABLE_PITCH : FIXED_PITCH);
5466 lf.lfOutPrecision = ((font->tm.tmPitchAndFamily & TMPF_VECTOR)
5467 ? OUT_STROKE_PRECIS : OUT_STRING_PRECIS);
5468
5469 w32_cache_char_metrics (font);
5470 }
5471
5472 UNBLOCK_INPUT;
5473
5474 if (!ok)
5475 {
5476 w32_unload_font (dpyinfo, font);
5477 return (NULL);
5478 }
5479
5480 /* Find a free slot in the font table. */
5481 for (i = 0; i < dpyinfo->n_fonts; ++i)
5482 if (dpyinfo->font_table[i].name == NULL)
5483 break;
5484
5485 /* If no free slot found, maybe enlarge the font table. */
5486 if (i == dpyinfo->n_fonts
5487 && dpyinfo->n_fonts == dpyinfo->font_table_size)
5488 {
5489 int sz;
5490 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
5491 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
5492 dpyinfo->font_table
5493 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
5494 }
5495
5496 fontp = dpyinfo->font_table + i;
5497 if (i == dpyinfo->n_fonts)
5498 ++dpyinfo->n_fonts;
5499
5500 /* Now fill in the slots of *FONTP. */
5501 BLOCK_INPUT;
5502 fontp->font = font;
5503 fontp->font_idx = i;
5504 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
5505 bcopy (fontname, fontp->name, strlen (fontname) + 1);
5506
5507 /* Work out the font's full name. */
5508 full_name = (char *)xmalloc (100);
5509 if (full_name && w32_to_x_font (&lf, full_name, 100))
5510 fontp->full_name = full_name;
5511 else
5512 {
5513 /* If all else fails - just use the name we used to load it. */
5514 xfree (full_name);
5515 fontp->full_name = fontp->name;
5516 }
5517
5518 fontp->size = FONT_WIDTH (font);
5519 fontp->height = FONT_HEIGHT (font);
5520
5521 /* The slot `encoding' specifies how to map a character
5522 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
5523 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
5524 (0:0x20..0x7F, 1:0xA0..0xFF,
5525 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
5526 2:0xA020..0xFF7F). For the moment, we don't know which charset
5527 uses this font. So, we set information in fontp->encoding[1]
5528 which is never used by any charset. If mapping can't be
5529 decided, set FONT_ENCODING_NOT_DECIDED. */
5530
5531 /* SJIS fonts need to be set to type 4, all others seem to work as
5532 type FONT_ENCODING_NOT_DECIDED. */
5533 encoding = strrchr (fontp->name, '-');
5534 if (encoding && stricmp (encoding+1, "sjis") == 0)
5535 fontp->encoding[1] = 4;
5536 else
5537 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED;
5538
5539 /* The following three values are set to 0 under W32, which is
5540 what they get set to if XGetFontProperty fails under X. */
5541 fontp->baseline_offset = 0;
5542 fontp->relative_compose = 0;
5543 fontp->default_ascent = 0;
5544
5545 /* Set global flag fonts_changed_p to non-zero if the font loaded
5546 has a character with a smaller width than any other character
5547 before, or if the font loaded has a smalle>r height than any
5548 other font loaded before. If this happens, it will make a
5549 glyph matrix reallocation necessary. */
5550 fonts_changed_p = x_compute_min_glyph_bounds (f);
5551 UNBLOCK_INPUT;
5552 return fontp;
5553 }
5554 }
5555
5556 /* Load font named FONTNAME of size SIZE for frame F, and return a
5557 pointer to the structure font_info while allocating it dynamically.
5558 If loading fails, return NULL. */
5559 struct font_info *
5560 w32_load_font (f,fontname,size)
5561 struct frame *f;
5562 char * fontname;
5563 int size;
5564 {
5565 Lisp_Object bdf_fonts;
5566 struct font_info *retval = NULL;
5567
5568 bdf_fonts = w32_list_bdf_fonts (build_string (fontname));
5569
5570 while (!retval && CONSP (bdf_fonts))
5571 {
5572 char *bdf_name, *bdf_file;
5573 Lisp_Object bdf_pair;
5574
5575 bdf_name = XSTRING (XCAR (bdf_fonts))->data;
5576 bdf_pair = Fassoc (XCAR (bdf_fonts), Vw32_bdf_filename_alist);
5577 bdf_file = XSTRING (XCDR (bdf_pair))->data;
5578
5579 retval = w32_load_bdf_font (f, bdf_name, size, bdf_file);
5580
5581 bdf_fonts = XCDR (bdf_fonts);
5582 }
5583
5584 if (retval)
5585 return retval;
5586
5587 return w32_load_system_font(f, fontname, size);
5588 }
5589
5590
5591 void
5592 w32_unload_font (dpyinfo, font)
5593 struct w32_display_info *dpyinfo;
5594 XFontStruct * font;
5595 {
5596 if (font)
5597 {
5598 if (font->per_char) xfree (font->per_char);
5599 if (font->bdf) w32_free_bdf_font (font->bdf);
5600
5601 if (font->hfont) DeleteObject(font->hfont);
5602 xfree (font);
5603 }
5604 }
5605
5606 /* The font conversion stuff between x and w32 */
5607
5608 /* X font string is as follows (from faces.el)
5609 * (let ((- "[-?]")
5610 * (foundry "[^-]+")
5611 * (family "[^-]+")
5612 * (weight "\\(bold\\|demibold\\|medium\\)") ; 1
5613 * (weight\? "\\([^-]*\\)") ; 1
5614 * (slant "\\([ior]\\)") ; 2
5615 * (slant\? "\\([^-]?\\)") ; 2
5616 * (swidth "\\([^-]*\\)") ; 3
5617 * (adstyle "[^-]*") ; 4
5618 * (pixelsize "[0-9]+")
5619 * (pointsize "[0-9][0-9]+")
5620 * (resx "[0-9][0-9]+")
5621 * (resy "[0-9][0-9]+")
5622 * (spacing "[cmp?*]")
5623 * (avgwidth "[0-9]+")
5624 * (registry "[^-]+")
5625 * (encoding "[^-]+")
5626 * )
5627 */
5628
5629 LONG
5630 x_to_w32_weight (lpw)
5631 char * lpw;
5632 {
5633 if (!lpw) return (FW_DONTCARE);
5634
5635 if (stricmp (lpw,"heavy") == 0) return FW_HEAVY;
5636 else if (stricmp (lpw,"extrabold") == 0) return FW_EXTRABOLD;
5637 else if (stricmp (lpw,"bold") == 0) return FW_BOLD;
5638 else if (stricmp (lpw,"demibold") == 0) return FW_SEMIBOLD;
5639 else if (stricmp (lpw,"semibold") == 0) return FW_SEMIBOLD;
5640 else if (stricmp (lpw,"medium") == 0) return FW_MEDIUM;
5641 else if (stricmp (lpw,"normal") == 0) return FW_NORMAL;
5642 else if (stricmp (lpw,"light") == 0) return FW_LIGHT;
5643 else if (stricmp (lpw,"extralight") == 0) return FW_EXTRALIGHT;
5644 else if (stricmp (lpw,"thin") == 0) return FW_THIN;
5645 else
5646 return FW_DONTCARE;
5647 }
5648
5649
5650 char *
5651 w32_to_x_weight (fnweight)
5652 int fnweight;
5653 {
5654 if (fnweight >= FW_HEAVY) return "heavy";
5655 if (fnweight >= FW_EXTRABOLD) return "extrabold";
5656 if (fnweight >= FW_BOLD) return "bold";
5657 if (fnweight >= FW_SEMIBOLD) return "demibold";
5658 if (fnweight >= FW_MEDIUM) return "medium";
5659 if (fnweight >= FW_NORMAL) return "normal";
5660 if (fnweight >= FW_LIGHT) return "light";
5661 if (fnweight >= FW_EXTRALIGHT) return "extralight";
5662 if (fnweight >= FW_THIN) return "thin";
5663 else
5664 return "*";
5665 }
5666
5667 LONG
5668 x_to_w32_charset (lpcs)
5669 char * lpcs;
5670 {
5671 Lisp_Object rest;
5672
5673 /* Look through w32-charset-info-alist for the character set.
5674 Format of each entry is
5675 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5676 */
5677 for (rest = Vw32_charset_info_alist; CONSP (rest); rest = XCDR (rest))
5678 {
5679 Lisp_Object this_entry = XCAR (rest);
5680 char * x_charset = XSTRING (XCAR (this_entry))->data;
5681
5682 if (strnicmp (lpcs, x_charset, strlen(x_charset)) == 0)
5683 {
5684 Lisp_Object w32_charset = XCAR (XCDR (this_entry));
5685 // Translate Lisp symbol to number.
5686 if (w32_charset == Qw32_charset_ansi)
5687 return ANSI_CHARSET;
5688 if (w32_charset == Qw32_charset_symbol)
5689 return SYMBOL_CHARSET;
5690 if (w32_charset == Qw32_charset_shiftjis)
5691 return SHIFTJIS_CHARSET;
5692 if (w32_charset == Qw32_charset_hangul)
5693 return HANGEUL_CHARSET;
5694 if (w32_charset == Qw32_charset_chinesebig5)
5695 return CHINESEBIG5_CHARSET;
5696 if (w32_charset == Qw32_charset_gb2312)
5697 return GB2312_CHARSET;
5698 if (w32_charset == Qw32_charset_oem)
5699 return OEM_CHARSET;
5700 #ifdef JOHAB_CHARSET
5701 if (w32_charset == Qw32_charset_johab)
5702 return JOHAB_CHARSET;
5703 if (w32_charset == Qw32_charset_easteurope)
5704 return EASTEUROPE_CHARSET;
5705 if (w32_charset == Qw32_charset_turkish)
5706 return TURKISH_CHARSET;
5707 if (w32_charset == Qw32_charset_baltic)
5708 return BALTIC_CHARSET;
5709 if (w32_charset == Qw32_charset_russian)
5710 return RUSSIAN_CHARSET;
5711 if (w32_charset == Qw32_charset_arabic)
5712 return ARABIC_CHARSET;
5713 if (w32_charset == Qw32_charset_greek)
5714 return GREEK_CHARSET;
5715 if (w32_charset == Qw32_charset_hebrew)
5716 return HEBREW_CHARSET;
5717 if (w32_charset == Qw32_charset_thai)
5718 return THAI_CHARSET;
5719 if (w32_charset == Qw32_charset_mac)
5720 return MAC_CHARSET;
5721 #endif /* JOHAB_CHARSET */
5722 #ifdef UNICODE_CHARSET
5723 if (w32_charset == Qw32_charset_unicode)
5724 return UNICODE_CHARSET;
5725 #endif
5726 }
5727 }
5728
5729 return DEFAULT_CHARSET;
5730 }
5731
5732
5733 char *
5734 w32_to_x_charset (fncharset)
5735 int fncharset;
5736 {
5737 static char buf[16];
5738
5739 /* NTEMACS_TODO: use w32-charset-info-alist. Multiple matches
5740 are possible, so this will require more than just a rewrite of
5741 this function. w32_to_x_font is the only user of this function,
5742 and that will require rewriting too, and its users. */
5743 switch (fncharset)
5744 {
5745 /* ansi is considered iso8859-1, as most modern ansi fonts are. */
5746 case ANSI_CHARSET: return "iso8859-1";
5747 case DEFAULT_CHARSET: return "ascii-*";
5748 case SYMBOL_CHARSET: return "ms-symbol";
5749 case SHIFTJIS_CHARSET: return "jisx0208-sjis";
5750 case HANGEUL_CHARSET: return "ksc5601.1987-*";
5751 case GB2312_CHARSET: return "gb2312-*";
5752 case CHINESEBIG5_CHARSET: return "big5-*";
5753 case OEM_CHARSET: return "ms-oem";
5754
5755 /* More recent versions of Windows (95 and NT4.0) define more
5756 character sets. */
5757 #ifdef EASTEUROPE_CHARSET
5758 case EASTEUROPE_CHARSET: return "iso8859-2";
5759 case TURKISH_CHARSET: return "iso8859-9";
5760 case BALTIC_CHARSET: return "iso8859-4";
5761
5762 /* W95 with international support but not IE4 often has the
5763 KOI8-R codepage but not ISO8859-5. */
5764 case RUSSIAN_CHARSET:
5765 if (!IsValidCodePage(28595) && IsValidCodePage(20886))
5766 return "koi8-r";
5767 else
5768 return "iso8859-5";
5769 case ARABIC_CHARSET: return "iso8859-6";
5770 case GREEK_CHARSET: return "iso8859-7";
5771 case HEBREW_CHARSET: return "iso8859-8";
5772 case VIETNAMESE_CHARSET: return "viscii1.1-*";
5773 case THAI_CHARSET: return "tis620-*";
5774 case MAC_CHARSET: return "mac-*";
5775 case JOHAB_CHARSET: return "ksc5601.1992-*";
5776
5777 #endif
5778
5779 #ifdef UNICODE_CHARSET
5780 case UNICODE_CHARSET: return "iso10646-unicode";
5781 #endif
5782 }
5783 /* Encode numerical value of unknown charset. */
5784 sprintf (buf, "*-#%u", fncharset);
5785 return buf;
5786 }
5787
5788
5789 /* Get the Windows codepage corresponding to the specified font. The
5790 charset info in the font name is used to look up
5791 w32-charset-to-codepage-alist. */
5792 int
5793 w32_codepage_for_font (char *fontname)
5794 {
5795 Lisp_Object codepage;
5796 char charset_str[20], *charset, *end;
5797
5798 /* Extract charset part of font string. */
5799 if (sscanf (fontname,
5800 "-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%*[^-]-%19s",
5801 charset_str) < 1)
5802 return CP_DEFAULT;
5803
5804 /* Remove leading "*-". */
5805 if (strncmp ("*-", charset_str, 2) == 0)
5806 charset = charset_str + 2;
5807 else
5808 charset = charset_str;
5809
5810 /* Stop match at wildcard (including preceding '-'). */
5811 if (end = strchr (charset, '*'))
5812 {
5813 if (end > charset && *(end-1) == '-')
5814 end--;
5815 *end = '\0';
5816 }
5817
5818 codepage = Fcdr (Fcdr (Fassoc (build_string(charset),
5819 Vw32_charset_info_alist)));
5820 if (INTEGERP (codepage))
5821 return XINT (codepage);
5822 else
5823 return CP_DEFAULT;
5824 }
5825
5826
5827 BOOL
5828 w32_to_x_font (lplogfont, lpxstr, len)
5829 LOGFONT * lplogfont;
5830 char * lpxstr;
5831 int len;
5832 {
5833 char* fonttype;
5834 char *fontname;
5835 char height_pixels[8];
5836 char height_dpi[8];
5837 char width_pixels[8];
5838 char *fontname_dash;
5839 int display_resy = one_w32_display_info.resy;
5840 int display_resx = one_w32_display_info.resx;
5841 int bufsz;
5842 struct coding_system coding;
5843
5844 if (!lpxstr) abort ();
5845
5846 if (!lplogfont)
5847 return FALSE;
5848
5849 if (lplogfont->lfOutPrecision == OUT_STRING_PRECIS)
5850 fonttype = "raster";
5851 else if (lplogfont->lfOutPrecision == OUT_STROKE_PRECIS)
5852 fonttype = "outline";
5853 else
5854 fonttype = "unknown";
5855
5856 setup_coding_system (Fcheck_coding_system (Vw32_system_coding_system),
5857 &coding);
5858 coding.src_multibyte = 0;
5859 coding.dst_multibyte = 1;
5860 coding.mode |= CODING_MODE_LAST_BLOCK;
5861 bufsz = decoding_buffer_size (&coding, LF_FACESIZE);
5862
5863 fontname = alloca(sizeof(*fontname) * bufsz);
5864 decode_coding (&coding, lplogfont->lfFaceName, fontname,
5865 strlen(lplogfont->lfFaceName), bufsz - 1);
5866 *(fontname + coding.produced) = '\0';
5867
5868 /* Replace dashes with underscores so the dashes are not
5869 misinterpreted. */
5870 fontname_dash = fontname;
5871 while (fontname_dash = strchr (fontname_dash, '-'))
5872 *fontname_dash = '_';
5873
5874 if (lplogfont->lfHeight)
5875 {
5876 sprintf (height_pixels, "%u", abs (lplogfont->lfHeight));
5877 sprintf (height_dpi, "%u",
5878 abs (lplogfont->lfHeight) * 720 / display_resy);
5879 }
5880 else
5881 {
5882 strcpy (height_pixels, "*");
5883 strcpy (height_dpi, "*");
5884 }
5885 if (lplogfont->lfWidth)
5886 sprintf (width_pixels, "%u", lplogfont->lfWidth * 10);
5887 else
5888 strcpy (width_pixels, "*");
5889
5890 _snprintf (lpxstr, len - 1,
5891 "-%s-%s-%s-%c-normal-normal-%s-%s-%d-%d-%c-%s-%s",
5892 fonttype, /* foundry */
5893 fontname, /* family */
5894 w32_to_x_weight (lplogfont->lfWeight), /* weight */
5895 lplogfont->lfItalic?'i':'r', /* slant */
5896 /* setwidth name */
5897 /* add style name */
5898 height_pixels, /* pixel size */
5899 height_dpi, /* point size */
5900 display_resx, /* resx */
5901 display_resy, /* resy */
5902 ((lplogfont->lfPitchAndFamily & 0x3) == VARIABLE_PITCH)
5903 ? 'p' : 'c', /* spacing */
5904 width_pixels, /* avg width */
5905 w32_to_x_charset (lplogfont->lfCharSet) /* charset registry
5906 and encoding*/
5907 );
5908
5909 lpxstr[len - 1] = 0; /* just to be sure */
5910 return (TRUE);
5911 }
5912
5913 BOOL
5914 x_to_w32_font (lpxstr, lplogfont)
5915 char * lpxstr;
5916 LOGFONT * lplogfont;
5917 {
5918 struct coding_system coding;
5919
5920 if (!lplogfont) return (FALSE);
5921
5922 memset (lplogfont, 0, sizeof (*lplogfont));
5923
5924 /* Set default value for each field. */
5925 #if 1
5926 lplogfont->lfOutPrecision = OUT_DEFAULT_PRECIS;
5927 lplogfont->lfClipPrecision = CLIP_DEFAULT_PRECIS;
5928 lplogfont->lfQuality = DEFAULT_QUALITY;
5929 #else
5930 /* go for maximum quality */
5931 lplogfont->lfOutPrecision = OUT_STROKE_PRECIS;
5932 lplogfont->lfClipPrecision = CLIP_STROKE_PRECIS;
5933 lplogfont->lfQuality = PROOF_QUALITY;
5934 #endif
5935
5936 lplogfont->lfCharSet = DEFAULT_CHARSET;
5937 lplogfont->lfWeight = FW_DONTCARE;
5938 lplogfont->lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE;
5939
5940 if (!lpxstr)
5941 return FALSE;
5942
5943 /* Provide a simple escape mechanism for specifying Windows font names
5944 * directly -- if font spec does not beginning with '-', assume this
5945 * format:
5946 * "<font name>[:height in pixels[:width in pixels[:weight]]]"
5947 */
5948
5949 if (*lpxstr == '-')
5950 {
5951 int fields, tem;
5952 char name[50], weight[20], slant, pitch, pixels[10], height[10],
5953 width[10], resy[10], remainder[20];
5954 char * encoding;
5955 int dpi = one_w32_display_info.resy;
5956
5957 fields = sscanf (lpxstr,
5958 "-%*[^-]-%49[^-]-%19[^-]-%c-%*[^-]-%*[^-]-%9[^-]-%9[^-]-%*[^-]-%9[^-]-%c-%9[^-]-%19s",
5959 name, weight, &slant, pixels, height, resy, &pitch, width, remainder);
5960 if (fields == EOF) return (FALSE);
5961
5962 /* If wildcards cover more than one field, we don't know which
5963 field is which, so don't fill any in. */
5964
5965 if (fields < 9)
5966 fields = 0;
5967
5968 if (fields > 0 && name[0] != '*')
5969 {
5970 int bufsize;
5971 unsigned char *buf;
5972
5973 setup_coding_system
5974 (Fcheck_coding_system (Vw32_system_coding_system), &coding);
5975 coding.src_multibyte = 1;
5976 coding.dst_multibyte = 1;
5977 bufsize = encoding_buffer_size (&coding, strlen (name));
5978 buf = (unsigned char *) alloca (bufsize);
5979 coding.mode |= CODING_MODE_LAST_BLOCK;
5980 encode_coding (&coding, name, buf, strlen (name), bufsize);
5981 if (coding.produced >= LF_FACESIZE)
5982 coding.produced = LF_FACESIZE - 1;
5983 buf[coding.produced] = 0;
5984 strcpy (lplogfont->lfFaceName, buf);
5985 }
5986 else
5987 {
5988 lplogfont->lfFaceName[0] = '\0';
5989 }
5990
5991 fields--;
5992
5993 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
5994
5995 fields--;
5996
5997 if (!NILP (Vw32_enable_synthesized_fonts))
5998 lplogfont->lfItalic = (fields > 0 && slant == 'i');
5999
6000 fields--;
6001
6002 if (fields > 0 && pixels[0] != '*')
6003 lplogfont->lfHeight = atoi (pixels);
6004
6005 fields--;
6006 fields--;
6007 if (fields > 0 && resy[0] != '*')
6008 {
6009 tem = atoi (resy);
6010 if (tem > 0) dpi = tem;
6011 }
6012
6013 if (fields > -1 && lplogfont->lfHeight == 0 && height[0] != '*')
6014 lplogfont->lfHeight = atoi (height) * dpi / 720;
6015
6016 if (fields > 0)
6017 lplogfont->lfPitchAndFamily =
6018 (fields > 0 && pitch == 'p') ? VARIABLE_PITCH : FIXED_PITCH;
6019
6020 fields--;
6021
6022 if (fields > 0 && width[0] != '*')
6023 lplogfont->lfWidth = atoi (width) / 10;
6024
6025 fields--;
6026
6027 /* Strip the trailing '-' if present. (it shouldn't be, as it
6028 fails the test against xlfd-tight-regexp in fontset.el). */
6029 {
6030 int len = strlen (remainder);
6031 if (len > 0 && remainder[len-1] == '-')
6032 remainder[len-1] = 0;
6033 }
6034 encoding = remainder;
6035 if (strncmp (encoding, "*-", 2) == 0)
6036 encoding += 2;
6037 lplogfont->lfCharSet = x_to_w32_charset (fields > 0 ? encoding : "");
6038 }
6039 else
6040 {
6041 int fields;
6042 char name[100], height[10], width[10], weight[20];
6043
6044 fields = sscanf (lpxstr,
6045 "%99[^:]:%9[^:]:%9[^:]:%19s",
6046 name, height, width, weight);
6047
6048 if (fields == EOF) return (FALSE);
6049
6050 if (fields > 0)
6051 {
6052 strncpy (lplogfont->lfFaceName,name, LF_FACESIZE);
6053 lplogfont->lfFaceName[LF_FACESIZE-1] = 0;
6054 }
6055 else
6056 {
6057 lplogfont->lfFaceName[0] = 0;
6058 }
6059
6060 fields--;
6061
6062 if (fields > 0)
6063 lplogfont->lfHeight = atoi (height);
6064
6065 fields--;
6066
6067 if (fields > 0)
6068 lplogfont->lfWidth = atoi (width);
6069
6070 fields--;
6071
6072 lplogfont->lfWeight = x_to_w32_weight ((fields > 0 ? weight : ""));
6073 }
6074
6075 /* This makes TrueType fonts work better. */
6076 lplogfont->lfHeight = - abs (lplogfont->lfHeight);
6077
6078 return (TRUE);
6079 }
6080
6081 /* Strip the pixel height and point height from the given xlfd, and
6082 return the pixel height. If no pixel height is specified, calculate
6083 one from the point height, or if that isn't defined either, return
6084 0 (which usually signifies a scalable font).
6085 */
6086 int xlfd_strip_height (char *fontname)
6087 {
6088 int pixel_height, point_height, dpi, field_number;
6089 char *read_from, *write_to;
6090
6091 xassert (fontname);
6092
6093 pixel_height = field_number = 0;
6094 write_to = NULL;
6095
6096 /* Look for height fields. */
6097 for (read_from = fontname; *read_from; read_from++)
6098 {
6099 if (*read_from == '-')
6100 {
6101 field_number++;
6102 if (field_number == 7) /* Pixel height. */
6103 {
6104 read_from++;
6105 write_to = read_from;
6106
6107 /* Find end of field. */
6108 for (;*read_from && *read_from != '-'; read_from++)
6109 ;
6110
6111 /* Split the fontname at end of field. */
6112 if (*read_from)
6113 {
6114 *read_from = '\0';
6115 read_from++;
6116 }
6117 pixel_height = atoi (write_to);
6118 /* Blank out field. */
6119 if (read_from > write_to)
6120 {
6121 *write_to = '-';
6122 write_to++;
6123 }
6124 /* If the pixel height field is at the end (partial xfld),
6125 return now. */
6126 else
6127 return pixel_height;
6128
6129 /* If we got a pixel height, the point height can be
6130 ignored. Just blank it out and break now. */
6131 if (pixel_height)
6132 {
6133 /* Find end of point size field. */
6134 for (; *read_from && *read_from != '-'; read_from++)
6135 ;
6136
6137 if (*read_from)
6138 read_from++;
6139
6140 /* Blank out the point size field. */
6141 if (read_from > write_to)
6142 {
6143 *write_to = '-';
6144 write_to++;
6145 }
6146 else
6147 return pixel_height;
6148
6149 break;
6150 }
6151 /* If the point height is already blank, break now. */
6152 if (*read_from == '-')
6153 {
6154 read_from++;
6155 break;
6156 }
6157 }
6158 else if (field_number == 8)
6159 {
6160 /* If we didn't get a pixel height, try to get the point
6161 height and convert that. */
6162 int point_size;
6163 char *point_size_start = read_from++;
6164
6165 /* Find end of field. */
6166 for (; *read_from && *read_from != '-'; read_from++)
6167 ;
6168
6169 if (*read_from)
6170 {
6171 *read_from = '\0';
6172 read_from++;
6173 }
6174
6175 point_size = atoi (point_size_start);
6176
6177 /* Convert to pixel height. */
6178 pixel_height = point_size
6179 * one_w32_display_info.height_in / 720;
6180
6181 /* Blank out this field and break. */
6182 *write_to = '-';
6183 write_to++;
6184 break;
6185 }
6186 }
6187 }
6188
6189 /* Shift the rest of the font spec into place. */
6190 if (write_to && read_from > write_to)
6191 {
6192 for (; *read_from; read_from++, write_to++)
6193 *write_to = *read_from;
6194 *write_to = '\0';
6195 }
6196
6197 return pixel_height;
6198 }
6199
6200 /* Assume parameter 1 is fully qualified, no wildcards. */
6201 BOOL
6202 w32_font_match (fontname, pattern)
6203 char * fontname;
6204 char * pattern;
6205 {
6206 char *regex = alloca (strlen (pattern) * 2);
6207 char *font_name_copy = alloca (strlen (fontname) + 1);
6208 char *ptr;
6209
6210 /* Copy fontname so we can modify it during comparison. */
6211 strcpy (font_name_copy, fontname);
6212
6213 ptr = regex;
6214 *ptr++ = '^';
6215
6216 /* Turn pattern into a regexp and do a regexp match. */
6217 for (; *pattern; pattern++)
6218 {
6219 if (*pattern == '?')
6220 *ptr++ = '.';
6221 else if (*pattern == '*')
6222 {
6223 *ptr++ = '.';
6224 *ptr++ = '*';
6225 }
6226 else
6227 *ptr++ = *pattern;
6228 }
6229 *ptr = '$';
6230 *(ptr + 1) = '\0';
6231
6232 /* Strip out font heights and compare them seperately, since
6233 rounding error can cause mismatches. This also allows a
6234 comparison between a font that declares only a pixel height and a
6235 pattern that declares the point height.
6236 */
6237 {
6238 int font_height, pattern_height;
6239
6240 font_height = xlfd_strip_height (font_name_copy);
6241 pattern_height = xlfd_strip_height (regex);
6242
6243 /* Compare now, and don't bother doing expensive regexp matching
6244 if the heights differ. */
6245 if (font_height && pattern_height && (font_height != pattern_height))
6246 return FALSE;
6247 }
6248
6249 return (fast_c_string_match_ignore_case (build_string (regex),
6250 font_name_copy) >= 0);
6251 }
6252
6253 /* Callback functions, and a structure holding info they need, for
6254 listing system fonts on W32. We need one set of functions to do the
6255 job properly, but these don't work on NT 3.51 and earlier, so we
6256 have a second set which don't handle character sets properly to
6257 fall back on.
6258
6259 In both cases, there are two passes made. The first pass gets one
6260 font from each family, the second pass lists all the fonts from
6261 each family. */
6262
6263 typedef struct enumfont_t
6264 {
6265 HDC hdc;
6266 int numFonts;
6267 LOGFONT logfont;
6268 XFontStruct *size_ref;
6269 Lisp_Object *pattern;
6270 Lisp_Object *tail;
6271 } enumfont_t;
6272
6273 int CALLBACK
6274 enum_font_cb2 (lplf, lptm, FontType, lpef)
6275 ENUMLOGFONT * lplf;
6276 NEWTEXTMETRIC * lptm;
6277 int FontType;
6278 enumfont_t * lpef;
6279 {
6280 if (lplf->elfLogFont.lfStrikeOut || lplf->elfLogFont.lfUnderline)
6281 return (1);
6282
6283 /* Check that the character set matches if it was specified */
6284 if (lpef->logfont.lfCharSet != DEFAULT_CHARSET &&
6285 lplf->elfLogFont.lfCharSet != lpef->logfont.lfCharSet)
6286 return (1);
6287
6288 {
6289 char buf[100];
6290 Lisp_Object width = Qnil;
6291
6292 /* Truetype fonts do not report their true metrics until loaded */
6293 if (FontType != RASTER_FONTTYPE)
6294 {
6295 if (!NILP (*(lpef->pattern)))
6296 {
6297 /* Scalable fonts are as big as you want them to be. */
6298 lplf->elfLogFont.lfHeight = lpef->logfont.lfHeight;
6299 lplf->elfLogFont.lfWidth = lpef->logfont.lfWidth;
6300 width = make_number (lpef->logfont.lfWidth);
6301 }
6302 else
6303 {
6304 lplf->elfLogFont.lfHeight = 0;
6305 lplf->elfLogFont.lfWidth = 0;
6306 }
6307 }
6308
6309 /* Make sure the height used here is the same as everywhere
6310 else (ie character height, not cell height). */
6311 if (lplf->elfLogFont.lfHeight > 0)
6312 {
6313 /* lptm can be trusted for RASTER fonts, but not scalable ones. */
6314 if (FontType == RASTER_FONTTYPE)
6315 lplf->elfLogFont.lfHeight = lptm->tmInternalLeading - lptm->tmHeight;
6316 else
6317 lplf->elfLogFont.lfHeight = -lplf->elfLogFont.lfHeight;
6318 }
6319
6320 if (!w32_to_x_font (&(lplf->elfLogFont), buf, 100))
6321 return (0);
6322
6323 if (NILP (*(lpef->pattern))
6324 || w32_font_match (buf, XSTRING (*(lpef->pattern))->data))
6325 {
6326 *lpef->tail = Fcons (Fcons (build_string (buf), width), Qnil);
6327 lpef->tail = &(XCDR (*lpef->tail));
6328 lpef->numFonts++;
6329 }
6330 }
6331
6332 return (1);
6333 }
6334
6335 int CALLBACK
6336 enum_font_cb1 (lplf, lptm, FontType, lpef)
6337 ENUMLOGFONT * lplf;
6338 NEWTEXTMETRIC * lptm;
6339 int FontType;
6340 enumfont_t * lpef;
6341 {
6342 return EnumFontFamilies (lpef->hdc,
6343 lplf->elfLogFont.lfFaceName,
6344 (FONTENUMPROC) enum_font_cb2,
6345 (LPARAM) lpef);
6346 }
6347
6348
6349 int CALLBACK
6350 enum_fontex_cb2 (lplf, lptm, font_type, lpef)
6351 ENUMLOGFONTEX * lplf;
6352 NEWTEXTMETRICEX * lptm;
6353 int font_type;
6354 enumfont_t * lpef;
6355 {
6356 /* We are not interested in the extra info we get back from the 'Ex
6357 version - only the fact that we get character set variations
6358 enumerated seperately. */
6359 return enum_font_cb2 ((ENUMLOGFONT *) lplf, (NEWTEXTMETRIC *) lptm,
6360 font_type, lpef);
6361 }
6362
6363 int CALLBACK
6364 enum_fontex_cb1 (lplf, lptm, font_type, lpef)
6365 ENUMLOGFONTEX * lplf;
6366 NEWTEXTMETRICEX * lptm;
6367 int font_type;
6368 enumfont_t * lpef;
6369 {
6370 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
6371 FARPROC enum_font_families_ex
6372 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
6373 /* We don't really expect EnumFontFamiliesEx to disappear once we
6374 get here, so don't bother handling it gracefully. */
6375 if (enum_font_families_ex == NULL)
6376 error ("gdi32.dll has disappeared!");
6377 return enum_font_families_ex (lpef->hdc,
6378 &lplf->elfLogFont,
6379 (FONTENUMPROC) enum_fontex_cb2,
6380 (LPARAM) lpef, 0);
6381 }
6382
6383 /* Interface to fontset handler. (adapted from mw32font.c in Meadow
6384 and xterm.c in Emacs 20.3) */
6385
6386 Lisp_Object w32_list_bdf_fonts (Lisp_Object pattern, int max_names)
6387 {
6388 char *fontname, *ptnstr;
6389 Lisp_Object list, tem, newlist = Qnil;
6390 int n_fonts = 0;
6391
6392 list = Vw32_bdf_filename_alist;
6393 ptnstr = XSTRING (pattern)->data;
6394
6395 for ( ; CONSP (list); list = XCDR (list))
6396 {
6397 tem = XCAR (list);
6398 if (CONSP (tem))
6399 fontname = XSTRING (XCAR (tem))->data;
6400 else if (STRINGP (tem))
6401 fontname = XSTRING (tem)->data;
6402 else
6403 continue;
6404
6405 if (w32_font_match (fontname, ptnstr))
6406 {
6407 newlist = Fcons (XCAR (tem), newlist);
6408 n_fonts++;
6409 if (n_fonts >= max_names)
6410 break;
6411 }
6412 }
6413
6414 return newlist;
6415 }
6416
6417 Lisp_Object w32_list_synthesized_fonts (FRAME_PTR f, Lisp_Object pattern,
6418 int size, int max_names);
6419
6420 /* Return a list of names of available fonts matching PATTERN on frame
6421 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
6422 to be listed. Frame F NULL means we have not yet created any
6423 frame, which means we can't get proper size info, as we don't have
6424 a device context to use for GetTextMetrics.
6425 MAXNAMES sets a limit on how many fonts to match. */
6426
6427 Lisp_Object
6428 w32_list_fonts (FRAME_PTR f, Lisp_Object pattern, int size, int maxnames )
6429 {
6430 Lisp_Object patterns, key = Qnil, tem, tpat;
6431 Lisp_Object list = Qnil, newlist = Qnil, second_best = Qnil;
6432 struct w32_display_info *dpyinfo = &one_w32_display_info;
6433 int n_fonts = 0;
6434
6435 patterns = Fassoc (pattern, Valternate_fontname_alist);
6436 if (NILP (patterns))
6437 patterns = Fcons (pattern, Qnil);
6438
6439 for (; CONSP (patterns); patterns = XCDR (patterns))
6440 {
6441 enumfont_t ef;
6442
6443 tpat = XCAR (patterns);
6444
6445 /* See if we cached the result for this particular query.
6446 The cache is an alist of the form:
6447 ((PATTERN (FONTNAME . WIDTH) ...) ...)
6448 */
6449 if (tem = XCDR (dpyinfo->name_list_element),
6450 !NILP (list = Fassoc (tpat, tem)))
6451 {
6452 list = Fcdr_safe (list);
6453 /* We have a cached list. Don't have to get the list again. */
6454 goto label_cached;
6455 }
6456
6457 BLOCK_INPUT;
6458 /* At first, put PATTERN in the cache. */
6459 list = Qnil;
6460 ef.pattern = &tpat;
6461 ef.tail = &list;
6462 ef.numFonts = 0;
6463
6464 /* Use EnumFontFamiliesEx where it is available, as it knows
6465 about character sets. Fall back to EnumFontFamilies for
6466 older versions of NT that don't support the 'Ex function. */
6467 x_to_w32_font (STRINGP (tpat) ? XSTRING (tpat)->data :
6468 NULL, &ef.logfont);
6469 {
6470 LOGFONT font_match_pattern;
6471 HMODULE gdi32 = GetModuleHandle ("gdi32.dll");
6472 FARPROC enum_font_families_ex
6473 = GetProcAddress ( gdi32, "EnumFontFamiliesExA");
6474
6475 /* We do our own pattern matching so we can handle wildcards. */
6476 font_match_pattern.lfFaceName[0] = 0;
6477 font_match_pattern.lfPitchAndFamily = 0;
6478 /* We can use the charset, because if it is a wildcard it will
6479 be DEFAULT_CHARSET anyway. */
6480 font_match_pattern.lfCharSet = ef.logfont.lfCharSet;
6481
6482 ef.hdc = GetDC (dpyinfo->root_window);
6483
6484 if (enum_font_families_ex)
6485 enum_font_families_ex (ef.hdc,
6486 &font_match_pattern,
6487 (FONTENUMPROC) enum_fontex_cb1,
6488 (LPARAM) &ef, 0);
6489 else
6490 EnumFontFamilies (ef.hdc, NULL, (FONTENUMPROC) enum_font_cb1,
6491 (LPARAM)&ef);
6492
6493 ReleaseDC (dpyinfo->root_window, ef.hdc);
6494 }
6495
6496 UNBLOCK_INPUT;
6497
6498 /* Make a list of the fonts we got back.
6499 Store that in the font cache for the display. */
6500 XCDR (dpyinfo->name_list_element)
6501 = Fcons (Fcons (tpat, list),
6502 XCDR (dpyinfo->name_list_element));
6503
6504 label_cached:
6505 if (NILP (list)) continue; /* Try the remaining alternatives. */
6506
6507 newlist = second_best = Qnil;
6508
6509 /* Make a list of the fonts that have the right width. */
6510 for (; CONSP (list); list = XCDR (list))
6511 {
6512 int found_size;
6513 tem = XCAR (list);
6514
6515 if (!CONSP (tem))
6516 continue;
6517 if (NILP (XCAR (tem)))
6518 continue;
6519 if (!size)
6520 {
6521 newlist = Fcons (XCAR (tem), newlist);
6522 n_fonts++;
6523 if (n_fonts >= maxnames)
6524 break;
6525 else
6526 continue;
6527 }
6528 if (!INTEGERP (XCDR (tem)))
6529 {
6530 /* Since we don't yet know the size of the font, we must
6531 load it and try GetTextMetrics. */
6532 W32FontStruct thisinfo;
6533 LOGFONT lf;
6534 HDC hdc;
6535 HANDLE oldobj;
6536
6537 if (!x_to_w32_font (XSTRING (XCAR (tem))->data, &lf))
6538 continue;
6539
6540 BLOCK_INPUT;
6541 thisinfo.bdf = NULL;
6542 thisinfo.hfont = CreateFontIndirect (&lf);
6543 if (thisinfo.hfont == NULL)
6544 continue;
6545
6546 hdc = GetDC (dpyinfo->root_window);
6547 oldobj = SelectObject (hdc, thisinfo.hfont);
6548 if (GetTextMetrics (hdc, &thisinfo.tm))
6549 XCDR (tem) = make_number (FONT_WIDTH (&thisinfo));
6550 else
6551 XCDR (tem) = make_number (0);
6552 SelectObject (hdc, oldobj);
6553 ReleaseDC (dpyinfo->root_window, hdc);
6554 DeleteObject(thisinfo.hfont);
6555 UNBLOCK_INPUT;
6556 }
6557 found_size = XINT (XCDR (tem));
6558 if (found_size == size)
6559 {
6560 newlist = Fcons (XCAR (tem), newlist);
6561 n_fonts++;
6562 if (n_fonts >= maxnames)
6563 break;
6564 }
6565 /* keep track of the closest matching size in case
6566 no exact match is found. */
6567 else if (found_size > 0)
6568 {
6569 if (NILP (second_best))
6570 second_best = tem;
6571
6572 else if (found_size < size)
6573 {
6574 if (XINT (XCDR (second_best)) > size
6575 || XINT (XCDR (second_best)) < found_size)
6576 second_best = tem;
6577 }
6578 else
6579 {
6580 if (XINT (XCDR (second_best)) > size
6581 && XINT (XCDR (second_best)) >
6582 found_size)
6583 second_best = tem;
6584 }
6585 }
6586 }
6587
6588 if (!NILP (newlist))
6589 break;
6590 else if (!NILP (second_best))
6591 {
6592 newlist = Fcons (XCAR (second_best), Qnil);
6593 break;
6594 }
6595 }
6596
6597 /* Include any bdf fonts. */
6598 if (n_fonts < maxnames)
6599 {
6600 Lisp_Object combined[2];
6601 combined[0] = w32_list_bdf_fonts (pattern, maxnames - n_fonts);
6602 combined[1] = newlist;
6603 newlist = Fnconc(2, combined);
6604 }
6605
6606 /* If we can't find a font that matches, check if Windows would be
6607 able to synthesize it from a different style. */
6608 if (NILP (newlist) && !NILP (Vw32_enable_synthesized_fonts))
6609 newlist = w32_list_synthesized_fonts (f, pattern, size, maxnames);
6610
6611 return newlist;
6612 }
6613
6614 Lisp_Object
6615 w32_list_synthesized_fonts (f, pattern, size, max_names)
6616 FRAME_PTR f;
6617 Lisp_Object pattern;
6618 int size;
6619 int max_names;
6620 {
6621 int fields;
6622 char *full_pattn, *new_pattn, foundary[50], family[50], *pattn_part2;
6623 char style[20], slant;
6624 Lisp_Object matches, match, tem, synthed_matches = Qnil;
6625
6626 full_pattn = XSTRING (pattern)->data;
6627
6628 pattn_part2 = alloca (XSTRING (pattern)->size);
6629 /* Allow some space for wildcard expansion. */
6630 new_pattn = alloca (XSTRING (pattern)->size + 100);
6631
6632 fields = sscanf (full_pattn, "-%49[^-]-%49[^-]-%19[^-]-%c-%s",
6633 foundary, family, style, &slant, pattn_part2);
6634 if (fields == EOF || fields < 5)
6635 return Qnil;
6636
6637 /* If the style and slant are wildcards already there is no point
6638 checking again (and we don't want to keep recursing). */
6639 if (*style == '*' && slant == '*')
6640 return Qnil;
6641
6642 sprintf (new_pattn, "-%s-%s-*-*-%s", foundary, family, pattn_part2);
6643
6644 matches = w32_list_fonts (f, build_string (new_pattn), size, max_names);
6645
6646 for ( ; CONSP (matches); matches = XCDR (matches))
6647 {
6648 tem = XCAR (matches);
6649 if (!STRINGP (tem))
6650 continue;
6651
6652 full_pattn = XSTRING (tem)->data;
6653 fields = sscanf (full_pattn, "-%49[^-]-%49[^-]-%*[^-]-%*c-%s",
6654 foundary, family, pattn_part2);
6655 if (fields == EOF || fields < 3)
6656 continue;
6657
6658 sprintf (new_pattn, "-%s-%s-%s-%c-%s", foundary, family, style,
6659 slant, pattn_part2);
6660
6661 synthed_matches = Fcons (build_string (new_pattn),
6662 synthed_matches);
6663 }
6664
6665 return synthed_matches;
6666 }
6667
6668
6669 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6670 struct font_info *
6671 w32_get_font_info (f, font_idx)
6672 FRAME_PTR f;
6673 int font_idx;
6674 {
6675 return (FRAME_W32_FONT_TABLE (f) + font_idx);
6676 }
6677
6678
6679 struct font_info*
6680 w32_query_font (struct frame *f, char *fontname)
6681 {
6682 int i;
6683 struct font_info *pfi;
6684
6685 pfi = FRAME_W32_FONT_TABLE (f);
6686
6687 for (i = 0; i < one_w32_display_info.n_fonts ;i++, pfi++)
6688 {
6689 if (strcmp(pfi->name, fontname) == 0) return pfi;
6690 }
6691
6692 return NULL;
6693 }
6694
6695 /* Find a CCL program for a font specified by FONTP, and set the member
6696 `encoder' of the structure. */
6697
6698 void
6699 w32_find_ccl_program (fontp)
6700 struct font_info *fontp;
6701 {
6702 Lisp_Object list, elt;
6703
6704 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
6705 {
6706 elt = XCAR (list);
6707 if (CONSP (elt)
6708 && STRINGP (XCAR (elt))
6709 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
6710 >= 0))
6711 break;
6712 }
6713 if (! NILP (list))
6714 {
6715 struct ccl_program *ccl
6716 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
6717
6718 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
6719 xfree (ccl);
6720 else
6721 fontp->font_encoder = ccl;
6722 }
6723 }
6724
6725 \f
6726 DEFUN ("w32-find-bdf-fonts", Fw32_find_bdf_fonts, Sw32_find_bdf_fonts,
6727 1, 1, 0,
6728 "Return a list of BDF fonts in DIR, suitable for appending to\n\
6729 w32-bdf-filename-alist. Fonts which do not contain an xfld description\n\
6730 will not be included in the list. DIR may be a list of directories.")
6731 (directory)
6732 Lisp_Object directory;
6733 {
6734 Lisp_Object list = Qnil;
6735 struct gcpro gcpro1, gcpro2;
6736
6737 if (!CONSP (directory))
6738 return w32_find_bdf_fonts_in_dir (directory);
6739
6740 for ( ; CONSP (directory); directory = XCDR (directory))
6741 {
6742 Lisp_Object pair[2];
6743 pair[0] = list;
6744 pair[1] = Qnil;
6745 GCPRO2 (directory, list);
6746 pair[1] = w32_find_bdf_fonts_in_dir( XCAR (directory) );
6747 list = Fnconc( 2, pair );
6748 UNGCPRO;
6749 }
6750 return list;
6751 }
6752
6753 /* Find BDF files in a specified directory. (use GCPRO when calling,
6754 as this calls lisp to get a directory listing). */
6755 Lisp_Object w32_find_bdf_fonts_in_dir( Lisp_Object directory )
6756 {
6757 Lisp_Object filelist, list = Qnil;
6758 char fontname[100];
6759
6760 if (!STRINGP(directory))
6761 return Qnil;
6762
6763 filelist = Fdirectory_files (directory, Qt,
6764 build_string (".*\\.[bB][dD][fF]"), Qt);
6765
6766 for ( ; CONSP(filelist); filelist = XCDR (filelist))
6767 {
6768 Lisp_Object filename = XCAR (filelist);
6769 if (w32_BDF_to_x_font (XSTRING (filename)->data, fontname, 100))
6770 store_in_alist (&list, build_string (fontname), filename);
6771 }
6772 return list;
6773 }
6774
6775 \f
6776 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
6777 "Internal function called by `color-defined-p', which see.")
6778 (color, frame)
6779 Lisp_Object color, frame;
6780 {
6781 XColor foo;
6782 FRAME_PTR f = check_x_frame (frame);
6783
6784 CHECK_STRING (color, 1);
6785
6786 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
6787 return Qt;
6788 else
6789 return Qnil;
6790 }
6791
6792 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
6793 "Internal function called by `color-values', which see.")
6794 (color, frame)
6795 Lisp_Object color, frame;
6796 {
6797 XColor foo;
6798 FRAME_PTR f = check_x_frame (frame);
6799
6800 CHECK_STRING (color, 1);
6801
6802 if (w32_defined_color (f, XSTRING (color)->data, &foo, 0))
6803 {
6804 Lisp_Object rgb[3];
6805
6806 rgb[0] = make_number ((GetRValue (foo.pixel) << 8)
6807 | GetRValue (foo.pixel));
6808 rgb[1] = make_number ((GetGValue (foo.pixel) << 8)
6809 | GetGValue (foo.pixel));
6810 rgb[2] = make_number ((GetBValue (foo.pixel) << 8)
6811 | GetBValue (foo.pixel));
6812 return Flist (3, rgb);
6813 }
6814 else
6815 return Qnil;
6816 }
6817
6818 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
6819 "Internal function called by `display-color-p', which see.")
6820 (display)
6821 Lisp_Object display;
6822 {
6823 struct w32_display_info *dpyinfo = check_x_display_info (display);
6824
6825 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 2)
6826 return Qnil;
6827
6828 return Qt;
6829 }
6830
6831 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
6832 0, 1, 0,
6833 "Return t if the X display supports shades of gray.\n\
6834 Note that color displays do support shades of gray.\n\
6835 The optional argument DISPLAY specifies which display to ask about.\n\
6836 DISPLAY should be either a frame or a display name (a string).\n\
6837 If omitted or nil, that stands for the selected frame's display.")
6838 (display)
6839 Lisp_Object display;
6840 {
6841 struct w32_display_info *dpyinfo = check_x_display_info (display);
6842
6843 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 1)
6844 return Qnil;
6845
6846 return Qt;
6847 }
6848
6849 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
6850 0, 1, 0,
6851 "Returns the width in pixels of the X display DISPLAY.\n\
6852 The optional argument DISPLAY specifies which display to ask about.\n\
6853 DISPLAY should be either a frame or a display name (a string).\n\
6854 If omitted or nil, that stands for the selected frame's display.")
6855 (display)
6856 Lisp_Object display;
6857 {
6858 struct w32_display_info *dpyinfo = check_x_display_info (display);
6859
6860 return make_number (dpyinfo->width);
6861 }
6862
6863 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
6864 Sx_display_pixel_height, 0, 1, 0,
6865 "Returns the height in pixels of the X display DISPLAY.\n\
6866 The optional argument DISPLAY specifies which display to ask about.\n\
6867 DISPLAY should be either a frame or a display name (a string).\n\
6868 If omitted or nil, that stands for the selected frame's display.")
6869 (display)
6870 Lisp_Object display;
6871 {
6872 struct w32_display_info *dpyinfo = check_x_display_info (display);
6873
6874 return make_number (dpyinfo->height);
6875 }
6876
6877 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
6878 0, 1, 0,
6879 "Returns the number of bitplanes of the display DISPLAY.\n\
6880 The optional argument DISPLAY specifies which display to ask about.\n\
6881 DISPLAY should be either a frame or a display name (a string).\n\
6882 If omitted or nil, that stands for the selected frame's display.")
6883 (display)
6884 Lisp_Object display;
6885 {
6886 struct w32_display_info *dpyinfo = check_x_display_info (display);
6887
6888 return make_number (dpyinfo->n_planes * dpyinfo->n_cbits);
6889 }
6890
6891 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
6892 0, 1, 0,
6893 "Returns the number of color cells of the display DISPLAY.\n\
6894 The optional argument DISPLAY specifies which display to ask about.\n\
6895 DISPLAY should be either a frame or a display name (a string).\n\
6896 If omitted or nil, that stands for the selected frame's display.")
6897 (display)
6898 Lisp_Object display;
6899 {
6900 struct w32_display_info *dpyinfo = check_x_display_info (display);
6901 HDC hdc;
6902 int cap;
6903
6904 hdc = GetDC (dpyinfo->root_window);
6905 if (dpyinfo->has_palette)
6906 cap = GetDeviceCaps (hdc,SIZEPALETTE);
6907 else
6908 cap = GetDeviceCaps (hdc,NUMCOLORS);
6909
6910 ReleaseDC (dpyinfo->root_window, hdc);
6911
6912 return make_number (cap);
6913 }
6914
6915 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
6916 Sx_server_max_request_size,
6917 0, 1, 0,
6918 "Returns the maximum request size of the server of display DISPLAY.\n\
6919 The optional argument DISPLAY specifies which display to ask about.\n\
6920 DISPLAY should be either a frame or a display name (a string).\n\
6921 If omitted or nil, that stands for the selected frame's display.")
6922 (display)
6923 Lisp_Object display;
6924 {
6925 struct w32_display_info *dpyinfo = check_x_display_info (display);
6926
6927 return make_number (1);
6928 }
6929
6930 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
6931 "Returns the vendor ID string of the W32 system (Microsoft).\n\
6932 The optional argument DISPLAY specifies which display to ask about.\n\
6933 DISPLAY should be either a frame or a display name (a string).\n\
6934 If omitted or nil, that stands for the selected frame's display.")
6935 (display)
6936 Lisp_Object display;
6937 {
6938 return build_string ("Microsoft Corp.");
6939 }
6940
6941 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
6942 "Returns the version numbers of the server of display DISPLAY.\n\
6943 The value is a list of three integers: the major and minor\n\
6944 version numbers, and the vendor-specific release\n\
6945 number. See also the function `x-server-vendor'.\n\n\
6946 The optional argument DISPLAY specifies which display to ask about.\n\
6947 DISPLAY should be either a frame or a display name (a string).\n\
6948 If omitted or nil, that stands for the selected frame's display.")
6949 (display)
6950 Lisp_Object display;
6951 {
6952 return Fcons (make_number (w32_major_version),
6953 Fcons (make_number (w32_minor_version),
6954 Fcons (make_number (w32_build_number), Qnil)));
6955 }
6956
6957 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
6958 "Returns the number of screens on the server of display DISPLAY.\n\
6959 The optional argument DISPLAY specifies which display to ask about.\n\
6960 DISPLAY should be either a frame or a display name (a string).\n\
6961 If omitted or nil, that stands for the selected frame's display.")
6962 (display)
6963 Lisp_Object display;
6964 {
6965 return make_number (1);
6966 }
6967
6968 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
6969 "Returns the height in millimeters of the X display DISPLAY.\n\
6970 The optional argument DISPLAY specifies which display to ask about.\n\
6971 DISPLAY should be either a frame or a display name (a string).\n\
6972 If omitted or nil, that stands for the selected frame's display.")
6973 (display)
6974 Lisp_Object display;
6975 {
6976 struct w32_display_info *dpyinfo = check_x_display_info (display);
6977 HDC hdc;
6978 int cap;
6979
6980 hdc = GetDC (dpyinfo->root_window);
6981
6982 cap = GetDeviceCaps (hdc, VERTSIZE);
6983
6984 ReleaseDC (dpyinfo->root_window, hdc);
6985
6986 return make_number (cap);
6987 }
6988
6989 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
6990 "Returns the width in millimeters of the X display DISPLAY.\n\
6991 The optional argument DISPLAY specifies which display to ask about.\n\
6992 DISPLAY should be either a frame or a display name (a string).\n\
6993 If omitted or nil, that stands for the selected frame's display.")
6994 (display)
6995 Lisp_Object display;
6996 {
6997 struct w32_display_info *dpyinfo = check_x_display_info (display);
6998
6999 HDC hdc;
7000 int cap;
7001
7002 hdc = GetDC (dpyinfo->root_window);
7003
7004 cap = GetDeviceCaps (hdc, HORZSIZE);
7005
7006 ReleaseDC (dpyinfo->root_window, hdc);
7007
7008 return make_number (cap);
7009 }
7010
7011 DEFUN ("x-display-backing-store", Fx_display_backing_store,
7012 Sx_display_backing_store, 0, 1, 0,
7013 "Returns an indication of whether display DISPLAY does backing store.\n\
7014 The value may be `always', `when-mapped', or `not-useful'.\n\
7015 The optional argument DISPLAY specifies which display to ask about.\n\
7016 DISPLAY should be either a frame or a display name (a string).\n\
7017 If omitted or nil, that stands for the selected frame's display.")
7018 (display)
7019 Lisp_Object display;
7020 {
7021 return intern ("not-useful");
7022 }
7023
7024 DEFUN ("x-display-visual-class", Fx_display_visual_class,
7025 Sx_display_visual_class, 0, 1, 0,
7026 "Returns the visual class of the display DISPLAY.\n\
7027 The value is one of the symbols `static-gray', `gray-scale',\n\
7028 `static-color', `pseudo-color', `true-color', or `direct-color'.\n\n\
7029 The optional argument DISPLAY specifies which display to ask about.\n\
7030 DISPLAY should be either a frame or a display name (a string).\n\
7031 If omitted or nil, that stands for the selected frame's display.")
7032 (display)
7033 Lisp_Object display;
7034 {
7035 struct w32_display_info *dpyinfo = check_x_display_info (display);
7036
7037 #if 0
7038 switch (dpyinfo->visual->class)
7039 {
7040 case StaticGray: return (intern ("static-gray"));
7041 case GrayScale: return (intern ("gray-scale"));
7042 case StaticColor: return (intern ("static-color"));
7043 case PseudoColor: return (intern ("pseudo-color"));
7044 case TrueColor: return (intern ("true-color"));
7045 case DirectColor: return (intern ("direct-color"));
7046 default:
7047 error ("Display has an unknown visual class");
7048 }
7049 #endif
7050
7051 error ("Display has an unknown visual class");
7052 }
7053
7054 DEFUN ("x-display-save-under", Fx_display_save_under,
7055 Sx_display_save_under, 0, 1, 0,
7056 "Returns t if the display DISPLAY supports the save-under feature.\n\
7057 The optional argument DISPLAY specifies which display to ask about.\n\
7058 DISPLAY should be either a frame or a display name (a string).\n\
7059 If omitted or nil, that stands for the selected frame's display.")
7060 (display)
7061 Lisp_Object display;
7062 {
7063 return Qnil;
7064 }
7065 \f
7066 int
7067 x_pixel_width (f)
7068 register struct frame *f;
7069 {
7070 return PIXEL_WIDTH (f);
7071 }
7072
7073 int
7074 x_pixel_height (f)
7075 register struct frame *f;
7076 {
7077 return PIXEL_HEIGHT (f);
7078 }
7079
7080 int
7081 x_char_width (f)
7082 register struct frame *f;
7083 {
7084 return FONT_WIDTH (f->output_data.w32->font);
7085 }
7086
7087 int
7088 x_char_height (f)
7089 register struct frame *f;
7090 {
7091 return f->output_data.w32->line_height;
7092 }
7093
7094 int
7095 x_screen_planes (f)
7096 register struct frame *f;
7097 {
7098 return FRAME_W32_DISPLAY_INFO (f)->n_planes;
7099 }
7100 \f
7101 /* Return the display structure for the display named NAME.
7102 Open a new connection if necessary. */
7103
7104 struct w32_display_info *
7105 x_display_info_for_name (name)
7106 Lisp_Object name;
7107 {
7108 Lisp_Object names;
7109 struct w32_display_info *dpyinfo;
7110
7111 CHECK_STRING (name, 0);
7112
7113 for (dpyinfo = &one_w32_display_info, names = w32_display_name_list;
7114 dpyinfo;
7115 dpyinfo = dpyinfo->next, names = XCDR (names))
7116 {
7117 Lisp_Object tem;
7118 tem = Fstring_equal (XCAR (XCAR (names)), name);
7119 if (!NILP (tem))
7120 return dpyinfo;
7121 }
7122
7123 /* Use this general default value to start with. */
7124 Vx_resource_name = Vinvocation_name;
7125
7126 validate_x_resource_name ();
7127
7128 dpyinfo = w32_term_init (name, (unsigned char *)0,
7129 (char *) XSTRING (Vx_resource_name)->data);
7130
7131 if (dpyinfo == 0)
7132 error ("Cannot connect to server %s", XSTRING (name)->data);
7133
7134 w32_in_use = 1;
7135 XSETFASTINT (Vwindow_system_version, 3);
7136
7137 return dpyinfo;
7138 }
7139
7140 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
7141 1, 3, 0, "Open a connection to a server.\n\
7142 DISPLAY is the name of the display to connect to.\n\
7143 Optional second arg XRM-STRING is a string of resources in xrdb format.\n\
7144 If the optional third arg MUST-SUCCEED is non-nil,\n\
7145 terminate Emacs if we can't open the connection.")
7146 (display, xrm_string, must_succeed)
7147 Lisp_Object display, xrm_string, must_succeed;
7148 {
7149 unsigned char *xrm_option;
7150 struct w32_display_info *dpyinfo;
7151
7152 CHECK_STRING (display, 0);
7153 if (! NILP (xrm_string))
7154 CHECK_STRING (xrm_string, 1);
7155
7156 if (! EQ (Vwindow_system, intern ("w32")))
7157 error ("Not using Microsoft Windows");
7158
7159 /* Allow color mapping to be defined externally; first look in user's
7160 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
7161 {
7162 Lisp_Object color_file;
7163 struct gcpro gcpro1;
7164
7165 color_file = build_string("~/rgb.txt");
7166
7167 GCPRO1 (color_file);
7168
7169 if (NILP (Ffile_readable_p (color_file)))
7170 color_file =
7171 Fexpand_file_name (build_string ("rgb.txt"),
7172 Fsymbol_value (intern ("data-directory")));
7173
7174 Vw32_color_map = Fw32_load_color_file (color_file);
7175
7176 UNGCPRO;
7177 }
7178 if (NILP (Vw32_color_map))
7179 Vw32_color_map = Fw32_default_color_map ();
7180
7181 if (! NILP (xrm_string))
7182 xrm_option = (unsigned char *) XSTRING (xrm_string)->data;
7183 else
7184 xrm_option = (unsigned char *) 0;
7185
7186 /* Use this general default value to start with. */
7187 /* First remove .exe suffix from invocation-name - it looks ugly. */
7188 {
7189 char basename[ MAX_PATH ], *str;
7190
7191 strcpy (basename, XSTRING (Vinvocation_name)->data);
7192 str = strrchr (basename, '.');
7193 if (str) *str = 0;
7194 Vinvocation_name = build_string (basename);
7195 }
7196 Vx_resource_name = Vinvocation_name;
7197
7198 validate_x_resource_name ();
7199
7200 /* This is what opens the connection and sets x_current_display.
7201 This also initializes many symbols, such as those used for input. */
7202 dpyinfo = w32_term_init (display, xrm_option,
7203 (char *) XSTRING (Vx_resource_name)->data);
7204
7205 if (dpyinfo == 0)
7206 {
7207 if (!NILP (must_succeed))
7208 fatal ("Cannot connect to server %s.\n",
7209 XSTRING (display)->data);
7210 else
7211 error ("Cannot connect to server %s", XSTRING (display)->data);
7212 }
7213
7214 w32_in_use = 1;
7215
7216 XSETFASTINT (Vwindow_system_version, 3);
7217 return Qnil;
7218 }
7219
7220 DEFUN ("x-close-connection", Fx_close_connection,
7221 Sx_close_connection, 1, 1, 0,
7222 "Close the connection to DISPLAY's server.\n\
7223 For DISPLAY, specify either a frame or a display name (a string).\n\
7224 If DISPLAY is nil, that stands for the selected frame's display.")
7225 (display)
7226 Lisp_Object display;
7227 {
7228 struct w32_display_info *dpyinfo = check_x_display_info (display);
7229 int i;
7230
7231 if (dpyinfo->reference_count > 0)
7232 error ("Display still has frames on it");
7233
7234 BLOCK_INPUT;
7235 /* Free the fonts in the font table. */
7236 for (i = 0; i < dpyinfo->n_fonts; i++)
7237 if (dpyinfo->font_table[i].name)
7238 {
7239 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
7240 xfree (dpyinfo->font_table[i].full_name);
7241 xfree (dpyinfo->font_table[i].name);
7242 w32_unload_font (dpyinfo, dpyinfo->font_table[i].font);
7243 }
7244 x_destroy_all_bitmaps (dpyinfo);
7245
7246 x_delete_display (dpyinfo);
7247 UNBLOCK_INPUT;
7248
7249 return Qnil;
7250 }
7251
7252 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
7253 "Return the list of display names that Emacs has connections to.")
7254 ()
7255 {
7256 Lisp_Object tail, result;
7257
7258 result = Qnil;
7259 for (tail = w32_display_name_list; ! NILP (tail); tail = XCDR (tail))
7260 result = Fcons (XCAR (XCAR (tail)), result);
7261
7262 return result;
7263 }
7264
7265 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
7266 "If ON is non-nil, report errors as soon as the erring request is made.\n\
7267 If ON is nil, allow buffering of requests.\n\
7268 This is a noop on W32 systems.\n\
7269 The optional second argument DISPLAY specifies which display to act on.\n\
7270 DISPLAY should be either a frame or a display name (a string).\n\
7271 If DISPLAY is omitted or nil, that stands for the selected frame's display.")
7272 (on, display)
7273 Lisp_Object display, on;
7274 {
7275 return Qnil;
7276 }
7277
7278 \f
7279 \f
7280 /***********************************************************************
7281 Image types
7282 ***********************************************************************/
7283
7284 /* Value is the number of elements of vector VECTOR. */
7285
7286 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
7287
7288 /* List of supported image types. Use define_image_type to add new
7289 types. Use lookup_image_type to find a type for a given symbol. */
7290
7291 static struct image_type *image_types;
7292
7293 /* The symbol `image' which is the car of the lists used to represent
7294 images in Lisp. */
7295
7296 extern Lisp_Object Qimage;
7297
7298 /* The symbol `xbm' which is used as the type symbol for XBM images. */
7299
7300 Lisp_Object Qxbm;
7301
7302 /* Keywords. */
7303
7304 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
7305 extern Lisp_Object QCdata;
7306 Lisp_Object QCtype, QCascent, QCmargin, QCrelief;
7307 Lisp_Object QCalgorithm, QCcolor_symbols, QCheuristic_mask;
7308 Lisp_Object QCindex;
7309
7310 /* Other symbols. */
7311
7312 Lisp_Object Qlaplace;
7313
7314 /* Time in seconds after which images should be removed from the cache
7315 if not displayed. */
7316
7317 Lisp_Object Vimage_cache_eviction_delay;
7318
7319 /* Function prototypes. */
7320
7321 static void define_image_type P_ ((struct image_type *type));
7322 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
7323 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
7324 static void x_laplace P_ ((struct frame *, struct image *));
7325 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
7326 Lisp_Object));
7327
7328
7329 /* Define a new image type from TYPE. This adds a copy of TYPE to
7330 image_types and adds the symbol *TYPE->type to Vimage_types. */
7331
7332 static void
7333 define_image_type (type)
7334 struct image_type *type;
7335 {
7336 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
7337 The initialized data segment is read-only. */
7338 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
7339 bcopy (type, p, sizeof *p);
7340 p->next = image_types;
7341 image_types = p;
7342 Vimage_types = Fcons (*p->type, Vimage_types);
7343 }
7344
7345
7346 /* Look up image type SYMBOL, and return a pointer to its image_type
7347 structure. Value is null if SYMBOL is not a known image type. */
7348
7349 static INLINE struct image_type *
7350 lookup_image_type (symbol)
7351 Lisp_Object symbol;
7352 {
7353 struct image_type *type;
7354
7355 for (type = image_types; type; type = type->next)
7356 if (EQ (symbol, *type->type))
7357 break;
7358
7359 return type;
7360 }
7361
7362
7363 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
7364 valid image specification is a list whose car is the symbol
7365 `image', and whose rest is a property list. The property list must
7366 contain a value for key `:type'. That value must be the name of a
7367 supported image type. The rest of the property list depends on the
7368 image type. */
7369
7370 int
7371 valid_image_p (object)
7372 Lisp_Object object;
7373 {
7374 int valid_p = 0;
7375
7376 if (CONSP (object) && EQ (XCAR (object), Qimage))
7377 {
7378 Lisp_Object symbol = Fplist_get (XCDR (object), QCtype);
7379 struct image_type *type = lookup_image_type (symbol);
7380
7381 if (type)
7382 valid_p = type->valid_p (object);
7383 }
7384
7385 return valid_p;
7386 }
7387
7388
7389 /* Log error message with format string FORMAT and argument ARG.
7390 Signaling an error, e.g. when an image cannot be loaded, is not a
7391 good idea because this would interrupt redisplay, and the error
7392 message display would lead to another redisplay. This function
7393 therefore simply displays a message. */
7394
7395 static void
7396 image_error (format, arg1, arg2)
7397 char *format;
7398 Lisp_Object arg1, arg2;
7399 {
7400 add_to_log (format, arg1, arg2);
7401 }
7402
7403
7404 \f
7405 /***********************************************************************
7406 Image specifications
7407 ***********************************************************************/
7408
7409 enum image_value_type
7410 {
7411 IMAGE_DONT_CHECK_VALUE_TYPE,
7412 IMAGE_STRING_VALUE,
7413 IMAGE_SYMBOL_VALUE,
7414 IMAGE_POSITIVE_INTEGER_VALUE,
7415 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
7416 IMAGE_ASCENT_VALUE,
7417 IMAGE_INTEGER_VALUE,
7418 IMAGE_FUNCTION_VALUE,
7419 IMAGE_NUMBER_VALUE,
7420 IMAGE_BOOL_VALUE
7421 };
7422
7423 /* Structure used when parsing image specifications. */
7424
7425 struct image_keyword
7426 {
7427 /* Name of keyword. */
7428 char *name;
7429
7430 /* The type of value allowed. */
7431 enum image_value_type type;
7432
7433 /* Non-zero means key must be present. */
7434 int mandatory_p;
7435
7436 /* Used to recognize duplicate keywords in a property list. */
7437 int count;
7438
7439 /* The value that was found. */
7440 Lisp_Object value;
7441 };
7442
7443
7444 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
7445 int, Lisp_Object));
7446 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
7447
7448
7449 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
7450 has the format (image KEYWORD VALUE ...). One of the keyword/
7451 value pairs must be `:type TYPE'. KEYWORDS is a vector of
7452 image_keywords structures of size NKEYWORDS describing other
7453 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
7454
7455 static int
7456 parse_image_spec (spec, keywords, nkeywords, type)
7457 Lisp_Object spec;
7458 struct image_keyword *keywords;
7459 int nkeywords;
7460 Lisp_Object type;
7461 {
7462 int i;
7463 Lisp_Object plist;
7464
7465 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
7466 return 0;
7467
7468 plist = XCDR (spec);
7469 while (CONSP (plist))
7470 {
7471 Lisp_Object key, value;
7472
7473 /* First element of a pair must be a symbol. */
7474 key = XCAR (plist);
7475 plist = XCDR (plist);
7476 if (!SYMBOLP (key))
7477 return 0;
7478
7479 /* There must follow a value. */
7480 if (!CONSP (plist))
7481 return 0;
7482 value = XCAR (plist);
7483 plist = XCDR (plist);
7484
7485 /* Find key in KEYWORDS. Error if not found. */
7486 for (i = 0; i < nkeywords; ++i)
7487 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0)
7488 break;
7489
7490 if (i == nkeywords)
7491 continue;
7492
7493 /* Record that we recognized the keyword. If a keywords
7494 was found more than once, it's an error. */
7495 keywords[i].value = value;
7496 ++keywords[i].count;
7497
7498 if (keywords[i].count > 1)
7499 return 0;
7500
7501 /* Check type of value against allowed type. */
7502 switch (keywords[i].type)
7503 {
7504 case IMAGE_STRING_VALUE:
7505 if (!STRINGP (value))
7506 return 0;
7507 break;
7508
7509 case IMAGE_SYMBOL_VALUE:
7510 if (!SYMBOLP (value))
7511 return 0;
7512 break;
7513
7514 case IMAGE_POSITIVE_INTEGER_VALUE:
7515 if (!INTEGERP (value) || XINT (value) <= 0)
7516 return 0;
7517 break;
7518
7519 case IMAGE_ASCENT_VALUE:
7520 if (SYMBOLP (value) && EQ (value, Qcenter))
7521 break;
7522 else if (INTEGERP (value)
7523 && XINT (value) >= 0
7524 && XINT (value) <= 100)
7525 break;
7526 return 0;
7527
7528 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
7529 if (!INTEGERP (value) || XINT (value) < 0)
7530 return 0;
7531 break;
7532
7533 case IMAGE_DONT_CHECK_VALUE_TYPE:
7534 break;
7535
7536 case IMAGE_FUNCTION_VALUE:
7537 value = indirect_function (value);
7538 if (SUBRP (value)
7539 || COMPILEDP (value)
7540 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
7541 break;
7542 return 0;
7543
7544 case IMAGE_NUMBER_VALUE:
7545 if (!INTEGERP (value) && !FLOATP (value))
7546 return 0;
7547 break;
7548
7549 case IMAGE_INTEGER_VALUE:
7550 if (!INTEGERP (value))
7551 return 0;
7552 break;
7553
7554 case IMAGE_BOOL_VALUE:
7555 if (!NILP (value) && !EQ (value, Qt))
7556 return 0;
7557 break;
7558
7559 default:
7560 abort ();
7561 break;
7562 }
7563
7564 if (EQ (key, QCtype) && !EQ (type, value))
7565 return 0;
7566 }
7567
7568 /* Check that all mandatory fields are present. */
7569 for (i = 0; i < nkeywords; ++i)
7570 if (keywords[i].mandatory_p && keywords[i].count == 0)
7571 return 0;
7572
7573 return NILP (plist);
7574 }
7575
7576
7577 /* Return the value of KEY in image specification SPEC. Value is nil
7578 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
7579 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
7580
7581 static Lisp_Object
7582 image_spec_value (spec, key, found)
7583 Lisp_Object spec, key;
7584 int *found;
7585 {
7586 Lisp_Object tail;
7587
7588 xassert (valid_image_p (spec));
7589
7590 for (tail = XCDR (spec);
7591 CONSP (tail) && CONSP (XCDR (tail));
7592 tail = XCDR (XCDR (tail)))
7593 {
7594 if (EQ (XCAR (tail), key))
7595 {
7596 if (found)
7597 *found = 1;
7598 return XCAR (XCDR (tail));
7599 }
7600 }
7601
7602 if (found)
7603 *found = 0;
7604 return Qnil;
7605 }
7606
7607
7608
7609 \f
7610 /***********************************************************************
7611 Image type independent image structures
7612 ***********************************************************************/
7613
7614 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
7615 static void free_image P_ ((struct frame *f, struct image *img));
7616
7617
7618 /* Allocate and return a new image structure for image specification
7619 SPEC. SPEC has a hash value of HASH. */
7620
7621 static struct image *
7622 make_image (spec, hash)
7623 Lisp_Object spec;
7624 unsigned hash;
7625 {
7626 struct image *img = (struct image *) xmalloc (sizeof *img);
7627
7628 xassert (valid_image_p (spec));
7629 bzero (img, sizeof *img);
7630 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
7631 xassert (img->type != NULL);
7632 img->spec = spec;
7633 img->data.lisp_val = Qnil;
7634 img->ascent = DEFAULT_IMAGE_ASCENT;
7635 img->hash = hash;
7636 return img;
7637 }
7638
7639
7640 /* Free image IMG which was used on frame F, including its resources. */
7641
7642 static void
7643 free_image (f, img)
7644 struct frame *f;
7645 struct image *img;
7646 {
7647 if (img)
7648 {
7649 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7650
7651 /* Remove IMG from the hash table of its cache. */
7652 if (img->prev)
7653 img->prev->next = img->next;
7654 else
7655 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
7656
7657 if (img->next)
7658 img->next->prev = img->prev;
7659
7660 c->images[img->id] = NULL;
7661
7662 /* Free resources, then free IMG. */
7663 img->type->free (f, img);
7664 xfree (img);
7665 }
7666 }
7667
7668
7669 /* Prepare image IMG for display on frame F. Must be called before
7670 drawing an image. */
7671
7672 void
7673 prepare_image_for_display (f, img)
7674 struct frame *f;
7675 struct image *img;
7676 {
7677 EMACS_TIME t;
7678
7679 /* We're about to display IMG, so set its timestamp to `now'. */
7680 EMACS_GET_TIME (t);
7681 img->timestamp = EMACS_SECS (t);
7682
7683 /* If IMG doesn't have a pixmap yet, load it now, using the image
7684 type dependent loader function. */
7685 if (img->pixmap == 0 && !img->load_failed_p)
7686 img->load_failed_p = img->type->load (f, img) == 0;
7687 }
7688
7689
7690 /* Value is the number of pixels for the ascent of image IMG when
7691 drawn in face FACE. */
7692
7693 int
7694 image_ascent (img, face)
7695 struct image *img;
7696 struct face *face;
7697 {
7698 int height = img->height + img->margin;
7699 int ascent;
7700
7701 if (img->ascent == CENTERED_IMAGE_ASCENT)
7702 {
7703 if (face->font)
7704 ascent = height / 2 - (FONT_DESCENT(face->font)
7705 - FONT_BASE(face->font)) / 2;
7706 else
7707 ascent = height / 2;
7708 }
7709 else
7710 ascent = height * img->ascent / 100.0;
7711
7712 return ascent;
7713 }
7714
7715
7716 \f
7717 /***********************************************************************
7718 Helper functions for X image types
7719 ***********************************************************************/
7720
7721 static void x_clear_image P_ ((struct frame *f, struct image *img));
7722 static unsigned long x_alloc_image_color P_ ((struct frame *f,
7723 struct image *img,
7724 Lisp_Object color_name,
7725 unsigned long dflt));
7726
7727 /* Free X resources of image IMG which is used on frame F. */
7728
7729 static void
7730 x_clear_image (f, img)
7731 struct frame *f;
7732 struct image *img;
7733 {
7734 #if 0 /* NTEMACS_TODO: W32 image support */
7735
7736 if (img->pixmap)
7737 {
7738 BLOCK_INPUT;
7739 XFreePixmap (NULL, img->pixmap);
7740 img->pixmap = 0;
7741 UNBLOCK_INPUT;
7742 }
7743
7744 if (img->ncolors)
7745 {
7746 int class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
7747
7748 /* If display has an immutable color map, freeing colors is not
7749 necessary and some servers don't allow it. So don't do it. */
7750 if (class != StaticColor
7751 && class != StaticGray
7752 && class != TrueColor)
7753 {
7754 Colormap cmap;
7755 BLOCK_INPUT;
7756 cmap = DefaultColormapOfScreen (FRAME_W32_DISPLAY_INFO (f)->screen);
7757 XFreeColors (FRAME_W32_DISPLAY (f), cmap, img->colors,
7758 img->ncolors, 0);
7759 UNBLOCK_INPUT;
7760 }
7761
7762 xfree (img->colors);
7763 img->colors = NULL;
7764 img->ncolors = 0;
7765 }
7766 #endif
7767 }
7768
7769
7770 /* Allocate color COLOR_NAME for image IMG on frame F. If color
7771 cannot be allocated, use DFLT. Add a newly allocated color to
7772 IMG->colors, so that it can be freed again. Value is the pixel
7773 color. */
7774
7775 static unsigned long
7776 x_alloc_image_color (f, img, color_name, dflt)
7777 struct frame *f;
7778 struct image *img;
7779 Lisp_Object color_name;
7780 unsigned long dflt;
7781 {
7782 #if 0 /* NTEMACS_TODO: allocing colors. */
7783 XColor color;
7784 unsigned long result;
7785
7786 xassert (STRINGP (color_name));
7787
7788 if (w32_defined_color (f, XSTRING (color_name)->data, &color, 1))
7789 {
7790 /* This isn't called frequently so we get away with simply
7791 reallocating the color vector to the needed size, here. */
7792 ++img->ncolors;
7793 img->colors =
7794 (unsigned long *) xrealloc (img->colors,
7795 img->ncolors * sizeof *img->colors);
7796 img->colors[img->ncolors - 1] = color.pixel;
7797 result = color.pixel;
7798 }
7799 else
7800 result = dflt;
7801 return result;
7802 #endif
7803 return 0;
7804 }
7805
7806
7807 \f
7808 /***********************************************************************
7809 Image Cache
7810 ***********************************************************************/
7811
7812 static void cache_image P_ ((struct frame *f, struct image *img));
7813
7814
7815 /* Return a new, initialized image cache that is allocated from the
7816 heap. Call free_image_cache to free an image cache. */
7817
7818 struct image_cache *
7819 make_image_cache ()
7820 {
7821 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
7822 int size;
7823
7824 bzero (c, sizeof *c);
7825 c->size = 50;
7826 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
7827 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
7828 c->buckets = (struct image **) xmalloc (size);
7829 bzero (c->buckets, size);
7830 return c;
7831 }
7832
7833
7834 /* Free image cache of frame F. Be aware that X frames share images
7835 caches. */
7836
7837 void
7838 free_image_cache (f)
7839 struct frame *f;
7840 {
7841 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7842 if (c)
7843 {
7844 int i;
7845
7846 /* Cache should not be referenced by any frame when freed. */
7847 xassert (c->refcount == 0);
7848
7849 for (i = 0; i < c->used; ++i)
7850 free_image (f, c->images[i]);
7851 xfree (c->images);
7852 xfree (c);
7853 xfree (c->buckets);
7854 FRAME_X_IMAGE_CACHE (f) = NULL;
7855 }
7856 }
7857
7858
7859 /* Clear image cache of frame F. FORCE_P non-zero means free all
7860 images. FORCE_P zero means clear only images that haven't been
7861 displayed for some time. Should be called from time to time to
7862 reduce the number of loaded images. If image-eviction-seconds is
7863 non-nil, this frees images in the cache which weren't displayed for
7864 at least that many seconds. */
7865
7866 void
7867 clear_image_cache (f, force_p)
7868 struct frame *f;
7869 int force_p;
7870 {
7871 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7872
7873 if (c && INTEGERP (Vimage_cache_eviction_delay))
7874 {
7875 EMACS_TIME t;
7876 unsigned long old;
7877 int i, any_freed_p = 0;
7878
7879 EMACS_GET_TIME (t);
7880 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
7881
7882 for (i = 0; i < c->used; ++i)
7883 {
7884 struct image *img = c->images[i];
7885 if (img != NULL
7886 && (force_p
7887 || (img->timestamp > old)))
7888 {
7889 free_image (f, img);
7890 any_freed_p = 1;
7891 }
7892 }
7893
7894 /* We may be clearing the image cache because, for example,
7895 Emacs was iconified for a longer period of time. In that
7896 case, current matrices may still contain references to
7897 images freed above. So, clear these matrices. */
7898 if (any_freed_p)
7899 {
7900 clear_current_matrices (f);
7901 ++windows_or_buffers_changed;
7902 }
7903 }
7904 }
7905
7906
7907 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
7908 0, 1, 0,
7909 "Clear the image cache of FRAME.\n\
7910 FRAME nil or omitted means use the selected frame.\n\
7911 FRAME t means clear the image caches of all frames.")
7912 (frame)
7913 Lisp_Object frame;
7914 {
7915 if (EQ (frame, Qt))
7916 {
7917 Lisp_Object tail;
7918
7919 FOR_EACH_FRAME (tail, frame)
7920 if (FRAME_W32_P (XFRAME (frame)))
7921 clear_image_cache (XFRAME (frame), 1);
7922 }
7923 else
7924 clear_image_cache (check_x_frame (frame), 1);
7925
7926 return Qnil;
7927 }
7928
7929
7930 /* Return the id of image with Lisp specification SPEC on frame F.
7931 SPEC must be a valid Lisp image specification (see valid_image_p). */
7932
7933 int
7934 lookup_image (f, spec)
7935 struct frame *f;
7936 Lisp_Object spec;
7937 {
7938 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
7939 struct image *img;
7940 int i;
7941 unsigned hash;
7942 struct gcpro gcpro1;
7943 EMACS_TIME now;
7944
7945 /* F must be a window-system frame, and SPEC must be a valid image
7946 specification. */
7947 xassert (FRAME_WINDOW_P (f));
7948 xassert (valid_image_p (spec));
7949
7950 GCPRO1 (spec);
7951
7952 /* Look up SPEC in the hash table of the image cache. */
7953 hash = sxhash (spec, 0);
7954 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
7955
7956 for (img = c->buckets[i]; img; img = img->next)
7957 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
7958 break;
7959
7960 /* If not found, create a new image and cache it. */
7961 if (img == NULL)
7962 {
7963 img = make_image (spec, hash);
7964 cache_image (f, img);
7965 img->load_failed_p = img->type->load (f, img) == 0;
7966 xassert (!interrupt_input_blocked);
7967
7968 /* If we can't load the image, and we don't have a width and
7969 height, use some arbitrary width and height so that we can
7970 draw a rectangle for it. */
7971 if (img->load_failed_p)
7972 {
7973 Lisp_Object value;
7974
7975 value = image_spec_value (spec, QCwidth, NULL);
7976 img->width = (INTEGERP (value)
7977 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
7978 value = image_spec_value (spec, QCheight, NULL);
7979 img->height = (INTEGERP (value)
7980 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
7981 }
7982 else
7983 {
7984 /* Handle image type independent image attributes
7985 `:ascent PERCENT', `:margin MARGIN', `:relief RELIEF'. */
7986 Lisp_Object ascent, margin, relief, algorithm, heuristic_mask;
7987 Lisp_Object file;
7988
7989 ascent = image_spec_value (spec, QCascent, NULL);
7990 if (INTEGERP (ascent))
7991 img->ascent = XFASTINT (ascent);
7992 else if (EQ (ascent, Qcenter))
7993 img->ascent = CENTERED_IMAGE_ASCENT;
7994
7995 margin = image_spec_value (spec, QCmargin, NULL);
7996 if (INTEGERP (margin) && XINT (margin) >= 0)
7997 img->margin = XFASTINT (margin);
7998
7999 relief = image_spec_value (spec, QCrelief, NULL);
8000 if (INTEGERP (relief))
8001 {
8002 img->relief = XINT (relief);
8003 img->margin += abs (img->relief);
8004 }
8005
8006 /* Should we apply a Laplace edge-detection algorithm? */
8007 algorithm = image_spec_value (spec, QCalgorithm, NULL);
8008 if (img->pixmap && EQ (algorithm, Qlaplace))
8009 x_laplace (f, img);
8010
8011 /* Should we built a mask heuristically? */
8012 heuristic_mask = image_spec_value (spec, QCheuristic_mask, NULL);
8013 if (img->pixmap && !img->mask && !NILP (heuristic_mask))
8014 x_build_heuristic_mask (f, img, heuristic_mask);
8015 }
8016 }
8017
8018 /* We're using IMG, so set its timestamp to `now'. */
8019 EMACS_GET_TIME (now);
8020 img->timestamp = EMACS_SECS (now);
8021
8022 UNGCPRO;
8023
8024 /* Value is the image id. */
8025 return img->id;
8026 }
8027
8028
8029 /* Cache image IMG in the image cache of frame F. */
8030
8031 static void
8032 cache_image (f, img)
8033 struct frame *f;
8034 struct image *img;
8035 {
8036 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8037 int i;
8038
8039 /* Find a free slot in c->images. */
8040 for (i = 0; i < c->used; ++i)
8041 if (c->images[i] == NULL)
8042 break;
8043
8044 /* If no free slot found, maybe enlarge c->images. */
8045 if (i == c->used && c->used == c->size)
8046 {
8047 c->size *= 2;
8048 c->images = (struct image **) xrealloc (c->images,
8049 c->size * sizeof *c->images);
8050 }
8051
8052 /* Add IMG to c->images, and assign IMG an id. */
8053 c->images[i] = img;
8054 img->id = i;
8055 if (i == c->used)
8056 ++c->used;
8057
8058 /* Add IMG to the cache's hash table. */
8059 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
8060 img->next = c->buckets[i];
8061 if (img->next)
8062 img->next->prev = img;
8063 img->prev = NULL;
8064 c->buckets[i] = img;
8065 }
8066
8067
8068 /* Call FN on every image in the image cache of frame F. Used to mark
8069 Lisp Objects in the image cache. */
8070
8071 void
8072 forall_images_in_image_cache (f, fn)
8073 struct frame *f;
8074 void (*fn) P_ ((struct image *img));
8075 {
8076 if (FRAME_LIVE_P (f) && FRAME_W32_P (f))
8077 {
8078 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
8079 if (c)
8080 {
8081 int i;
8082 for (i = 0; i < c->used; ++i)
8083 if (c->images[i])
8084 fn (c->images[i]);
8085 }
8086 }
8087 }
8088
8089
8090 \f
8091 /***********************************************************************
8092 W32 support code
8093 ***********************************************************************/
8094
8095 #if 0 /* NTEMACS_TODO: W32 specific image code. */
8096
8097 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
8098 XImage **, Pixmap *));
8099 static void x_destroy_x_image P_ ((XImage *));
8100 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
8101
8102
8103 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
8104 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
8105 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
8106 via xmalloc. Print error messages via image_error if an error
8107 occurs. Value is non-zero if successful. */
8108
8109 static int
8110 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
8111 struct frame *f;
8112 int width, height, depth;
8113 XImage **ximg;
8114 Pixmap *pixmap;
8115 {
8116 #if 0 /* NTEMACS_TODO: Image support for W32 */
8117 Display *display = FRAME_W32_DISPLAY (f);
8118 Screen *screen = FRAME_X_SCREEN (f);
8119 Window window = FRAME_W32_WINDOW (f);
8120
8121 xassert (interrupt_input_blocked);
8122
8123 if (depth <= 0)
8124 depth = DefaultDepthOfScreen (screen);
8125 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
8126 depth, ZPixmap, 0, NULL, width, height,
8127 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
8128 if (*ximg == NULL)
8129 {
8130 image_error ("Unable to allocate X image", Qnil, Qnil);
8131 return 0;
8132 }
8133
8134 /* Allocate image raster. */
8135 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
8136
8137 /* Allocate a pixmap of the same size. */
8138 *pixmap = XCreatePixmap (display, window, width, height, depth);
8139 if (*pixmap == 0)
8140 {
8141 x_destroy_x_image (*ximg);
8142 *ximg = NULL;
8143 image_error ("Unable to create X pixmap", Qnil, Qnil);
8144 return 0;
8145 }
8146 #endif
8147 return 1;
8148 }
8149
8150
8151 /* Destroy XImage XIMG. Free XIMG->data. */
8152
8153 static void
8154 x_destroy_x_image (ximg)
8155 XImage *ximg;
8156 {
8157 xassert (interrupt_input_blocked);
8158 if (ximg)
8159 {
8160 xfree (ximg->data);
8161 ximg->data = NULL;
8162 XDestroyImage (ximg);
8163 }
8164 }
8165
8166
8167 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
8168 are width and height of both the image and pixmap. */
8169
8170 static void
8171 x_put_x_image (f, ximg, pixmap, width, height)
8172 struct frame *f;
8173 XImage *ximg;
8174 Pixmap pixmap;
8175 {
8176 GC gc;
8177
8178 xassert (interrupt_input_blocked);
8179 gc = XCreateGC (NULL, pixmap, 0, NULL);
8180 XPutImage (NULL, pixmap, gc, ximg, 0, 0, 0, 0, width, height);
8181 XFreeGC (NULL, gc);
8182 }
8183
8184 #endif
8185
8186 \f
8187 /***********************************************************************
8188 Searching files
8189 ***********************************************************************/
8190
8191 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
8192
8193 /* Find image file FILE. Look in data-directory, then
8194 x-bitmap-file-path. Value is the full name of the file found, or
8195 nil if not found. */
8196
8197 static Lisp_Object
8198 x_find_image_file (file)
8199 Lisp_Object file;
8200 {
8201 Lisp_Object file_found, search_path;
8202 struct gcpro gcpro1, gcpro2;
8203 int fd;
8204
8205 file_found = Qnil;
8206 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
8207 GCPRO2 (file_found, search_path);
8208
8209 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
8210 fd = openp (search_path, file, "", &file_found, 0);
8211
8212 if (fd < 0)
8213 file_found = Qnil;
8214 else
8215 close (fd);
8216
8217 UNGCPRO;
8218 return file_found;
8219 }
8220
8221
8222 \f
8223 /***********************************************************************
8224 XBM images
8225 ***********************************************************************/
8226
8227 static int xbm_load P_ ((struct frame *f, struct image *img));
8228 static int xbm_load_image_from_file P_ ((struct frame *f, struct image *img,
8229 Lisp_Object file));
8230 static int xbm_image_p P_ ((Lisp_Object object));
8231 static int xbm_read_bitmap_file_data P_ ((char *, int *, int *,
8232 unsigned char **));
8233
8234
8235 /* Indices of image specification fields in xbm_format, below. */
8236
8237 enum xbm_keyword_index
8238 {
8239 XBM_TYPE,
8240 XBM_FILE,
8241 XBM_WIDTH,
8242 XBM_HEIGHT,
8243 XBM_DATA,
8244 XBM_FOREGROUND,
8245 XBM_BACKGROUND,
8246 XBM_ASCENT,
8247 XBM_MARGIN,
8248 XBM_RELIEF,
8249 XBM_ALGORITHM,
8250 XBM_HEURISTIC_MASK,
8251 XBM_LAST
8252 };
8253
8254 /* Vector of image_keyword structures describing the format
8255 of valid XBM image specifications. */
8256
8257 static struct image_keyword xbm_format[XBM_LAST] =
8258 {
8259 {":type", IMAGE_SYMBOL_VALUE, 1},
8260 {":file", IMAGE_STRING_VALUE, 0},
8261 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8262 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8263 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8264 {":foreground", IMAGE_STRING_VALUE, 0},
8265 {":background", IMAGE_STRING_VALUE, 0},
8266 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
8267 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8268 {":relief", IMAGE_INTEGER_VALUE, 0},
8269 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8270 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8271 };
8272
8273 /* Structure describing the image type XBM. */
8274
8275 static struct image_type xbm_type =
8276 {
8277 &Qxbm,
8278 xbm_image_p,
8279 xbm_load,
8280 x_clear_image,
8281 NULL
8282 };
8283
8284 /* Tokens returned from xbm_scan. */
8285
8286 enum xbm_token
8287 {
8288 XBM_TK_IDENT = 256,
8289 XBM_TK_NUMBER
8290 };
8291
8292
8293 /* Return non-zero if OBJECT is a valid XBM-type image specification.
8294 A valid specification is a list starting with the symbol `image'
8295 The rest of the list is a property list which must contain an
8296 entry `:type xbm..
8297
8298 If the specification specifies a file to load, it must contain
8299 an entry `:file FILENAME' where FILENAME is a string.
8300
8301 If the specification is for a bitmap loaded from memory it must
8302 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
8303 WIDTH and HEIGHT are integers > 0. DATA may be:
8304
8305 1. a string large enough to hold the bitmap data, i.e. it must
8306 have a size >= (WIDTH + 7) / 8 * HEIGHT
8307
8308 2. a bool-vector of size >= WIDTH * HEIGHT
8309
8310 3. a vector of strings or bool-vectors, one for each line of the
8311 bitmap.
8312
8313 Both the file and data forms may contain the additional entries
8314 `:background COLOR' and `:foreground COLOR'. If not present,
8315 foreground and background of the frame on which the image is
8316 displayed, is used. */
8317
8318 static int
8319 xbm_image_p (object)
8320 Lisp_Object object;
8321 {
8322 struct image_keyword kw[XBM_LAST];
8323
8324 bcopy (xbm_format, kw, sizeof kw);
8325 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
8326 return 0;
8327
8328 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
8329
8330 if (kw[XBM_FILE].count)
8331 {
8332 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
8333 return 0;
8334 }
8335 else
8336 {
8337 Lisp_Object data;
8338 int width, height;
8339
8340 /* Entries for `:width', `:height' and `:data' must be present. */
8341 if (!kw[XBM_WIDTH].count
8342 || !kw[XBM_HEIGHT].count
8343 || !kw[XBM_DATA].count)
8344 return 0;
8345
8346 data = kw[XBM_DATA].value;
8347 width = XFASTINT (kw[XBM_WIDTH].value);
8348 height = XFASTINT (kw[XBM_HEIGHT].value);
8349
8350 /* Check type of data, and width and height against contents of
8351 data. */
8352 if (VECTORP (data))
8353 {
8354 int i;
8355
8356 /* Number of elements of the vector must be >= height. */
8357 if (XVECTOR (data)->size < height)
8358 return 0;
8359
8360 /* Each string or bool-vector in data must be large enough
8361 for one line of the image. */
8362 for (i = 0; i < height; ++i)
8363 {
8364 Lisp_Object elt = XVECTOR (data)->contents[i];
8365
8366 if (STRINGP (elt))
8367 {
8368 if (XSTRING (elt)->size
8369 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
8370 return 0;
8371 }
8372 else if (BOOL_VECTOR_P (elt))
8373 {
8374 if (XBOOL_VECTOR (elt)->size < width)
8375 return 0;
8376 }
8377 else
8378 return 0;
8379 }
8380 }
8381 else if (STRINGP (data))
8382 {
8383 if (XSTRING (data)->size
8384 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
8385 return 0;
8386 }
8387 else if (BOOL_VECTOR_P (data))
8388 {
8389 if (XBOOL_VECTOR (data)->size < width * height)
8390 return 0;
8391 }
8392 else
8393 return 0;
8394 }
8395
8396 /* Baseline must be a value between 0 and 100 (a percentage). */
8397 if (kw[XBM_ASCENT].count
8398 && XFASTINT (kw[XBM_ASCENT].value) > 100)
8399 return 0;
8400
8401 return 1;
8402 }
8403
8404
8405 /* Scan a bitmap file. FP is the stream to read from. Value is
8406 either an enumerator from enum xbm_token, or a character for a
8407 single-character token, or 0 at end of file. If scanning an
8408 identifier, store the lexeme of the identifier in SVAL. If
8409 scanning a number, store its value in *IVAL. */
8410
8411 static int
8412 xbm_scan (fp, sval, ival)
8413 FILE *fp;
8414 char *sval;
8415 int *ival;
8416 {
8417 int c;
8418
8419 /* Skip white space. */
8420 while ((c = fgetc (fp)) != EOF && isspace (c))
8421 ;
8422
8423 if (c == EOF)
8424 c = 0;
8425 else if (isdigit (c))
8426 {
8427 int value = 0, digit;
8428
8429 if (c == '0')
8430 {
8431 c = fgetc (fp);
8432 if (c == 'x' || c == 'X')
8433 {
8434 while ((c = fgetc (fp)) != EOF)
8435 {
8436 if (isdigit (c))
8437 digit = c - '0';
8438 else if (c >= 'a' && c <= 'f')
8439 digit = c - 'a' + 10;
8440 else if (c >= 'A' && c <= 'F')
8441 digit = c - 'A' + 10;
8442 else
8443 break;
8444 value = 16 * value + digit;
8445 }
8446 }
8447 else if (isdigit (c))
8448 {
8449 value = c - '0';
8450 while ((c = fgetc (fp)) != EOF
8451 && isdigit (c))
8452 value = 8 * value + c - '0';
8453 }
8454 }
8455 else
8456 {
8457 value = c - '0';
8458 while ((c = fgetc (fp)) != EOF
8459 && isdigit (c))
8460 value = 10 * value + c - '0';
8461 }
8462
8463 if (c != EOF)
8464 ungetc (c, fp);
8465 *ival = value;
8466 c = XBM_TK_NUMBER;
8467 }
8468 else if (isalpha (c) || c == '_')
8469 {
8470 *sval++ = c;
8471 while ((c = fgetc (fp)) != EOF
8472 && (isalnum (c) || c == '_'))
8473 *sval++ = c;
8474 *sval = 0;
8475 if (c != EOF)
8476 ungetc (c, fp);
8477 c = XBM_TK_IDENT;
8478 }
8479
8480 return c;
8481 }
8482
8483
8484 /* Replacement for XReadBitmapFileData which isn't available under old
8485 X versions. FILE is the name of the bitmap file to read. Set
8486 *WIDTH and *HEIGHT to the width and height of the image. Return in
8487 *DATA the bitmap data allocated with xmalloc. Value is non-zero if
8488 successful. */
8489
8490 static int
8491 xbm_read_bitmap_file_data (file, width, height, data)
8492 char *file;
8493 int *width, *height;
8494 unsigned char **data;
8495 {
8496 FILE *fp;
8497 char buffer[BUFSIZ];
8498 int padding_p = 0;
8499 int v10 = 0;
8500 int bytes_per_line, i, nbytes;
8501 unsigned char *p;
8502 int value;
8503 int LA1;
8504
8505 #define match() \
8506 LA1 = xbm_scan (fp, buffer, &value)
8507
8508 #define expect(TOKEN) \
8509 if (LA1 != (TOKEN)) \
8510 goto failure; \
8511 else \
8512 match ()
8513
8514 #define expect_ident(IDENT) \
8515 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
8516 match (); \
8517 else \
8518 goto failure
8519
8520 fp = fopen (file, "r");
8521 if (fp == NULL)
8522 return 0;
8523
8524 *width = *height = -1;
8525 *data = NULL;
8526 LA1 = xbm_scan (fp, buffer, &value);
8527
8528 /* Parse defines for width, height and hot-spots. */
8529 while (LA1 == '#')
8530 {
8531 match ();
8532 expect_ident ("define");
8533 expect (XBM_TK_IDENT);
8534
8535 if (LA1 == XBM_TK_NUMBER);
8536 {
8537 char *p = strrchr (buffer, '_');
8538 p = p ? p + 1 : buffer;
8539 if (strcmp (p, "width") == 0)
8540 *width = value;
8541 else if (strcmp (p, "height") == 0)
8542 *height = value;
8543 }
8544 expect (XBM_TK_NUMBER);
8545 }
8546
8547 if (*width < 0 || *height < 0)
8548 goto failure;
8549
8550 /* Parse bits. Must start with `static'. */
8551 expect_ident ("static");
8552 if (LA1 == XBM_TK_IDENT)
8553 {
8554 if (strcmp (buffer, "unsigned") == 0)
8555 {
8556 match ();
8557 expect_ident ("char");
8558 }
8559 else if (strcmp (buffer, "short") == 0)
8560 {
8561 match ();
8562 v10 = 1;
8563 if (*width % 16 && *width % 16 < 9)
8564 padding_p = 1;
8565 }
8566 else if (strcmp (buffer, "char") == 0)
8567 match ();
8568 else
8569 goto failure;
8570 }
8571 else
8572 goto failure;
8573
8574 expect (XBM_TK_IDENT);
8575 expect ('[');
8576 expect (']');
8577 expect ('=');
8578 expect ('{');
8579
8580 bytes_per_line = (*width + 7) / 8 + padding_p;
8581 nbytes = bytes_per_line * *height;
8582 p = *data = (char *) xmalloc (nbytes);
8583
8584 if (v10)
8585 {
8586
8587 for (i = 0; i < nbytes; i += 2)
8588 {
8589 int val = value;
8590 expect (XBM_TK_NUMBER);
8591
8592 *p++ = val;
8593 if (!padding_p || ((i + 2) % bytes_per_line))
8594 *p++ = value >> 8;
8595
8596 if (LA1 == ',' || LA1 == '}')
8597 match ();
8598 else
8599 goto failure;
8600 }
8601 }
8602 else
8603 {
8604 for (i = 0; i < nbytes; ++i)
8605 {
8606 int val = value;
8607 expect (XBM_TK_NUMBER);
8608
8609 *p++ = val;
8610
8611 if (LA1 == ',' || LA1 == '}')
8612 match ();
8613 else
8614 goto failure;
8615 }
8616 }
8617
8618 fclose (fp);
8619 return 1;
8620
8621 failure:
8622
8623 fclose (fp);
8624 if (*data)
8625 {
8626 xfree (*data);
8627 *data = NULL;
8628 }
8629 return 0;
8630
8631 #undef match
8632 #undef expect
8633 #undef expect_ident
8634 }
8635
8636
8637 /* Load XBM image IMG which will be displayed on frame F from file
8638 SPECIFIED_FILE. Value is non-zero if successful. */
8639
8640 static int
8641 xbm_load_image_from_file (f, img, specified_file)
8642 struct frame *f;
8643 struct image *img;
8644 Lisp_Object specified_file;
8645 {
8646 int rc;
8647 unsigned char *data;
8648 int success_p = 0;
8649 Lisp_Object file;
8650 struct gcpro gcpro1;
8651
8652 xassert (STRINGP (specified_file));
8653 file = Qnil;
8654 GCPRO1 (file);
8655
8656 file = x_find_image_file (specified_file);
8657 if (!STRINGP (file))
8658 {
8659 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8660 UNGCPRO;
8661 return 0;
8662 }
8663
8664 rc = xbm_read_bitmap_file_data (XSTRING (file)->data, &img->width,
8665 &img->height, &data);
8666 if (rc)
8667 {
8668 int depth = one_w32_display_info.n_cbits;
8669 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
8670 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
8671 Lisp_Object value;
8672
8673 xassert (img->width > 0 && img->height > 0);
8674
8675 /* Get foreground and background colors, maybe allocate colors. */
8676 value = image_spec_value (img->spec, QCforeground, NULL);
8677 if (!NILP (value))
8678 foreground = x_alloc_image_color (f, img, value, foreground);
8679
8680 value = image_spec_value (img->spec, QCbackground, NULL);
8681 if (!NILP (value))
8682 background = x_alloc_image_color (f, img, value, background);
8683
8684 #if 0 /* NTEMACS_TODO : Port image display to W32 */
8685 BLOCK_INPUT;
8686 img->pixmap
8687 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f),
8688 FRAME_W32_WINDOW (f),
8689 data,
8690 img->width, img->height,
8691 foreground, background,
8692 depth);
8693 xfree (data);
8694
8695 if (img->pixmap == 0)
8696 {
8697 x_clear_image (f, img);
8698 image_error ("Unable to create X pixmap for `%s'", file, Qnil);
8699 }
8700 else
8701 success_p = 1;
8702
8703 UNBLOCK_INPUT;
8704 #endif
8705 }
8706 else
8707 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
8708
8709 UNGCPRO;
8710 return success_p;
8711 }
8712
8713
8714 /* Fill image IMG which is used on frame F with pixmap data. Value is
8715 non-zero if successful. */
8716
8717 static int
8718 xbm_load (f, img)
8719 struct frame *f;
8720 struct image *img;
8721 {
8722 int success_p = 0;
8723 Lisp_Object file_name;
8724
8725 xassert (xbm_image_p (img->spec));
8726
8727 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8728 file_name = image_spec_value (img->spec, QCfile, NULL);
8729 if (STRINGP (file_name))
8730 success_p = xbm_load_image_from_file (f, img, file_name);
8731 else
8732 {
8733 struct image_keyword fmt[XBM_LAST];
8734 Lisp_Object data;
8735 int depth;
8736 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
8737 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
8738 char *bits;
8739 int parsed_p;
8740
8741 /* Parse the list specification. */
8742 bcopy (xbm_format, fmt, sizeof fmt);
8743 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
8744 xassert (parsed_p);
8745
8746 /* Get specified width, and height. */
8747 img->width = XFASTINT (fmt[XBM_WIDTH].value);
8748 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
8749 xassert (img->width > 0 && img->height > 0);
8750
8751 BLOCK_INPUT;
8752
8753 if (fmt[XBM_ASCENT].count)
8754 img->ascent = XFASTINT (fmt[XBM_ASCENT].value);
8755
8756 /* Get foreground and background colors, maybe allocate colors. */
8757 if (fmt[XBM_FOREGROUND].count)
8758 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
8759 foreground);
8760 if (fmt[XBM_BACKGROUND].count)
8761 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
8762 background);
8763
8764 /* Set bits to the bitmap image data. */
8765 data = fmt[XBM_DATA].value;
8766 if (VECTORP (data))
8767 {
8768 int i;
8769 char *p;
8770 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
8771
8772 p = bits = (char *) alloca (nbytes * img->height);
8773 for (i = 0; i < img->height; ++i, p += nbytes)
8774 {
8775 Lisp_Object line = XVECTOR (data)->contents[i];
8776 if (STRINGP (line))
8777 bcopy (XSTRING (line)->data, p, nbytes);
8778 else
8779 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
8780 }
8781 }
8782 else if (STRINGP (data))
8783 bits = XSTRING (data)->data;
8784 else
8785 bits = XBOOL_VECTOR (data)->data;
8786
8787 #if 0 /* NTEMACS_TODO : W32 XPM code */
8788 /* Create the pixmap. */
8789 depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
8790 img->pixmap
8791 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f),
8792 FRAME_W32_WINDOW (f),
8793 bits,
8794 img->width, img->height,
8795 foreground, background,
8796 depth);
8797 #endif /* NTEMACS_TODO */
8798
8799 if (img->pixmap)
8800 success_p = 1;
8801 else
8802 {
8803 image_error ("Unable to create pixmap for XBM image `%s'",
8804 img->spec, Qnil);
8805 x_clear_image (f, img);
8806 }
8807
8808 UNBLOCK_INPUT;
8809 }
8810
8811 return success_p;
8812 }
8813
8814
8815 \f
8816 /***********************************************************************
8817 XPM images
8818 ***********************************************************************/
8819
8820 #if HAVE_XPM
8821
8822 static int xpm_image_p P_ ((Lisp_Object object));
8823 static int xpm_load P_ ((struct frame *f, struct image *img));
8824 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
8825
8826 #include "X11/xpm.h"
8827
8828 /* The symbol `xpm' identifying XPM-format images. */
8829
8830 Lisp_Object Qxpm;
8831
8832 /* Indices of image specification fields in xpm_format, below. */
8833
8834 enum xpm_keyword_index
8835 {
8836 XPM_TYPE,
8837 XPM_FILE,
8838 XPM_DATA,
8839 XPM_ASCENT,
8840 XPM_MARGIN,
8841 XPM_RELIEF,
8842 XPM_ALGORITHM,
8843 XPM_HEURISTIC_MASK,
8844 XPM_COLOR_SYMBOLS,
8845 XPM_LAST
8846 };
8847
8848 /* Vector of image_keyword structures describing the format
8849 of valid XPM image specifications. */
8850
8851 static struct image_keyword xpm_format[XPM_LAST] =
8852 {
8853 {":type", IMAGE_SYMBOL_VALUE, 1},
8854 {":file", IMAGE_STRING_VALUE, 0},
8855 {":data", IMAGE_STRING_VALUE, 0},
8856 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
8857 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8858 {":relief", IMAGE_INTEGER_VALUE, 0},
8859 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8860 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8861 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8862 };
8863
8864 /* Structure describing the image type XBM. */
8865
8866 static struct image_type xpm_type =
8867 {
8868 &Qxpm,
8869 xpm_image_p,
8870 xpm_load,
8871 x_clear_image,
8872 NULL
8873 };
8874
8875
8876 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
8877 for XPM images. Such a list must consist of conses whose car and
8878 cdr are strings. */
8879
8880 static int
8881 xpm_valid_color_symbols_p (color_symbols)
8882 Lisp_Object color_symbols;
8883 {
8884 while (CONSP (color_symbols))
8885 {
8886 Lisp_Object sym = XCAR (color_symbols);
8887 if (!CONSP (sym)
8888 || !STRINGP (XCAR (sym))
8889 || !STRINGP (XCDR (sym)))
8890 break;
8891 color_symbols = XCDR (color_symbols);
8892 }
8893
8894 return NILP (color_symbols);
8895 }
8896
8897
8898 /* Value is non-zero if OBJECT is a valid XPM image specification. */
8899
8900 static int
8901 xpm_image_p (object)
8902 Lisp_Object object;
8903 {
8904 struct image_keyword fmt[XPM_LAST];
8905 bcopy (xpm_format, fmt, sizeof fmt);
8906 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
8907 /* Either `:file' or `:data' must be present. */
8908 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
8909 /* Either no `:color-symbols' or it's a list of conses
8910 whose car and cdr are strings. */
8911 && (fmt[XPM_COLOR_SYMBOLS].count == 0
8912 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value))
8913 && (fmt[XPM_ASCENT].count == 0
8914 || XFASTINT (fmt[XPM_ASCENT].value) < 100));
8915 }
8916
8917
8918 /* Load image IMG which will be displayed on frame F. Value is
8919 non-zero if successful. */
8920
8921 static int
8922 xpm_load (f, img)
8923 struct frame *f;
8924 struct image *img;
8925 {
8926 int rc, i;
8927 XpmAttributes attrs;
8928 Lisp_Object specified_file, color_symbols;
8929
8930 /* Configure the XPM lib. Use the visual of frame F. Allocate
8931 close colors. Return colors allocated. */
8932 bzero (&attrs, sizeof attrs);
8933 attrs.visual = FRAME_X_VISUAL (f);
8934 attrs.colormap = FRAME_X_COLORMAP (f);
8935 attrs.valuemask |= XpmVisual;
8936 attrs.valuemask |= XpmColormap;
8937 attrs.valuemask |= XpmReturnAllocPixels;
8938 #ifdef XpmAllocCloseColors
8939 attrs.alloc_close_colors = 1;
8940 attrs.valuemask |= XpmAllocCloseColors;
8941 #else
8942 attrs.closeness = 600;
8943 attrs.valuemask |= XpmCloseness;
8944 #endif
8945
8946 /* If image specification contains symbolic color definitions, add
8947 these to `attrs'. */
8948 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
8949 if (CONSP (color_symbols))
8950 {
8951 Lisp_Object tail;
8952 XpmColorSymbol *xpm_syms;
8953 int i, size;
8954
8955 attrs.valuemask |= XpmColorSymbols;
8956
8957 /* Count number of symbols. */
8958 attrs.numsymbols = 0;
8959 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
8960 ++attrs.numsymbols;
8961
8962 /* Allocate an XpmColorSymbol array. */
8963 size = attrs.numsymbols * sizeof *xpm_syms;
8964 xpm_syms = (XpmColorSymbol *) alloca (size);
8965 bzero (xpm_syms, size);
8966 attrs.colorsymbols = xpm_syms;
8967
8968 /* Fill the color symbol array. */
8969 for (tail = color_symbols, i = 0;
8970 CONSP (tail);
8971 ++i, tail = XCDR (tail))
8972 {
8973 Lisp_Object name = XCAR (XCAR (tail));
8974 Lisp_Object color = XCDR (XCAR (tail));
8975 xpm_syms[i].name = (char *) alloca (XSTRING (name)->size + 1);
8976 strcpy (xpm_syms[i].name, XSTRING (name)->data);
8977 xpm_syms[i].value = (char *) alloca (XSTRING (color)->size + 1);
8978 strcpy (xpm_syms[i].value, XSTRING (color)->data);
8979 }
8980 }
8981
8982 /* Create a pixmap for the image, either from a file, or from a
8983 string buffer containing data in the same format as an XPM file. */
8984 BLOCK_INPUT;
8985 specified_file = image_spec_value (img->spec, QCfile, NULL);
8986 if (STRINGP (specified_file))
8987 {
8988 Lisp_Object file = x_find_image_file (specified_file);
8989 if (!STRINGP (file))
8990 {
8991 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8992 UNBLOCK_INPUT;
8993 return 0;
8994 }
8995
8996 rc = XpmReadFileToPixmap (NULL, FRAME_W32_WINDOW (f),
8997 XSTRING (file)->data, &img->pixmap, &img->mask,
8998 &attrs);
8999 }
9000 else
9001 {
9002 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
9003 rc = XpmCreatePixmapFromBuffer (NULL, FRAME_W32_WINDOW (f),
9004 XSTRING (buffer)->data,
9005 &img->pixmap, &img->mask,
9006 &attrs);
9007 }
9008 UNBLOCK_INPUT;
9009
9010 if (rc == XpmSuccess)
9011 {
9012 /* Remember allocated colors. */
9013 img->ncolors = attrs.nalloc_pixels;
9014 img->colors = (unsigned long *) xmalloc (img->ncolors
9015 * sizeof *img->colors);
9016 for (i = 0; i < attrs.nalloc_pixels; ++i)
9017 img->colors[i] = attrs.alloc_pixels[i];
9018
9019 img->width = attrs.width;
9020 img->height = attrs.height;
9021 xassert (img->width > 0 && img->height > 0);
9022
9023 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
9024 BLOCK_INPUT;
9025 XpmFreeAttributes (&attrs);
9026 UNBLOCK_INPUT;
9027 }
9028 else
9029 {
9030 switch (rc)
9031 {
9032 case XpmOpenFailed:
9033 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
9034 break;
9035
9036 case XpmFileInvalid:
9037 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
9038 break;
9039
9040 case XpmNoMemory:
9041 image_error ("Out of memory (%s)", img->spec, Qnil);
9042 break;
9043
9044 case XpmColorFailed:
9045 image_error ("Color allocation error (%s)", img->spec, Qnil);
9046 break;
9047
9048 default:
9049 image_error ("Unknown error (%s)", img->spec, Qnil);
9050 break;
9051 }
9052 }
9053
9054 return rc == XpmSuccess;
9055 }
9056
9057 #endif /* HAVE_XPM != 0 */
9058
9059 \f
9060 #if 0 /* NTEMACS_TODO : Color tables on W32. */
9061 /***********************************************************************
9062 Color table
9063 ***********************************************************************/
9064
9065 /* An entry in the color table mapping an RGB color to a pixel color. */
9066
9067 struct ct_color
9068 {
9069 int r, g, b;
9070 unsigned long pixel;
9071
9072 /* Next in color table collision list. */
9073 struct ct_color *next;
9074 };
9075
9076 /* The bucket vector size to use. Must be prime. */
9077
9078 #define CT_SIZE 101
9079
9080 /* Value is a hash of the RGB color given by R, G, and B. */
9081
9082 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
9083
9084 /* The color hash table. */
9085
9086 struct ct_color **ct_table;
9087
9088 /* Number of entries in the color table. */
9089
9090 int ct_colors_allocated;
9091
9092 /* Function prototypes. */
9093
9094 static void init_color_table P_ ((void));
9095 static void free_color_table P_ ((void));
9096 static unsigned long *colors_in_color_table P_ ((int *n));
9097 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
9098 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
9099
9100
9101 /* Initialize the color table. */
9102
9103 static void
9104 init_color_table ()
9105 {
9106 int size = CT_SIZE * sizeof (*ct_table);
9107 ct_table = (struct ct_color **) xmalloc (size);
9108 bzero (ct_table, size);
9109 ct_colors_allocated = 0;
9110 }
9111
9112
9113 /* Free memory associated with the color table. */
9114
9115 static void
9116 free_color_table ()
9117 {
9118 int i;
9119 struct ct_color *p, *next;
9120
9121 for (i = 0; i < CT_SIZE; ++i)
9122 for (p = ct_table[i]; p; p = next)
9123 {
9124 next = p->next;
9125 xfree (p);
9126 }
9127
9128 xfree (ct_table);
9129 ct_table = NULL;
9130 }
9131
9132
9133 /* Value is a pixel color for RGB color R, G, B on frame F. If an
9134 entry for that color already is in the color table, return the
9135 pixel color of that entry. Otherwise, allocate a new color for R,
9136 G, B, and make an entry in the color table. */
9137
9138 static unsigned long
9139 lookup_rgb_color (f, r, g, b)
9140 struct frame *f;
9141 int r, g, b;
9142 {
9143 unsigned hash = CT_HASH_RGB (r, g, b);
9144 int i = hash % CT_SIZE;
9145 struct ct_color *p;
9146
9147 for (p = ct_table[i]; p; p = p->next)
9148 if (p->r == r && p->g == g && p->b == b)
9149 break;
9150
9151 if (p == NULL)
9152 {
9153 COLORREF color;
9154 Colormap cmap;
9155 int rc;
9156
9157 color = PALETTERGB (r, g, b);
9158
9159 ++ct_colors_allocated;
9160
9161 p = (struct ct_color *) xmalloc (sizeof *p);
9162 p->r = r;
9163 p->g = g;
9164 p->b = b;
9165 p->pixel = color;
9166 p->next = ct_table[i];
9167 ct_table[i] = p;
9168 }
9169
9170 return p->pixel;
9171 }
9172
9173
9174 /* Look up pixel color PIXEL which is used on frame F in the color
9175 table. If not already present, allocate it. Value is PIXEL. */
9176
9177 static unsigned long
9178 lookup_pixel_color (f, pixel)
9179 struct frame *f;
9180 unsigned long pixel;
9181 {
9182 int i = pixel % CT_SIZE;
9183 struct ct_color *p;
9184
9185 for (p = ct_table[i]; p; p = p->next)
9186 if (p->pixel == pixel)
9187 break;
9188
9189 if (p == NULL)
9190 {
9191 XColor color;
9192 Colormap cmap;
9193 int rc;
9194
9195 BLOCK_INPUT;
9196
9197 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9198 color.pixel = pixel;
9199 XQueryColor (NULL, cmap, &color);
9200 rc = x_alloc_nearest_color (f, cmap, &color);
9201 UNBLOCK_INPUT;
9202
9203 if (rc)
9204 {
9205 ++ct_colors_allocated;
9206
9207 p = (struct ct_color *) xmalloc (sizeof *p);
9208 p->r = color.red;
9209 p->g = color.green;
9210 p->b = color.blue;
9211 p->pixel = pixel;
9212 p->next = ct_table[i];
9213 ct_table[i] = p;
9214 }
9215 else
9216 return FRAME_FOREGROUND_PIXEL (f);
9217 }
9218 return p->pixel;
9219 }
9220
9221
9222 /* Value is a vector of all pixel colors contained in the color table,
9223 allocated via xmalloc. Set *N to the number of colors. */
9224
9225 static unsigned long *
9226 colors_in_color_table (n)
9227 int *n;
9228 {
9229 int i, j;
9230 struct ct_color *p;
9231 unsigned long *colors;
9232
9233 if (ct_colors_allocated == 0)
9234 {
9235 *n = 0;
9236 colors = NULL;
9237 }
9238 else
9239 {
9240 colors = (unsigned long *) xmalloc (ct_colors_allocated
9241 * sizeof *colors);
9242 *n = ct_colors_allocated;
9243
9244 for (i = j = 0; i < CT_SIZE; ++i)
9245 for (p = ct_table[i]; p; p = p->next)
9246 colors[j++] = p->pixel;
9247 }
9248
9249 return colors;
9250 }
9251
9252 #endif /* NTEMACS_TODO */
9253
9254 \f
9255 /***********************************************************************
9256 Algorithms
9257 ***********************************************************************/
9258
9259 #if 0 /* NTEMACS_TODO : W32 versions of low level algorithms */
9260 static void x_laplace_write_row P_ ((struct frame *, long *,
9261 int, XImage *, int));
9262 static void x_laplace_read_row P_ ((struct frame *, Colormap,
9263 XColor *, int, XImage *, int));
9264
9265
9266 /* Fill COLORS with RGB colors from row Y of image XIMG. F is the
9267 frame we operate on, CMAP is the color-map in effect, and WIDTH is
9268 the width of one row in the image. */
9269
9270 static void
9271 x_laplace_read_row (f, cmap, colors, width, ximg, y)
9272 struct frame *f;
9273 Colormap cmap;
9274 XColor *colors;
9275 int width;
9276 XImage *ximg;
9277 int y;
9278 {
9279 int x;
9280
9281 for (x = 0; x < width; ++x)
9282 colors[x].pixel = XGetPixel (ximg, x, y);
9283
9284 XQueryColors (NULL, cmap, colors, width);
9285 }
9286
9287
9288 /* Write row Y of image XIMG. PIXELS is an array of WIDTH longs
9289 containing the pixel colors to write. F is the frame we are
9290 working on. */
9291
9292 static void
9293 x_laplace_write_row (f, pixels, width, ximg, y)
9294 struct frame *f;
9295 long *pixels;
9296 int width;
9297 XImage *ximg;
9298 int y;
9299 {
9300 int x;
9301
9302 for (x = 0; x < width; ++x)
9303 XPutPixel (ximg, x, y, pixels[x]);
9304 }
9305 #endif
9306
9307 /* Transform image IMG which is used on frame F with a Laplace
9308 edge-detection algorithm. The result is an image that can be used
9309 to draw disabled buttons, for example. */
9310
9311 static void
9312 x_laplace (f, img)
9313 struct frame *f;
9314 struct image *img;
9315 {
9316 #if 0 /* NTEMACS_TODO : W32 version */
9317 Colormap cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9318 XImage *ximg, *oimg;
9319 XColor *in[3];
9320 long *out;
9321 Pixmap pixmap;
9322 int x, y, i;
9323 long pixel;
9324 int in_y, out_y, rc;
9325 int mv2 = 45000;
9326
9327 BLOCK_INPUT;
9328
9329 /* Get the X image IMG->pixmap. */
9330 ximg = XGetImage (NULL, img->pixmap,
9331 0, 0, img->width, img->height, ~0, ZPixmap);
9332
9333 /* Allocate 3 input rows, and one output row of colors. */
9334 for (i = 0; i < 3; ++i)
9335 in[i] = (XColor *) alloca (img->width * sizeof (XColor));
9336 out = (long *) alloca (img->width * sizeof (long));
9337
9338 /* Create an X image for output. */
9339 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 0,
9340 &oimg, &pixmap);
9341
9342 /* Fill first two rows. */
9343 x_laplace_read_row (f, cmap, in[0], img->width, ximg, 0);
9344 x_laplace_read_row (f, cmap, in[1], img->width, ximg, 1);
9345 in_y = 2;
9346
9347 /* Write first row, all zeros. */
9348 init_color_table ();
9349 pixel = lookup_rgb_color (f, 0, 0, 0);
9350 for (x = 0; x < img->width; ++x)
9351 out[x] = pixel;
9352 x_laplace_write_row (f, out, img->width, oimg, 0);
9353 out_y = 1;
9354
9355 for (y = 2; y < img->height; ++y)
9356 {
9357 int rowa = y % 3;
9358 int rowb = (y + 2) % 3;
9359
9360 x_laplace_read_row (f, cmap, in[rowa], img->width, ximg, in_y++);
9361
9362 for (x = 0; x < img->width - 2; ++x)
9363 {
9364 int r = in[rowa][x].red + mv2 - in[rowb][x + 2].red;
9365 int g = in[rowa][x].green + mv2 - in[rowb][x + 2].green;
9366 int b = in[rowa][x].blue + mv2 - in[rowb][x + 2].blue;
9367
9368 out[x + 1] = lookup_rgb_color (f, r & 0xffff, g & 0xffff,
9369 b & 0xffff);
9370 }
9371
9372 x_laplace_write_row (f, out, img->width, oimg, out_y++);
9373 }
9374
9375 /* Write last line, all zeros. */
9376 for (x = 0; x < img->width; ++x)
9377 out[x] = pixel;
9378 x_laplace_write_row (f, out, img->width, oimg, out_y);
9379
9380 /* Free the input image, and free resources of IMG. */
9381 XDestroyImage (ximg);
9382 x_clear_image (f, img);
9383
9384 /* Put the output image into pixmap, and destroy it. */
9385 x_put_x_image (f, oimg, pixmap, img->width, img->height);
9386 x_destroy_x_image (oimg);
9387
9388 /* Remember new pixmap and colors in IMG. */
9389 img->pixmap = pixmap;
9390 img->colors = colors_in_color_table (&img->ncolors);
9391 free_color_table ();
9392
9393 UNBLOCK_INPUT;
9394 #endif /* NTEMACS_TODO */
9395 }
9396
9397
9398 /* Build a mask for image IMG which is used on frame F. FILE is the
9399 name of an image file, for error messages. HOW determines how to
9400 determine the background color of IMG. If it is a list '(R G B)',
9401 with R, G, and B being integers >= 0, take that as the color of the
9402 background. Otherwise, determine the background color of IMG
9403 heuristically. Value is non-zero if successful. */
9404
9405 static int
9406 x_build_heuristic_mask (f, img, how)
9407 struct frame *f;
9408 struct image *img;
9409 Lisp_Object how;
9410 {
9411 #if 0 /* NTEMACS_TODO : W32 version */
9412 Display *dpy = FRAME_W32_DISPLAY (f);
9413 XImage *ximg, *mask_img;
9414 int x, y, rc, look_at_corners_p;
9415 unsigned long bg;
9416
9417 BLOCK_INPUT;
9418
9419 /* Create an image and pixmap serving as mask. */
9420 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
9421 &mask_img, &img->mask);
9422 if (!rc)
9423 {
9424 UNBLOCK_INPUT;
9425 return 0;
9426 }
9427
9428 /* Get the X image of IMG->pixmap. */
9429 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
9430 ~0, ZPixmap);
9431
9432 /* Determine the background color of ximg. If HOW is `(R G B)'
9433 take that as color. Otherwise, try to determine the color
9434 heuristically. */
9435 look_at_corners_p = 1;
9436
9437 if (CONSP (how))
9438 {
9439 int rgb[3], i = 0;
9440
9441 while (i < 3
9442 && CONSP (how)
9443 && NATNUMP (XCAR (how)))
9444 {
9445 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
9446 how = XCDR (how);
9447 }
9448
9449 if (i == 3 && NILP (how))
9450 {
9451 char color_name[30];
9452 XColor exact, color;
9453 Colormap cmap;
9454
9455 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
9456
9457 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
9458 if (XLookupColor (dpy, cmap, color_name, &exact, &color))
9459 {
9460 bg = color.pixel;
9461 look_at_corners_p = 0;
9462 }
9463 }
9464 }
9465
9466 if (look_at_corners_p)
9467 {
9468 unsigned long corners[4];
9469 int i, best_count;
9470
9471 /* Get the colors at the corners of ximg. */
9472 corners[0] = XGetPixel (ximg, 0, 0);
9473 corners[1] = XGetPixel (ximg, img->width - 1, 0);
9474 corners[2] = XGetPixel (ximg, img->width - 1, img->height - 1);
9475 corners[3] = XGetPixel (ximg, 0, img->height - 1);
9476
9477 /* Choose the most frequently found color as background. */
9478 for (i = best_count = 0; i < 4; ++i)
9479 {
9480 int j, n;
9481
9482 for (j = n = 0; j < 4; ++j)
9483 if (corners[i] == corners[j])
9484 ++n;
9485
9486 if (n > best_count)
9487 bg = corners[i], best_count = n;
9488 }
9489 }
9490
9491 /* Set all bits in mask_img to 1 whose color in ximg is different
9492 from the background color bg. */
9493 for (y = 0; y < img->height; ++y)
9494 for (x = 0; x < img->width; ++x)
9495 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
9496
9497 /* Put mask_img into img->mask. */
9498 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
9499 x_destroy_x_image (mask_img);
9500 XDestroyImage (ximg);
9501
9502 UNBLOCK_INPUT;
9503 #endif /* NTEMACS_TODO */
9504
9505 return 1;
9506 }
9507
9508
9509 \f
9510 /***********************************************************************
9511 PBM (mono, gray, color)
9512 ***********************************************************************/
9513 #ifdef HAVE_PBM
9514
9515 static int pbm_image_p P_ ((Lisp_Object object));
9516 static int pbm_load P_ ((struct frame *f, struct image *img));
9517 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
9518
9519 /* The symbol `pbm' identifying images of this type. */
9520
9521 Lisp_Object Qpbm;
9522
9523 /* Indices of image specification fields in gs_format, below. */
9524
9525 enum pbm_keyword_index
9526 {
9527 PBM_TYPE,
9528 PBM_FILE,
9529 PBM_DATA,
9530 PBM_ASCENT,
9531 PBM_MARGIN,
9532 PBM_RELIEF,
9533 PBM_ALGORITHM,
9534 PBM_HEURISTIC_MASK,
9535 PBM_LAST
9536 };
9537
9538 /* Vector of image_keyword structures describing the format
9539 of valid user-defined image specifications. */
9540
9541 static struct image_keyword pbm_format[PBM_LAST] =
9542 {
9543 {":type", IMAGE_SYMBOL_VALUE, 1},
9544 {":file", IMAGE_STRING_VALUE, 0},
9545 {":data", IMAGE_STRING_VALUE, 0},
9546 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
9547 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9548 {":relief", IMAGE_INTEGER_VALUE, 0},
9549 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9550 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9551 };
9552
9553 /* Structure describing the image type `pbm'. */
9554
9555 static struct image_type pbm_type =
9556 {
9557 &Qpbm,
9558 pbm_image_p,
9559 pbm_load,
9560 x_clear_image,
9561 NULL
9562 };
9563
9564
9565 /* Return non-zero if OBJECT is a valid PBM image specification. */
9566
9567 static int
9568 pbm_image_p (object)
9569 Lisp_Object object;
9570 {
9571 struct image_keyword fmt[PBM_LAST];
9572
9573 bcopy (pbm_format, fmt, sizeof fmt);
9574
9575 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm)
9576 || (fmt[PBM_ASCENT].count
9577 && XFASTINT (fmt[PBM_ASCENT].value) > 100))
9578 return 0;
9579
9580 /* Must specify either :data or :file. */
9581 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
9582 }
9583
9584
9585 /* Scan a decimal number from *S and return it. Advance *S while
9586 reading the number. END is the end of the string. Value is -1 at
9587 end of input. */
9588
9589 static int
9590 pbm_scan_number (s, end)
9591 unsigned char **s, *end;
9592 {
9593 int c, val = -1;
9594
9595 while (*s < end)
9596 {
9597 /* Skip white-space. */
9598 while (*s < end && (c = *(*s)++, isspace (c)))
9599 ;
9600
9601 if (c == '#')
9602 {
9603 /* Skip comment to end of line. */
9604 while (*s < end && (c = *(*s)++, c != '\n'))
9605 ;
9606 }
9607 else if (isdigit (c))
9608 {
9609 /* Read decimal number. */
9610 val = c - '0';
9611 while (*s < end && (c = *(*s)++, isdigit (c)))
9612 val = 10 * val + c - '0';
9613 break;
9614 }
9615 else
9616 break;
9617 }
9618
9619 return val;
9620 }
9621
9622
9623 /* Read FILE into memory. Value is a pointer to a buffer allocated
9624 with xmalloc holding FILE's contents. Value is null if an error
9625 occured. *SIZE is set to the size of the file. */
9626
9627 static char *
9628 pbm_read_file (file, size)
9629 Lisp_Object file;
9630 int *size;
9631 {
9632 FILE *fp = NULL;
9633 char *buf = NULL;
9634 struct stat st;
9635
9636 if (stat (XSTRING (file)->data, &st) == 0
9637 && (fp = fopen (XSTRING (file)->data, "r")) != NULL
9638 && (buf = (char *) xmalloc (st.st_size),
9639 fread (buf, 1, st.st_size, fp) == st.st_size))
9640 {
9641 *size = st.st_size;
9642 fclose (fp);
9643 }
9644 else
9645 {
9646 if (fp)
9647 fclose (fp);
9648 if (buf)
9649 {
9650 xfree (buf);
9651 buf = NULL;
9652 }
9653 }
9654
9655 return buf;
9656 }
9657
9658
9659 /* Load PBM image IMG for use on frame F. */
9660
9661 static int
9662 pbm_load (f, img)
9663 struct frame *f;
9664 struct image *img;
9665 {
9666 int raw_p, x, y;
9667 int width, height, max_color_idx = 0;
9668 XImage *ximg;
9669 Lisp_Object file, specified_file;
9670 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
9671 struct gcpro gcpro1;
9672 unsigned char *contents = NULL;
9673 unsigned char *end, *p;
9674 int size;
9675
9676 specified_file = image_spec_value (img->spec, QCfile, NULL);
9677 file = Qnil;
9678 GCPRO1 (file);
9679
9680 if (STRINGP (specified_file))
9681 {
9682 file = x_find_image_file (specified_file);
9683 if (!STRINGP (file))
9684 {
9685 image_error ("Cannot find image file `%s'", specified_file, Qnil);
9686 UNGCPRO;
9687 return 0;
9688 }
9689
9690 contents = pbm_read_file (file, &size);
9691 if (contents == NULL)
9692 {
9693 image_error ("Error reading `%s'", file, Qnil);
9694 UNGCPRO;
9695 return 0;
9696 }
9697
9698 p = contents;
9699 end = contents + size;
9700 }
9701 else
9702 {
9703 Lisp_Object data;
9704 data = image_spec_value (img->spec, QCdata, NULL);
9705 p = XSTRING (data)->data;
9706 end = p + STRING_BYTES (XSTRING (data));
9707 }
9708
9709 /* Check magic number. */
9710 if (end - p < 2 || *p++ != 'P')
9711 {
9712 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
9713 error:
9714 xfree (contents);
9715 UNGCPRO;
9716 return 0;
9717 }
9718
9719 switch (*p++)
9720 {
9721 case '1':
9722 raw_p = 0, type = PBM_MONO;
9723 break;
9724
9725 case '2':
9726 raw_p = 0, type = PBM_GRAY;
9727 break;
9728
9729 case '3':
9730 raw_p = 0, type = PBM_COLOR;
9731 break;
9732
9733 case '4':
9734 raw_p = 1, type = PBM_MONO;
9735 break;
9736
9737 case '5':
9738 raw_p = 1, type = PBM_GRAY;
9739 break;
9740
9741 case '6':
9742 raw_p = 1, type = PBM_COLOR;
9743 break;
9744
9745 default:
9746 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
9747 goto error;
9748 }
9749
9750 /* Read width, height, maximum color-component. Characters
9751 starting with `#' up to the end of a line are ignored. */
9752 width = pbm_scan_number (&p, end);
9753 height = pbm_scan_number (&p, end);
9754
9755 if (type != PBM_MONO)
9756 {
9757 max_color_idx = pbm_scan_number (&p, end);
9758 if (raw_p && max_color_idx > 255)
9759 max_color_idx = 255;
9760 }
9761
9762 if (width < 0
9763 || height < 0
9764 || (type != PBM_MONO && max_color_idx < 0))
9765 goto error;
9766
9767 BLOCK_INPUT;
9768 if (!x_create_x_image_and_pixmap (f, width, height, 0,
9769 &ximg, &img->pixmap))
9770 {
9771 UNBLOCK_INPUT;
9772 goto error;
9773 }
9774
9775 /* Initialize the color hash table. */
9776 init_color_table ();
9777
9778 if (type == PBM_MONO)
9779 {
9780 int c = 0, g;
9781
9782 for (y = 0; y < height; ++y)
9783 for (x = 0; x < width; ++x)
9784 {
9785 if (raw_p)
9786 {
9787 if ((x & 7) == 0)
9788 c = *p++;
9789 g = c & 0x80;
9790 c <<= 1;
9791 }
9792 else
9793 g = pbm_scan_number (&p, end);
9794
9795 XPutPixel (ximg, x, y, (g
9796 ? FRAME_FOREGROUND_PIXEL (f)
9797 : FRAME_BACKGROUND_PIXEL (f)));
9798 }
9799 }
9800 else
9801 {
9802 for (y = 0; y < height; ++y)
9803 for (x = 0; x < width; ++x)
9804 {
9805 int r, g, b;
9806
9807 if (type == PBM_GRAY)
9808 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
9809 else if (raw_p)
9810 {
9811 r = *p++;
9812 g = *p++;
9813 b = *p++;
9814 }
9815 else
9816 {
9817 r = pbm_scan_number (&p, end);
9818 g = pbm_scan_number (&p, end);
9819 b = pbm_scan_number (&p, end);
9820 }
9821
9822 if (r < 0 || g < 0 || b < 0)
9823 {
9824 xfree (ximg->data);
9825 ximg->data = NULL;
9826 XDestroyImage (ximg);
9827 UNBLOCK_INPUT;
9828 image_error ("Invalid pixel value in image `%s'",
9829 img->spec, Qnil);
9830 goto error;
9831 }
9832
9833 /* RGB values are now in the range 0..max_color_idx.
9834 Scale this to the range 0..0xffff supported by X. */
9835 r = (double) r * 65535 / max_color_idx;
9836 g = (double) g * 65535 / max_color_idx;
9837 b = (double) b * 65535 / max_color_idx;
9838 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
9839 }
9840 }
9841
9842 /* Store in IMG->colors the colors allocated for the image, and
9843 free the color table. */
9844 img->colors = colors_in_color_table (&img->ncolors);
9845 free_color_table ();
9846
9847 /* Put the image into a pixmap. */
9848 x_put_x_image (f, ximg, img->pixmap, width, height);
9849 x_destroy_x_image (ximg);
9850 UNBLOCK_INPUT;
9851
9852 img->width = width;
9853 img->height = height;
9854
9855 UNGCPRO;
9856 xfree (contents);
9857 return 1;
9858 }
9859 #endif /* HAVE_PBM */
9860
9861 \f
9862 /***********************************************************************
9863 PNG
9864 ***********************************************************************/
9865
9866 #if HAVE_PNG
9867
9868 #include <png.h>
9869
9870 /* Function prototypes. */
9871
9872 static int png_image_p P_ ((Lisp_Object object));
9873 static int png_load P_ ((struct frame *f, struct image *img));
9874
9875 /* The symbol `png' identifying images of this type. */
9876
9877 Lisp_Object Qpng;
9878
9879 /* Indices of image specification fields in png_format, below. */
9880
9881 enum png_keyword_index
9882 {
9883 PNG_TYPE,
9884 PNG_DATA,
9885 PNG_FILE,
9886 PNG_ASCENT,
9887 PNG_MARGIN,
9888 PNG_RELIEF,
9889 PNG_ALGORITHM,
9890 PNG_HEURISTIC_MASK,
9891 PNG_LAST
9892 };
9893
9894 /* Vector of image_keyword structures describing the format
9895 of valid user-defined image specifications. */
9896
9897 static struct image_keyword png_format[PNG_LAST] =
9898 {
9899 {":type", IMAGE_SYMBOL_VALUE, 1},
9900 {":data", IMAGE_STRING_VALUE, 0},
9901 {":file", IMAGE_STRING_VALUE, 0},
9902 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
9903 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9904 {":relief", IMAGE_INTEGER_VALUE, 0},
9905 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9906 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9907 };
9908
9909 /* Structure describing the image type `png'. */
9910
9911 static struct image_type png_type =
9912 {
9913 &Qpng,
9914 png_image_p,
9915 png_load,
9916 x_clear_image,
9917 NULL
9918 };
9919
9920
9921 /* Return non-zero if OBJECT is a valid PNG image specification. */
9922
9923 static int
9924 png_image_p (object)
9925 Lisp_Object object;
9926 {
9927 struct image_keyword fmt[PNG_LAST];
9928 bcopy (png_format, fmt, sizeof fmt);
9929
9930 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng)
9931 || (fmt[PNG_ASCENT].count
9932 && XFASTINT (fmt[PNG_ASCENT].value) > 100))
9933 return 0;
9934
9935 /* Must specify either the :data or :file keyword. */
9936 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
9937 }
9938
9939
9940 /* Error and warning handlers installed when the PNG library
9941 is initialized. */
9942
9943 static void
9944 my_png_error (png_ptr, msg)
9945 png_struct *png_ptr;
9946 char *msg;
9947 {
9948 xassert (png_ptr != NULL);
9949 image_error ("PNG error: %s", build_string (msg), Qnil);
9950 longjmp (png_ptr->jmpbuf, 1);
9951 }
9952
9953
9954 static void
9955 my_png_warning (png_ptr, msg)
9956 png_struct *png_ptr;
9957 char *msg;
9958 {
9959 xassert (png_ptr != NULL);
9960 image_error ("PNG warning: %s", build_string (msg), Qnil);
9961 }
9962
9963 /* Memory source for PNG decoding. */
9964
9965 struct png_memory_storage
9966 {
9967 unsigned char *bytes; /* The data */
9968 size_t len; /* How big is it? */
9969 int index; /* Where are we? */
9970 };
9971
9972
9973 /* Function set as reader function when reading PNG image from memory.
9974 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
9975 bytes from the input to DATA. */
9976
9977 static void
9978 png_read_from_memory (png_ptr, data, length)
9979 png_structp png_ptr;
9980 png_bytep data;
9981 png_size_t length;
9982 {
9983 struct png_memory_storage *tbr
9984 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
9985
9986 if (length > tbr->len - tbr->index)
9987 png_error (png_ptr, "Read error");
9988
9989 bcopy (tbr->bytes + tbr->index, data, length);
9990 tbr->index = tbr->index + length;
9991 }
9992
9993 /* Load PNG image IMG for use on frame F. Value is non-zero if
9994 successful. */
9995
9996 static int
9997 png_load (f, img)
9998 struct frame *f;
9999 struct image *img;
10000 {
10001 Lisp_Object file, specified_file;
10002 Lisp_Object specified_data;
10003 int x, y, i;
10004 XImage *ximg, *mask_img = NULL;
10005 struct gcpro gcpro1;
10006 png_struct *png_ptr = NULL;
10007 png_info *info_ptr = NULL, *end_info = NULL;
10008 FILE *fp = NULL;
10009 png_byte sig[8];
10010 png_byte *pixels = NULL;
10011 png_byte **rows = NULL;
10012 png_uint_32 width, height;
10013 int bit_depth, color_type, interlace_type;
10014 png_byte channels;
10015 png_uint_32 row_bytes;
10016 int transparent_p;
10017 char *gamma_str;
10018 double screen_gamma, image_gamma;
10019 int intent;
10020 struct png_memory_storage tbr; /* Data to be read */
10021
10022 /* Find out what file to load. */
10023 specified_file = image_spec_value (img->spec, QCfile, NULL);
10024 specified_data = image_spec_value (img->spec, QCdata, NULL);
10025 file = Qnil;
10026 GCPRO1 (file);
10027
10028 if (NILP (specified_data))
10029 {
10030 file = x_find_image_file (specified_file);
10031 if (!STRINGP (file))
10032 {
10033 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10034 UNGCPRO;
10035 return 0;
10036 }
10037
10038 /* Open the image file. */
10039 fp = fopen (XSTRING (file)->data, "rb");
10040 if (!fp)
10041 {
10042 image_error ("Cannot open image file `%s'", file, Qnil);
10043 UNGCPRO;
10044 fclose (fp);
10045 return 0;
10046 }
10047
10048 /* Check PNG signature. */
10049 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
10050 || !png_check_sig (sig, sizeof sig))
10051 {
10052 image_error ("Not a PNG file:` %s'", file, Qnil);
10053 UNGCPRO;
10054 fclose (fp);
10055 return 0;
10056 }
10057 }
10058 else
10059 {
10060 /* Read from memory. */
10061 tbr.bytes = XSTRING (specified_data)->data;
10062 tbr.len = STRING_BYTES (XSTRING (specified_data));
10063 tbr.index = 0;
10064
10065 /* Check PNG signature. */
10066 if (tbr.len < sizeof sig
10067 || !png_check_sig (tbr.bytes, sizeof sig))
10068 {
10069 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
10070 UNGCPRO;
10071 return 0;
10072 }
10073
10074 /* Need to skip past the signature. */
10075 tbr.bytes += sizeof (sig);
10076 }
10077
10078 /* Initialize read and info structs for PNG lib. */
10079 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
10080 my_png_error, my_png_warning);
10081 if (!png_ptr)
10082 {
10083 if (fp) fclose (fp);
10084 UNGCPRO;
10085 return 0;
10086 }
10087
10088 info_ptr = png_create_info_struct (png_ptr);
10089 if (!info_ptr)
10090 {
10091 png_destroy_read_struct (&png_ptr, NULL, NULL);
10092 if (fp) fclose (fp);
10093 UNGCPRO;
10094 return 0;
10095 }
10096
10097 end_info = png_create_info_struct (png_ptr);
10098 if (!end_info)
10099 {
10100 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
10101 if (fp) fclose (fp);
10102 UNGCPRO;
10103 return 0;
10104 }
10105
10106 /* Set error jump-back. We come back here when the PNG library
10107 detects an error. */
10108 if (setjmp (png_ptr->jmpbuf))
10109 {
10110 error:
10111 if (png_ptr)
10112 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
10113 xfree (pixels);
10114 xfree (rows);
10115 if (fp) fclose (fp);
10116 UNGCPRO;
10117 return 0;
10118 }
10119
10120 /* Read image info. */
10121 if (!NILP (specified_data))
10122 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
10123 else
10124 png_init_io (png_ptr, fp);
10125
10126 png_set_sig_bytes (png_ptr, sizeof sig);
10127 png_read_info (png_ptr, info_ptr);
10128 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
10129 &interlace_type, NULL, NULL);
10130
10131 /* If image contains simply transparency data, we prefer to
10132 construct a clipping mask. */
10133 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
10134 transparent_p = 1;
10135 else
10136 transparent_p = 0;
10137
10138 /* This function is easier to write if we only have to handle
10139 one data format: RGB or RGBA with 8 bits per channel. Let's
10140 transform other formats into that format. */
10141
10142 /* Strip more than 8 bits per channel. */
10143 if (bit_depth == 16)
10144 png_set_strip_16 (png_ptr);
10145
10146 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
10147 if available. */
10148 png_set_expand (png_ptr);
10149
10150 /* Convert grayscale images to RGB. */
10151 if (color_type == PNG_COLOR_TYPE_GRAY
10152 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
10153 png_set_gray_to_rgb (png_ptr);
10154
10155 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
10156 gamma_str = getenv ("SCREEN_GAMMA");
10157 screen_gamma = gamma_str ? atof (gamma_str) : 2.2;
10158
10159 /* Tell the PNG lib to handle gamma correction for us. */
10160
10161 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
10162 if (png_get_sRGB (png_ptr, info_ptr, &intent))
10163 /* There is a special chunk in the image specifying the gamma. */
10164 png_set_sRGB (png_ptr, info_ptr, intent);
10165 else
10166 #endif
10167 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
10168 /* Image contains gamma information. */
10169 png_set_gamma (png_ptr, screen_gamma, image_gamma);
10170 else
10171 /* Use a default of 0.5 for the image gamma. */
10172 png_set_gamma (png_ptr, screen_gamma, 0.5);
10173
10174 /* Handle alpha channel by combining the image with a background
10175 color. Do this only if a real alpha channel is supplied. For
10176 simple transparency, we prefer a clipping mask. */
10177 if (!transparent_p)
10178 {
10179 png_color_16 *image_background;
10180
10181 if (png_get_bKGD (png_ptr, info_ptr, &image_background))
10182 /* Image contains a background color with which to
10183 combine the image. */
10184 png_set_background (png_ptr, image_background,
10185 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
10186 else
10187 {
10188 /* Image does not contain a background color with which
10189 to combine the image data via an alpha channel. Use
10190 the frame's background instead. */
10191 XColor color;
10192 Colormap cmap;
10193 png_color_16 frame_background;
10194
10195 BLOCK_INPUT;
10196 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
10197 color.pixel = FRAME_BACKGROUND_PIXEL (f);
10198 XQueryColor (FRAME_W32_DISPLAY (f), cmap, &color);
10199 UNBLOCK_INPUT;
10200
10201 bzero (&frame_background, sizeof frame_background);
10202 frame_background.red = color.red;
10203 frame_background.green = color.green;
10204 frame_background.blue = color.blue;
10205
10206 png_set_background (png_ptr, &frame_background,
10207 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
10208 }
10209 }
10210
10211 /* Update info structure. */
10212 png_read_update_info (png_ptr, info_ptr);
10213
10214 /* Get number of channels. Valid values are 1 for grayscale images
10215 and images with a palette, 2 for grayscale images with transparency
10216 information (alpha channel), 3 for RGB images, and 4 for RGB
10217 images with alpha channel, i.e. RGBA. If conversions above were
10218 sufficient we should only have 3 or 4 channels here. */
10219 channels = png_get_channels (png_ptr, info_ptr);
10220 xassert (channels == 3 || channels == 4);
10221
10222 /* Number of bytes needed for one row of the image. */
10223 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
10224
10225 /* Allocate memory for the image. */
10226 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
10227 rows = (png_byte **) xmalloc (height * sizeof *rows);
10228 for (i = 0; i < height; ++i)
10229 rows[i] = pixels + i * row_bytes;
10230
10231 /* Read the entire image. */
10232 png_read_image (png_ptr, rows);
10233 png_read_end (png_ptr, info_ptr);
10234 if (fp)
10235 {
10236 fclose (fp);
10237 fp = NULL;
10238 }
10239
10240 BLOCK_INPUT;
10241
10242 /* Create the X image and pixmap. */
10243 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
10244 &img->pixmap))
10245 {
10246 UNBLOCK_INPUT;
10247 goto error;
10248 }
10249
10250 /* Create an image and pixmap serving as mask if the PNG image
10251 contains an alpha channel. */
10252 if (channels == 4
10253 && !transparent_p
10254 && !x_create_x_image_and_pixmap (f, width, height, 1,
10255 &mask_img, &img->mask))
10256 {
10257 x_destroy_x_image (ximg);
10258 XFreePixmap (FRAME_W32_DISPLAY (f), img->pixmap);
10259 img->pixmap = 0;
10260 UNBLOCK_INPUT;
10261 goto error;
10262 }
10263
10264 /* Fill the X image and mask from PNG data. */
10265 init_color_table ();
10266
10267 for (y = 0; y < height; ++y)
10268 {
10269 png_byte *p = rows[y];
10270
10271 for (x = 0; x < width; ++x)
10272 {
10273 unsigned r, g, b;
10274
10275 r = *p++ << 8;
10276 g = *p++ << 8;
10277 b = *p++ << 8;
10278 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
10279
10280 /* An alpha channel, aka mask channel, associates variable
10281 transparency with an image. Where other image formats
10282 support binary transparency---fully transparent or fully
10283 opaque---PNG allows up to 254 levels of partial transparency.
10284 The PNG library implements partial transparency by combining
10285 the image with a specified background color.
10286
10287 I'm not sure how to handle this here nicely: because the
10288 background on which the image is displayed may change, for
10289 real alpha channel support, it would be necessary to create
10290 a new image for each possible background.
10291
10292 What I'm doing now is that a mask is created if we have
10293 boolean transparency information. Otherwise I'm using
10294 the frame's background color to combine the image with. */
10295
10296 if (channels == 4)
10297 {
10298 if (mask_img)
10299 XPutPixel (mask_img, x, y, *p > 0);
10300 ++p;
10301 }
10302 }
10303 }
10304
10305 /* Remember colors allocated for this image. */
10306 img->colors = colors_in_color_table (&img->ncolors);
10307 free_color_table ();
10308
10309 /* Clean up. */
10310 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
10311 xfree (rows);
10312 xfree (pixels);
10313
10314 img->width = width;
10315 img->height = height;
10316
10317 /* Put the image into the pixmap, then free the X image and its buffer. */
10318 x_put_x_image (f, ximg, img->pixmap, width, height);
10319 x_destroy_x_image (ximg);
10320
10321 /* Same for the mask. */
10322 if (mask_img)
10323 {
10324 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
10325 x_destroy_x_image (mask_img);
10326 }
10327
10328 UNBLOCK_INPUT;
10329 UNGCPRO;
10330 return 1;
10331 }
10332
10333 #endif /* HAVE_PNG != 0 */
10334
10335
10336 \f
10337 /***********************************************************************
10338 JPEG
10339 ***********************************************************************/
10340
10341 #if HAVE_JPEG
10342
10343 /* Work around a warning about HAVE_STDLIB_H being redefined in
10344 jconfig.h. */
10345 #ifdef HAVE_STDLIB_H
10346 #define HAVE_STDLIB_H_1
10347 #undef HAVE_STDLIB_H
10348 #endif /* HAVE_STLIB_H */
10349
10350 #include <jpeglib.h>
10351 #include <jerror.h>
10352 #include <setjmp.h>
10353
10354 #ifdef HAVE_STLIB_H_1
10355 #define HAVE_STDLIB_H 1
10356 #endif
10357
10358 static int jpeg_image_p P_ ((Lisp_Object object));
10359 static int jpeg_load P_ ((struct frame *f, struct image *img));
10360
10361 /* The symbol `jpeg' identifying images of this type. */
10362
10363 Lisp_Object Qjpeg;
10364
10365 /* Indices of image specification fields in gs_format, below. */
10366
10367 enum jpeg_keyword_index
10368 {
10369 JPEG_TYPE,
10370 JPEG_DATA,
10371 JPEG_FILE,
10372 JPEG_ASCENT,
10373 JPEG_MARGIN,
10374 JPEG_RELIEF,
10375 JPEG_ALGORITHM,
10376 JPEG_HEURISTIC_MASK,
10377 JPEG_LAST
10378 };
10379
10380 /* Vector of image_keyword structures describing the format
10381 of valid user-defined image specifications. */
10382
10383 static struct image_keyword jpeg_format[JPEG_LAST] =
10384 {
10385 {":type", IMAGE_SYMBOL_VALUE, 1},
10386 {":data", IMAGE_STRING_VALUE, 0},
10387 {":file", IMAGE_STRING_VALUE, 0},
10388 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10389 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
10390 {":relief", IMAGE_INTEGER_VALUE, 0},
10391 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10392 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
10393 };
10394
10395 /* Structure describing the image type `jpeg'. */
10396
10397 static struct image_type jpeg_type =
10398 {
10399 &Qjpeg,
10400 jpeg_image_p,
10401 jpeg_load,
10402 x_clear_image,
10403 NULL
10404 };
10405
10406
10407 /* Return non-zero if OBJECT is a valid JPEG image specification. */
10408
10409 static int
10410 jpeg_image_p (object)
10411 Lisp_Object object;
10412 {
10413 struct image_keyword fmt[JPEG_LAST];
10414
10415 bcopy (jpeg_format, fmt, sizeof fmt);
10416
10417 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg)
10418 || (fmt[JPEG_ASCENT].count
10419 && XFASTINT (fmt[JPEG_ASCENT].value) > 100))
10420 return 0;
10421
10422 /* Must specify either the :data or :file keyword. */
10423 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
10424 }
10425
10426
10427 struct my_jpeg_error_mgr
10428 {
10429 struct jpeg_error_mgr pub;
10430 jmp_buf setjmp_buffer;
10431 };
10432
10433 static void
10434 my_error_exit (cinfo)
10435 j_common_ptr cinfo;
10436 {
10437 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
10438 longjmp (mgr->setjmp_buffer, 1);
10439 }
10440
10441 /* Init source method for JPEG data source manager. Called by
10442 jpeg_read_header() before any data is actually read. See
10443 libjpeg.doc from the JPEG lib distribution. */
10444
10445 static void
10446 our_init_source (cinfo)
10447 j_decompress_ptr cinfo;
10448 {
10449 }
10450
10451
10452 /* Fill input buffer method for JPEG data source manager. Called
10453 whenever more data is needed. We read the whole image in one step,
10454 so this only adds a fake end of input marker at the end. */
10455
10456 static boolean
10457 our_fill_input_buffer (cinfo)
10458 j_decompress_ptr cinfo;
10459 {
10460 /* Insert a fake EOI marker. */
10461 struct jpeg_source_mgr *src = cinfo->src;
10462 static JOCTET buffer[2];
10463
10464 buffer[0] = (JOCTET) 0xFF;
10465 buffer[1] = (JOCTET) JPEG_EOI;
10466
10467 src->next_input_byte = buffer;
10468 src->bytes_in_buffer = 2;
10469 return TRUE;
10470 }
10471
10472
10473 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
10474 is the JPEG data source manager. */
10475
10476 static void
10477 our_skip_input_data (cinfo, num_bytes)
10478 j_decompress_ptr cinfo;
10479 long num_bytes;
10480 {
10481 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
10482
10483 if (src)
10484 {
10485 if (num_bytes > src->bytes_in_buffer)
10486 ERREXIT (cinfo, JERR_INPUT_EOF);
10487
10488 src->bytes_in_buffer -= num_bytes;
10489 src->next_input_byte += num_bytes;
10490 }
10491 }
10492
10493
10494 /* Method to terminate data source. Called by
10495 jpeg_finish_decompress() after all data has been processed. */
10496
10497 static void
10498 our_term_source (cinfo)
10499 j_decompress_ptr cinfo;
10500 {
10501 }
10502
10503
10504 /* Set up the JPEG lib for reading an image from DATA which contains
10505 LEN bytes. CINFO is the decompression info structure created for
10506 reading the image. */
10507
10508 static void
10509 jpeg_memory_src (cinfo, data, len)
10510 j_decompress_ptr cinfo;
10511 JOCTET *data;
10512 unsigned int len;
10513 {
10514 struct jpeg_source_mgr *src;
10515
10516 if (cinfo->src == NULL)
10517 {
10518 /* First time for this JPEG object? */
10519 cinfo->src = (struct jpeg_source_mgr *)
10520 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
10521 sizeof (struct jpeg_source_mgr));
10522 src = (struct jpeg_source_mgr *) cinfo->src;
10523 src->next_input_byte = data;
10524 }
10525
10526 src = (struct jpeg_source_mgr *) cinfo->src;
10527 src->init_source = our_init_source;
10528 src->fill_input_buffer = our_fill_input_buffer;
10529 src->skip_input_data = our_skip_input_data;
10530 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
10531 src->term_source = our_term_source;
10532 src->bytes_in_buffer = len;
10533 src->next_input_byte = data;
10534 }
10535
10536
10537 /* Load image IMG for use on frame F. Patterned after example.c
10538 from the JPEG lib. */
10539
10540 static int
10541 jpeg_load (f, img)
10542 struct frame *f;
10543 struct image *img;
10544 {
10545 struct jpeg_decompress_struct cinfo;
10546 struct my_jpeg_error_mgr mgr;
10547 Lisp_Object file, specified_file;
10548 Lisp_Object specified_data;
10549 FILE *fp = NULL;
10550 JSAMPARRAY buffer;
10551 int row_stride, x, y;
10552 XImage *ximg = NULL;
10553 int rc;
10554 unsigned long *colors;
10555 int width, height;
10556 struct gcpro gcpro1;
10557
10558 /* Open the JPEG file. */
10559 specified_file = image_spec_value (img->spec, QCfile, NULL);
10560 specified_data = image_spec_value (img->spec, QCdata, NULL);
10561 file = Qnil;
10562 GCPRO1 (file);
10563
10564 if (NILP (specified_data))
10565 {
10566 file = x_find_image_file (specified_file);
10567 if (!STRINGP (file))
10568 {
10569 image_error ("Cannot find image file `%s'", specified_file, Qnil);
10570 UNGCPRO;
10571 return 0;
10572 }
10573
10574 fp = fopen (XSTRING (file)->data, "r");
10575 if (fp == NULL)
10576 {
10577 image_error ("Cannot open `%s'", file, Qnil);
10578 UNGCPRO;
10579 return 0;
10580 }
10581 }
10582
10583 /* Customize libjpeg's error handling to call my_error_exit when an
10584 error is detected. This function will perform a longjmp. */
10585 mgr.pub.error_exit = my_error_exit;
10586 cinfo.err = jpeg_std_error (&mgr.pub);
10587
10588 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
10589 {
10590 if (rc == 1)
10591 {
10592 /* Called from my_error_exit. Display a JPEG error. */
10593 char buffer[JMSG_LENGTH_MAX];
10594 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
10595 image_error ("Error reading JPEG image `%s': %s", img->spec,
10596 build_string (buffer));
10597 }
10598
10599 /* Close the input file and destroy the JPEG object. */
10600 if (fp)
10601 fclose (fp);
10602 jpeg_destroy_decompress (&cinfo);
10603
10604 BLOCK_INPUT;
10605
10606 /* If we already have an XImage, free that. */
10607 x_destroy_x_image (ximg);
10608
10609 /* Free pixmap and colors. */
10610 x_clear_image (f, img);
10611
10612 UNBLOCK_INPUT;
10613 UNGCPRO;
10614 return 0;
10615 }
10616
10617 /* Create the JPEG decompression object. Let it read from fp.
10618 Read the JPEG image header. */
10619 jpeg_create_decompress (&cinfo);
10620
10621 if (NILP (specified_data))
10622 jpeg_stdio_src (&cinfo, fp);
10623 else
10624 jpeg_memory_src (&cinfo, XSTRING (specified_data)->data,
10625 STRING_BYTES (XSTRING (specified_data)));
10626
10627 jpeg_read_header (&cinfo, TRUE);
10628
10629 /* Customize decompression so that color quantization will be used.
10630 Start decompression. */
10631 cinfo.quantize_colors = TRUE;
10632 jpeg_start_decompress (&cinfo);
10633 width = img->width = cinfo.output_width;
10634 height = img->height = cinfo.output_height;
10635
10636 BLOCK_INPUT;
10637
10638 /* Create X image and pixmap. */
10639 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
10640 &img->pixmap))
10641 {
10642 UNBLOCK_INPUT;
10643 longjmp (mgr.setjmp_buffer, 2);
10644 }
10645
10646 /* Allocate colors. When color quantization is used,
10647 cinfo.actual_number_of_colors has been set with the number of
10648 colors generated, and cinfo.colormap is a two-dimensional array
10649 of color indices in the range 0..cinfo.actual_number_of_colors.
10650 No more than 255 colors will be generated. */
10651 {
10652 int i, ir, ig, ib;
10653
10654 if (cinfo.out_color_components > 2)
10655 ir = 0, ig = 1, ib = 2;
10656 else if (cinfo.out_color_components > 1)
10657 ir = 0, ig = 1, ib = 0;
10658 else
10659 ir = 0, ig = 0, ib = 0;
10660
10661 /* Use the color table mechanism because it handles colors that
10662 cannot be allocated nicely. Such colors will be replaced with
10663 a default color, and we don't have to care about which colors
10664 can be freed safely, and which can't. */
10665 init_color_table ();
10666 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
10667 * sizeof *colors);
10668
10669 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
10670 {
10671 /* Multiply RGB values with 255 because X expects RGB values
10672 in the range 0..0xffff. */
10673 int r = cinfo.colormap[ir][i] << 8;
10674 int g = cinfo.colormap[ig][i] << 8;
10675 int b = cinfo.colormap[ib][i] << 8;
10676 colors[i] = lookup_rgb_color (f, r, g, b);
10677 }
10678
10679 /* Remember those colors actually allocated. */
10680 img->colors = colors_in_color_table (&img->ncolors);
10681 free_color_table ();
10682 }
10683
10684 /* Read pixels. */
10685 row_stride = width * cinfo.output_components;
10686 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
10687 row_stride, 1);
10688 for (y = 0; y < height; ++y)
10689 {
10690 jpeg_read_scanlines (&cinfo, buffer, 1);
10691 for (x = 0; x < cinfo.output_width; ++x)
10692 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
10693 }
10694
10695 /* Clean up. */
10696 jpeg_finish_decompress (&cinfo);
10697 jpeg_destroy_decompress (&cinfo);
10698 if (fp)
10699 fclose (fp);
10700
10701 /* Put the image into the pixmap. */
10702 x_put_x_image (f, ximg, img->pixmap, width, height);
10703 x_destroy_x_image (ximg);
10704 UNBLOCK_INPUT;
10705 UNGCPRO;
10706 return 1;
10707 }
10708
10709 #endif /* HAVE_JPEG */
10710
10711
10712 \f
10713 /***********************************************************************
10714 TIFF
10715 ***********************************************************************/
10716
10717 #if HAVE_TIFF
10718
10719 #include <tiffio.h>
10720
10721 static int tiff_image_p P_ ((Lisp_Object object));
10722 static int tiff_load P_ ((struct frame *f, struct image *img));
10723
10724 /* The symbol `tiff' identifying images of this type. */
10725
10726 Lisp_Object Qtiff;
10727
10728 /* Indices of image specification fields in tiff_format, below. */
10729
10730 enum tiff_keyword_index
10731 {
10732 TIFF_TYPE,
10733 TIFF_DATA,
10734 TIFF_FILE,
10735 TIFF_ASCENT,
10736 TIFF_MARGIN,
10737 TIFF_RELIEF,
10738 TIFF_ALGORITHM,
10739 TIFF_HEURISTIC_MASK,
10740 TIFF_LAST
10741 };
10742
10743 /* Vector of image_keyword structures describing the format
10744 of valid user-defined image specifications. */
10745
10746 static struct image_keyword tiff_format[TIFF_LAST] =
10747 {
10748 {":type", IMAGE_SYMBOL_VALUE, 1},
10749 {":data", IMAGE_STRING_VALUE, 0},
10750 {":file", IMAGE_STRING_VALUE, 0},
10751 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
10752 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
10753 {":relief", IMAGE_INTEGER_VALUE, 0},
10754 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
10755 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
10756 };
10757
10758 /* Structure describing the image type `tiff'. */
10759
10760 static struct image_type tiff_type =
10761 {
10762 &Qtiff,
10763 tiff_image_p,
10764 tiff_load,
10765 x_clear_image,
10766 NULL
10767 };
10768
10769
10770 /* Return non-zero if OBJECT is a valid TIFF image specification. */
10771
10772 static int
10773 tiff_image_p (object)
10774 Lisp_Object object;
10775 {
10776 struct image_keyword fmt[TIFF_LAST];
10777 bcopy (tiff_format, fmt, sizeof fmt);
10778
10779 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff)
10780 || (fmt[TIFF_ASCENT].count
10781 && XFASTINT (fmt[TIFF_ASCENT].value) > 100))
10782 return 0;
10783
10784 /* Must specify either the :data or :file keyword. */
10785 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
10786 }
10787
10788
10789 /* Reading from a memory buffer for TIFF images Based on the PNG
10790 memory source, but we have to provide a lot of extra functions.
10791 Blah.
10792
10793 We really only need to implement read and seek, but I am not
10794 convinced that the TIFF library is smart enough not to destroy
10795 itself if we only hand it the function pointers we need to
10796 override. */
10797
10798 typedef struct
10799 {
10800 unsigned char *bytes;
10801 size_t len;
10802 int index;
10803 }
10804 tiff_memory_source;
10805
10806 static size_t
10807 tiff_read_from_memory (data, buf, size)
10808 thandle_t data;
10809 tdata_t buf;
10810 tsize_t size;
10811 {
10812 tiff_memory_source *src = (tiff_memory_source *) data;
10813
10814 if (size > src->len - src->index)
10815 return (size_t) -1;
10816 bcopy (src->bytes + src->index, buf, size);
10817 src->index += size;
10818 return size;
10819 }
10820
10821 static size_t
10822 tiff_write_from_memory (data, buf, size)
10823 thandle_t data;
10824 tdata_t buf;
10825 tsize_t size;
10826 {
10827 return (size_t) -1;
10828 }
10829
10830 static toff_t
10831 tiff_seek_in_memory (data, off, whence)
10832 thandle_t data;
10833 toff_t off;
10834 int whence;
10835 {
10836 tiff_memory_source *src = (tiff_memory_source *) data;
10837 int idx;
10838
10839 switch (whence)
10840 {
10841 case SEEK_SET: /* Go from beginning of source. */
10842 idx = off;
10843 break;
10844
10845 case SEEK_END: /* Go from end of source. */
10846 idx = src->len + off;
10847 break;
10848
10849 case SEEK_CUR: /* Go from current position. */
10850 idx = src->index + off;
10851 break;
10852
10853 default: /* Invalid `whence'. */
10854 return -1;
10855 }
10856
10857 if (idx > src->len || idx < 0)
10858 return -1;
10859
10860 src->index = idx;
10861 return src->index;
10862 }
10863
10864 static int
10865 tiff_close_memory (data)
10866 thandle_t data;
10867 {
10868 /* NOOP */
10869 return 0;
10870 }
10871
10872 static int
10873 tiff_mmap_memory (data, pbase, psize)
10874 thandle_t data;
10875 tdata_t *pbase;
10876 toff_t *psize;
10877 {
10878 /* It is already _IN_ memory. */
10879 return 0;
10880 }
10881
10882 static void
10883 tiff_unmap_memory (data, base, size)
10884 thandle_t data;
10885 tdata_t base;
10886 toff_t size;
10887 {
10888 /* We don't need to do this. */
10889 }
10890
10891 static toff_t
10892 tiff_size_of_memory (data)
10893 thandle_t data;
10894 {
10895 return ((tiff_memory_source *) data)->len;
10896 }
10897
10898 /* Load TIFF image IMG for use on frame F. Value is non-zero if
10899 successful. */
10900
10901 static int
10902 tiff_load (f, img)
10903 struct frame *f;
10904 struct image *img;
10905 {
10906 Lisp_Object file, specified_file;
10907 Lisp_Object specified_data;
10908 TIFF *tiff;
10909 int width, height, x, y;
10910 uint32 *buf;
10911 int rc;
10912 XImage *ximg;
10913 struct gcpro gcpro1;
10914 tiff_memory_source memsrc;
10915
10916 specified_file = image_spec_value (img->spec, QCfile, NULL);
10917 specified_data = image_spec_value (img->spec, QCdata, NULL);
10918 file = Qnil;
10919 GCPRO1 (file);
10920
10921 if (NILP (specified_data))
10922 {
10923 /* Read from a file */
10924 file = x_find_image_file (specified_file);
10925 if (!STRINGP (file))
10926 {
10927 image_error ("Cannot find image file `%s'", file, Qnil);
10928 UNGCPRO;
10929 return 0;
10930 }
10931
10932 /* Try to open the image file. */
10933 tiff = TIFFOpen (XSTRING (file)->data, "r");
10934 if (tiff == NULL)
10935 {
10936 image_error ("Cannot open `%s'", file, Qnil);
10937 UNGCPRO;
10938 return 0;
10939 }
10940 }
10941 else
10942 {
10943 /* Memory source! */
10944 memsrc.bytes = XSTRING (specified_data)->data;
10945 memsrc.len = STRING_BYTES (XSTRING (specified_data));
10946 memsrc.index = 0;
10947
10948 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
10949 (TIFFReadWriteProc) tiff_read_from_memory,
10950 (TIFFReadWriteProc) tiff_write_from_memory,
10951 tiff_seek_in_memory,
10952 tiff_close_memory,
10953 tiff_size_of_memory,
10954 tiff_mmap_memory,
10955 tiff_unmap_memory);
10956
10957 if (!tiff)
10958 {
10959 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
10960 UNGCPRO;
10961 return 0;
10962 }
10963 }
10964
10965 /* Get width and height of the image, and allocate a raster buffer
10966 of width x height 32-bit values. */
10967 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
10968 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
10969 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
10970
10971 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
10972 TIFFClose (tiff);
10973 if (!rc)
10974 {
10975 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
10976 xfree (buf);
10977 UNGCPRO;
10978 return 0;
10979 }
10980
10981 BLOCK_INPUT;
10982
10983 /* Create the X image and pixmap. */
10984 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
10985 {
10986 UNBLOCK_INPUT;
10987 xfree (buf);
10988 UNGCPRO;
10989 return 0;
10990 }
10991
10992 /* Initialize the color table. */
10993 init_color_table ();
10994
10995 /* Process the pixel raster. Origin is in the lower-left corner. */
10996 for (y = 0; y < height; ++y)
10997 {
10998 uint32 *row = buf + y * width;
10999
11000 for (x = 0; x < width; ++x)
11001 {
11002 uint32 abgr = row[x];
11003 int r = TIFFGetR (abgr) << 8;
11004 int g = TIFFGetG (abgr) << 8;
11005 int b = TIFFGetB (abgr) << 8;
11006 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
11007 }
11008 }
11009
11010 /* Remember the colors allocated for the image. Free the color table. */
11011 img->colors = colors_in_color_table (&img->ncolors);
11012 free_color_table ();
11013
11014 /* Put the image into the pixmap, then free the X image and its buffer. */
11015 x_put_x_image (f, ximg, img->pixmap, width, height);
11016 x_destroy_x_image (ximg);
11017 xfree (buf);
11018 UNBLOCK_INPUT;
11019
11020 img->width = width;
11021 img->height = height;
11022
11023 UNGCPRO;
11024 return 1;
11025 }
11026
11027 #endif /* HAVE_TIFF != 0 */
11028
11029
11030 \f
11031 /***********************************************************************
11032 GIF
11033 ***********************************************************************/
11034
11035 #if HAVE_GIF
11036
11037 #include <gif_lib.h>
11038
11039 static int gif_image_p P_ ((Lisp_Object object));
11040 static int gif_load P_ ((struct frame *f, struct image *img));
11041
11042 /* The symbol `gif' identifying images of this type. */
11043
11044 Lisp_Object Qgif;
11045
11046 /* Indices of image specification fields in gif_format, below. */
11047
11048 enum gif_keyword_index
11049 {
11050 GIF_TYPE,
11051 GIF_DATA,
11052 GIF_FILE,
11053 GIF_ASCENT,
11054 GIF_MARGIN,
11055 GIF_RELIEF,
11056 GIF_ALGORITHM,
11057 GIF_HEURISTIC_MASK,
11058 GIF_IMAGE,
11059 GIF_LAST
11060 };
11061
11062 /* Vector of image_keyword structures describing the format
11063 of valid user-defined image specifications. */
11064
11065 static struct image_keyword gif_format[GIF_LAST] =
11066 {
11067 {":type", IMAGE_SYMBOL_VALUE, 1},
11068 {":data", IMAGE_STRING_VALUE, 0},
11069 {":file", IMAGE_STRING_VALUE, 0},
11070 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11071 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
11072 {":relief", IMAGE_INTEGER_VALUE, 0},
11073 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11074 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11075 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
11076 };
11077
11078 /* Structure describing the image type `gif'. */
11079
11080 static struct image_type gif_type =
11081 {
11082 &Qgif,
11083 gif_image_p,
11084 gif_load,
11085 x_clear_image,
11086 NULL
11087 };
11088
11089 /* Return non-zero if OBJECT is a valid GIF image specification. */
11090
11091 static int
11092 gif_image_p (object)
11093 Lisp_Object object;
11094 {
11095 struct image_keyword fmt[GIF_LAST];
11096 bcopy (gif_format, fmt, sizeof fmt);
11097
11098 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif)
11099 || (fmt[GIF_ASCENT].count
11100 && XFASTINT (fmt[GIF_ASCENT].value) > 100))
11101 return 0;
11102
11103 /* Must specify either the :data or :file keyword. */
11104 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
11105 }
11106
11107 /* Reading a GIF image from memory
11108 Based on the PNG memory stuff to a certain extent. */
11109
11110 typedef struct
11111 {
11112 unsigned char *bytes;
11113 size_t len;
11114 int index;
11115 }
11116 gif_memory_source;
11117
11118 /* Make the current memory source available to gif_read_from_memory.
11119 It's done this way because not all versions of libungif support
11120 a UserData field in the GifFileType structure. */
11121 static gif_memory_source *current_gif_memory_src;
11122
11123 static int
11124 gif_read_from_memory (file, buf, len)
11125 GifFileType *file;
11126 GifByteType *buf;
11127 int len;
11128 {
11129 gif_memory_source *src = current_gif_memory_src;
11130
11131 if (len > src->len - src->index)
11132 return -1;
11133
11134 bcopy (src->bytes + src->index, buf, len);
11135 src->index += len;
11136 return len;
11137 }
11138
11139
11140 /* Load GIF image IMG for use on frame F. Value is non-zero if
11141 successful. */
11142
11143 static int
11144 gif_load (f, img)
11145 struct frame *f;
11146 struct image *img;
11147 {
11148 Lisp_Object file, specified_file;
11149 Lisp_Object specified_data;
11150 int rc, width, height, x, y, i;
11151 XImage *ximg;
11152 ColorMapObject *gif_color_map;
11153 unsigned long pixel_colors[256];
11154 GifFileType *gif;
11155 struct gcpro gcpro1;
11156 Lisp_Object image;
11157 int ino, image_left, image_top, image_width, image_height;
11158 gif_memory_source memsrc;
11159 unsigned char *raster;
11160
11161 specified_file = image_spec_value (img->spec, QCfile, NULL);
11162 specified_data = image_spec_value (img->spec, QCdata, NULL);
11163 file = Qnil;
11164 GCPRO1 (file);
11165
11166 if (NILP (specified_data))
11167 {
11168 file = x_find_image_file (specified_file);
11169 if (!STRINGP (file))
11170 {
11171 image_error ("Cannot find image file `%s'", specified_file, Qnil);
11172 UNGCPRO;
11173 return 0;
11174 }
11175
11176 /* Open the GIF file. */
11177 gif = DGifOpenFileName (XSTRING (file)->data);
11178 if (gif == NULL)
11179 {
11180 image_error ("Cannot open `%s'", file, Qnil);
11181 UNGCPRO;
11182 return 0;
11183 }
11184 }
11185 else
11186 {
11187 /* Read from memory! */
11188 current_gif_memory_src = &memsrc;
11189 memsrc.bytes = XSTRING (specified_data)->data;
11190 memsrc.len = STRING_BYTES (XSTRING (specified_data));
11191 memsrc.index = 0;
11192
11193 gif = DGifOpen(&memsrc, gif_read_from_memory);
11194 if (!gif)
11195 {
11196 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
11197 UNGCPRO;
11198 return 0;
11199 }
11200 }
11201
11202 /* Read entire contents. */
11203 rc = DGifSlurp (gif);
11204 if (rc == GIF_ERROR)
11205 {
11206 image_error ("Error reading `%s'", img->spec, Qnil);
11207 DGifCloseFile (gif);
11208 UNGCPRO;
11209 return 0;
11210 }
11211
11212 image = image_spec_value (img->spec, QCindex, NULL);
11213 ino = INTEGERP (image) ? XFASTINT (image) : 0;
11214 if (ino >= gif->ImageCount)
11215 {
11216 image_error ("Invalid image number `%s' in image `%s'",
11217 image, img->spec);
11218 DGifCloseFile (gif);
11219 UNGCPRO;
11220 return 0;
11221 }
11222
11223 width = img->width = gif->SWidth;
11224 height = img->height = gif->SHeight;
11225
11226 BLOCK_INPUT;
11227
11228 /* Create the X image and pixmap. */
11229 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
11230 {
11231 UNBLOCK_INPUT;
11232 DGifCloseFile (gif);
11233 UNGCPRO;
11234 return 0;
11235 }
11236
11237 /* Allocate colors. */
11238 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
11239 if (!gif_color_map)
11240 gif_color_map = gif->SColorMap;
11241 init_color_table ();
11242 bzero (pixel_colors, sizeof pixel_colors);
11243
11244 for (i = 0; i < gif_color_map->ColorCount; ++i)
11245 {
11246 int r = gif_color_map->Colors[i].Red << 8;
11247 int g = gif_color_map->Colors[i].Green << 8;
11248 int b = gif_color_map->Colors[i].Blue << 8;
11249 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
11250 }
11251
11252 img->colors = colors_in_color_table (&img->ncolors);
11253 free_color_table ();
11254
11255 /* Clear the part of the screen image that are not covered by
11256 the image from the GIF file. Full animated GIF support
11257 requires more than can be done here (see the gif89 spec,
11258 disposal methods). Let's simply assume that the part
11259 not covered by a sub-image is in the frame's background color. */
11260 image_top = gif->SavedImages[ino].ImageDesc.Top;
11261 image_left = gif->SavedImages[ino].ImageDesc.Left;
11262 image_width = gif->SavedImages[ino].ImageDesc.Width;
11263 image_height = gif->SavedImages[ino].ImageDesc.Height;
11264
11265 for (y = 0; y < image_top; ++y)
11266 for (x = 0; x < width; ++x)
11267 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11268
11269 for (y = image_top + image_height; y < height; ++y)
11270 for (x = 0; x < width; ++x)
11271 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11272
11273 for (y = image_top; y < image_top + image_height; ++y)
11274 {
11275 for (x = 0; x < image_left; ++x)
11276 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11277 for (x = image_left + image_width; x < width; ++x)
11278 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
11279 }
11280
11281 /* Read the GIF image into the X image. We use a local variable
11282 `raster' here because RasterBits below is a char *, and invites
11283 problems with bytes >= 0x80. */
11284 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
11285
11286 if (gif->SavedImages[ino].ImageDesc.Interlace)
11287 {
11288 static int interlace_start[] = {0, 4, 2, 1};
11289 static int interlace_increment[] = {8, 8, 4, 2};
11290 int pass, inc;
11291 int row = interlace_start[0];
11292
11293 pass = 0;
11294
11295 for (y = 0; y < image_height; y++)
11296 {
11297 if (row >= image_height)
11298 {
11299 row = interlace_start[++pass];
11300 while (row >= image_height)
11301 row = interlace_start[++pass];
11302 }
11303
11304 for (x = 0; x < image_width; x++)
11305 {
11306 int i = raster[(y * image_width) + x];
11307 XPutPixel (ximg, x + image_left, row + image_top,
11308 pixel_colors[i]);
11309 }
11310
11311 row += interlace_increment[pass];
11312 }
11313 }
11314 else
11315 {
11316 for (y = 0; y < image_height; ++y)
11317 for (x = 0; x < image_width; ++x)
11318 {
11319 int i = raster[y* image_width + x];
11320 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
11321 }
11322 }
11323
11324 DGifCloseFile (gif);
11325
11326 /* Put the image into the pixmap, then free the X image and its buffer. */
11327 x_put_x_image (f, ximg, img->pixmap, width, height);
11328 x_destroy_x_image (ximg);
11329 UNBLOCK_INPUT;
11330
11331 UNGCPRO;
11332 return 1;
11333 }
11334
11335 #endif /* HAVE_GIF != 0 */
11336
11337
11338 \f
11339 /***********************************************************************
11340 Ghostscript
11341 ***********************************************************************/
11342
11343 #ifdef HAVE_GHOSTSCRIPT
11344 static int gs_image_p P_ ((Lisp_Object object));
11345 static int gs_load P_ ((struct frame *f, struct image *img));
11346 static void gs_clear_image P_ ((struct frame *f, struct image *img));
11347
11348 /* The symbol `postscript' identifying images of this type. */
11349
11350 Lisp_Object Qpostscript;
11351
11352 /* Keyword symbols. */
11353
11354 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
11355
11356 /* Indices of image specification fields in gs_format, below. */
11357
11358 enum gs_keyword_index
11359 {
11360 GS_TYPE,
11361 GS_PT_WIDTH,
11362 GS_PT_HEIGHT,
11363 GS_FILE,
11364 GS_LOADER,
11365 GS_BOUNDING_BOX,
11366 GS_ASCENT,
11367 GS_MARGIN,
11368 GS_RELIEF,
11369 GS_ALGORITHM,
11370 GS_HEURISTIC_MASK,
11371 GS_LAST
11372 };
11373
11374 /* Vector of image_keyword structures describing the format
11375 of valid user-defined image specifications. */
11376
11377 static struct image_keyword gs_format[GS_LAST] =
11378 {
11379 {":type", IMAGE_SYMBOL_VALUE, 1},
11380 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
11381 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
11382 {":file", IMAGE_STRING_VALUE, 1},
11383 {":loader", IMAGE_FUNCTION_VALUE, 0},
11384 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
11385 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
11386 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
11387 {":relief", IMAGE_INTEGER_VALUE, 0},
11388 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
11389 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
11390 };
11391
11392 /* Structure describing the image type `ghostscript'. */
11393
11394 static struct image_type gs_type =
11395 {
11396 &Qpostscript,
11397 gs_image_p,
11398 gs_load,
11399 gs_clear_image,
11400 NULL
11401 };
11402
11403
11404 /* Free X resources of Ghostscript image IMG which is used on frame F. */
11405
11406 static void
11407 gs_clear_image (f, img)
11408 struct frame *f;
11409 struct image *img;
11410 {
11411 /* IMG->data.ptr_val may contain a recorded colormap. */
11412 xfree (img->data.ptr_val);
11413 x_clear_image (f, img);
11414 }
11415
11416
11417 /* Return non-zero if OBJECT is a valid Ghostscript image
11418 specification. */
11419
11420 static int
11421 gs_image_p (object)
11422 Lisp_Object object;
11423 {
11424 struct image_keyword fmt[GS_LAST];
11425 Lisp_Object tem;
11426 int i;
11427
11428 bcopy (gs_format, fmt, sizeof fmt);
11429
11430 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript)
11431 || (fmt[GS_ASCENT].count
11432 && XFASTINT (fmt[GS_ASCENT].value) > 100))
11433 return 0;
11434
11435 /* Bounding box must be a list or vector containing 4 integers. */
11436 tem = fmt[GS_BOUNDING_BOX].value;
11437 if (CONSP (tem))
11438 {
11439 for (i = 0; i < 4; ++i, tem = XCDR (tem))
11440 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
11441 return 0;
11442 if (!NILP (tem))
11443 return 0;
11444 }
11445 else if (VECTORP (tem))
11446 {
11447 if (XVECTOR (tem)->size != 4)
11448 return 0;
11449 for (i = 0; i < 4; ++i)
11450 if (!INTEGERP (XVECTOR (tem)->contents[i]))
11451 return 0;
11452 }
11453 else
11454 return 0;
11455
11456 return 1;
11457 }
11458
11459
11460 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
11461 if successful. */
11462
11463 static int
11464 gs_load (f, img)
11465 struct frame *f;
11466 struct image *img;
11467 {
11468 char buffer[100];
11469 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
11470 struct gcpro gcpro1, gcpro2;
11471 Lisp_Object frame;
11472 double in_width, in_height;
11473 Lisp_Object pixel_colors = Qnil;
11474
11475 /* Compute pixel size of pixmap needed from the given size in the
11476 image specification. Sizes in the specification are in pt. 1 pt
11477 = 1/72 in, xdpi and ydpi are stored in the frame's X display
11478 info. */
11479 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
11480 in_width = XFASTINT (pt_width) / 72.0;
11481 img->width = in_width * FRAME_W32_DISPLAY_INFO (f)->resx;
11482 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
11483 in_height = XFASTINT (pt_height) / 72.0;
11484 img->height = in_height * FRAME_W32_DISPLAY_INFO (f)->resy;
11485
11486 /* Create the pixmap. */
11487 BLOCK_INPUT;
11488 xassert (img->pixmap == 0);
11489 img->pixmap = XCreatePixmap (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11490 img->width, img->height,
11491 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
11492 UNBLOCK_INPUT;
11493
11494 if (!img->pixmap)
11495 {
11496 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
11497 return 0;
11498 }
11499
11500 /* Call the loader to fill the pixmap. It returns a process object
11501 if successful. We do not record_unwind_protect here because
11502 other places in redisplay like calling window scroll functions
11503 don't either. Let the Lisp loader use `unwind-protect' instead. */
11504 GCPRO2 (window_and_pixmap_id, pixel_colors);
11505
11506 sprintf (buffer, "%lu %lu",
11507 (unsigned long) FRAME_W32_WINDOW (f),
11508 (unsigned long) img->pixmap);
11509 window_and_pixmap_id = build_string (buffer);
11510
11511 sprintf (buffer, "%lu %lu",
11512 FRAME_FOREGROUND_PIXEL (f),
11513 FRAME_BACKGROUND_PIXEL (f));
11514 pixel_colors = build_string (buffer);
11515
11516 XSETFRAME (frame, f);
11517 loader = image_spec_value (img->spec, QCloader, NULL);
11518 if (NILP (loader))
11519 loader = intern ("gs-load-image");
11520
11521 img->data.lisp_val = call6 (loader, frame, img->spec,
11522 make_number (img->width),
11523 make_number (img->height),
11524 window_and_pixmap_id,
11525 pixel_colors);
11526 UNGCPRO;
11527 return PROCESSP (img->data.lisp_val);
11528 }
11529
11530
11531 /* Kill the Ghostscript process that was started to fill PIXMAP on
11532 frame F. Called from XTread_socket when receiving an event
11533 telling Emacs that Ghostscript has finished drawing. */
11534
11535 void
11536 x_kill_gs_process (pixmap, f)
11537 Pixmap pixmap;
11538 struct frame *f;
11539 {
11540 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
11541 int class, i;
11542 struct image *img;
11543
11544 /* Find the image containing PIXMAP. */
11545 for (i = 0; i < c->used; ++i)
11546 if (c->images[i]->pixmap == pixmap)
11547 break;
11548
11549 /* Kill the GS process. We should have found PIXMAP in the image
11550 cache and its image should contain a process object. */
11551 xassert (i < c->used);
11552 img = c->images[i];
11553 xassert (PROCESSP (img->data.lisp_val));
11554 Fkill_process (img->data.lisp_val, Qnil);
11555 img->data.lisp_val = Qnil;
11556
11557 /* On displays with a mutable colormap, figure out the colors
11558 allocated for the image by looking at the pixels of an XImage for
11559 img->pixmap. */
11560 class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
11561 if (class != StaticColor && class != StaticGray && class != TrueColor)
11562 {
11563 XImage *ximg;
11564
11565 BLOCK_INPUT;
11566
11567 /* Try to get an XImage for img->pixmep. */
11568 ximg = XGetImage (FRAME_W32_DISPLAY (f), img->pixmap,
11569 0, 0, img->width, img->height, ~0, ZPixmap);
11570 if (ximg)
11571 {
11572 int x, y;
11573
11574 /* Initialize the color table. */
11575 init_color_table ();
11576
11577 /* For each pixel of the image, look its color up in the
11578 color table. After having done so, the color table will
11579 contain an entry for each color used by the image. */
11580 for (y = 0; y < img->height; ++y)
11581 for (x = 0; x < img->width; ++x)
11582 {
11583 unsigned long pixel = XGetPixel (ximg, x, y);
11584 lookup_pixel_color (f, pixel);
11585 }
11586
11587 /* Record colors in the image. Free color table and XImage. */
11588 img->colors = colors_in_color_table (&img->ncolors);
11589 free_color_table ();
11590 XDestroyImage (ximg);
11591
11592 #if 0 /* This doesn't seem to be the case. If we free the colors
11593 here, we get a BadAccess later in x_clear_image when
11594 freeing the colors. */
11595 /* We have allocated colors once, but Ghostscript has also
11596 allocated colors on behalf of us. So, to get the
11597 reference counts right, free them once. */
11598 if (img->ncolors)
11599 {
11600 Colormap cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
11601 XFreeColors (FRAME_W32_DISPLAY (f), cmap,
11602 img->colors, img->ncolors, 0);
11603 }
11604 #endif
11605 }
11606 else
11607 image_error ("Cannot get X image of `%s'; colors will not be freed",
11608 img->spec, Qnil);
11609
11610 UNBLOCK_INPUT;
11611 }
11612 }
11613
11614 #endif /* HAVE_GHOSTSCRIPT */
11615
11616 \f
11617 /***********************************************************************
11618 Window properties
11619 ***********************************************************************/
11620
11621 DEFUN ("x-change-window-property", Fx_change_window_property,
11622 Sx_change_window_property, 2, 3, 0,
11623 "Change window property PROP to VALUE on the X window of FRAME.\n\
11624 PROP and VALUE must be strings. FRAME nil or omitted means use the\n\
11625 selected frame. Value is VALUE.")
11626 (prop, value, frame)
11627 Lisp_Object frame, prop, value;
11628 {
11629 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11630 struct frame *f = check_x_frame (frame);
11631 Atom prop_atom;
11632
11633 CHECK_STRING (prop, 1);
11634 CHECK_STRING (value, 2);
11635
11636 BLOCK_INPUT;
11637 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11638 XChangeProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11639 prop_atom, XA_STRING, 8, PropModeReplace,
11640 XSTRING (value)->data, XSTRING (value)->size);
11641
11642 /* Make sure the property is set when we return. */
11643 XFlush (FRAME_W32_DISPLAY (f));
11644 UNBLOCK_INPUT;
11645
11646 #endif /* NTEMACS_TODO */
11647
11648 return value;
11649 }
11650
11651
11652 DEFUN ("x-delete-window-property", Fx_delete_window_property,
11653 Sx_delete_window_property, 1, 2, 0,
11654 "Remove window property PROP from X window of FRAME.\n\
11655 FRAME nil or omitted means use the selected frame. Value is PROP.")
11656 (prop, frame)
11657 Lisp_Object prop, frame;
11658 {
11659 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11660
11661 struct frame *f = check_x_frame (frame);
11662 Atom prop_atom;
11663
11664 CHECK_STRING (prop, 1);
11665 BLOCK_INPUT;
11666 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11667 XDeleteProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), prop_atom);
11668
11669 /* Make sure the property is removed when we return. */
11670 XFlush (FRAME_W32_DISPLAY (f));
11671 UNBLOCK_INPUT;
11672 #endif /* NTEMACS_TODO */
11673
11674 return prop;
11675 }
11676
11677
11678 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
11679 1, 2, 0,
11680 "Value is the value of window property PROP on FRAME.\n\
11681 If FRAME is nil or omitted, use the selected frame. Value is nil\n\
11682 if FRAME hasn't a property with name PROP or if PROP has no string\n\
11683 value.")
11684 (prop, frame)
11685 Lisp_Object prop, frame;
11686 {
11687 #if 0 /* NTEMACS_TODO : port window properties to W32 */
11688
11689 struct frame *f = check_x_frame (frame);
11690 Atom prop_atom;
11691 int rc;
11692 Lisp_Object prop_value = Qnil;
11693 char *tmp_data = NULL;
11694 Atom actual_type;
11695 int actual_format;
11696 unsigned long actual_size, bytes_remaining;
11697
11698 CHECK_STRING (prop, 1);
11699 BLOCK_INPUT;
11700 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), XSTRING (prop)->data, False);
11701 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11702 prop_atom, 0, 0, False, XA_STRING,
11703 &actual_type, &actual_format, &actual_size,
11704 &bytes_remaining, (unsigned char **) &tmp_data);
11705 if (rc == Success)
11706 {
11707 int size = bytes_remaining;
11708
11709 XFree (tmp_data);
11710 tmp_data = NULL;
11711
11712 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
11713 prop_atom, 0, bytes_remaining,
11714 False, XA_STRING,
11715 &actual_type, &actual_format,
11716 &actual_size, &bytes_remaining,
11717 (unsigned char **) &tmp_data);
11718 if (rc == Success)
11719 prop_value = make_string (tmp_data, size);
11720
11721 XFree (tmp_data);
11722 }
11723
11724 UNBLOCK_INPUT;
11725
11726 return prop_value;
11727
11728 #endif /* NTEMACS_TODO */
11729 return Qnil;
11730 }
11731
11732
11733 \f
11734 /***********************************************************************
11735 Busy cursor
11736 ***********************************************************************/
11737
11738 /* If non-null, an asynchronous timer that, when it expires, displays
11739 a busy cursor on all frames. */
11740
11741 static struct atimer *busy_cursor_atimer;
11742
11743 /* Non-zero means a busy cursor is currently shown. */
11744
11745 static int busy_cursor_shown_p;
11746
11747 /* Number of seconds to wait before displaying a busy cursor. */
11748
11749 static Lisp_Object Vbusy_cursor_delay;
11750
11751 /* Default number of seconds to wait before displaying a busy
11752 cursor. */
11753
11754 #define DEFAULT_BUSY_CURSOR_DELAY 1
11755
11756 /* Function prototypes. */
11757
11758 static void show_busy_cursor P_ ((struct atimer *));
11759 static void hide_busy_cursor P_ ((void));
11760
11761
11762 /* Cancel a currently active busy-cursor timer, and start a new one. */
11763
11764 void
11765 start_busy_cursor ()
11766 {
11767 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11768 EMACS_TIME delay;
11769 int secs, usecs = 0;
11770
11771 cancel_busy_cursor ();
11772
11773 if (INTEGERP (Vbusy_cursor_delay)
11774 && XINT (Vbusy_cursor_delay) > 0)
11775 secs = XFASTINT (Vbusy_cursor_delay);
11776 else if (FLOATP (Vbusy_cursor_delay)
11777 && XFLOAT_DATA (Vbusy_cursor_delay) > 0)
11778 {
11779 Lisp_Object tem;
11780 tem = Ftruncate (Vbusy_cursor_delay, Qnil);
11781 secs = XFASTINT (tem);
11782 usecs = (XFLOAT_DATA (Vbusy_cursor_delay) - secs) * 1000000;
11783 }
11784 else
11785 secs = DEFAULT_BUSY_CURSOR_DELAY;
11786
11787 EMACS_SET_SECS_USECS (delay, secs, usecs);
11788 busy_cursor_atimer = start_atimer (ATIMER_RELATIVE, delay,
11789 show_busy_cursor, NULL);
11790 #endif
11791 }
11792
11793
11794 /* Cancel the busy cursor timer if active, hide a busy cursor if
11795 shown. */
11796
11797 void
11798 cancel_busy_cursor ()
11799 {
11800 if (busy_cursor_atimer)
11801 {
11802 cancel_atimer (busy_cursor_atimer);
11803 busy_cursor_atimer = NULL;
11804 }
11805
11806 if (busy_cursor_shown_p)
11807 hide_busy_cursor ();
11808 }
11809
11810
11811 /* Timer function of busy_cursor_atimer. TIMER is equal to
11812 busy_cursor_atimer.
11813
11814 Display a busy cursor on all frames by mapping the frames'
11815 busy_window. Set the busy_p flag in the frames' output_data.x
11816 structure to indicate that a busy cursor is shown on the
11817 frames. */
11818
11819 static void
11820 show_busy_cursor (timer)
11821 struct atimer *timer;
11822 {
11823 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11824 /* The timer implementation will cancel this timer automatically
11825 after this function has run. Set busy_cursor_atimer to null
11826 so that we know the timer doesn't have to be canceled. */
11827 busy_cursor_atimer = NULL;
11828
11829 if (!busy_cursor_shown_p)
11830 {
11831 Lisp_Object rest, frame;
11832
11833 BLOCK_INPUT;
11834
11835 FOR_EACH_FRAME (rest, frame)
11836 if (FRAME_X_P (XFRAME (frame)))
11837 {
11838 struct frame *f = XFRAME (frame);
11839
11840 f->output_data.w32->busy_p = 1;
11841
11842 if (!f->output_data.w32->busy_window)
11843 {
11844 unsigned long mask = CWCursor;
11845 XSetWindowAttributes attrs;
11846
11847 attrs.cursor = f->output_data.w32->busy_cursor;
11848
11849 f->output_data.w32->busy_window
11850 = XCreateWindow (FRAME_X_DISPLAY (f),
11851 FRAME_OUTER_WINDOW (f),
11852 0, 0, 32000, 32000, 0, 0,
11853 InputOnly,
11854 CopyFromParent,
11855 mask, &attrs);
11856 }
11857
11858 XMapRaised (FRAME_X_DISPLAY (f), f->output_data.w32->busy_window);
11859 XFlush (FRAME_X_DISPLAY (f));
11860 }
11861
11862 busy_cursor_shown_p = 1;
11863 UNBLOCK_INPUT;
11864 }
11865 #endif
11866 }
11867
11868
11869 /* Hide the busy cursor on all frames, if it is currently shown. */
11870
11871 static void
11872 hide_busy_cursor ()
11873 {
11874 #if 0 /* NTEMACS_TODO: cursor shape changes. */
11875 if (busy_cursor_shown_p)
11876 {
11877 Lisp_Object rest, frame;
11878
11879 BLOCK_INPUT;
11880 FOR_EACH_FRAME (rest, frame)
11881 {
11882 struct frame *f = XFRAME (frame);
11883
11884 if (FRAME_X_P (f)
11885 /* Watch out for newly created frames. */
11886 && f->output_data.x->busy_window)
11887 {
11888 XUnmapWindow (FRAME_X_DISPLAY (f), f->output_data.x->busy_window);
11889 /* Sync here because XTread_socket looks at the busy_p flag
11890 that is reset to zero below. */
11891 XSync (FRAME_X_DISPLAY (f), False);
11892 f->output_data.x->busy_p = 0;
11893 }
11894 }
11895
11896 busy_cursor_shown_p = 0;
11897 UNBLOCK_INPUT;
11898 }
11899 #endif
11900 }
11901
11902
11903 \f
11904 /***********************************************************************
11905 Tool tips
11906 ***********************************************************************/
11907
11908 static Lisp_Object x_create_tip_frame P_ ((struct w32_display_info *,
11909 Lisp_Object));
11910
11911 /* The frame of a currently visible tooltip, or null. */
11912
11913 struct frame *tip_frame;
11914
11915 /* If non-nil, a timer started that hides the last tooltip when it
11916 fires. */
11917
11918 Lisp_Object tip_timer;
11919 Window tip_window;
11920
11921 /* Create a frame for a tooltip on the display described by DPYINFO.
11922 PARMS is a list of frame parameters. Value is the frame. */
11923
11924 static Lisp_Object
11925 x_create_tip_frame (dpyinfo, parms)
11926 struct w32_display_info *dpyinfo;
11927 Lisp_Object parms;
11928 {
11929 #if 0 /* NTEMACS_TODO : w32 version */
11930 struct frame *f;
11931 Lisp_Object frame, tem;
11932 Lisp_Object name;
11933 long window_prompting = 0;
11934 int width, height;
11935 int count = specpdl_ptr - specpdl;
11936 struct gcpro gcpro1, gcpro2, gcpro3;
11937 struct kboard *kb;
11938
11939 check_x ();
11940
11941 /* Use this general default value to start with until we know if
11942 this frame has a specified name. */
11943 Vx_resource_name = Vinvocation_name;
11944
11945 #ifdef MULTI_KBOARD
11946 kb = dpyinfo->kboard;
11947 #else
11948 kb = &the_only_kboard;
11949 #endif
11950
11951 /* Get the name of the frame to use for resource lookup. */
11952 name = w32_get_arg (parms, Qname, "name", "Name", RES_TYPE_STRING);
11953 if (!STRINGP (name)
11954 && !EQ (name, Qunbound)
11955 && !NILP (name))
11956 error ("Invalid frame name--not a string or nil");
11957 Vx_resource_name = name;
11958
11959 frame = Qnil;
11960 GCPRO3 (parms, name, frame);
11961 tip_frame = f = make_frame (1);
11962 XSETFRAME (frame, f);
11963 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
11964
11965 f->output_method = output_w32;
11966 f->output_data.w32 =
11967 (struct w32_output *) xmalloc (sizeof (struct w32_output));
11968 bzero (f->output_data.w32, sizeof (struct w32_output));
11969 #if 0
11970 f->output_data.w32->icon_bitmap = -1;
11971 #endif
11972 f->output_data.w32->fontset = -1;
11973 f->icon_name = Qnil;
11974
11975 #ifdef MULTI_KBOARD
11976 FRAME_KBOARD (f) = kb;
11977 #endif
11978 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
11979 f->output_data.w32->explicit_parent = 0;
11980
11981 /* Set the name; the functions to which we pass f expect the name to
11982 be set. */
11983 if (EQ (name, Qunbound) || NILP (name))
11984 {
11985 f->name = build_string (dpyinfo->x_id_name);
11986 f->explicit_name = 0;
11987 }
11988 else
11989 {
11990 f->name = name;
11991 f->explicit_name = 1;
11992 /* use the frame's title when getting resources for this frame. */
11993 specbind (Qx_resource_name, name);
11994 }
11995
11996 /* Extract the window parameters from the supplied values
11997 that are needed to determine window geometry. */
11998 {
11999 Lisp_Object font;
12000
12001 font = w32_get_arg (parms, Qfont, "font", "Font", RES_TYPE_STRING);
12002
12003 BLOCK_INPUT;
12004 /* First, try whatever font the caller has specified. */
12005 if (STRINGP (font))
12006 {
12007 tem = Fquery_fontset (font, Qnil);
12008 if (STRINGP (tem))
12009 font = x_new_fontset (f, XSTRING (tem)->data);
12010 else
12011 font = x_new_font (f, XSTRING (font)->data);
12012 }
12013
12014 /* Try out a font which we hope has bold and italic variations. */
12015 if (!STRINGP (font))
12016 font = x_new_font (f, "-*-courier new-normal-r-*-*-*-100-*-*-*-*-iso8859-1");
12017 if (!STRINGP (font))
12018 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12019 if (! STRINGP (font))
12020 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12021 if (! STRINGP (font))
12022 /* This was formerly the first thing tried, but it finds too many fonts
12023 and takes too long. */
12024 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
12025 /* If those didn't work, look for something which will at least work. */
12026 if (! STRINGP (font))
12027 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
12028 UNBLOCK_INPUT;
12029 if (! STRINGP (font))
12030 font = build_string ("fixed");
12031
12032 x_default_parameter (f, parms, Qfont, font,
12033 "font", "Font", RES_TYPE_STRING);
12034 }
12035
12036 x_default_parameter (f, parms, Qborder_width, make_number (2),
12037 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
12038
12039 /* This defaults to 2 in order to match xterm. We recognize either
12040 internalBorderWidth or internalBorder (which is what xterm calls
12041 it). */
12042 if (NILP (Fassq (Qinternal_border_width, parms)))
12043 {
12044 Lisp_Object value;
12045
12046 value = w32_get_arg (parms, Qinternal_border_width,
12047 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
12048 if (! EQ (value, Qunbound))
12049 parms = Fcons (Fcons (Qinternal_border_width, value),
12050 parms);
12051 }
12052
12053 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
12054 "internalBorderWidth", "internalBorderWidth",
12055 RES_TYPE_NUMBER);
12056
12057 /* Also do the stuff which must be set before the window exists. */
12058 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
12059 "foreground", "Foreground", RES_TYPE_STRING);
12060 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
12061 "background", "Background", RES_TYPE_STRING);
12062 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
12063 "pointerColor", "Foreground", RES_TYPE_STRING);
12064 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
12065 "cursorColor", "Foreground", RES_TYPE_STRING);
12066 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
12067 "borderColor", "BorderColor", RES_TYPE_STRING);
12068
12069 /* Init faces before x_default_parameter is called for scroll-bar
12070 parameters because that function calls x_set_scroll_bar_width,
12071 which calls change_frame_size, which calls Fset_window_buffer,
12072 which runs hooks, which call Fvertical_motion. At the end, we
12073 end up in init_iterator with a null face cache, which should not
12074 happen. */
12075 init_frame_faces (f);
12076
12077 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
12078 window_prompting = x_figure_window_size (f, parms);
12079
12080 if (window_prompting & XNegative)
12081 {
12082 if (window_prompting & YNegative)
12083 f->output_data.w32->win_gravity = SouthEastGravity;
12084 else
12085 f->output_data.w32->win_gravity = NorthEastGravity;
12086 }
12087 else
12088 {
12089 if (window_prompting & YNegative)
12090 f->output_data.w32->win_gravity = SouthWestGravity;
12091 else
12092 f->output_data.w32->win_gravity = NorthWestGravity;
12093 }
12094
12095 f->output_data.w32->size_hint_flags = window_prompting;
12096 {
12097 XSetWindowAttributes attrs;
12098 unsigned long mask;
12099
12100 BLOCK_INPUT;
12101 mask = CWBackPixel | CWOverrideRedirect | CWSaveUnder | CWEventMask;
12102 /* Window managers looks at the override-redirect flag to
12103 determine whether or net to give windows a decoration (Xlib
12104 3.2.8). */
12105 attrs.override_redirect = True;
12106 attrs.save_under = True;
12107 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
12108 /* Arrange for getting MapNotify and UnmapNotify events. */
12109 attrs.event_mask = StructureNotifyMask;
12110 tip_window
12111 = FRAME_W32_WINDOW (f)
12112 = XCreateWindow (FRAME_W32_DISPLAY (f),
12113 FRAME_W32_DISPLAY_INFO (f)->root_window,
12114 /* x, y, width, height */
12115 0, 0, 1, 1,
12116 /* Border. */
12117 1,
12118 CopyFromParent, InputOutput, CopyFromParent,
12119 mask, &attrs);
12120 UNBLOCK_INPUT;
12121 }
12122
12123 x_make_gc (f);
12124
12125 x_default_parameter (f, parms, Qauto_raise, Qnil,
12126 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
12127 x_default_parameter (f, parms, Qauto_lower, Qnil,
12128 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
12129 x_default_parameter (f, parms, Qcursor_type, Qbox,
12130 "cursorType", "CursorType", RES_TYPE_SYMBOL);
12131
12132 /* Dimensions, especially f->height, must be done via change_frame_size.
12133 Change will not be effected unless different from the current
12134 f->height. */
12135 width = f->width;
12136 height = f->height;
12137 f->height = 0;
12138 SET_FRAME_WIDTH (f, 0);
12139 change_frame_size (f, height, width, 1, 0, 0);
12140
12141 f->no_split = 1;
12142
12143 UNGCPRO;
12144
12145 /* It is now ok to make the frame official even if we get an error
12146 below. And the frame needs to be on Vframe_list or making it
12147 visible won't work. */
12148 Vframe_list = Fcons (frame, Vframe_list);
12149
12150 /* Now that the frame is official, it counts as a reference to
12151 its display. */
12152 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
12153
12154 return unbind_to (count, frame);
12155 #endif /* NTEMACS_TODO */
12156 return Qnil;
12157 }
12158
12159
12160 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
12161 "Show STRING in a \"tooltip\" window on frame FRAME.\n\
12162 A tooltip window is a small X window displaying a string.\n\
12163 \n\
12164 FRAME nil or omitted means use the selected frame.\n\
12165 \n\
12166 PARMS is an optional list of frame parameters which can be\n\
12167 used to change the tooltip's appearance.\n\
12168 \n\
12169 Automatically hide the tooltip after TIMEOUT seconds.\n\
12170 TIMEOUT nil means use the default timeout of 5 seconds.\n\
12171 \n\
12172 If the list of frame parameters PARAMS contains a `left' parameters,\n\
12173 the tooltip is displayed at that x-position. Otherwise it is\n\
12174 displayed at the mouse position, with offset DX added (default is 5 if\n\
12175 DX isn't specified). Likewise for the y-position; if a `top' frame\n\
12176 parameter is specified, it determines the y-position of the tooltip\n\
12177 window, otherwise it is displayed at the mouse position, with offset\n\
12178 DY added (default is -5).")
12179 (string, frame, parms, timeout, dx, dy)
12180 Lisp_Object string, frame, parms, timeout, dx, dy;
12181 {
12182 struct frame *f;
12183 struct window *w;
12184 Window root, child;
12185 Lisp_Object buffer, top, left;
12186 struct buffer *old_buffer;
12187 struct text_pos pos;
12188 int i, width, height;
12189 int root_x, root_y, win_x, win_y;
12190 unsigned pmask;
12191 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
12192 int old_windows_or_buffers_changed = windows_or_buffers_changed;
12193 int count = specpdl_ptr - specpdl;
12194
12195 specbind (Qinhibit_redisplay, Qt);
12196
12197 GCPRO4 (string, parms, frame, timeout);
12198
12199 CHECK_STRING (string, 0);
12200 f = check_x_frame (frame);
12201 if (NILP (timeout))
12202 timeout = make_number (5);
12203 else
12204 CHECK_NATNUM (timeout, 2);
12205
12206 if (NILP (dx))
12207 dx = make_number (5);
12208 else
12209 CHECK_NUMBER (dx, 5);
12210
12211 if (NILP (dy))
12212 dy = make_number (-5);
12213 else
12214 CHECK_NUMBER (dy, 6);
12215
12216 /* Hide a previous tip, if any. */
12217 Fx_hide_tip ();
12218
12219 /* Add default values to frame parameters. */
12220 if (NILP (Fassq (Qname, parms)))
12221 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
12222 if (NILP (Fassq (Qinternal_border_width, parms)))
12223 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
12224 if (NILP (Fassq (Qborder_width, parms)))
12225 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
12226 if (NILP (Fassq (Qborder_color, parms)))
12227 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
12228 if (NILP (Fassq (Qbackground_color, parms)))
12229 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
12230 parms);
12231
12232 /* Create a frame for the tooltip, and record it in the global
12233 variable tip_frame. */
12234 frame = x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f), parms);
12235 tip_frame = f = XFRAME (frame);
12236
12237 /* Set up the frame's root window. Currently we use a size of 80
12238 columns x 40 lines. If someone wants to show a larger tip, he
12239 will loose. I don't think this is a realistic case. */
12240 w = XWINDOW (FRAME_ROOT_WINDOW (f));
12241 w->left = w->top = make_number (0);
12242 w->width = 80;
12243 w->height = 40;
12244 adjust_glyphs (f);
12245 w->pseudo_window_p = 1;
12246
12247 /* Display the tooltip text in a temporary buffer. */
12248 buffer = Fget_buffer_create (build_string (" *tip*"));
12249 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer);
12250 old_buffer = current_buffer;
12251 set_buffer_internal_1 (XBUFFER (buffer));
12252 Ferase_buffer ();
12253 Finsert (make_number (1), &string);
12254 clear_glyph_matrix (w->desired_matrix);
12255 clear_glyph_matrix (w->current_matrix);
12256 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
12257 try_window (FRAME_ROOT_WINDOW (f), pos);
12258
12259 /* Compute width and height of the tooltip. */
12260 width = height = 0;
12261 for (i = 0; i < w->desired_matrix->nrows; ++i)
12262 {
12263 struct glyph_row *row = &w->desired_matrix->rows[i];
12264 struct glyph *last;
12265 int row_width;
12266
12267 /* Stop at the first empty row at the end. */
12268 if (!row->enabled_p || !row->displays_text_p)
12269 break;
12270
12271 /* Let the row go over the full width of the frame. */
12272 row->full_width_p = 1;
12273
12274 /* There's a glyph at the end of rows that is use to place
12275 the cursor there. Don't include the width of this glyph. */
12276 if (row->used[TEXT_AREA])
12277 {
12278 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
12279 row_width = row->pixel_width - last->pixel_width;
12280 }
12281 else
12282 row_width = row->pixel_width;
12283
12284 height += row->height;
12285 width = max (width, row_width);
12286 }
12287
12288 /* Add the frame's internal border to the width and height the X
12289 window should have. */
12290 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
12291 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
12292
12293 /* User-specified position? */
12294 left = Fcdr (Fassq (Qleft, parms));
12295 top = Fcdr (Fassq (Qtop, parms));
12296
12297 /* Move the tooltip window where the mouse pointer is. Resize and
12298 show it. */
12299 #if 0 /* NTEMACS_TODO : W32 specifics */
12300 BLOCK_INPUT;
12301 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
12302 &root, &child, &root_x, &root_y, &win_x, &win_y, &pmask);
12303 UNBLOCK_INPUT;
12304
12305 root_x += XINT (dx);
12306 root_y += XINT (dy);
12307
12308 if (INTEGERP (left))
12309 root_x = XINT (left);
12310 if (INTEGERP (top))
12311 root_y = XINT (top);
12312
12313 BLOCK_INPUT;
12314 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
12315 root_x, root_y - height, width, height);
12316 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
12317 UNBLOCK_INPUT;
12318 #endif /* NTEMACS_TODO */
12319
12320 /* Draw into the window. */
12321 w->must_be_updated_p = 1;
12322 update_single_window (w, 1);
12323
12324 /* Restore original current buffer. */
12325 set_buffer_internal_1 (old_buffer);
12326 windows_or_buffers_changed = old_windows_or_buffers_changed;
12327
12328 /* Let the tip disappear after timeout seconds. */
12329 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
12330 intern ("x-hide-tip"));
12331
12332 UNGCPRO;
12333 return unbind_to (count, Qnil);
12334 }
12335
12336
12337 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
12338 "Hide the current tooltip window, if there is any.\n\
12339 Value is t is tooltip was open, nil otherwise.")
12340 ()
12341 {
12342 int count = specpdl_ptr - specpdl;
12343 int deleted_p = 0;
12344
12345 specbind (Qinhibit_redisplay, Qt);
12346
12347 if (!NILP (tip_timer))
12348 {
12349 call1 (intern ("cancel-timer"), tip_timer);
12350 tip_timer = Qnil;
12351 }
12352
12353 if (tip_frame)
12354 {
12355 Lisp_Object frame;
12356
12357 XSETFRAME (frame, tip_frame);
12358 Fdelete_frame (frame, Qt);
12359 tip_frame = NULL;
12360 deleted_p = 1;
12361 }
12362
12363 return unbind_to (count, deleted_p ? Qt : Qnil);
12364 }
12365
12366
12367 \f
12368 /***********************************************************************
12369 File selection dialog
12370 ***********************************************************************/
12371
12372 extern Lisp_Object Qfile_name_history;
12373
12374 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
12375 "Read file name, prompting with PROMPT in directory DIR.\n\
12376 Use a file selection dialog.\n\
12377 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
12378 specified. Don't let the user enter a file name in the file\n\
12379 selection dialog's entry field, if MUSTMATCH is non-nil.")
12380 (prompt, dir, default_filename, mustmatch)
12381 Lisp_Object prompt, dir, default_filename, mustmatch;
12382 {
12383 struct frame *f = SELECTED_FRAME ();
12384 Lisp_Object file = Qnil;
12385 int count = specpdl_ptr - specpdl;
12386 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
12387 char filename[MAX_PATH + 1];
12388 char init_dir[MAX_PATH + 1];
12389 int use_dialog_p = 1;
12390
12391 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
12392 CHECK_STRING (prompt, 0);
12393 CHECK_STRING (dir, 1);
12394
12395 /* Create the dialog with PROMPT as title, using DIR as initial
12396 directory and using "*" as pattern. */
12397 dir = Fexpand_file_name (dir, Qnil);
12398 strncpy (init_dir, XSTRING (dir)->data, MAX_PATH);
12399 init_dir[MAX_PATH] = '\0';
12400 unixtodos_filename (init_dir);
12401
12402 if (STRINGP (default_filename))
12403 {
12404 char *file_name_only;
12405 char *full_path_name = XSTRING (default_filename)->data;
12406
12407 unixtodos_filename (full_path_name);
12408
12409 file_name_only = strrchr (full_path_name, '\\');
12410 if (!file_name_only)
12411 file_name_only = full_path_name;
12412 else
12413 {
12414 file_name_only++;
12415
12416 /* If default_file_name is a directory, don't use the open
12417 file dialog, as it does not support selecting
12418 directories. */
12419 if (!(*file_name_only))
12420 use_dialog_p = 0;
12421 }
12422
12423 strncpy (filename, file_name_only, MAX_PATH);
12424 filename[MAX_PATH] = '\0';
12425 }
12426 else
12427 filename[0] = '\0';
12428
12429 if (use_dialog_p)
12430 {
12431 OPENFILENAME file_details;
12432 char *filename_file;
12433
12434 /* Prevent redisplay. */
12435 specbind (Qinhibit_redisplay, Qt);
12436 BLOCK_INPUT;
12437
12438 bzero (&file_details, sizeof (file_details));
12439 file_details.lStructSize = sizeof (file_details);
12440 file_details.hwndOwner = FRAME_W32_WINDOW (f);
12441 file_details.lpstrFile = filename;
12442 file_details.nMaxFile = sizeof (filename);
12443 file_details.lpstrInitialDir = init_dir;
12444 file_details.lpstrTitle = XSTRING (prompt)->data;
12445 file_details.Flags = OFN_HIDEREADONLY | OFN_NOCHANGEDIR;
12446
12447 if (!NILP (mustmatch))
12448 file_details.Flags |= OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
12449
12450 if (GetOpenFileName (&file_details))
12451 {
12452 dostounix_filename (filename);
12453 file = build_string (filename);
12454 }
12455 else
12456 file = Qnil;
12457
12458 UNBLOCK_INPUT;
12459 file = unbind_to (count, file);
12460 }
12461 /* Open File dialog will not allow folders to be selected, so resort
12462 to minibuffer completing reads for directories. */
12463 else
12464 file = Fcompleting_read (prompt, intern ("read-file-name-internal"),
12465 dir, mustmatch, dir, Qfile_name_history,
12466 default_filename, Qnil);
12467
12468 UNGCPRO;
12469
12470 /* Make "Cancel" equivalent to C-g. */
12471 if (NILP (file))
12472 Fsignal (Qquit, Qnil);
12473
12474 return unbind_to (count, file);
12475 }
12476
12477
12478 \f
12479 /***********************************************************************
12480 Tests
12481 ***********************************************************************/
12482
12483 #if GLYPH_DEBUG
12484
12485 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
12486 "Value is non-nil if SPEC is a valid image specification.")
12487 (spec)
12488 Lisp_Object spec;
12489 {
12490 return valid_image_p (spec) ? Qt : Qnil;
12491 }
12492
12493
12494 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
12495 (spec)
12496 Lisp_Object spec;
12497 {
12498 int id = -1;
12499
12500 if (valid_image_p (spec))
12501 id = lookup_image (SELECTED_FRAME (), spec);
12502
12503 debug_print (spec);
12504 return make_number (id);
12505 }
12506
12507 #endif /* GLYPH_DEBUG != 0 */
12508
12509
12510 \f
12511 /***********************************************************************
12512 w32 specialized functions
12513 ***********************************************************************/
12514
12515 DEFUN ("w32-select-font", Fw32_select_font, Sw32_select_font, 0, 1, 0,
12516 "This will display the W32 font dialog and return an X font string corresponding to the selection.")
12517 (frame)
12518 Lisp_Object frame;
12519 {
12520 FRAME_PTR f = check_x_frame (frame);
12521 CHOOSEFONT cf;
12522 LOGFONT lf;
12523 TEXTMETRIC tm;
12524 HDC hdc;
12525 HANDLE oldobj;
12526 char buf[100];
12527
12528 bzero (&cf, sizeof (cf));
12529 bzero (&lf, sizeof (lf));
12530
12531 cf.lStructSize = sizeof (cf);
12532 cf.hwndOwner = FRAME_W32_WINDOW (f);
12533 cf.Flags = CF_FORCEFONTEXIST | CF_SCREENFONTS;
12534 cf.lpLogFont = &lf;
12535
12536 /* Initialize as much of the font details as we can from the current
12537 default font. */
12538 hdc = GetDC (FRAME_W32_WINDOW (f));
12539 oldobj = SelectObject (hdc, FRAME_FONT (f)->hfont);
12540 GetTextFace (hdc, LF_FACESIZE, lf.lfFaceName);
12541 if (GetTextMetrics (hdc, &tm))
12542 {
12543 lf.lfHeight = tm.tmInternalLeading - tm.tmHeight;
12544 lf.lfWeight = tm.tmWeight;
12545 lf.lfItalic = tm.tmItalic;
12546 lf.lfUnderline = tm.tmUnderlined;
12547 lf.lfStrikeOut = tm.tmStruckOut;
12548 lf.lfCharSet = tm.tmCharSet;
12549 cf.Flags |= CF_INITTOLOGFONTSTRUCT;
12550 }
12551 SelectObject (hdc, oldobj);
12552 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
12553
12554 if (!ChooseFont (&cf) || !w32_to_x_font (&lf, buf, 100))
12555 return Qnil;
12556
12557 return build_string (buf);
12558 }
12559
12560 DEFUN ("w32-send-sys-command", Fw32_send_sys_command, Sw32_send_sys_command, 1, 2, 0,
12561 "Send frame a Windows WM_SYSCOMMAND message of type COMMAND.\n\
12562 Some useful values for command are 0xf030 to maximise frame (0xf020\n\
12563 to minimize), 0xf120 to restore frame to original size, and 0xf100\n\
12564 to activate the menubar for keyboard access. 0xf140 activates the\n\
12565 screen saver if defined.\n\
12566 \n\
12567 If optional parameter FRAME is not specified, use selected frame.")
12568 (command, frame)
12569 Lisp_Object command, frame;
12570 {
12571 WPARAM code;
12572 FRAME_PTR f = check_x_frame (frame);
12573
12574 CHECK_NUMBER (command, 0);
12575
12576 PostMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, XINT (command), 0);
12577
12578 return Qnil;
12579 }
12580
12581 DEFUN ("w32-shell-execute", Fw32_shell_execute, Sw32_shell_execute, 2, 4, 0,
12582 "Get Windows to perform OPERATION on DOCUMENT.\n\
12583 This is a wrapper around the ShellExecute system function, which\n\
12584 invokes the application registered to handle OPERATION for DOCUMENT.\n\
12585 OPERATION is typically \"open\", \"print\" or \"explore\" (but can be\n\
12586 nil for the default action), and DOCUMENT is typically the name of a\n\
12587 document file or URL, but can also be a program executable to run or\n\
12588 a directory to open in the Windows Explorer.\n\
12589 \n\
12590 If DOCUMENT is a program executable, PARAMETERS can be a string\n\
12591 containing command line parameters, but otherwise should be nil.\n\
12592 \n\
12593 SHOW-FLAG can be used to control whether the invoked application is hidden\n\
12594 or minimized. If SHOW-FLAG is nil, the application is displayed normally,\n\
12595 otherwise it is an integer representing a ShowWindow flag:\n\
12596 \n\
12597 0 - start hidden\n\
12598 1 - start normally\n\
12599 3 - start maximized\n\
12600 6 - start minimized")
12601 (operation, document, parameters, show_flag)
12602 Lisp_Object operation, document, parameters, show_flag;
12603 {
12604 Lisp_Object current_dir;
12605
12606 CHECK_STRING (document, 0);
12607
12608 /* Encode filename and current directory. */
12609 current_dir = ENCODE_FILE (current_buffer->directory);
12610 document = ENCODE_FILE (document);
12611 if ((int) ShellExecute (NULL,
12612 (STRINGP (operation) ?
12613 XSTRING (operation)->data : NULL),
12614 XSTRING (document)->data,
12615 (STRINGP (parameters) ?
12616 XSTRING (parameters)->data : NULL),
12617 XSTRING (current_dir)->data,
12618 (INTEGERP (show_flag) ?
12619 XINT (show_flag) : SW_SHOWDEFAULT))
12620 > 32)
12621 return Qt;
12622 error ("ShellExecute failed");
12623 }
12624
12625 /* Lookup virtual keycode from string representing the name of a
12626 non-ascii keystroke into the corresponding virtual key, using
12627 lispy_function_keys. */
12628 static int
12629 lookup_vk_code (char *key)
12630 {
12631 int i;
12632
12633 for (i = 0; i < 256; i++)
12634 if (lispy_function_keys[i] != 0
12635 && strcmp (lispy_function_keys[i], key) == 0)
12636 return i;
12637
12638 return -1;
12639 }
12640
12641 /* Convert a one-element vector style key sequence to a hot key
12642 definition. */
12643 static int
12644 w32_parse_hot_key (key)
12645 Lisp_Object key;
12646 {
12647 /* Copied from Fdefine_key and store_in_keymap. */
12648 register Lisp_Object c;
12649 int vk_code;
12650 int lisp_modifiers;
12651 int w32_modifiers;
12652 struct gcpro gcpro1;
12653
12654 CHECK_VECTOR (key, 0);
12655
12656 if (XFASTINT (Flength (key)) != 1)
12657 return Qnil;
12658
12659 GCPRO1 (key);
12660
12661 c = Faref (key, make_number (0));
12662
12663 if (CONSP (c) && lucid_event_type_list_p (c))
12664 c = Fevent_convert_list (c);
12665
12666 UNGCPRO;
12667
12668 if (! INTEGERP (c) && ! SYMBOLP (c))
12669 error ("Key definition is invalid");
12670
12671 /* Work out the base key and the modifiers. */
12672 if (SYMBOLP (c))
12673 {
12674 c = parse_modifiers (c);
12675 lisp_modifiers = Fcar (Fcdr (c));
12676 c = Fcar (c);
12677 if (!SYMBOLP (c))
12678 abort ();
12679 vk_code = lookup_vk_code (XSYMBOL (c)->name->data);
12680 }
12681 else if (INTEGERP (c))
12682 {
12683 lisp_modifiers = XINT (c) & ~CHARACTERBITS;
12684 /* Many ascii characters are their own virtual key code. */
12685 vk_code = XINT (c) & CHARACTERBITS;
12686 }
12687
12688 if (vk_code < 0 || vk_code > 255)
12689 return Qnil;
12690
12691 if ((lisp_modifiers & meta_modifier) != 0
12692 && !NILP (Vw32_alt_is_meta))
12693 lisp_modifiers |= alt_modifier;
12694
12695 /* Supply defs missing from mingw32. */
12696 #ifndef MOD_ALT
12697 #define MOD_ALT 0x0001
12698 #define MOD_CONTROL 0x0002
12699 #define MOD_SHIFT 0x0004
12700 #define MOD_WIN 0x0008
12701 #endif
12702
12703 /* Convert lisp modifiers to Windows hot-key form. */
12704 w32_modifiers = (lisp_modifiers & hyper_modifier) ? MOD_WIN : 0;
12705 w32_modifiers |= (lisp_modifiers & alt_modifier) ? MOD_ALT : 0;
12706 w32_modifiers |= (lisp_modifiers & ctrl_modifier) ? MOD_CONTROL : 0;
12707 w32_modifiers |= (lisp_modifiers & shift_modifier) ? MOD_SHIFT : 0;
12708
12709 return HOTKEY (vk_code, w32_modifiers);
12710 }
12711
12712 DEFUN ("w32-register-hot-key", Fw32_register_hot_key, Sw32_register_hot_key, 1, 1, 0,
12713 "Register KEY as a hot-key combination.\n\
12714 Certain key combinations like Alt-Tab are reserved for system use on\n\
12715 Windows, and therefore are normally intercepted by the system. However,\n\
12716 most of these key combinations can be received by registering them as\n\
12717 hot-keys, overriding their special meaning.\n\
12718 \n\
12719 KEY must be a one element key definition in vector form that would be\n\
12720 acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta\n\
12721 modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper\n\
12722 is always interpreted as the Windows modifier keys.\n\
12723 \n\
12724 The return value is the hotkey-id if registered, otherwise nil.")
12725 (key)
12726 Lisp_Object key;
12727 {
12728 key = w32_parse_hot_key (key);
12729
12730 if (NILP (Fmemq (key, w32_grabbed_keys)))
12731 {
12732 /* Reuse an empty slot if possible. */
12733 Lisp_Object item = Fmemq (Qnil, w32_grabbed_keys);
12734
12735 /* Safe to add new key to list, even if we have focus. */
12736 if (NILP (item))
12737 w32_grabbed_keys = Fcons (key, w32_grabbed_keys);
12738 else
12739 XCAR (item) = key;
12740
12741 /* Notify input thread about new hot-key definition, so that it
12742 takes effect without needing to switch focus. */
12743 PostThreadMessage (dwWindowsThreadId, WM_EMACS_REGISTER_HOT_KEY,
12744 (WPARAM) key, 0);
12745 }
12746
12747 return key;
12748 }
12749
12750 DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key, Sw32_unregister_hot_key, 1, 1, 0,
12751 "Unregister HOTKEY as a hot-key combination.")
12752 (key)
12753 Lisp_Object key;
12754 {
12755 Lisp_Object item;
12756
12757 if (!INTEGERP (key))
12758 key = w32_parse_hot_key (key);
12759
12760 item = Fmemq (key, w32_grabbed_keys);
12761
12762 if (!NILP (item))
12763 {
12764 /* Notify input thread about hot-key definition being removed, so
12765 that it takes effect without needing focus switch. */
12766 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
12767 (WPARAM) XINT (XCAR (item)), (LPARAM) item))
12768 {
12769 MSG msg;
12770 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
12771 }
12772 return Qt;
12773 }
12774 return Qnil;
12775 }
12776
12777 DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys, Sw32_registered_hot_keys, 0, 0, 0,
12778 "Return list of registered hot-key IDs.")
12779 ()
12780 {
12781 return Fcopy_sequence (w32_grabbed_keys);
12782 }
12783
12784 DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key, Sw32_reconstruct_hot_key, 1, 1, 0,
12785 "Convert hot-key ID to a lisp key combination.")
12786 (hotkeyid)
12787 Lisp_Object hotkeyid;
12788 {
12789 int vk_code, w32_modifiers;
12790 Lisp_Object key;
12791
12792 CHECK_NUMBER (hotkeyid, 0);
12793
12794 vk_code = HOTKEY_VK_CODE (hotkeyid);
12795 w32_modifiers = HOTKEY_MODIFIERS (hotkeyid);
12796
12797 if (lispy_function_keys[vk_code])
12798 key = intern (lispy_function_keys[vk_code]);
12799 else
12800 key = make_number (vk_code);
12801
12802 key = Fcons (key, Qnil);
12803 if (w32_modifiers & MOD_SHIFT)
12804 key = Fcons (Qshift, key);
12805 if (w32_modifiers & MOD_CONTROL)
12806 key = Fcons (Qctrl, key);
12807 if (w32_modifiers & MOD_ALT)
12808 key = Fcons (NILP (Vw32_alt_is_meta) ? Qalt : Qmeta, key);
12809 if (w32_modifiers & MOD_WIN)
12810 key = Fcons (Qhyper, key);
12811
12812 return key;
12813 }
12814
12815 DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key, Sw32_toggle_lock_key, 1, 2, 0,
12816 "Toggle the state of the lock key KEY.\n\
12817 KEY can be `capslock', `kp-numlock', or `scroll'.\n\
12818 If the optional parameter NEW-STATE is a number, then the state of KEY\n\
12819 is set to off if the low bit of NEW-STATE is zero, otherwise on.")
12820 (key, new_state)
12821 Lisp_Object key, new_state;
12822 {
12823 int vk_code;
12824 int cur_state;
12825
12826 if (EQ (key, intern ("capslock")))
12827 vk_code = VK_CAPITAL;
12828 else if (EQ (key, intern ("kp-numlock")))
12829 vk_code = VK_NUMLOCK;
12830 else if (EQ (key, intern ("scroll")))
12831 vk_code = VK_SCROLL;
12832 else
12833 return Qnil;
12834
12835 if (!dwWindowsThreadId)
12836 return make_number (w32_console_toggle_lock_key (vk_code, new_state));
12837
12838 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
12839 (WPARAM) vk_code, (LPARAM) new_state))
12840 {
12841 MSG msg;
12842 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
12843 return make_number (msg.wParam);
12844 }
12845 return Qnil;
12846 }
12847 \f
12848 syms_of_w32fns ()
12849 {
12850 /* This is zero if not using MS-Windows. */
12851 w32_in_use = 0;
12852
12853 /* The section below is built by the lisp expression at the top of the file,
12854 just above where these variables are declared. */
12855 /*&&& init symbols here &&&*/
12856 Qauto_raise = intern ("auto-raise");
12857 staticpro (&Qauto_raise);
12858 Qauto_lower = intern ("auto-lower");
12859 staticpro (&Qauto_lower);
12860 Qbar = intern ("bar");
12861 staticpro (&Qbar);
12862 Qborder_color = intern ("border-color");
12863 staticpro (&Qborder_color);
12864 Qborder_width = intern ("border-width");
12865 staticpro (&Qborder_width);
12866 Qbox = intern ("box");
12867 staticpro (&Qbox);
12868 Qcursor_color = intern ("cursor-color");
12869 staticpro (&Qcursor_color);
12870 Qcursor_type = intern ("cursor-type");
12871 staticpro (&Qcursor_type);
12872 Qgeometry = intern ("geometry");
12873 staticpro (&Qgeometry);
12874 Qicon_left = intern ("icon-left");
12875 staticpro (&Qicon_left);
12876 Qicon_top = intern ("icon-top");
12877 staticpro (&Qicon_top);
12878 Qicon_type = intern ("icon-type");
12879 staticpro (&Qicon_type);
12880 Qicon_name = intern ("icon-name");
12881 staticpro (&Qicon_name);
12882 Qinternal_border_width = intern ("internal-border-width");
12883 staticpro (&Qinternal_border_width);
12884 Qleft = intern ("left");
12885 staticpro (&Qleft);
12886 Qright = intern ("right");
12887 staticpro (&Qright);
12888 Qmouse_color = intern ("mouse-color");
12889 staticpro (&Qmouse_color);
12890 Qnone = intern ("none");
12891 staticpro (&Qnone);
12892 Qparent_id = intern ("parent-id");
12893 staticpro (&Qparent_id);
12894 Qscroll_bar_width = intern ("scroll-bar-width");
12895 staticpro (&Qscroll_bar_width);
12896 Qsuppress_icon = intern ("suppress-icon");
12897 staticpro (&Qsuppress_icon);
12898 Qundefined_color = intern ("undefined-color");
12899 staticpro (&Qundefined_color);
12900 Qvertical_scroll_bars = intern ("vertical-scroll-bars");
12901 staticpro (&Qvertical_scroll_bars);
12902 Qvisibility = intern ("visibility");
12903 staticpro (&Qvisibility);
12904 Qwindow_id = intern ("window-id");
12905 staticpro (&Qwindow_id);
12906 Qx_frame_parameter = intern ("x-frame-parameter");
12907 staticpro (&Qx_frame_parameter);
12908 Qx_resource_name = intern ("x-resource-name");
12909 staticpro (&Qx_resource_name);
12910 Quser_position = intern ("user-position");
12911 staticpro (&Quser_position);
12912 Quser_size = intern ("user-size");
12913 staticpro (&Quser_size);
12914 Qscreen_gamma = intern ("screen-gamma");
12915 staticpro (&Qscreen_gamma);
12916 Qline_spacing = intern ("line-spacing");
12917 staticpro (&Qline_spacing);
12918 Qcenter = intern ("center");
12919 staticpro (&Qcenter);
12920 /* This is the end of symbol initialization. */
12921
12922 Qhyper = intern ("hyper");
12923 staticpro (&Qhyper);
12924 Qsuper = intern ("super");
12925 staticpro (&Qsuper);
12926 Qmeta = intern ("meta");
12927 staticpro (&Qmeta);
12928 Qalt = intern ("alt");
12929 staticpro (&Qalt);
12930 Qctrl = intern ("ctrl");
12931 staticpro (&Qctrl);
12932 Qcontrol = intern ("control");
12933 staticpro (&Qcontrol);
12934 Qshift = intern ("shift");
12935 staticpro (&Qshift);
12936
12937 /* Text property `display' should be nonsticky by default. */
12938 Vtext_property_default_nonsticky
12939 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
12940
12941
12942 Qlaplace = intern ("laplace");
12943 staticpro (&Qlaplace);
12944
12945 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
12946 staticpro (&Qface_set_after_frame_default);
12947
12948 Fput (Qundefined_color, Qerror_conditions,
12949 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
12950 Fput (Qundefined_color, Qerror_message,
12951 build_string ("Undefined color"));
12952
12953 staticpro (&w32_grabbed_keys);
12954 w32_grabbed_keys = Qnil;
12955
12956 DEFVAR_LISP ("w32-color-map", &Vw32_color_map,
12957 "An array of color name mappings for windows.");
12958 Vw32_color_map = Qnil;
12959
12960 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system,
12961 "Non-nil if alt key presses are passed on to Windows.\n\
12962 When non-nil, for example, alt pressed and released and then space will\n\
12963 open the System menu. When nil, Emacs silently swallows alt key events.");
12964 Vw32_pass_alt_to_system = Qnil;
12965
12966 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta,
12967 "Non-nil if the alt key is to be considered the same as the meta key.\n\
12968 When nil, Emacs will translate the alt key to the Alt modifier, and not Meta.");
12969 Vw32_alt_is_meta = Qt;
12970
12971 DEFVAR_INT ("w32-quit-key", &Vw32_quit_key,
12972 "If non-zero, the virtual key code for an alternative quit key.");
12973 XSETINT (Vw32_quit_key, 0);
12974
12975 DEFVAR_LISP ("w32-pass-lwindow-to-system",
12976 &Vw32_pass_lwindow_to_system,
12977 "Non-nil if the left \"Windows\" key is passed on to Windows.\n\
12978 When non-nil, the Start menu is opened by tapping the key.");
12979 Vw32_pass_lwindow_to_system = Qt;
12980
12981 DEFVAR_LISP ("w32-pass-rwindow-to-system",
12982 &Vw32_pass_rwindow_to_system,
12983 "Non-nil if the right \"Windows\" key is passed on to Windows.\n\
12984 When non-nil, the Start menu is opened by tapping the key.");
12985 Vw32_pass_rwindow_to_system = Qt;
12986
12987 DEFVAR_INT ("w32-phantom-key-code",
12988 &Vw32_phantom_key_code,
12989 "Virtual key code used to generate \"phantom\" key presses.\n\
12990 Value is a number between 0 and 255.\n\
12991 \n\
12992 Phantom key presses are generated in order to stop the system from\n\
12993 acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or\n\
12994 `w32-pass-rwindow-to-system' is nil.");
12995 /* Although 255 is technically not a valid key code, it works and
12996 means that this hack won't interfere with any real key code. */
12997 Vw32_phantom_key_code = 255;
12998
12999 DEFVAR_LISP ("w32-enable-num-lock",
13000 &Vw32_enable_num_lock,
13001 "Non-nil if Num Lock should act normally.\n\
13002 Set to nil to see Num Lock as the key `kp-numlock'.");
13003 Vw32_enable_num_lock = Qt;
13004
13005 DEFVAR_LISP ("w32-enable-caps-lock",
13006 &Vw32_enable_caps_lock,
13007 "Non-nil if Caps Lock should act normally.\n\
13008 Set to nil to see Caps Lock as the key `capslock'.");
13009 Vw32_enable_caps_lock = Qt;
13010
13011 DEFVAR_LISP ("w32-scroll-lock-modifier",
13012 &Vw32_scroll_lock_modifier,
13013 "Modifier to use for the Scroll Lock on state.\n\
13014 The value can be hyper, super, meta, alt, control or shift for the\n\
13015 respective modifier, or nil to see Scroll Lock as the key `scroll'.\n\
13016 Any other value will cause the key to be ignored.");
13017 Vw32_scroll_lock_modifier = Qt;
13018
13019 DEFVAR_LISP ("w32-lwindow-modifier",
13020 &Vw32_lwindow_modifier,
13021 "Modifier to use for the left \"Windows\" key.\n\
13022 The value can be hyper, super, meta, alt, control or shift for the\n\
13023 respective modifier, or nil to appear as the key `lwindow'.\n\
13024 Any other value will cause the key to be ignored.");
13025 Vw32_lwindow_modifier = Qnil;
13026
13027 DEFVAR_LISP ("w32-rwindow-modifier",
13028 &Vw32_rwindow_modifier,
13029 "Modifier to use for the right \"Windows\" key.\n\
13030 The value can be hyper, super, meta, alt, control or shift for the\n\
13031 respective modifier, or nil to appear as the key `rwindow'.\n\
13032 Any other value will cause the key to be ignored.");
13033 Vw32_rwindow_modifier = Qnil;
13034
13035 DEFVAR_LISP ("w32-apps-modifier",
13036 &Vw32_apps_modifier,
13037 "Modifier to use for the \"Apps\" key.\n\
13038 The value can be hyper, super, meta, alt, control or shift for the\n\
13039 respective modifier, or nil to appear as the key `apps'.\n\
13040 Any other value will cause the key to be ignored.");
13041 Vw32_apps_modifier = Qnil;
13042
13043 DEFVAR_LISP ("w32-enable-synthesized-fonts", &Vw32_enable_synthesized_fonts,
13044 "Non-nil enables selection of artificially italicized and bold fonts.");
13045 Vw32_enable_synthesized_fonts = Qnil;
13046
13047 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette,
13048 "Non-nil enables Windows palette management to map colors exactly.");
13049 Vw32_enable_palette = Qt;
13050
13051 DEFVAR_INT ("w32-mouse-button-tolerance",
13052 &Vw32_mouse_button_tolerance,
13053 "Analogue of double click interval for faking middle mouse events.\n\
13054 The value is the minimum time in milliseconds that must elapse between\n\
13055 left/right button down events before they are considered distinct events.\n\
13056 If both mouse buttons are depressed within this interval, a middle mouse\n\
13057 button down event is generated instead.");
13058 XSETINT (Vw32_mouse_button_tolerance, GetDoubleClickTime () / 2);
13059
13060 DEFVAR_INT ("w32-mouse-move-interval",
13061 &Vw32_mouse_move_interval,
13062 "Minimum interval between mouse move events.\n\
13063 The value is the minimum time in milliseconds that must elapse between\n\
13064 successive mouse move (or scroll bar drag) events before they are\n\
13065 reported as lisp events.");
13066 XSETINT (Vw32_mouse_move_interval, 0);
13067
13068 init_x_parm_symbols ();
13069
13070 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
13071 "List of directories to search for bitmap files for w32.");
13072 Vx_bitmap_file_path = decode_env_path ((char *) 0, "PATH");
13073
13074 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
13075 "The shape of the pointer when over text.\n\
13076 Changing the value does not affect existing frames\n\
13077 unless you set the mouse color.");
13078 Vx_pointer_shape = Qnil;
13079
13080 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
13081 "The name Emacs uses to look up resources; for internal use only.\n\
13082 `x-get-resource' uses this as the first component of the instance name\n\
13083 when requesting resource values.\n\
13084 Emacs initially sets `x-resource-name' to the name under which Emacs\n\
13085 was invoked, or to the value specified with the `-name' or `-rn'\n\
13086 switches, if present.");
13087 Vx_resource_name = Qnil;
13088
13089 Vx_nontext_pointer_shape = Qnil;
13090
13091 Vx_mode_pointer_shape = Qnil;
13092
13093 DEFVAR_LISP ("x-busy-pointer-shape", &Vx_busy_pointer_shape,
13094 "The shape of the pointer when Emacs is busy.\n\
13095 This variable takes effect when you create a new frame\n\
13096 or when you set the mouse color.");
13097 Vx_busy_pointer_shape = Qnil;
13098
13099 DEFVAR_BOOL ("display-busy-cursor", &display_busy_cursor_p,
13100 "Non-zero means Emacs displays a busy cursor on window systems.");
13101 display_busy_cursor_p = 1;
13102
13103 DEFVAR_LISP ("busy-cursor-delay", &Vbusy_cursor_delay,
13104 "*Seconds to wait before displaying a busy-cursor.\n\
13105 Value must be an integer or float.");
13106 Vbusy_cursor_delay = make_number (DEFAULT_BUSY_CURSOR_DELAY);
13107
13108 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
13109 &Vx_sensitive_text_pointer_shape,
13110 "The shape of the pointer when over mouse-sensitive text.\n\
13111 This variable takes effect when you create a new frame\n\
13112 or when you set the mouse color.");
13113 Vx_sensitive_text_pointer_shape = Qnil;
13114
13115 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
13116 "A string indicating the foreground color of the cursor box.");
13117 Vx_cursor_fore_pixel = Qnil;
13118
13119 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
13120 "Non-nil if no window manager is in use.\n\
13121 Emacs doesn't try to figure this out; this is always nil\n\
13122 unless you set it to something else.");
13123 /* We don't have any way to find this out, so set it to nil
13124 and maybe the user would like to set it to t. */
13125 Vx_no_window_manager = Qnil;
13126
13127 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
13128 &Vx_pixel_size_width_font_regexp,
13129 "Regexp matching a font name whose width is the same as `PIXEL_SIZE'.\n\
13130 \n\
13131 Since Emacs gets width of a font matching with this regexp from\n\
13132 PIXEL_SIZE field of the name, font finding mechanism gets faster for\n\
13133 such a font. This is especially effective for such large fonts as\n\
13134 Chinese, Japanese, and Korean.");
13135 Vx_pixel_size_width_font_regexp = Qnil;
13136
13137 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
13138 "Time after which cached images are removed from the cache.\n\
13139 When an image has not been displayed this many seconds, remove it\n\
13140 from the image cache. Value must be an integer or nil with nil\n\
13141 meaning don't clear the cache.");
13142 Vimage_cache_eviction_delay = make_number (30 * 60);
13143
13144 DEFVAR_LISP ("w32-bdf-filename-alist",
13145 &Vw32_bdf_filename_alist,
13146 "List of bdf fonts and their corresponding filenames.");
13147 Vw32_bdf_filename_alist = Qnil;
13148
13149 DEFVAR_BOOL ("w32-strict-fontnames",
13150 &w32_strict_fontnames,
13151 "Non-nil means only use fonts that are exact matches for those requested.\n\
13152 Default is nil, which allows old fontnames that are not XLFD compliant,\n\
13153 and allows third-party CJK display to work by specifying false charset\n\
13154 fields to trick Emacs into translating to Big5, SJIS etc.\n\
13155 Setting this to t will prevent wrong fonts being selected when\n\
13156 fontsets are automatically created.");
13157 w32_strict_fontnames = 0;
13158
13159 DEFVAR_BOOL ("w32-strict-painting",
13160 &w32_strict_painting,
13161 "Non-nil means use strict rules for repainting frames.\n\
13162 Set this to nil to get the old behaviour for repainting; this should\n\
13163 only be necessary if the default setting causes problems.");
13164 w32_strict_painting = 1;
13165
13166 DEFVAR_LISP ("w32-system-coding-system",
13167 &Vw32_system_coding_system,
13168 "Coding system used by Windows system functions, such as for font names.");
13169 Vw32_system_coding_system = Qnil;
13170
13171 DEFVAR_LISP ("w32-charset-info-alist",
13172 &Vw32_charset_info_alist,
13173 "Alist linking Emacs character sets to Windows fonts\n\
13174 and codepages. Each entry should be of the form:\n\
13175 \n\
13176 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))\n\
13177 \n\
13178 where CHARSET_NAME is a string used in font names to identify the charset,\n\
13179 WINDOWS_CHARSET is a symbol that can be one of:\n\
13180 w32-charset-ansi, w32-charset-default, w32-charset-symbol,\n\
13181 w32-charset-shiftjis, w32-charset-hangul, w32-charset-gb2312,\n\
13182 w32-charset-chinesebig5, "
13183 #ifdef JOHAB_CHARSET
13184 "w32-charset-johab, w32-charset-hebrew,\n\
13185 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,\n\
13186 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,\n\
13187 w32-charset-russian, w32-charset-mac, w32-charset-baltic,\n"
13188 #endif
13189 #ifdef UNICODE_CHARSET
13190 "w32-charset-unicode, "
13191 #endif
13192 "or w32-charset-oem.\n\
13193 CODEPAGE should be an integer specifying the codepage that should be used\n\
13194 to display the character set, t to do no translation and output as Unicode,\n\
13195 or nil to do no translation and output as 8 bit (or multibyte on far-east\n\
13196 versions of Windows) characters.");
13197 Vw32_charset_info_alist = Qnil;
13198
13199 staticpro (&Qw32_charset_ansi);
13200 Qw32_charset_ansi = intern ("w32-charset-ansi");
13201 staticpro (&Qw32_charset_symbol);
13202 Qw32_charset_symbol = intern ("w32-charset-symbol");
13203 staticpro (&Qw32_charset_shiftjis);
13204 Qw32_charset_shiftjis = intern ("w32-charset-shiftjis");
13205 staticpro (&Qw32_charset_hangul);
13206 Qw32_charset_hangul = intern ("w32-charset-hangul");
13207 staticpro (&Qw32_charset_chinesebig5);
13208 Qw32_charset_chinesebig5 = intern ("w32-charset-chinesebig5");
13209 staticpro (&Qw32_charset_gb2312);
13210 Qw32_charset_gb2312 = intern ("w32-charset-gb2312");
13211 staticpro (&Qw32_charset_oem);
13212 Qw32_charset_oem = intern ("w32-charset-oem");
13213
13214 #ifdef JOHAB_CHARSET
13215 {
13216 static int w32_extra_charsets_defined = 1;
13217 DEFVAR_BOOL ("w32-extra-charsets-defined", w32_extra_charsets_defined, "");
13218
13219 staticpro (&Qw32_charset_johab);
13220 Qw32_charset_johab = intern ("w32-charset-johab");
13221 staticpro (&Qw32_charset_easteurope);
13222 Qw32_charset_easteurope = intern ("w32-charset-easteurope");
13223 staticpro (&Qw32_charset_turkish);
13224 Qw32_charset_turkish = intern ("w32-charset-turkish");
13225 staticpro (&Qw32_charset_baltic);
13226 Qw32_charset_baltic = intern ("w32-charset-baltic");
13227 staticpro (&Qw32_charset_russian);
13228 Qw32_charset_russian = intern ("w32-charset-russian");
13229 staticpro (&Qw32_charset_arabic);
13230 Qw32_charset_arabic = intern ("w32-charset-arabic");
13231 staticpro (&Qw32_charset_greek);
13232 Qw32_charset_greek = intern ("w32-charset-greek");
13233 staticpro (&Qw32_charset_hebrew);
13234 Qw32_charset_hebrew = intern ("w32-charset-hebrew");
13235 staticpro (&Qw32_charset_thai);
13236 Qw32_charset_thai = intern ("w32-charset-thai");
13237 staticpro (&Qw32_charset_mac);
13238 Qw32_charset_mac = intern ("w32-charset-mac");
13239 }
13240 #endif
13241
13242 #ifdef UNICODE_CHARSET
13243 {
13244 static int w32_unicode_charset_defined = 1;
13245 DEFVAR_BOOL ("w32-unicode-charset-defined",
13246 w32_unicode_charset_defined, "");
13247
13248 staticpro (&Qw32_charset_unicode);
13249 Qw32_charset_unicode = intern ("w32-charset-unicode");
13250 #endif
13251
13252 defsubr (&Sx_get_resource);
13253 #if 0 /* NTEMACS_TODO: Port to W32 */
13254 defsubr (&Sx_change_window_property);
13255 defsubr (&Sx_delete_window_property);
13256 defsubr (&Sx_window_property);
13257 #endif
13258 defsubr (&Sxw_display_color_p);
13259 defsubr (&Sx_display_grayscale_p);
13260 defsubr (&Sxw_color_defined_p);
13261 defsubr (&Sxw_color_values);
13262 defsubr (&Sx_server_max_request_size);
13263 defsubr (&Sx_server_vendor);
13264 defsubr (&Sx_server_version);
13265 defsubr (&Sx_display_pixel_width);
13266 defsubr (&Sx_display_pixel_height);
13267 defsubr (&Sx_display_mm_width);
13268 defsubr (&Sx_display_mm_height);
13269 defsubr (&Sx_display_screens);
13270 defsubr (&Sx_display_planes);
13271 defsubr (&Sx_display_color_cells);
13272 defsubr (&Sx_display_visual_class);
13273 defsubr (&Sx_display_backing_store);
13274 defsubr (&Sx_display_save_under);
13275 defsubr (&Sx_parse_geometry);
13276 defsubr (&Sx_create_frame);
13277 defsubr (&Sx_open_connection);
13278 defsubr (&Sx_close_connection);
13279 defsubr (&Sx_display_list);
13280 defsubr (&Sx_synchronize);
13281
13282 /* W32 specific functions */
13283
13284 defsubr (&Sw32_focus_frame);
13285 defsubr (&Sw32_select_font);
13286 defsubr (&Sw32_define_rgb_color);
13287 defsubr (&Sw32_default_color_map);
13288 defsubr (&Sw32_load_color_file);
13289 defsubr (&Sw32_send_sys_command);
13290 defsubr (&Sw32_shell_execute);
13291 defsubr (&Sw32_register_hot_key);
13292 defsubr (&Sw32_unregister_hot_key);
13293 defsubr (&Sw32_registered_hot_keys);
13294 defsubr (&Sw32_reconstruct_hot_key);
13295 defsubr (&Sw32_toggle_lock_key);
13296 defsubr (&Sw32_find_bdf_fonts);
13297
13298 /* Setting callback functions for fontset handler. */
13299 get_font_info_func = w32_get_font_info;
13300
13301 #if 0 /* This function pointer doesn't seem to be used anywhere.
13302 And the pointer assigned has the wrong type, anyway. */
13303 list_fonts_func = w32_list_fonts;
13304 #endif
13305
13306 load_font_func = w32_load_font;
13307 find_ccl_program_func = w32_find_ccl_program;
13308 query_font_func = w32_query_font;
13309 set_frame_fontset_func = x_set_font;
13310 check_window_system_func = check_w32;
13311
13312 #if 0 /* NTEMACS_TODO Image support for W32 */
13313 /* Images. */
13314 Qxbm = intern ("xbm");
13315 staticpro (&Qxbm);
13316 QCtype = intern (":type");
13317 staticpro (&QCtype);
13318 QCalgorithm = intern (":algorithm");
13319 staticpro (&QCalgorithm);
13320 QCheuristic_mask = intern (":heuristic-mask");
13321 staticpro (&QCheuristic_mask);
13322 QCcolor_symbols = intern (":color-symbols");
13323 staticpro (&QCcolor_symbols);
13324 QCascent = intern (":ascent");
13325 staticpro (&QCascent);
13326 QCmargin = intern (":margin");
13327 staticpro (&QCmargin);
13328 QCrelief = intern (":relief");
13329 staticpro (&QCrelief);
13330 Qpostscript = intern ("postscript");
13331 staticpro (&Qpostscript);
13332 QCloader = intern (":loader");
13333 staticpro (&QCloader);
13334 QCbounding_box = intern (":bounding-box");
13335 staticpro (&QCbounding_box);
13336 QCpt_width = intern (":pt-width");
13337 staticpro (&QCpt_width);
13338 QCpt_height = intern (":pt-height");
13339 staticpro (&QCpt_height);
13340 QCindex = intern (":index");
13341 staticpro (&QCindex);
13342 Qpbm = intern ("pbm");
13343 staticpro (&Qpbm);
13344
13345 #if HAVE_XPM
13346 Qxpm = intern ("xpm");
13347 staticpro (&Qxpm);
13348 #endif
13349
13350 #if HAVE_JPEG
13351 Qjpeg = intern ("jpeg");
13352 staticpro (&Qjpeg);
13353 #endif
13354
13355 #if HAVE_TIFF
13356 Qtiff = intern ("tiff");
13357 staticpro (&Qtiff);
13358 #endif
13359
13360 #if HAVE_GIF
13361 Qgif = intern ("gif");
13362 staticpro (&Qgif);
13363 #endif
13364
13365 #if HAVE_PNG
13366 Qpng = intern ("png");
13367 staticpro (&Qpng);
13368 #endif
13369
13370 defsubr (&Sclear_image_cache);
13371
13372 #if GLYPH_DEBUG
13373 defsubr (&Simagep);
13374 defsubr (&Slookup_image);
13375 #endif
13376 #endif /* NTEMACS_TODO */
13377
13378 busy_cursor_atimer = NULL;
13379 busy_cursor_shown_p = 0;
13380
13381 defsubr (&Sx_show_tip);
13382 defsubr (&Sx_hide_tip);
13383 staticpro (&tip_timer);
13384 tip_timer = Qnil;
13385
13386 defsubr (&Sx_file_dialog);
13387 }
13388
13389
13390 void
13391 init_xfns ()
13392 {
13393 image_types = NULL;
13394 Vimage_types = Qnil;
13395
13396 #if 0 /* NTEMACS_TODO : Image support for W32 */
13397 define_image_type (&xbm_type);
13398 define_image_type (&gs_type);
13399 define_image_type (&pbm_type);
13400
13401 #if HAVE_XPM
13402 define_image_type (&xpm_type);
13403 #endif
13404
13405 #if HAVE_JPEG
13406 define_image_type (&jpeg_type);
13407 #endif
13408
13409 #if HAVE_TIFF
13410 define_image_type (&tiff_type);
13411 #endif
13412
13413 #if HAVE_GIF
13414 define_image_type (&gif_type);
13415 #endif
13416
13417 #if HAVE_PNG
13418 define_image_type (&png_type);
13419 #endif
13420 #endif /* NTEMACS_TODO */
13421 }
13422
13423 #undef abort
13424
13425 void
13426 w32_abort()
13427 {
13428 int button;
13429 button = MessageBox (NULL,
13430 "A fatal error has occurred!\n\n"
13431 "Select Abort to exit, Retry to debug, Ignore to continue",
13432 "Emacs Abort Dialog",
13433 MB_ICONEXCLAMATION | MB_TASKMODAL
13434 | MB_SETFOREGROUND | MB_ABORTRETRYIGNORE);
13435 switch (button)
13436 {
13437 case IDRETRY:
13438 DebugBreak ();
13439 break;
13440 case IDIGNORE:
13441 break;
13442 case IDABORT:
13443 default:
13444 abort ();
13445 break;
13446 }
13447 }
13448
13449 /* For convenience when debugging. */
13450 int
13451 w32_last_error()
13452 {
13453 return GetLastError ();
13454 }