1 /* Graphical user interface functions for the Microsoft W32 API.
2 Copyright (C) 1989, 92, 93, 94, 95, 1996, 1997, 1998, 1999
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Added by Kevin Gallo */
33 #include "dispextern.h"
39 #include "intervals.h"
41 #include "blockinput.h"
44 #include "termhooks.h"
49 #include "bitmaps/gray.xbm"
55 #define max(a, b) ((a) > (b) ? (a) : (b))
57 extern void free_frame_menubar ();
58 extern double atof ();
59 extern int w32_console_toggle_lock_key (int vk_code
, Lisp_Object new_state
);
62 /* A definition of XColor for non-X frames. */
63 #ifndef HAVE_X_WINDOWS
66 unsigned short red
, green
, blue
;
72 extern char *lispy_function_keys
[];
74 /* The gray bitmap `bitmaps/gray'. This is done because w32term.c uses
75 it, and including `bitmaps/gray' more than once is a problem when
76 config.h defines `static' as an empty replacement string. */
78 int gray_bitmap_width
= gray_width
;
79 int gray_bitmap_height
= gray_height
;
80 unsigned char *gray_bitmap_bits
= gray_bits
;
82 /* The colormap for converting color names to RGB values */
83 Lisp_Object Vw32_color_map
;
85 /* Non nil if alt key presses are passed on to Windows. */
86 Lisp_Object Vw32_pass_alt_to_system
;
88 /* Non nil if alt key is translated to meta_modifier, nil if it is translated
90 Lisp_Object Vw32_alt_is_meta
;
92 /* If non-zero, the windows virtual key code for an alternative quit key. */
93 Lisp_Object Vw32_quit_key
;
95 /* Non nil if left window key events are passed on to Windows (this only
96 affects whether "tapping" the key opens the Start menu). */
97 Lisp_Object Vw32_pass_lwindow_to_system
;
99 /* Non nil if right window key events are passed on to Windows (this
100 only affects whether "tapping" the key opens the Start menu). */
101 Lisp_Object Vw32_pass_rwindow_to_system
;
103 /* Virtual key code used to generate "phantom" key presses in order
104 to stop system from acting on Windows key events. */
105 Lisp_Object Vw32_phantom_key_code
;
107 /* Modifier associated with the left "Windows" key, or nil to act as a
109 Lisp_Object Vw32_lwindow_modifier
;
111 /* Modifier associated with the right "Windows" key, or nil to act as a
113 Lisp_Object Vw32_rwindow_modifier
;
115 /* Modifier associated with the "Apps" key, or nil to act as a normal
117 Lisp_Object Vw32_apps_modifier
;
119 /* Value is nil if Num Lock acts as a function key. */
120 Lisp_Object Vw32_enable_num_lock
;
122 /* Value is nil if Caps Lock acts as a function key. */
123 Lisp_Object Vw32_enable_caps_lock
;
125 /* Modifier associated with Scroll Lock, or nil to act as a normal key. */
126 Lisp_Object Vw32_scroll_lock_modifier
;
128 /* Switch to control whether we inhibit requests for synthesized bold
129 and italic versions of fonts. */
130 Lisp_Object Vw32_enable_synthesized_fonts
;
132 /* Enable palette management. */
133 Lisp_Object Vw32_enable_palette
;
135 /* Control how close left/right button down events must be to
136 be converted to a middle button down event. */
137 Lisp_Object Vw32_mouse_button_tolerance
;
139 /* Minimum interval between mouse movement (and scroll bar drag)
140 events that are passed on to the event loop. */
141 Lisp_Object Vw32_mouse_move_interval
;
143 /* The name we're using in resource queries. */
144 Lisp_Object Vx_resource_name
;
146 /* Non nil if no window manager is in use. */
147 Lisp_Object Vx_no_window_manager
;
149 /* Non-zero means we're allowed to display a busy cursor. */
151 int display_busy_cursor_p
;
153 /* The background and shape of the mouse pointer, and shape when not
154 over text or in the modeline. */
156 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
157 Lisp_Object Vx_busy_pointer_shape
, Vx_window_horizontal_drag_shape
;
159 /* The shape when over mouse-sensitive text. */
161 Lisp_Object Vx_sensitive_text_pointer_shape
;
163 /* Color of chars displayed in cursor box. */
165 Lisp_Object Vx_cursor_fore_pixel
;
167 /* Nonzero if using Windows. */
169 static int w32_in_use
;
171 /* Search path for bitmap files. */
173 Lisp_Object Vx_bitmap_file_path
;
175 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
177 Lisp_Object Vx_pixel_size_width_font_regexp
;
179 /* Alist of bdf fonts and the files that define them. */
180 Lisp_Object Vw32_bdf_filename_alist
;
182 Lisp_Object Vw32_system_coding_system
;
184 /* A flag to control whether fonts are matched strictly or not. */
185 int w32_strict_fontnames
;
187 /* A flag to control whether we should only repaint if GetUpdateRect
188 indicates there is an update region. */
189 int w32_strict_painting
;
191 /* Associative list linking character set strings to Windows codepages. */
192 Lisp_Object Vw32_charset_info_alist
;
194 /* VIETNAMESE_CHARSET is not defined in some versions of MSVC. */
195 #ifndef VIETNAMESE_CHARSET
196 #define VIETNAMESE_CHARSET 163
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.
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")
211 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
213 (cons (buffer-substring (match-beginning 1) (match-end 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")
222 (kill-region start (point)))
223 ;; Write a new symbol initialization section.
225 (insert (format " %s = intern (\"" (car symbol-list)))
226 (let ((start (point)))
227 (insert (substring (car symbol-list) 1))
228 (subst-char-in-region start (point) ?_ ?-))
229 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
230 (setq symbol-list (cdr symbol-list)))))
234 /*&&& symbols declared here &&&*/
235 Lisp_Object Qauto_raise
;
236 Lisp_Object Qauto_lower
;
238 Lisp_Object Qborder_color
;
239 Lisp_Object Qborder_width
;
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
;
251 Lisp_Object Qmouse_color
;
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
;
272 Lisp_Object Qcontrol
;
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_hangeul
;
280 Lisp_Object Qw32_charset_gb2312
;
281 Lisp_Object Qw32_charset_chinesebig5
;
282 Lisp_Object Qw32_charset_oem
;
284 #ifndef JOHAB_CHARSET
285 #define JOHAB_CHARSET 130
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_vietnamese
;
296 Lisp_Object Qw32_charset_thai
;
297 Lisp_Object Qw32_charset_johab
;
298 Lisp_Object Qw32_charset_mac
;
301 #ifdef UNICODE_CHARSET
302 Lisp_Object Qw32_charset_unicode
;
305 extern Lisp_Object Qtop
;
306 extern Lisp_Object Qdisplay
;
307 extern Lisp_Object Qtool_bar_lines
;
309 /* State variables for emulating a three button mouse. */
314 static int button_state
= 0;
315 static W32Msg saved_mouse_button_msg
;
316 static unsigned mouse_button_timer
; /* non-zero when timer is active */
317 static W32Msg saved_mouse_move_msg
;
318 static unsigned mouse_move_timer
;
320 /* W95 mousewheel handler */
321 unsigned int msh_mousewheel
= 0;
323 #define MOUSE_BUTTON_ID 1
324 #define MOUSE_MOVE_ID 2
326 /* The below are defined in frame.c. */
328 extern Lisp_Object Qheight
, Qminibuffer
, Qname
, Qonly
, Qwidth
;
329 extern Lisp_Object Qunsplittable
, Qmenu_bar_lines
, Qbuffer_predicate
, Qtitle
;
330 extern Lisp_Object Qtool_bar_lines
;
332 extern Lisp_Object Vwindow_system_version
;
334 Lisp_Object Qface_set_after_frame_default
;
336 /* From w32term.c. */
337 extern Lisp_Object Vw32_num_mouse_buttons
;
338 extern Lisp_Object Vw32_recognize_altgr
;
341 /* Error if we are not connected to MS-Windows. */
346 error ("MS-Windows not in use or not initialized");
349 /* Nonzero if we can use mouse menus.
350 You should not call this unless HAVE_MENUS is defined. */
358 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
359 and checking validity for W32. */
362 check_x_frame (frame
)
368 frame
= selected_frame
;
369 CHECK_LIVE_FRAME (frame
, 0);
371 if (! FRAME_W32_P (f
))
372 error ("non-w32 frame used");
376 /* Let the user specify an display with a frame.
377 nil stands for the selected frame--or, if that is not a w32 frame,
378 the first display on the list. */
380 static struct w32_display_info
*
381 check_x_display_info (frame
)
386 struct frame
*sf
= XFRAME (selected_frame
);
388 if (FRAME_W32_P (sf
) && FRAME_LIVE_P (sf
))
389 return FRAME_W32_DISPLAY_INFO (sf
);
391 return &one_w32_display_info
;
393 else if (STRINGP (frame
))
394 return x_display_info_for_name (frame
);
399 CHECK_LIVE_FRAME (frame
, 0);
401 if (! FRAME_W32_P (f
))
402 error ("non-w32 frame used");
403 return FRAME_W32_DISPLAY_INFO (f
);
407 /* Return the Emacs frame-object corresponding to an w32 window.
408 It could be the frame's main window or an icon window. */
410 /* This function can be called during GC, so use GC_xxx type test macros. */
413 x_window_to_frame (dpyinfo
, wdesc
)
414 struct w32_display_info
*dpyinfo
;
417 Lisp_Object tail
, frame
;
420 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
423 if (!GC_FRAMEP (frame
))
426 if (!FRAME_W32_P (f
) || FRAME_W32_DISPLAY_INFO (f
) != dpyinfo
)
428 if (f
->output_data
.w32
->busy_window
== wdesc
)
431 /* TODO: Check tooltips when supported. */
432 if (FRAME_W32_WINDOW (f
) == wdesc
)
440 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
441 id, which is just an int that this section returns. Bitmaps are
442 reference counted so they can be shared among frames.
444 Bitmap indices are guaranteed to be > 0, so a negative number can
445 be used to indicate no bitmap.
447 If you use x_create_bitmap_from_data, then you must keep track of
448 the bitmaps yourself. That is, creating a bitmap from the same
449 data more than once will not be caught. */
452 /* Functions to access the contents of a bitmap, given an id. */
455 x_bitmap_height (f
, id
)
459 return FRAME_W32_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
463 x_bitmap_width (f
, id
)
467 return FRAME_W32_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
471 x_bitmap_pixmap (f
, id
)
475 return (int) FRAME_W32_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
479 /* Allocate a new bitmap record. Returns index of new record. */
482 x_allocate_bitmap_record (f
)
485 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
488 if (dpyinfo
->bitmaps
== NULL
)
490 dpyinfo
->bitmaps_size
= 10;
492 = (struct w32_bitmap_record
*) xmalloc (dpyinfo
->bitmaps_size
* sizeof (struct w32_bitmap_record
));
493 dpyinfo
->bitmaps_last
= 1;
497 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
498 return ++dpyinfo
->bitmaps_last
;
500 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
501 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
504 dpyinfo
->bitmaps_size
*= 2;
506 = (struct w32_bitmap_record
*) xrealloc (dpyinfo
->bitmaps
,
507 dpyinfo
->bitmaps_size
* sizeof (struct w32_bitmap_record
));
508 return ++dpyinfo
->bitmaps_last
;
511 /* Add one reference to the reference count of the bitmap with id ID. */
514 x_reference_bitmap (f
, id
)
518 ++FRAME_W32_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
521 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
524 x_create_bitmap_from_data (f
, bits
, width
, height
)
527 unsigned int width
, height
;
529 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
533 bitmap
= CreateBitmap (width
, height
,
534 FRAME_W32_DISPLAY_INFO (XFRAME (frame
))->n_planes
,
535 FRAME_W32_DISPLAY_INFO (XFRAME (frame
))->n_cbits
,
541 id
= x_allocate_bitmap_record (f
);
542 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
543 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
544 dpyinfo
->bitmaps
[id
- 1].hinst
= NULL
;
545 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
546 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
547 dpyinfo
->bitmaps
[id
- 1].height
= height
;
548 dpyinfo
->bitmaps
[id
- 1].width
= width
;
553 /* Create bitmap from file FILE for frame F. */
556 x_create_bitmap_from_file (f
, file
)
561 #if 0 /* TODO : bitmap support */
562 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
563 unsigned int width
, height
;
565 int xhot
, yhot
, result
, id
;
571 /* Look for an existing bitmap with the same name. */
572 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
574 if (dpyinfo
->bitmaps
[id
].refcount
575 && dpyinfo
->bitmaps
[id
].file
576 && !strcmp (dpyinfo
->bitmaps
[id
].file
, (char *) XSTRING (file
)->data
))
578 ++dpyinfo
->bitmaps
[id
].refcount
;
583 /* Search bitmap-file-path for the file, if appropriate. */
584 fd
= openp (Vx_bitmap_file_path
, file
, "", &found
, 0);
589 filename
= (char *) XSTRING (found
)->data
;
591 hinst
= LoadLibraryEx (filename
, NULL
, LOAD_LIBRARY_AS_DATAFILE
);
597 result
= XReadBitmapFile (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
598 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
599 if (result
!= BitmapSuccess
)
602 id
= x_allocate_bitmap_record (f
);
603 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
604 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
605 dpyinfo
->bitmaps
[id
- 1].file
= (char *) xmalloc (XSTRING (file
)->size
+ 1);
606 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
607 dpyinfo
->bitmaps
[id
- 1].height
= height
;
608 dpyinfo
->bitmaps
[id
- 1].width
= width
;
609 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, XSTRING (file
)->data
);
615 /* Remove reference to bitmap with id number ID. */
618 x_destroy_bitmap (f
, id
)
622 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
626 --dpyinfo
->bitmaps
[id
- 1].refcount
;
627 if (dpyinfo
->bitmaps
[id
- 1].refcount
== 0)
630 DeleteObject (dpyinfo
->bitmaps
[id
- 1].pixmap
);
631 if (dpyinfo
->bitmaps
[id
- 1].file
)
633 xfree (dpyinfo
->bitmaps
[id
- 1].file
);
634 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
641 /* Free all the bitmaps for the display specified by DPYINFO. */
644 x_destroy_all_bitmaps (dpyinfo
)
645 struct w32_display_info
*dpyinfo
;
648 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++)
649 if (dpyinfo
->bitmaps
[i
].refcount
> 0)
651 DeleteObject (dpyinfo
->bitmaps
[i
].pixmap
);
652 if (dpyinfo
->bitmaps
[i
].file
)
653 xfree (dpyinfo
->bitmaps
[i
].file
);
655 dpyinfo
->bitmaps_last
= 0;
658 /* Connect the frame-parameter names for W32 frames
659 to the ways of passing the parameter values to the window system.
661 The name of a parameter, as a Lisp symbol,
662 has an `x-frame-parameter' property which is an integer in Lisp
663 but can be interpreted as an `enum x_frame_parm' in C. */
667 X_PARM_FOREGROUND_COLOR
,
668 X_PARM_BACKGROUND_COLOR
,
675 X_PARM_INTERNAL_BORDER_WIDTH
,
679 X_PARM_VERT_SCROLL_BAR
,
681 X_PARM_MENU_BAR_LINES
685 struct x_frame_parm_table
688 void (*setter
) P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
691 /* TODO: Native Input Method support; see x_create_im. */
692 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
693 static void x_set_line_spacing
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
694 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
695 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
696 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
697 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
698 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
699 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
700 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
701 void x_set_font
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
702 void x_set_border_width
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
703 void x_set_internal_border_width
P_ ((struct frame
*, Lisp_Object
,
705 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
706 void x_set_autoraise
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
707 void x_set_autolower
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
708 void x_set_vertical_scroll_bars
P_ ((struct frame
*, Lisp_Object
,
710 void x_set_visibility
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
711 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
712 void x_set_scroll_bar_width
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
713 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
714 void x_set_unsplittable
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
715 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
716 static void x_set_screen_gamma
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
718 static struct x_frame_parm_table x_frame_parms
[] =
720 "auto-raise", x_set_autoraise
,
721 "auto-lower", x_set_autolower
,
722 "background-color", x_set_background_color
,
723 "border-color", x_set_border_color
,
724 "border-width", x_set_border_width
,
725 "cursor-color", x_set_cursor_color
,
726 "cursor-type", x_set_cursor_type
,
728 "foreground-color", x_set_foreground_color
,
729 "icon-name", x_set_icon_name
,
730 "icon-type", x_set_icon_type
,
731 "internal-border-width", x_set_internal_border_width
,
732 "menu-bar-lines", x_set_menu_bar_lines
,
733 "mouse-color", x_set_mouse_color
,
734 "name", x_explicitly_set_name
,
735 "scroll-bar-width", x_set_scroll_bar_width
,
736 "title", x_set_title
,
737 "unsplittable", x_set_unsplittable
,
738 "vertical-scroll-bars", x_set_vertical_scroll_bars
,
739 "visibility", x_set_visibility
,
740 "tool-bar-lines", x_set_tool_bar_lines
,
741 "screen-gamma", x_set_screen_gamma
,
742 "line-spacing", x_set_line_spacing
745 /* Attach the `x-frame-parameter' properties to
746 the Lisp symbol names of parameters relevant to W32. */
749 init_x_parm_symbols ()
753 for (i
= 0; i
< sizeof (x_frame_parms
) / sizeof (x_frame_parms
[0]); i
++)
754 Fput (intern (x_frame_parms
[i
].name
), Qx_frame_parameter
,
758 /* Change the parameters of frame F as specified by ALIST.
759 If a parameter is not specially recognized, do nothing;
760 otherwise call the `x_set_...' function for that parameter. */
763 x_set_frame_parameters (f
, alist
)
769 /* If both of these parameters are present, it's more efficient to
770 set them both at once. So we wait until we've looked at the
771 entire list before we set them. */
775 Lisp_Object left
, top
;
777 /* Same with these. */
778 Lisp_Object icon_left
, icon_top
;
780 /* Record in these vectors all the parms specified. */
784 int left_no_change
= 0, top_no_change
= 0;
785 int icon_left_no_change
= 0, icon_top_no_change
= 0;
787 struct gcpro gcpro1
, gcpro2
;
790 for (tail
= alist
; CONSP (tail
); tail
= Fcdr (tail
))
793 parms
= (Lisp_Object
*) alloca (i
* sizeof (Lisp_Object
));
794 values
= (Lisp_Object
*) alloca (i
* sizeof (Lisp_Object
));
796 /* Extract parm names and values into those vectors. */
799 for (tail
= alist
; CONSP (tail
); tail
= Fcdr (tail
))
804 parms
[i
] = Fcar (elt
);
805 values
[i
] = Fcdr (elt
);
808 /* TAIL and ALIST are not used again below here. */
811 GCPRO2 (*parms
, *values
);
815 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
816 because their values appear in VALUES and strings are not valid. */
817 top
= left
= Qunbound
;
818 icon_left
= icon_top
= Qunbound
;
820 /* Provide default values for HEIGHT and WIDTH. */
821 if (FRAME_NEW_WIDTH (f
))
822 width
= FRAME_NEW_WIDTH (f
);
824 width
= FRAME_WIDTH (f
);
826 if (FRAME_NEW_HEIGHT (f
))
827 height
= FRAME_NEW_HEIGHT (f
);
829 height
= FRAME_HEIGHT (f
);
831 /* Process foreground_color and background_color before anything else.
832 They are independent of other properties, but other properties (e.g.,
833 cursor_color) are dependent upon them. */
834 for (p
= 0; p
< i
; p
++)
836 Lisp_Object prop
, val
;
840 if (EQ (prop
, Qforeground_color
) || EQ (prop
, Qbackground_color
))
842 register Lisp_Object param_index
, old_value
;
844 param_index
= Fget (prop
, Qx_frame_parameter
);
845 old_value
= get_frame_param (f
, prop
);
846 store_frame_param (f
, prop
, val
);
847 if (NATNUMP (param_index
)
848 && (XFASTINT (param_index
)
849 < sizeof (x_frame_parms
)/sizeof (x_frame_parms
[0])))
850 (*x_frame_parms
[XINT (param_index
)].setter
)(f
, val
, old_value
);
854 /* Now process them in reverse of specified order. */
855 for (i
--; i
>= 0; i
--)
857 Lisp_Object prop
, val
;
862 if (EQ (prop
, Qwidth
) && NUMBERP (val
))
863 width
= XFASTINT (val
);
864 else if (EQ (prop
, Qheight
) && NUMBERP (val
))
865 height
= XFASTINT (val
);
866 else if (EQ (prop
, Qtop
))
868 else if (EQ (prop
, Qleft
))
870 else if (EQ (prop
, Qicon_top
))
872 else if (EQ (prop
, Qicon_left
))
874 else if (EQ (prop
, Qforeground_color
) || EQ (prop
, Qbackground_color
))
875 /* Processed above. */
879 register Lisp_Object param_index
, old_value
;
881 param_index
= Fget (prop
, Qx_frame_parameter
);
882 old_value
= get_frame_param (f
, prop
);
883 store_frame_param (f
, prop
, val
);
884 if (NATNUMP (param_index
)
885 && (XFASTINT (param_index
)
886 < sizeof (x_frame_parms
)/sizeof (x_frame_parms
[0])))
887 (*x_frame_parms
[XINT (param_index
)].setter
)(f
, val
, old_value
);
891 /* Don't die if just one of these was set. */
892 if (EQ (left
, Qunbound
))
895 if (f
->output_data
.w32
->left_pos
< 0)
896 left
= Fcons (Qplus
, Fcons (make_number (f
->output_data
.w32
->left_pos
), Qnil
));
898 XSETINT (left
, f
->output_data
.w32
->left_pos
);
900 if (EQ (top
, Qunbound
))
903 if (f
->output_data
.w32
->top_pos
< 0)
904 top
= Fcons (Qplus
, Fcons (make_number (f
->output_data
.w32
->top_pos
), Qnil
));
906 XSETINT (top
, f
->output_data
.w32
->top_pos
);
909 /* If one of the icon positions was not set, preserve or default it. */
910 if (EQ (icon_left
, Qunbound
) || ! INTEGERP (icon_left
))
912 icon_left_no_change
= 1;
913 icon_left
= Fcdr (Fassq (Qicon_left
, f
->param_alist
));
914 if (NILP (icon_left
))
915 XSETINT (icon_left
, 0);
917 if (EQ (icon_top
, Qunbound
) || ! INTEGERP (icon_top
))
919 icon_top_no_change
= 1;
920 icon_top
= Fcdr (Fassq (Qicon_top
, f
->param_alist
));
922 XSETINT (icon_top
, 0);
925 /* Don't set these parameters unless they've been explicitly
926 specified. The window might be mapped or resized while we're in
927 this function, and we don't want to override that unless the lisp
928 code has asked for it.
930 Don't set these parameters unless they actually differ from the
931 window's current parameters; the window may not actually exist
936 check_frame_size (f
, &height
, &width
);
938 XSETFRAME (frame
, f
);
940 if (width
!= FRAME_WIDTH (f
)
941 || height
!= FRAME_HEIGHT (f
)
942 || FRAME_NEW_HEIGHT (f
) || FRAME_NEW_WIDTH (f
))
943 Fset_frame_size (frame
, make_number (width
), make_number (height
));
945 if ((!NILP (left
) || !NILP (top
))
946 && ! (left_no_change
&& top_no_change
)
947 && ! (NUMBERP (left
) && XINT (left
) == f
->output_data
.w32
->left_pos
948 && NUMBERP (top
) && XINT (top
) == f
->output_data
.w32
->top_pos
))
953 /* Record the signs. */
954 f
->output_data
.w32
->size_hint_flags
&= ~ (XNegative
| YNegative
);
955 if (EQ (left
, Qminus
))
956 f
->output_data
.w32
->size_hint_flags
|= XNegative
;
957 else if (INTEGERP (left
))
959 leftpos
= XINT (left
);
961 f
->output_data
.w32
->size_hint_flags
|= XNegative
;
963 else if (CONSP (left
) && EQ (XCAR (left
), Qminus
)
964 && CONSP (XCDR (left
))
965 && INTEGERP (XCAR (XCDR (left
))))
967 leftpos
= - XINT (XCAR (XCDR (left
)));
968 f
->output_data
.w32
->size_hint_flags
|= XNegative
;
970 else if (CONSP (left
) && EQ (XCAR (left
), Qplus
)
971 && CONSP (XCDR (left
))
972 && INTEGERP (XCAR (XCDR (left
))))
974 leftpos
= XINT (XCAR (XCDR (left
)));
977 if (EQ (top
, Qminus
))
978 f
->output_data
.w32
->size_hint_flags
|= YNegative
;
979 else if (INTEGERP (top
))
983 f
->output_data
.w32
->size_hint_flags
|= YNegative
;
985 else if (CONSP (top
) && EQ (XCAR (top
), Qminus
)
986 && CONSP (XCDR (top
))
987 && INTEGERP (XCAR (XCDR (top
))))
989 toppos
= - XINT (XCAR (XCDR (top
)));
990 f
->output_data
.w32
->size_hint_flags
|= YNegative
;
992 else if (CONSP (top
) && EQ (XCAR (top
), Qplus
)
993 && CONSP (XCDR (top
))
994 && INTEGERP (XCAR (XCDR (top
))))
996 toppos
= XINT (XCAR (XCDR (top
)));
1000 /* Store the numeric value of the position. */
1001 f
->output_data
.w32
->top_pos
= toppos
;
1002 f
->output_data
.w32
->left_pos
= leftpos
;
1004 f
->output_data
.w32
->win_gravity
= NorthWestGravity
;
1006 /* Actually set that position, and convert to absolute. */
1007 x_set_offset (f
, leftpos
, toppos
, -1);
1010 if ((!NILP (icon_left
) || !NILP (icon_top
))
1011 && ! (icon_left_no_change
&& icon_top_no_change
))
1012 x_wm_set_icon_position (f
, XINT (icon_left
), XINT (icon_top
));
1018 /* Store the screen positions of frame F into XPTR and YPTR.
1019 These are the positions of the containing window manager window,
1020 not Emacs's own window. */
1023 x_real_positions (f
, xptr
, yptr
)
1032 GetClientRect(FRAME_W32_WINDOW(f
), &rect
);
1033 AdjustWindowRect(&rect
, f
->output_data
.w32
->dwStyle
, FRAME_EXTERNAL_MENU_BAR(f
));
1039 ClientToScreen (FRAME_W32_WINDOW(f
), &pt
);
1045 /* Insert a description of internally-recorded parameters of frame X
1046 into the parameter alist *ALISTPTR that is to be given to the user.
1047 Only parameters that are specific to W32
1048 and whose values are not correctly recorded in the frame's
1049 param_alist need to be considered here. */
1052 x_report_frame_params (f
, alistptr
)
1054 Lisp_Object
*alistptr
;
1059 /* Represent negative positions (off the top or left screen edge)
1060 in a way that Fmodify_frame_parameters will understand correctly. */
1061 XSETINT (tem
, f
->output_data
.w32
->left_pos
);
1062 if (f
->output_data
.w32
->left_pos
>= 0)
1063 store_in_alist (alistptr
, Qleft
, tem
);
1065 store_in_alist (alistptr
, Qleft
, Fcons (Qplus
, Fcons (tem
, Qnil
)));
1067 XSETINT (tem
, f
->output_data
.w32
->top_pos
);
1068 if (f
->output_data
.w32
->top_pos
>= 0)
1069 store_in_alist (alistptr
, Qtop
, tem
);
1071 store_in_alist (alistptr
, Qtop
, Fcons (Qplus
, Fcons (tem
, Qnil
)));
1073 store_in_alist (alistptr
, Qborder_width
,
1074 make_number (f
->output_data
.w32
->border_width
));
1075 store_in_alist (alistptr
, Qinternal_border_width
,
1076 make_number (f
->output_data
.w32
->internal_border_width
));
1077 sprintf (buf
, "%ld", (long) FRAME_W32_WINDOW (f
));
1078 store_in_alist (alistptr
, Qwindow_id
,
1079 build_string (buf
));
1080 store_in_alist (alistptr
, Qicon_name
, f
->icon_name
);
1081 FRAME_SAMPLE_VISIBILITY (f
);
1082 store_in_alist (alistptr
, Qvisibility
,
1083 (FRAME_VISIBLE_P (f
) ? Qt
1084 : FRAME_ICONIFIED_P (f
) ? Qicon
: Qnil
));
1085 store_in_alist (alistptr
, Qdisplay
,
1086 XCAR (FRAME_W32_DISPLAY_INFO (f
)->name_list_element
));
1090 DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color
, Sw32_define_rgb_color
, 4, 4, 0,
1091 "Convert RGB numbers to a windows color reference and associate with NAME (a string).\n\
1092 This adds or updates a named color to w32-color-map, making it available for use.\n\
1093 The original entry's RGB ref is returned, or nil if the entry is new.")
1094 (red
, green
, blue
, name
)
1095 Lisp_Object red
, green
, blue
, name
;
1098 Lisp_Object oldrgb
= Qnil
;
1101 CHECK_NUMBER (red
, 0);
1102 CHECK_NUMBER (green
, 0);
1103 CHECK_NUMBER (blue
, 0);
1104 CHECK_STRING (name
, 0);
1106 XSET (rgb
, Lisp_Int
, RGB(XUINT (red
), XUINT (green
), XUINT (blue
)));
1110 /* replace existing entry in w32-color-map or add new entry. */
1111 entry
= Fassoc (name
, Vw32_color_map
);
1114 entry
= Fcons (name
, rgb
);
1115 Vw32_color_map
= Fcons (entry
, Vw32_color_map
);
1119 oldrgb
= Fcdr (entry
);
1120 Fsetcdr (entry
, rgb
);
1128 DEFUN ("w32-load-color-file", Fw32_load_color_file
, Sw32_load_color_file
, 1, 1, 0,
1129 "Create an alist of color entries from an external file (ie. rgb.txt).\n\
1130 Assign this value to w32-color-map to replace the existing color map.\n\
1132 The file should define one named RGB color per line like so:\
1134 where R,G,B are numbers between 0 and 255 and name is an arbitrary string.")
1136 Lisp_Object filename
;
1139 Lisp_Object cmap
= Qnil
;
1140 Lisp_Object abspath
;
1142 CHECK_STRING (filename
, 0);
1143 abspath
= Fexpand_file_name (filename
, Qnil
);
1145 fp
= fopen (XSTRING (filename
)->data
, "rt");
1149 int red
, green
, blue
;
1154 while (fgets (buf
, sizeof (buf
), fp
) != NULL
) {
1155 if (sscanf (buf
, "%u %u %u %n", &red
, &green
, &blue
, &num
) == 3)
1157 char *name
= buf
+ num
;
1158 num
= strlen (name
) - 1;
1159 if (name
[num
] == '\n')
1161 cmap
= Fcons (Fcons (build_string (name
),
1162 make_number (RGB (red
, green
, blue
))),
1174 /* The default colors for the w32 color map */
1175 typedef struct colormap_t
1181 colormap_t w32_color_map
[] =
1183 {"snow" , PALETTERGB (255,250,250)},
1184 {"ghost white" , PALETTERGB (248,248,255)},
1185 {"GhostWhite" , PALETTERGB (248,248,255)},
1186 {"white smoke" , PALETTERGB (245,245,245)},
1187 {"WhiteSmoke" , PALETTERGB (245,245,245)},
1188 {"gainsboro" , PALETTERGB (220,220,220)},
1189 {"floral white" , PALETTERGB (255,250,240)},
1190 {"FloralWhite" , PALETTERGB (255,250,240)},
1191 {"old lace" , PALETTERGB (253,245,230)},
1192 {"OldLace" , PALETTERGB (253,245,230)},
1193 {"linen" , PALETTERGB (250,240,230)},
1194 {"antique white" , PALETTERGB (250,235,215)},
1195 {"AntiqueWhite" , PALETTERGB (250,235,215)},
1196 {"papaya whip" , PALETTERGB (255,239,213)},
1197 {"PapayaWhip" , PALETTERGB (255,239,213)},
1198 {"blanched almond" , PALETTERGB (255,235,205)},
1199 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
1200 {"bisque" , PALETTERGB (255,228,196)},
1201 {"peach puff" , PALETTERGB (255,218,185)},
1202 {"PeachPuff" , PALETTERGB (255,218,185)},
1203 {"navajo white" , PALETTERGB (255,222,173)},
1204 {"NavajoWhite" , PALETTERGB (255,222,173)},
1205 {"moccasin" , PALETTERGB (255,228,181)},
1206 {"cornsilk" , PALETTERGB (255,248,220)},
1207 {"ivory" , PALETTERGB (255,255,240)},
1208 {"lemon chiffon" , PALETTERGB (255,250,205)},
1209 {"LemonChiffon" , PALETTERGB (255,250,205)},
1210 {"seashell" , PALETTERGB (255,245,238)},
1211 {"honeydew" , PALETTERGB (240,255,240)},
1212 {"mint cream" , PALETTERGB (245,255,250)},
1213 {"MintCream" , PALETTERGB (245,255,250)},
1214 {"azure" , PALETTERGB (240,255,255)},
1215 {"alice blue" , PALETTERGB (240,248,255)},
1216 {"AliceBlue" , PALETTERGB (240,248,255)},
1217 {"lavender" , PALETTERGB (230,230,250)},
1218 {"lavender blush" , PALETTERGB (255,240,245)},
1219 {"LavenderBlush" , PALETTERGB (255,240,245)},
1220 {"misty rose" , PALETTERGB (255,228,225)},
1221 {"MistyRose" , PALETTERGB (255,228,225)},
1222 {"white" , PALETTERGB (255,255,255)},
1223 {"black" , PALETTERGB ( 0, 0, 0)},
1224 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
1225 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
1226 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
1227 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
1228 {"dim gray" , PALETTERGB (105,105,105)},
1229 {"DimGray" , PALETTERGB (105,105,105)},
1230 {"dim grey" , PALETTERGB (105,105,105)},
1231 {"DimGrey" , PALETTERGB (105,105,105)},
1232 {"slate gray" , PALETTERGB (112,128,144)},
1233 {"SlateGray" , PALETTERGB (112,128,144)},
1234 {"slate grey" , PALETTERGB (112,128,144)},
1235 {"SlateGrey" , PALETTERGB (112,128,144)},
1236 {"light slate gray" , PALETTERGB (119,136,153)},
1237 {"LightSlateGray" , PALETTERGB (119,136,153)},
1238 {"light slate grey" , PALETTERGB (119,136,153)},
1239 {"LightSlateGrey" , PALETTERGB (119,136,153)},
1240 {"gray" , PALETTERGB (190,190,190)},
1241 {"grey" , PALETTERGB (190,190,190)},
1242 {"light grey" , PALETTERGB (211,211,211)},
1243 {"LightGrey" , PALETTERGB (211,211,211)},
1244 {"light gray" , PALETTERGB (211,211,211)},
1245 {"LightGray" , PALETTERGB (211,211,211)},
1246 {"midnight blue" , PALETTERGB ( 25, 25,112)},
1247 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
1248 {"navy" , PALETTERGB ( 0, 0,128)},
1249 {"navy blue" , PALETTERGB ( 0, 0,128)},
1250 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
1251 {"cornflower blue" , PALETTERGB (100,149,237)},
1252 {"CornflowerBlue" , PALETTERGB (100,149,237)},
1253 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
1254 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
1255 {"slate blue" , PALETTERGB (106, 90,205)},
1256 {"SlateBlue" , PALETTERGB (106, 90,205)},
1257 {"medium slate blue" , PALETTERGB (123,104,238)},
1258 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
1259 {"light slate blue" , PALETTERGB (132,112,255)},
1260 {"LightSlateBlue" , PALETTERGB (132,112,255)},
1261 {"medium blue" , PALETTERGB ( 0, 0,205)},
1262 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
1263 {"royal blue" , PALETTERGB ( 65,105,225)},
1264 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
1265 {"blue" , PALETTERGB ( 0, 0,255)},
1266 {"dodger blue" , PALETTERGB ( 30,144,255)},
1267 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
1268 {"deep sky blue" , PALETTERGB ( 0,191,255)},
1269 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
1270 {"sky blue" , PALETTERGB (135,206,235)},
1271 {"SkyBlue" , PALETTERGB (135,206,235)},
1272 {"light sky blue" , PALETTERGB (135,206,250)},
1273 {"LightSkyBlue" , PALETTERGB (135,206,250)},
1274 {"steel blue" , PALETTERGB ( 70,130,180)},
1275 {"SteelBlue" , PALETTERGB ( 70,130,180)},
1276 {"light steel blue" , PALETTERGB (176,196,222)},
1277 {"LightSteelBlue" , PALETTERGB (176,196,222)},
1278 {"light blue" , PALETTERGB (173,216,230)},
1279 {"LightBlue" , PALETTERGB (173,216,230)},
1280 {"powder blue" , PALETTERGB (176,224,230)},
1281 {"PowderBlue" , PALETTERGB (176,224,230)},
1282 {"pale turquoise" , PALETTERGB (175,238,238)},
1283 {"PaleTurquoise" , PALETTERGB (175,238,238)},
1284 {"dark turquoise" , PALETTERGB ( 0,206,209)},
1285 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
1286 {"medium turquoise" , PALETTERGB ( 72,209,204)},
1287 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
1288 {"turquoise" , PALETTERGB ( 64,224,208)},
1289 {"cyan" , PALETTERGB ( 0,255,255)},
1290 {"light cyan" , PALETTERGB (224,255,255)},
1291 {"LightCyan" , PALETTERGB (224,255,255)},
1292 {"cadet blue" , PALETTERGB ( 95,158,160)},
1293 {"CadetBlue" , PALETTERGB ( 95,158,160)},
1294 {"medium aquamarine" , PALETTERGB (102,205,170)},
1295 {"MediumAquamarine" , PALETTERGB (102,205,170)},
1296 {"aquamarine" , PALETTERGB (127,255,212)},
1297 {"dark green" , PALETTERGB ( 0,100, 0)},
1298 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
1299 {"dark olive green" , PALETTERGB ( 85,107, 47)},
1300 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
1301 {"dark sea green" , PALETTERGB (143,188,143)},
1302 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
1303 {"sea green" , PALETTERGB ( 46,139, 87)},
1304 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
1305 {"medium sea green" , PALETTERGB ( 60,179,113)},
1306 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
1307 {"light sea green" , PALETTERGB ( 32,178,170)},
1308 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
1309 {"pale green" , PALETTERGB (152,251,152)},
1310 {"PaleGreen" , PALETTERGB (152,251,152)},
1311 {"spring green" , PALETTERGB ( 0,255,127)},
1312 {"SpringGreen" , PALETTERGB ( 0,255,127)},
1313 {"lawn green" , PALETTERGB (124,252, 0)},
1314 {"LawnGreen" , PALETTERGB (124,252, 0)},
1315 {"green" , PALETTERGB ( 0,255, 0)},
1316 {"chartreuse" , PALETTERGB (127,255, 0)},
1317 {"medium spring green" , PALETTERGB ( 0,250,154)},
1318 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
1319 {"green yellow" , PALETTERGB (173,255, 47)},
1320 {"GreenYellow" , PALETTERGB (173,255, 47)},
1321 {"lime green" , PALETTERGB ( 50,205, 50)},
1322 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
1323 {"yellow green" , PALETTERGB (154,205, 50)},
1324 {"YellowGreen" , PALETTERGB (154,205, 50)},
1325 {"forest green" , PALETTERGB ( 34,139, 34)},
1326 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
1327 {"olive drab" , PALETTERGB (107,142, 35)},
1328 {"OliveDrab" , PALETTERGB (107,142, 35)},
1329 {"dark khaki" , PALETTERGB (189,183,107)},
1330 {"DarkKhaki" , PALETTERGB (189,183,107)},
1331 {"khaki" , PALETTERGB (240,230,140)},
1332 {"pale goldenrod" , PALETTERGB (238,232,170)},
1333 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
1334 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
1335 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
1336 {"light yellow" , PALETTERGB (255,255,224)},
1337 {"LightYellow" , PALETTERGB (255,255,224)},
1338 {"yellow" , PALETTERGB (255,255, 0)},
1339 {"gold" , PALETTERGB (255,215, 0)},
1340 {"light goldenrod" , PALETTERGB (238,221,130)},
1341 {"LightGoldenrod" , PALETTERGB (238,221,130)},
1342 {"goldenrod" , PALETTERGB (218,165, 32)},
1343 {"dark goldenrod" , PALETTERGB (184,134, 11)},
1344 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
1345 {"rosy brown" , PALETTERGB (188,143,143)},
1346 {"RosyBrown" , PALETTERGB (188,143,143)},
1347 {"indian red" , PALETTERGB (205, 92, 92)},
1348 {"IndianRed" , PALETTERGB (205, 92, 92)},
1349 {"saddle brown" , PALETTERGB (139, 69, 19)},
1350 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
1351 {"sienna" , PALETTERGB (160, 82, 45)},
1352 {"peru" , PALETTERGB (205,133, 63)},
1353 {"burlywood" , PALETTERGB (222,184,135)},
1354 {"beige" , PALETTERGB (245,245,220)},
1355 {"wheat" , PALETTERGB (245,222,179)},
1356 {"sandy brown" , PALETTERGB (244,164, 96)},
1357 {"SandyBrown" , PALETTERGB (244,164, 96)},
1358 {"tan" , PALETTERGB (210,180,140)},
1359 {"chocolate" , PALETTERGB (210,105, 30)},
1360 {"firebrick" , PALETTERGB (178,34, 34)},
1361 {"brown" , PALETTERGB (165,42, 42)},
1362 {"dark salmon" , PALETTERGB (233,150,122)},
1363 {"DarkSalmon" , PALETTERGB (233,150,122)},
1364 {"salmon" , PALETTERGB (250,128,114)},
1365 {"light salmon" , PALETTERGB (255,160,122)},
1366 {"LightSalmon" , PALETTERGB (255,160,122)},
1367 {"orange" , PALETTERGB (255,165, 0)},
1368 {"dark orange" , PALETTERGB (255,140, 0)},
1369 {"DarkOrange" , PALETTERGB (255,140, 0)},
1370 {"coral" , PALETTERGB (255,127, 80)},
1371 {"light coral" , PALETTERGB (240,128,128)},
1372 {"LightCoral" , PALETTERGB (240,128,128)},
1373 {"tomato" , PALETTERGB (255, 99, 71)},
1374 {"orange red" , PALETTERGB (255, 69, 0)},
1375 {"OrangeRed" , PALETTERGB (255, 69, 0)},
1376 {"red" , PALETTERGB (255, 0, 0)},
1377 {"hot pink" , PALETTERGB (255,105,180)},
1378 {"HotPink" , PALETTERGB (255,105,180)},
1379 {"deep pink" , PALETTERGB (255, 20,147)},
1380 {"DeepPink" , PALETTERGB (255, 20,147)},
1381 {"pink" , PALETTERGB (255,192,203)},
1382 {"light pink" , PALETTERGB (255,182,193)},
1383 {"LightPink" , PALETTERGB (255,182,193)},
1384 {"pale violet red" , PALETTERGB (219,112,147)},
1385 {"PaleVioletRed" , PALETTERGB (219,112,147)},
1386 {"maroon" , PALETTERGB (176, 48, 96)},
1387 {"medium violet red" , PALETTERGB (199, 21,133)},
1388 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
1389 {"violet red" , PALETTERGB (208, 32,144)},
1390 {"VioletRed" , PALETTERGB (208, 32,144)},
1391 {"magenta" , PALETTERGB (255, 0,255)},
1392 {"violet" , PALETTERGB (238,130,238)},
1393 {"plum" , PALETTERGB (221,160,221)},
1394 {"orchid" , PALETTERGB (218,112,214)},
1395 {"medium orchid" , PALETTERGB (186, 85,211)},
1396 {"MediumOrchid" , PALETTERGB (186, 85,211)},
1397 {"dark orchid" , PALETTERGB (153, 50,204)},
1398 {"DarkOrchid" , PALETTERGB (153, 50,204)},
1399 {"dark violet" , PALETTERGB (148, 0,211)},
1400 {"DarkViolet" , PALETTERGB (148, 0,211)},
1401 {"blue violet" , PALETTERGB (138, 43,226)},
1402 {"BlueViolet" , PALETTERGB (138, 43,226)},
1403 {"purple" , PALETTERGB (160, 32,240)},
1404 {"medium purple" , PALETTERGB (147,112,219)},
1405 {"MediumPurple" , PALETTERGB (147,112,219)},
1406 {"thistle" , PALETTERGB (216,191,216)},
1407 {"gray0" , PALETTERGB ( 0, 0, 0)},
1408 {"grey0" , PALETTERGB ( 0, 0, 0)},
1409 {"dark grey" , PALETTERGB (169,169,169)},
1410 {"DarkGrey" , PALETTERGB (169,169,169)},
1411 {"dark gray" , PALETTERGB (169,169,169)},
1412 {"DarkGray" , PALETTERGB (169,169,169)},
1413 {"dark blue" , PALETTERGB ( 0, 0,139)},
1414 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
1415 {"dark cyan" , PALETTERGB ( 0,139,139)},
1416 {"DarkCyan" , PALETTERGB ( 0,139,139)},
1417 {"dark magenta" , PALETTERGB (139, 0,139)},
1418 {"DarkMagenta" , PALETTERGB (139, 0,139)},
1419 {"dark red" , PALETTERGB (139, 0, 0)},
1420 {"DarkRed" , PALETTERGB (139, 0, 0)},
1421 {"light green" , PALETTERGB (144,238,144)},
1422 {"LightGreen" , PALETTERGB (144,238,144)},
1425 DEFUN ("w32-default-color-map", Fw32_default_color_map
, Sw32_default_color_map
,
1426 0, 0, 0, "Return the default color map.")
1430 colormap_t
*pc
= w32_color_map
;
1437 for (i
= 0; i
< sizeof (w32_color_map
) / sizeof (w32_color_map
[0]);
1439 cmap
= Fcons (Fcons (build_string (pc
->name
),
1440 make_number (pc
->colorref
)),
1449 w32_to_x_color (rgb
)
1454 CHECK_NUMBER (rgb
, 0);
1458 color
= Frassq (rgb
, Vw32_color_map
);
1463 return (Fcar (color
));
1469 w32_color_map_lookup (colorname
)
1472 Lisp_Object tail
, ret
= Qnil
;
1476 for (tail
= Vw32_color_map
; !NILP (tail
); tail
= Fcdr (tail
))
1478 register Lisp_Object elt
, tem
;
1481 if (!CONSP (elt
)) continue;
1485 if (lstrcmpi (XSTRING (tem
)->data
, colorname
) == 0)
1487 ret
= XUINT (Fcdr (elt
));
1501 x_to_w32_color (colorname
)
1504 register Lisp_Object tail
, ret
= Qnil
;
1508 if (colorname
[0] == '#')
1510 /* Could be an old-style RGB Device specification. */
1513 color
= colorname
+ 1;
1515 size
= strlen(color
);
1516 if (size
== 3 || size
== 6 || size
== 9 || size
== 12)
1524 for (i
= 0; i
< 3; i
++)
1528 unsigned long value
;
1530 /* The check for 'x' in the following conditional takes into
1531 account the fact that strtol allows a "0x" in front of
1532 our numbers, and we don't. */
1533 if (!isxdigit(color
[0]) || color
[1] == 'x')
1537 value
= strtoul(color
, &end
, 16);
1539 if (errno
== ERANGE
|| end
- color
!= size
)
1544 value
= value
* 0x10;
1555 colorval
|= (value
<< pos
);
1566 else if (strnicmp(colorname
, "rgb:", 4) == 0)
1574 color
= colorname
+ 4;
1575 for (i
= 0; i
< 3; i
++)
1578 unsigned long value
;
1580 /* The check for 'x' in the following conditional takes into
1581 account the fact that strtol allows a "0x" in front of
1582 our numbers, and we don't. */
1583 if (!isxdigit(color
[0]) || color
[1] == 'x')
1585 value
= strtoul(color
, &end
, 16);
1586 if (errno
== ERANGE
)
1588 switch (end
- color
)
1591 value
= value
* 0x10 + value
;
1604 if (value
== ULONG_MAX
)
1606 colorval
|= (value
<< pos
);
1620 else if (strnicmp(colorname
, "rgbi:", 5) == 0)
1622 /* This is an RGB Intensity specification. */
1629 color
= colorname
+ 5;
1630 for (i
= 0; i
< 3; i
++)
1636 value
= strtod(color
, &end
);
1637 if (errno
== ERANGE
)
1639 if (value
< 0.0 || value
> 1.0)
1641 val
= (UINT
)(0x100 * value
);
1642 /* We used 0x100 instead of 0xFF to give an continuous
1643 range between 0.0 and 1.0 inclusive. The next statement
1644 fixes the 1.0 case. */
1647 colorval
|= (val
<< pos
);
1661 /* I am not going to attempt to handle any of the CIE color schemes
1662 or TekHVC, since I don't know the algorithms for conversion to
1665 /* If we fail to lookup the color name in w32_color_map, then check the
1666 colorname to see if it can be crudely approximated: If the X color
1667 ends in a number (e.g., "darkseagreen2"), strip the number and
1668 return the result of looking up the base color name. */
1669 ret
= w32_color_map_lookup (colorname
);
1672 int len
= strlen (colorname
);
1674 if (isdigit (colorname
[len
- 1]))
1676 char *ptr
, *approx
= alloca (len
);
1678 strcpy (approx
, colorname
);
1679 ptr
= &approx
[len
- 1];
1680 while (ptr
> approx
&& isdigit (*ptr
))
1683 ret
= w32_color_map_lookup (approx
);
1693 w32_regenerate_palette (FRAME_PTR f
)
1695 struct w32_palette_entry
* list
;
1696 LOGPALETTE
* log_palette
;
1697 HPALETTE new_palette
;
1700 /* don't bother trying to create palette if not supported */
1701 if (! FRAME_W32_DISPLAY_INFO (f
)->has_palette
)
1704 log_palette
= (LOGPALETTE
*)
1705 alloca (sizeof (LOGPALETTE
) +
1706 FRAME_W32_DISPLAY_INFO (f
)->num_colors
* sizeof (PALETTEENTRY
));
1707 log_palette
->palVersion
= 0x300;
1708 log_palette
->palNumEntries
= FRAME_W32_DISPLAY_INFO (f
)->num_colors
;
1710 list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1712 i
< FRAME_W32_DISPLAY_INFO (f
)->num_colors
;
1713 i
++, list
= list
->next
)
1714 log_palette
->palPalEntry
[i
] = list
->entry
;
1716 new_palette
= CreatePalette (log_palette
);
1720 if (FRAME_W32_DISPLAY_INFO (f
)->palette
)
1721 DeleteObject (FRAME_W32_DISPLAY_INFO (f
)->palette
);
1722 FRAME_W32_DISPLAY_INFO (f
)->palette
= new_palette
;
1724 /* Realize display palette and garbage all frames. */
1725 release_frame_dc (f
, get_frame_dc (f
));
1730 #define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1731 #define SET_W32_COLOR(pe, color) \
1734 pe.peRed = GetRValue (color); \
1735 pe.peGreen = GetGValue (color); \
1736 pe.peBlue = GetBValue (color); \
1741 /* Keep these around in case we ever want to track color usage. */
1743 w32_map_color (FRAME_PTR f
, COLORREF color
)
1745 struct w32_palette_entry
* list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1747 if (NILP (Vw32_enable_palette
))
1750 /* check if color is already mapped */
1753 if (W32_COLOR (list
->entry
) == color
)
1761 /* not already mapped, so add to list and recreate Windows palette */
1762 list
= (struct w32_palette_entry
*)
1763 xmalloc (sizeof (struct w32_palette_entry
));
1764 SET_W32_COLOR (list
->entry
, color
);
1766 list
->next
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1767 FRAME_W32_DISPLAY_INFO (f
)->color_list
= list
;
1768 FRAME_W32_DISPLAY_INFO (f
)->num_colors
++;
1770 /* set flag that palette must be regenerated */
1771 FRAME_W32_DISPLAY_INFO (f
)->regen_palette
= TRUE
;
1775 w32_unmap_color (FRAME_PTR f
, COLORREF color
)
1777 struct w32_palette_entry
* list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1778 struct w32_palette_entry
**prev
= &FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1780 if (NILP (Vw32_enable_palette
))
1783 /* check if color is already mapped */
1786 if (W32_COLOR (list
->entry
) == color
)
1788 if (--list
->refcount
== 0)
1792 FRAME_W32_DISPLAY_INFO (f
)->num_colors
--;
1802 /* set flag that palette must be regenerated */
1803 FRAME_W32_DISPLAY_INFO (f
)->regen_palette
= TRUE
;
1808 /* Gamma-correct COLOR on frame F. */
1811 gamma_correct (f
, color
)
1817 *color
= PALETTERGB (
1818 pow (GetRValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5,
1819 pow (GetGValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5,
1820 pow (GetBValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5);
1825 /* Decide if color named COLOR is valid for the display associated with
1826 the selected frame; if so, return the rgb values in COLOR_DEF.
1827 If ALLOC is nonzero, allocate a new colormap cell. */
1830 w32_defined_color (f
, color
, color_def
, alloc
)
1836 register Lisp_Object tem
;
1837 COLORREF w32_color_ref
;
1839 tem
= x_to_w32_color (color
);
1845 /* Apply gamma correction. */
1846 w32_color_ref
= XUINT (tem
);
1847 gamma_correct (f
, &w32_color_ref
);
1848 XSETINT (tem
, w32_color_ref
);
1851 /* Map this color to the palette if it is enabled. */
1852 if (!NILP (Vw32_enable_palette
))
1854 struct w32_palette_entry
* entry
=
1855 one_w32_display_info
.color_list
;
1856 struct w32_palette_entry
** prev
=
1857 &one_w32_display_info
.color_list
;
1859 /* check if color is already mapped */
1862 if (W32_COLOR (entry
->entry
) == XUINT (tem
))
1864 prev
= &entry
->next
;
1865 entry
= entry
->next
;
1868 if (entry
== NULL
&& alloc
)
1870 /* not already mapped, so add to list */
1871 entry
= (struct w32_palette_entry
*)
1872 xmalloc (sizeof (struct w32_palette_entry
));
1873 SET_W32_COLOR (entry
->entry
, XUINT (tem
));
1876 one_w32_display_info
.num_colors
++;
1878 /* set flag that palette must be regenerated */
1879 one_w32_display_info
.regen_palette
= TRUE
;
1882 /* Ensure COLORREF value is snapped to nearest color in (default)
1883 palette by simulating the PALETTERGB macro. This works whether
1884 or not the display device has a palette. */
1885 w32_color_ref
= XUINT (tem
) | 0x2000000;
1887 color_def
->pixel
= w32_color_ref
;
1888 color_def
->red
= GetRValue (w32_color_ref
);
1889 color_def
->green
= GetGValue (w32_color_ref
);
1890 color_def
->blue
= GetBValue (w32_color_ref
);
1900 /* Given a string ARG naming a color, compute a pixel value from it
1901 suitable for screen F.
1902 If F is not a color screen, return DEF (default) regardless of what
1906 x_decode_color (f
, arg
, def
)
1913 CHECK_STRING (arg
, 0);
1915 if (strcmp (XSTRING (arg
)->data
, "black") == 0)
1916 return BLACK_PIX_DEFAULT (f
);
1917 else if (strcmp (XSTRING (arg
)->data
, "white") == 0)
1918 return WHITE_PIX_DEFAULT (f
);
1920 if ((FRAME_W32_DISPLAY_INFO (f
)->n_planes
* FRAME_W32_DISPLAY_INFO (f
)->n_cbits
) == 1)
1923 /* w32_defined_color is responsible for coping with failures
1924 by looking for a near-miss. */
1925 if (w32_defined_color (f
, XSTRING (arg
)->data
, &cdef
, 1))
1928 /* defined_color failed; return an ultimate default. */
1932 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1933 the previous value of that parameter, NEW_VALUE is the new value. */
1936 x_set_line_spacing (f
, new_value
, old_value
)
1938 Lisp_Object new_value
, old_value
;
1940 if (NILP (new_value
))
1941 f
->extra_line_spacing
= 0;
1942 else if (NATNUMP (new_value
))
1943 f
->extra_line_spacing
= XFASTINT (new_value
);
1945 Fsignal (Qerror
, Fcons (build_string ("Invalid line-spacing"),
1946 Fcons (new_value
, Qnil
)));
1947 if (FRAME_VISIBLE_P (f
))
1952 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1953 the previous value of that parameter, NEW_VALUE is the new value. */
1956 x_set_screen_gamma (f
, new_value
, old_value
)
1958 Lisp_Object new_value
, old_value
;
1960 if (NILP (new_value
))
1962 else if (NUMBERP (new_value
) && XFLOATINT (new_value
) > 0)
1963 /* The value 0.4545 is the normal viewing gamma. */
1964 f
->gamma
= 1.0 / (0.4545 * XFLOATINT (new_value
));
1966 Fsignal (Qerror
, Fcons (build_string ("Invalid screen-gamma"),
1967 Fcons (new_value
, Qnil
)));
1969 clear_face_cache (0);
1973 /* Functions called only from `x_set_frame_param'
1974 to set individual parameters.
1976 If FRAME_W32_WINDOW (f) is 0,
1977 the frame is being created and its window does not exist yet.
1978 In that case, just record the parameter's new value
1979 in the standard place; do not attempt to change the window. */
1982 x_set_foreground_color (f
, arg
, oldval
)
1984 Lisp_Object arg
, oldval
;
1986 FRAME_FOREGROUND_PIXEL (f
)
1987 = x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1989 if (FRAME_W32_WINDOW (f
) != 0)
1991 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
1992 if (FRAME_VISIBLE_P (f
))
1998 x_set_background_color (f
, arg
, oldval
)
2000 Lisp_Object arg
, oldval
;
2002 FRAME_BACKGROUND_PIXEL (f
)
2003 = x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
2005 if (FRAME_W32_WINDOW (f
) != 0)
2007 SetWindowLong (FRAME_W32_WINDOW (f
), WND_BACKGROUND_INDEX
,
2008 FRAME_BACKGROUND_PIXEL (f
));
2010 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
2012 if (FRAME_VISIBLE_P (f
))
2018 x_set_mouse_color (f
, arg
, oldval
)
2020 Lisp_Object arg
, oldval
;
2022 Cursor cursor
, nontext_cursor
, mode_cursor
, cross_cursor
;
2026 if (!EQ (Qnil
, arg
))
2027 f
->output_data
.w32
->mouse_pixel
2028 = x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
2029 mask_color
= FRAME_BACKGROUND_PIXEL (f
);
2031 /* Don't let pointers be invisible. */
2032 if (mask_color
== f
->output_data
.w32
->mouse_pixel
2033 && mask_color
== FRAME_BACKGROUND_PIXEL (f
))
2034 f
->output_data
.w32
->mouse_pixel
= FRAME_FOREGROUND_PIXEL (f
);
2036 #if 0 /* TODO : cursor changes */
2039 /* It's not okay to crash if the user selects a screwy cursor. */
2040 count
= x_catch_errors (FRAME_W32_DISPLAY (f
));
2042 if (!EQ (Qnil
, Vx_pointer_shape
))
2044 CHECK_NUMBER (Vx_pointer_shape
, 0);
2045 cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XINT (Vx_pointer_shape
));
2048 cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_xterm
);
2049 x_check_errors (FRAME_W32_DISPLAY (f
), "bad text pointer cursor: %s");
2051 if (!EQ (Qnil
, Vx_nontext_pointer_shape
))
2053 CHECK_NUMBER (Vx_nontext_pointer_shape
, 0);
2054 nontext_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
2055 XINT (Vx_nontext_pointer_shape
));
2058 nontext_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_left_ptr
);
2059 x_check_errors (FRAME_W32_DISPLAY (f
), "bad nontext pointer cursor: %s");
2061 if (!EQ (Qnil
, Vx_busy_pointer_shape
))
2063 CHECK_NUMBER (Vx_busy_pointer_shape
, 0);
2064 busy_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
2065 XINT (Vx_busy_pointer_shape
));
2068 busy_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_watch
);
2069 x_check_errors (FRAME_W32_DISPLAY (f
), "bad busy pointer cursor: %s");
2071 x_check_errors (FRAME_W32_DISPLAY (f
), "bad nontext pointer cursor: %s");
2072 if (!EQ (Qnil
, Vx_mode_pointer_shape
))
2074 CHECK_NUMBER (Vx_mode_pointer_shape
, 0);
2075 mode_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
2076 XINT (Vx_mode_pointer_shape
));
2079 mode_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_xterm
);
2080 x_check_errors (FRAME_W32_DISPLAY (f
), "bad modeline pointer cursor: %s");
2082 if (!EQ (Qnil
, Vx_sensitive_text_pointer_shape
))
2084 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
, 0);
2086 = XCreateFontCursor (FRAME_W32_DISPLAY (f
),
2087 XINT (Vx_sensitive_text_pointer_shape
));
2090 cross_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_crosshair
);
2092 if (!NILP (Vx_window_horizontal_drag_shape
))
2094 CHECK_NUMBER (Vx_window_horizontal_drag_shape
, 0);
2095 horizontal_drag_cursor
2096 = XCreateFontCursor (FRAME_X_DISPLAY (f
),
2097 XINT (Vx_window_horizontal_drag_shape
));
2100 horizontal_drag_cursor
2101 = XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_sb_h_double_arrow
);
2103 /* Check and report errors with the above calls. */
2104 x_check_errors (FRAME_W32_DISPLAY (f
), "can't set cursor shape: %s");
2105 x_uncatch_errors (FRAME_W32_DISPLAY (f
), count
);
2108 XColor fore_color
, back_color
;
2110 fore_color
.pixel
= f
->output_data
.w32
->mouse_pixel
;
2111 back_color
.pixel
= mask_color
;
2112 XQueryColor (FRAME_W32_DISPLAY (f
),
2113 DefaultColormap (FRAME_W32_DISPLAY (f
),
2114 DefaultScreen (FRAME_W32_DISPLAY (f
))),
2116 XQueryColor (FRAME_W32_DISPLAY (f
),
2117 DefaultColormap (FRAME_W32_DISPLAY (f
),
2118 DefaultScreen (FRAME_W32_DISPLAY (f
))),
2120 XRecolorCursor (FRAME_W32_DISPLAY (f
), cursor
,
2121 &fore_color
, &back_color
);
2122 XRecolorCursor (FRAME_W32_DISPLAY (f
), nontext_cursor
,
2123 &fore_color
, &back_color
);
2124 XRecolorCursor (FRAME_W32_DISPLAY (f
), mode_cursor
,
2125 &fore_color
, &back_color
);
2126 XRecolorCursor (FRAME_W32_DISPLAY (f
), cross_cursor
,
2127 &fore_color
, &back_color
);
2128 XRecolorCursor (FRAME_W32_DISPLAY (f
), busy_cursor
,
2129 &fore_color
, &back_color
);
2132 if (FRAME_W32_WINDOW (f
) != 0)
2133 XDefineCursor (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
), cursor
);
2135 if (cursor
!= f
->output_data
.w32
->text_cursor
&& f
->output_data
.w32
->text_cursor
!= 0)
2136 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->text_cursor
);
2137 f
->output_data
.w32
->text_cursor
= cursor
;
2139 if (nontext_cursor
!= f
->output_data
.w32
->nontext_cursor
2140 && f
->output_data
.w32
->nontext_cursor
!= 0)
2141 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->nontext_cursor
);
2142 f
->output_data
.w32
->nontext_cursor
= nontext_cursor
;
2144 if (busy_cursor
!= f
->output_data
.w32
->busy_cursor
2145 && f
->output_data
.w32
->busy_cursor
!= 0)
2146 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->busy_cursor
);
2147 f
->output_data
.w32
->busy_cursor
= busy_cursor
;
2149 if (mode_cursor
!= f
->output_data
.w32
->modeline_cursor
2150 && f
->output_data
.w32
->modeline_cursor
!= 0)
2151 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->modeline_cursor
);
2152 f
->output_data
.w32
->modeline_cursor
= mode_cursor
;
2154 if (cross_cursor
!= f
->output_data
.w32
->cross_cursor
2155 && f
->output_data
.w32
->cross_cursor
!= 0)
2156 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->cross_cursor
);
2157 f
->output_data
.w32
->cross_cursor
= cross_cursor
;
2159 XFlush (FRAME_W32_DISPLAY (f
));
2162 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
2166 /* Defined in w32term.c. */
2167 void x_update_cursor (struct frame
*f
, int on_p
);
2170 x_set_cursor_color (f
, arg
, oldval
)
2172 Lisp_Object arg
, oldval
;
2174 unsigned long fore_pixel
, pixel
;
2176 if (!NILP (Vx_cursor_fore_pixel
))
2177 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
2178 WHITE_PIX_DEFAULT (f
));
2180 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2182 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
2184 /* Make sure that the cursor color differs from the background color. */
2185 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
2187 pixel
= f
->output_data
.w32
->mouse_pixel
;
2188 if (pixel
== fore_pixel
)
2189 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2192 FRAME_FOREGROUND_PIXEL (f
) = fore_pixel
;
2193 f
->output_data
.w32
->cursor_pixel
= pixel
;
2195 if (FRAME_W32_WINDOW (f
) != 0)
2197 if (FRAME_VISIBLE_P (f
))
2199 x_update_cursor (f
, 0);
2200 x_update_cursor (f
, 1);
2204 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
2207 /* Set the border-color of frame F to pixel value PIX.
2208 Note that this does not fully take effect if done before
2211 x_set_border_pixel (f
, pix
)
2215 f
->output_data
.w32
->border_pixel
= pix
;
2217 if (FRAME_W32_WINDOW (f
) != 0 && f
->output_data
.w32
->border_width
> 0)
2219 if (FRAME_VISIBLE_P (f
))
2224 /* Set the border-color of frame F to value described by ARG.
2225 ARG can be a string naming a color.
2226 The border-color is used for the border that is drawn by the server.
2227 Note that this does not fully take effect if done before
2228 F has a window; it must be redone when the window is created. */
2231 x_set_border_color (f
, arg
, oldval
)
2233 Lisp_Object arg
, oldval
;
2237 CHECK_STRING (arg
, 0);
2238 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
2239 x_set_border_pixel (f
, pix
);
2240 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
2243 /* Value is the internal representation of the specified cursor type
2244 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
2245 of the bar cursor. */
2247 enum text_cursor_kinds
2248 x_specified_cursor_type (arg
, width
)
2252 enum text_cursor_kinds type
;
2259 else if (CONSP (arg
)
2260 && EQ (XCAR (arg
), Qbar
)
2261 && INTEGERP (XCDR (arg
))
2262 && XINT (XCDR (arg
)) >= 0)
2265 *width
= XINT (XCDR (arg
));
2267 else if (NILP (arg
))
2270 /* Treat anything unknown as "box cursor".
2271 It was bad to signal an error; people have trouble fixing
2272 .Xdefaults with Emacs, when it has something bad in it. */
2273 type
= FILLED_BOX_CURSOR
;
2279 x_set_cursor_type (f
, arg
, oldval
)
2281 Lisp_Object arg
, oldval
;
2285 FRAME_DESIRED_CURSOR (f
) = x_specified_cursor_type (arg
, &width
);
2286 f
->output_data
.w32
->cursor_width
= width
;
2288 /* Make sure the cursor gets redrawn. This is overkill, but how
2289 often do people change cursor types? */
2290 update_mode_lines
++;
2294 x_set_icon_type (f
, arg
, oldval
)
2296 Lisp_Object arg
, oldval
;
2300 if (NILP (arg
) && NILP (oldval
))
2303 if (STRINGP (arg
) && STRINGP (oldval
)
2304 && EQ (Fstring_equal (oldval
, arg
), Qt
))
2307 if (SYMBOLP (arg
) && SYMBOLP (oldval
) && EQ (arg
, oldval
))
2312 result
= x_bitmap_icon (f
, arg
);
2316 error ("No icon window available");
2322 /* Return non-nil if frame F wants a bitmap icon. */
2330 tem
= assq_no_quit (Qicon_type
, f
->param_alist
);
2338 x_set_icon_name (f
, arg
, oldval
)
2340 Lisp_Object arg
, oldval
;
2346 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
2349 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
2355 if (f
->output_data
.w32
->icon_bitmap
!= 0)
2360 result
= x_text_icon (f
,
2361 (char *) XSTRING ((!NILP (f
->icon_name
)
2370 error ("No icon window available");
2373 /* If the window was unmapped (and its icon was mapped),
2374 the new icon is not mapped, so map the window in its stead. */
2375 if (FRAME_VISIBLE_P (f
))
2377 #ifdef USE_X_TOOLKIT
2378 XtPopup (f
->output_data
.w32
->widget
, XtGrabNone
);
2380 XMapWindow (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
));
2383 XFlush (FRAME_W32_DISPLAY (f
));
2388 extern Lisp_Object
x_new_font ();
2389 extern Lisp_Object
x_new_fontset();
2392 x_set_font (f
, arg
, oldval
)
2394 Lisp_Object arg
, oldval
;
2397 Lisp_Object fontset_name
;
2400 CHECK_STRING (arg
, 1);
2402 fontset_name
= Fquery_fontset (arg
, Qnil
);
2405 result
= (STRINGP (fontset_name
)
2406 ? x_new_fontset (f
, XSTRING (fontset_name
)->data
)
2407 : x_new_font (f
, XSTRING (arg
)->data
));
2410 if (EQ (result
, Qnil
))
2411 error ("Font `%s' is not defined", XSTRING (arg
)->data
);
2412 else if (EQ (result
, Qt
))
2413 error ("The characters of the given font have varying widths");
2414 else if (STRINGP (result
))
2416 store_frame_param (f
, Qfont
, result
);
2417 recompute_basic_faces (f
);
2422 do_pending_window_change (0);
2424 /* Don't call `face-set-after-frame-default' when faces haven't been
2425 initialized yet. This is the case when called from
2426 Fx_create_frame. In that case, the X widget or window doesn't
2427 exist either, and we can end up in x_report_frame_params with a
2428 null widget which gives a segfault. */
2429 if (FRAME_FACE_CACHE (f
))
2431 XSETFRAME (frame
, f
);
2432 call1 (Qface_set_after_frame_default
, frame
);
2437 x_set_border_width (f
, arg
, oldval
)
2439 Lisp_Object arg
, oldval
;
2441 CHECK_NUMBER (arg
, 0);
2443 if (XINT (arg
) == f
->output_data
.w32
->border_width
)
2446 if (FRAME_W32_WINDOW (f
) != 0)
2447 error ("Cannot change the border width of a window");
2449 f
->output_data
.w32
->border_width
= XINT (arg
);
2453 x_set_internal_border_width (f
, arg
, oldval
)
2455 Lisp_Object arg
, oldval
;
2457 int old
= f
->output_data
.w32
->internal_border_width
;
2459 CHECK_NUMBER (arg
, 0);
2460 f
->output_data
.w32
->internal_border_width
= XINT (arg
);
2461 if (f
->output_data
.w32
->internal_border_width
< 0)
2462 f
->output_data
.w32
->internal_border_width
= 0;
2464 if (f
->output_data
.w32
->internal_border_width
== old
)
2467 if (FRAME_W32_WINDOW (f
) != 0)
2469 x_set_window_size (f
, 0, f
->width
, f
->height
);
2470 SET_FRAME_GARBAGED (f
);
2471 do_pending_window_change (0);
2476 x_set_visibility (f
, value
, oldval
)
2478 Lisp_Object value
, oldval
;
2481 XSETFRAME (frame
, f
);
2484 Fmake_frame_invisible (frame
, Qt
);
2485 else if (EQ (value
, Qicon
))
2486 Ficonify_frame (frame
);
2488 Fmake_frame_visible (frame
);
2492 /* Change window heights in windows rooted in WINDOW by N lines. */
2495 x_change_window_heights (window
, n
)
2499 struct window
*w
= XWINDOW (window
);
2501 XSETFASTINT (w
->top
, XFASTINT (w
->top
) + n
);
2502 XSETFASTINT (w
->height
, XFASTINT (w
->height
) - n
);
2504 if (INTEGERP (w
->orig_top
))
2505 XSETFASTINT (w
->orig_top
, XFASTINT (w
->orig_top
) + n
);
2506 if (INTEGERP (w
->orig_height
))
2507 XSETFASTINT (w
->orig_height
, XFASTINT (w
->orig_height
) - n
);
2509 /* Handle just the top child in a vertical split. */
2510 if (!NILP (w
->vchild
))
2511 x_change_window_heights (w
->vchild
, n
);
2513 /* Adjust all children in a horizontal split. */
2514 for (window
= w
->hchild
; !NILP (window
); window
= w
->next
)
2516 w
= XWINDOW (window
);
2517 x_change_window_heights (window
, n
);
2522 x_set_menu_bar_lines (f
, value
, oldval
)
2524 Lisp_Object value
, oldval
;
2527 int olines
= FRAME_MENU_BAR_LINES (f
);
2529 /* Right now, menu bars don't work properly in minibuf-only frames;
2530 most of the commands try to apply themselves to the minibuffer
2531 frame itself, and get an error because you can't switch buffers
2532 in or split the minibuffer window. */
2533 if (FRAME_MINIBUF_ONLY_P (f
))
2536 if (INTEGERP (value
))
2537 nlines
= XINT (value
);
2541 FRAME_MENU_BAR_LINES (f
) = 0;
2543 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
2546 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
2547 free_frame_menubar (f
);
2548 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
2550 /* Adjust the frame size so that the client (text) dimensions
2551 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
2553 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2554 do_pending_window_change (0);
2560 /* Set the number of lines used for the tool bar of frame F to VALUE.
2561 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2562 is the old number of tool bar lines. This function changes the
2563 height of all windows on frame F to match the new tool bar height.
2564 The frame's height doesn't change. */
2567 x_set_tool_bar_lines (f
, value
, oldval
)
2569 Lisp_Object value
, oldval
;
2571 int delta
, nlines
, root_height
;
2572 Lisp_Object root_window
;
2574 /* Use VALUE only if an integer >= 0. */
2575 if (INTEGERP (value
) && XINT (value
) >= 0)
2576 nlines
= XFASTINT (value
);
2580 /* Make sure we redisplay all windows in this frame. */
2581 ++windows_or_buffers_changed
;
2583 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
2585 /* Don't resize the tool-bar to more than we have room for. */
2586 root_window
= FRAME_ROOT_WINDOW (f
);
2587 root_height
= XINT (XWINDOW (root_window
)->height
);
2588 if (root_height
- delta
< 1)
2590 delta
= root_height
- 1;
2591 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
2594 FRAME_TOOL_BAR_LINES (f
) = nlines
;
2595 x_change_window_heights (root_window
, delta
);
2598 /* We also have to make sure that the internal border at the top of
2599 the frame, below the menu bar or tool bar, is redrawn when the
2600 tool bar disappears. This is so because the internal border is
2601 below the tool bar if one is displayed, but is below the menu bar
2602 if there isn't a tool bar. The tool bar draws into the area
2603 below the menu bar. */
2604 if (FRAME_W32_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
2608 clear_current_matrices (f
);
2609 updating_frame
= NULL
;
2612 /* If the tool bar gets smaller, the internal border below it
2613 has to be cleared. It was formerly part of the display
2614 of the larger tool bar, and updating windows won't clear it. */
2617 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
2618 int width
= PIXEL_WIDTH (f
);
2619 int y
= nlines
* CANON_Y_UNIT (f
);
2623 HDC hdc
= get_frame_dc (f
);
2624 w32_clear_area (f
, hdc
, 0, y
, width
, height
);
2625 release_frame_dc (f
, hdc
);
2632 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2635 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2636 name; if NAME is a string, set F's name to NAME and set
2637 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2639 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2640 suggesting a new name, which lisp code should override; if
2641 F->explicit_name is set, ignore the new name; otherwise, set it. */
2644 x_set_name (f
, name
, explicit)
2649 /* Make sure that requests from lisp code override requests from
2650 Emacs redisplay code. */
2653 /* If we're switching from explicit to implicit, we had better
2654 update the mode lines and thereby update the title. */
2655 if (f
->explicit_name
&& NILP (name
))
2656 update_mode_lines
= 1;
2658 f
->explicit_name
= ! NILP (name
);
2660 else if (f
->explicit_name
)
2663 /* If NAME is nil, set the name to the w32_id_name. */
2666 /* Check for no change needed in this very common case
2667 before we do any consing. */
2668 if (!strcmp (FRAME_W32_DISPLAY_INFO (f
)->w32_id_name
,
2669 XSTRING (f
->name
)->data
))
2671 name
= build_string (FRAME_W32_DISPLAY_INFO (f
)->w32_id_name
);
2674 CHECK_STRING (name
, 0);
2676 /* Don't change the name if it's already NAME. */
2677 if (! NILP (Fstring_equal (name
, f
->name
)))
2682 /* For setting the frame title, the title parameter should override
2683 the name parameter. */
2684 if (! NILP (f
->title
))
2687 if (FRAME_W32_WINDOW (f
))
2689 if (STRING_MULTIBYTE (name
))
2690 name
= ENCODE_SYSTEM (name
);
2693 SetWindowText(FRAME_W32_WINDOW (f
), XSTRING (name
)->data
);
2698 /* This function should be called when the user's lisp code has
2699 specified a name for the frame; the name will override any set by the
2702 x_explicitly_set_name (f
, arg
, oldval
)
2704 Lisp_Object arg
, oldval
;
2706 x_set_name (f
, arg
, 1);
2709 /* This function should be called by Emacs redisplay code to set the
2710 name; names set this way will never override names set by the user's
2713 x_implicitly_set_name (f
, arg
, oldval
)
2715 Lisp_Object arg
, oldval
;
2717 x_set_name (f
, arg
, 0);
2720 /* Change the title of frame F to NAME.
2721 If NAME is nil, use the frame name as the title.
2723 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2724 name; if NAME is a string, set F's name to NAME and set
2725 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2727 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2728 suggesting a new name, which lisp code should override; if
2729 F->explicit_name is set, ignore the new name; otherwise, set it. */
2732 x_set_title (f
, name
, old_name
)
2734 Lisp_Object name
, old_name
;
2736 /* Don't change the title if it's already NAME. */
2737 if (EQ (name
, f
->title
))
2740 update_mode_lines
= 1;
2747 if (FRAME_W32_WINDOW (f
))
2749 if (STRING_MULTIBYTE (name
))
2750 name
= ENCODE_SYSTEM (name
);
2753 SetWindowText(FRAME_W32_WINDOW (f
), XSTRING (name
)->data
);
2759 x_set_autoraise (f
, arg
, oldval
)
2761 Lisp_Object arg
, oldval
;
2763 f
->auto_raise
= !EQ (Qnil
, arg
);
2767 x_set_autolower (f
, arg
, oldval
)
2769 Lisp_Object arg
, oldval
;
2771 f
->auto_lower
= !EQ (Qnil
, arg
);
2775 x_set_unsplittable (f
, arg
, oldval
)
2777 Lisp_Object arg
, oldval
;
2779 f
->no_split
= !NILP (arg
);
2783 x_set_vertical_scroll_bars (f
, arg
, oldval
)
2785 Lisp_Object arg
, oldval
;
2787 if ((EQ (arg
, Qleft
) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
2788 || (EQ (arg
, Qright
) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f
))
2789 || (NILP (arg
) && FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
2790 || (!NILP (arg
) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f
)))
2792 FRAME_VERTICAL_SCROLL_BAR_TYPE (f
) = NILP (arg
) ?
2793 vertical_scroll_bar_none
:
2794 /* Put scroll bars on the right by default, as is conventional
2797 ? vertical_scroll_bar_left
2798 : vertical_scroll_bar_right
;
2800 /* We set this parameter before creating the window for the
2801 frame, so we can get the geometry right from the start.
2802 However, if the window hasn't been created yet, we shouldn't
2803 call x_set_window_size. */
2804 if (FRAME_W32_WINDOW (f
))
2805 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2806 do_pending_window_change (0);
2811 x_set_scroll_bar_width (f
, arg
, oldval
)
2813 Lisp_Object arg
, oldval
;
2815 int wid
= FONT_WIDTH (f
->output_data
.w32
->font
);
2819 FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) = GetSystemMetrics (SM_CXVSCROLL
);
2820 FRAME_SCROLL_BAR_COLS (f
) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) +
2822 if (FRAME_W32_WINDOW (f
))
2823 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2824 do_pending_window_change (0);
2826 else if (INTEGERP (arg
) && XINT (arg
) > 0
2827 && XFASTINT (arg
) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f
))
2829 FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) = XFASTINT (arg
);
2830 FRAME_SCROLL_BAR_COLS (f
) = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f
)
2832 if (FRAME_W32_WINDOW (f
))
2833 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2834 do_pending_window_change (0);
2836 change_frame_size (f
, 0, FRAME_WIDTH (f
), 0, 0, 0);
2837 XWINDOW (FRAME_SELECTED_WINDOW (f
))->cursor
.hpos
= 0;
2838 XWINDOW (FRAME_SELECTED_WINDOW (f
))->cursor
.x
= 0;
2841 /* Subroutines of creating an frame. */
2843 /* Make sure that Vx_resource_name is set to a reasonable value.
2844 Fix it up, or set it to `emacs' if it is too hopeless. */
2847 validate_x_resource_name ()
2850 /* Number of valid characters in the resource name. */
2852 /* Number of invalid characters in the resource name. */
2857 if (STRINGP (Vx_resource_name
))
2859 unsigned char *p
= XSTRING (Vx_resource_name
)->data
;
2862 len
= STRING_BYTES (XSTRING (Vx_resource_name
));
2864 /* Only letters, digits, - and _ are valid in resource names.
2865 Count the valid characters and count the invalid ones. */
2866 for (i
= 0; i
< len
; i
++)
2869 if (! ((c
>= 'a' && c
<= 'z')
2870 || (c
>= 'A' && c
<= 'Z')
2871 || (c
>= '0' && c
<= '9')
2872 || c
== '-' || c
== '_'))
2879 /* Not a string => completely invalid. */
2880 bad_count
= 5, good_count
= 0;
2882 /* If name is valid already, return. */
2886 /* If name is entirely invalid, or nearly so, use `emacs'. */
2888 || (good_count
== 1 && bad_count
> 0))
2890 Vx_resource_name
= build_string ("emacs");
2894 /* Name is partly valid. Copy it and replace the invalid characters
2895 with underscores. */
2897 Vx_resource_name
= new = Fcopy_sequence (Vx_resource_name
);
2899 for (i
= 0; i
< len
; i
++)
2901 int c
= XSTRING (new)->data
[i
];
2902 if (! ((c
>= 'a' && c
<= 'z')
2903 || (c
>= 'A' && c
<= 'Z')
2904 || (c
>= '0' && c
<= '9')
2905 || c
== '-' || c
== '_'))
2906 XSTRING (new)->data
[i
] = '_';
2911 extern char *x_get_string_resource ();
2913 DEFUN ("x-get-resource", Fx_get_resource
, Sx_get_resource
, 2, 4, 0,
2914 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\
2915 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\
2916 class, where INSTANCE is the name under which Emacs was invoked, or\n\
2917 the name specified by the `-name' or `-rn' command-line arguments.\n\
2919 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\
2920 class, respectively. You must specify both of them or neither.\n\
2921 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\
2922 and the class is `Emacs.CLASS.SUBCLASS'.")
2923 (attribute
, class, component
, subclass
)
2924 Lisp_Object attribute
, class, component
, subclass
;
2926 register char *value
;
2930 CHECK_STRING (attribute
, 0);
2931 CHECK_STRING (class, 0);
2933 if (!NILP (component
))
2934 CHECK_STRING (component
, 1);
2935 if (!NILP (subclass
))
2936 CHECK_STRING (subclass
, 2);
2937 if (NILP (component
) != NILP (subclass
))
2938 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2940 validate_x_resource_name ();
2942 /* Allocate space for the components, the dots which separate them,
2943 and the final '\0'. Make them big enough for the worst case. */
2944 name_key
= (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name
))
2945 + (STRINGP (component
)
2946 ? STRING_BYTES (XSTRING (component
)) : 0)
2947 + STRING_BYTES (XSTRING (attribute
))
2950 class_key
= (char *) alloca ((sizeof (EMACS_CLASS
) - 1)
2951 + STRING_BYTES (XSTRING (class))
2952 + (STRINGP (subclass
)
2953 ? STRING_BYTES (XSTRING (subclass
)) : 0)
2956 /* Start with emacs.FRAMENAME for the name (the specific one)
2957 and with `Emacs' for the class key (the general one). */
2958 strcpy (name_key
, XSTRING (Vx_resource_name
)->data
);
2959 strcpy (class_key
, EMACS_CLASS
);
2961 strcat (class_key
, ".");
2962 strcat (class_key
, XSTRING (class)->data
);
2964 if (!NILP (component
))
2966 strcat (class_key
, ".");
2967 strcat (class_key
, XSTRING (subclass
)->data
);
2969 strcat (name_key
, ".");
2970 strcat (name_key
, XSTRING (component
)->data
);
2973 strcat (name_key
, ".");
2974 strcat (name_key
, XSTRING (attribute
)->data
);
2976 value
= x_get_string_resource (Qnil
,
2977 name_key
, class_key
);
2979 if (value
!= (char *) 0)
2980 return build_string (value
);
2985 /* Used when C code wants a resource value. */
2988 x_get_resource_string (attribute
, class)
2989 char *attribute
, *class;
2993 struct frame
*sf
= SELECTED_FRAME ();
2995 /* Allocate space for the components, the dots which separate them,
2996 and the final '\0'. */
2997 name_key
= (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name
))
2998 + strlen (attribute
) + 2);
2999 class_key
= (char *) alloca ((sizeof (EMACS_CLASS
) - 1)
3000 + strlen (class) + 2);
3002 sprintf (name_key
, "%s.%s",
3003 XSTRING (Vinvocation_name
)->data
,
3005 sprintf (class_key
, "%s.%s", EMACS_CLASS
, class);
3007 return x_get_string_resource (sf
, name_key
, class_key
);
3010 /* Types we might convert a resource string into. */
3020 /* Return the value of parameter PARAM.
3022 First search ALIST, then Vdefault_frame_alist, then the X defaults
3023 database, using ATTRIBUTE as the attribute name and CLASS as its class.
3025 Convert the resource to the type specified by desired_type.
3027 If no default is specified, return Qunbound. If you call
3028 w32_get_arg, make sure you deal with Qunbound in a reasonable way,
3029 and don't let it get stored in any Lisp-visible variables! */
3032 w32_get_arg (alist
, param
, attribute
, class, type
)
3033 Lisp_Object alist
, param
;
3036 enum resource_types type
;
3038 register Lisp_Object tem
;
3040 tem
= Fassq (param
, alist
);
3042 tem
= Fassq (param
, Vdefault_frame_alist
);
3048 tem
= Fx_get_resource (build_string (attribute
),
3049 build_string (class),
3057 case RES_TYPE_NUMBER
:
3058 return make_number (atoi (XSTRING (tem
)->data
));
3060 case RES_TYPE_FLOAT
:
3061 return make_float (atof (XSTRING (tem
)->data
));
3063 case RES_TYPE_BOOLEAN
:
3064 tem
= Fdowncase (tem
);
3065 if (!strcmp (XSTRING (tem
)->data
, "on")
3066 || !strcmp (XSTRING (tem
)->data
, "true"))
3071 case RES_TYPE_STRING
:
3074 case RES_TYPE_SYMBOL
:
3075 /* As a special case, we map the values `true' and `on'
3076 to Qt, and `false' and `off' to Qnil. */
3079 lower
= Fdowncase (tem
);
3080 if (!strcmp (XSTRING (lower
)->data
, "on")
3081 || !strcmp (XSTRING (lower
)->data
, "true"))
3083 else if (!strcmp (XSTRING (lower
)->data
, "off")
3084 || !strcmp (XSTRING (lower
)->data
, "false"))
3087 return Fintern (tem
, Qnil
);
3100 /* Record in frame F the specified or default value according to ALIST
3101 of the parameter named PROP (a Lisp symbol).
3102 If no value is specified for PROP, look for an X default for XPROP
3103 on the frame named NAME.
3104 If that is not found either, use the value DEFLT. */
3107 x_default_parameter (f
, alist
, prop
, deflt
, xprop
, xclass
, type
)
3114 enum resource_types type
;
3118 tem
= w32_get_arg (alist
, prop
, xprop
, xclass
, type
);
3119 if (EQ (tem
, Qunbound
))
3121 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
3125 DEFUN ("x-parse-geometry", Fx_parse_geometry
, Sx_parse_geometry
, 1, 1, 0,
3126 "Parse an X-style geometry string STRING.\n\
3127 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\
3128 The properties returned may include `top', `left', `height', and `width'.\n\
3129 The value of `left' or `top' may be an integer,\n\
3130 or a list (+ N) meaning N pixels relative to top/left corner,\n\
3131 or a list (- N) meaning -N pixels relative to bottom/right corner.")
3136 unsigned int width
, height
;
3139 CHECK_STRING (string
, 0);
3141 geometry
= XParseGeometry ((char *) XSTRING (string
)->data
,
3142 &x
, &y
, &width
, &height
);
3145 if (geometry
& XValue
)
3147 Lisp_Object element
;
3149 if (x
>= 0 && (geometry
& XNegative
))
3150 element
= Fcons (Qleft
, Fcons (Qminus
, Fcons (make_number (-x
), Qnil
)));
3151 else if (x
< 0 && ! (geometry
& XNegative
))
3152 element
= Fcons (Qleft
, Fcons (Qplus
, Fcons (make_number (x
), Qnil
)));
3154 element
= Fcons (Qleft
, make_number (x
));
3155 result
= Fcons (element
, result
);
3158 if (geometry
& YValue
)
3160 Lisp_Object element
;
3162 if (y
>= 0 && (geometry
& YNegative
))
3163 element
= Fcons (Qtop
, Fcons (Qminus
, Fcons (make_number (-y
), Qnil
)));
3164 else if (y
< 0 && ! (geometry
& YNegative
))
3165 element
= Fcons (Qtop
, Fcons (Qplus
, Fcons (make_number (y
), Qnil
)));
3167 element
= Fcons (Qtop
, make_number (y
));
3168 result
= Fcons (element
, result
);
3171 if (geometry
& WidthValue
)
3172 result
= Fcons (Fcons (Qwidth
, make_number (width
)), result
);
3173 if (geometry
& HeightValue
)
3174 result
= Fcons (Fcons (Qheight
, make_number (height
)), result
);
3179 /* Calculate the desired size and position of this window,
3180 and return the flags saying which aspects were specified.
3182 This function does not make the coordinates positive. */
3184 #define DEFAULT_ROWS 40
3185 #define DEFAULT_COLS 80
3188 x_figure_window_size (f
, parms
)
3192 register Lisp_Object tem0
, tem1
, tem2
;
3193 long window_prompting
= 0;
3195 /* Default values if we fall through.
3196 Actually, if that happens we should get
3197 window manager prompting. */
3198 SET_FRAME_WIDTH (f
, DEFAULT_COLS
);
3199 f
->height
= DEFAULT_ROWS
;
3200 /* Window managers expect that if program-specified
3201 positions are not (0,0), they're intentional, not defaults. */
3202 f
->output_data
.w32
->top_pos
= 0;
3203 f
->output_data
.w32
->left_pos
= 0;
3205 tem0
= w32_get_arg (parms
, Qheight
, 0, 0, RES_TYPE_NUMBER
);
3206 tem1
= w32_get_arg (parms
, Qwidth
, 0, 0, RES_TYPE_NUMBER
);
3207 tem2
= w32_get_arg (parms
, Quser_size
, 0, 0, RES_TYPE_NUMBER
);
3208 if (! EQ (tem0
, Qunbound
) || ! EQ (tem1
, Qunbound
))
3210 if (!EQ (tem0
, Qunbound
))
3212 CHECK_NUMBER (tem0
, 0);
3213 f
->height
= XINT (tem0
);
3215 if (!EQ (tem1
, Qunbound
))
3217 CHECK_NUMBER (tem1
, 0);
3218 SET_FRAME_WIDTH (f
, XINT (tem1
));
3220 if (!NILP (tem2
) && !EQ (tem2
, Qunbound
))
3221 window_prompting
|= USSize
;
3223 window_prompting
|= PSize
;
3226 f
->output_data
.w32
->vertical_scroll_bar_extra
3227 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
3229 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) > 0
3230 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f
)
3231 : (FRAME_SCROLL_BAR_COLS (f
) * FONT_WIDTH (f
->output_data
.w32
->font
)));
3232 f
->output_data
.w32
->flags_areas_extra
3233 = FRAME_FLAGS_AREA_WIDTH (f
);
3234 f
->output_data
.w32
->pixel_width
= CHAR_TO_PIXEL_WIDTH (f
, f
->width
);
3235 f
->output_data
.w32
->pixel_height
= CHAR_TO_PIXEL_HEIGHT (f
, f
->height
);
3237 tem0
= w32_get_arg (parms
, Qtop
, 0, 0, RES_TYPE_NUMBER
);
3238 tem1
= w32_get_arg (parms
, Qleft
, 0, 0, RES_TYPE_NUMBER
);
3239 tem2
= w32_get_arg (parms
, Quser_position
, 0, 0, RES_TYPE_NUMBER
);
3240 if (! EQ (tem0
, Qunbound
) || ! EQ (tem1
, Qunbound
))
3242 if (EQ (tem0
, Qminus
))
3244 f
->output_data
.w32
->top_pos
= 0;
3245 window_prompting
|= YNegative
;
3247 else if (CONSP (tem0
) && EQ (XCAR (tem0
), Qminus
)
3248 && CONSP (XCDR (tem0
))
3249 && INTEGERP (XCAR (XCDR (tem0
))))
3251 f
->output_data
.w32
->top_pos
= - XINT (XCAR (XCDR (tem0
)));
3252 window_prompting
|= YNegative
;
3254 else if (CONSP (tem0
) && EQ (XCAR (tem0
), Qplus
)
3255 && CONSP (XCDR (tem0
))
3256 && INTEGERP (XCAR (XCDR (tem0
))))
3258 f
->output_data
.w32
->top_pos
= XINT (XCAR (XCDR (tem0
)));
3260 else if (EQ (tem0
, Qunbound
))
3261 f
->output_data
.w32
->top_pos
= 0;
3264 CHECK_NUMBER (tem0
, 0);
3265 f
->output_data
.w32
->top_pos
= XINT (tem0
);
3266 if (f
->output_data
.w32
->top_pos
< 0)
3267 window_prompting
|= YNegative
;
3270 if (EQ (tem1
, Qminus
))
3272 f
->output_data
.w32
->left_pos
= 0;
3273 window_prompting
|= XNegative
;
3275 else if (CONSP (tem1
) && EQ (XCAR (tem1
), Qminus
)
3276 && CONSP (XCDR (tem1
))
3277 && INTEGERP (XCAR (XCDR (tem1
))))
3279 f
->output_data
.w32
->left_pos
= - XINT (XCAR (XCDR (tem1
)));
3280 window_prompting
|= XNegative
;
3282 else if (CONSP (tem1
) && EQ (XCAR (tem1
), Qplus
)
3283 && CONSP (XCDR (tem1
))
3284 && INTEGERP (XCAR (XCDR (tem1
))))
3286 f
->output_data
.w32
->left_pos
= XINT (XCAR (XCDR (tem1
)));
3288 else if (EQ (tem1
, Qunbound
))
3289 f
->output_data
.w32
->left_pos
= 0;
3292 CHECK_NUMBER (tem1
, 0);
3293 f
->output_data
.w32
->left_pos
= XINT (tem1
);
3294 if (f
->output_data
.w32
->left_pos
< 0)
3295 window_prompting
|= XNegative
;
3298 if (!NILP (tem2
) && ! EQ (tem2
, Qunbound
))
3299 window_prompting
|= USPosition
;
3301 window_prompting
|= PPosition
;
3304 return window_prompting
;
3309 extern LRESULT CALLBACK
w32_wnd_proc ();
3312 w32_init_class (hinst
)
3317 wc
.style
= CS_HREDRAW
| CS_VREDRAW
;
3318 wc
.lpfnWndProc
= (WNDPROC
) w32_wnd_proc
;
3320 wc
.cbWndExtra
= WND_EXTRA_BYTES
;
3321 wc
.hInstance
= hinst
;
3322 wc
.hIcon
= LoadIcon (hinst
, EMACS_CLASS
);
3323 wc
.hCursor
= LoadCursor (NULL
, IDC_ARROW
);
3324 wc
.hbrBackground
= NULL
; /* GetStockObject (WHITE_BRUSH); */
3325 wc
.lpszMenuName
= NULL
;
3326 wc
.lpszClassName
= EMACS_CLASS
;
3328 return (RegisterClass (&wc
));
3332 w32_createscrollbar (f
, bar
)
3334 struct scroll_bar
* bar
;
3336 return (CreateWindow ("SCROLLBAR", "", SBS_VERT
| WS_CHILD
| WS_VISIBLE
,
3337 /* Position and size of scroll bar. */
3338 XINT(bar
->left
) + VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
3340 XINT(bar
->width
) - VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
3342 FRAME_W32_WINDOW (f
),
3349 w32_createwindow (f
)
3355 rect
.left
= rect
.top
= 0;
3356 rect
.right
= PIXEL_WIDTH (f
);
3357 rect
.bottom
= PIXEL_HEIGHT (f
);
3359 AdjustWindowRect (&rect
, f
->output_data
.w32
->dwStyle
,
3360 FRAME_EXTERNAL_MENU_BAR (f
));
3362 /* Do first time app init */
3366 w32_init_class (hinst
);
3369 FRAME_W32_WINDOW (f
) = hwnd
3370 = CreateWindow (EMACS_CLASS
,
3372 f
->output_data
.w32
->dwStyle
| WS_CLIPCHILDREN
,
3373 f
->output_data
.w32
->left_pos
,
3374 f
->output_data
.w32
->top_pos
,
3375 rect
.right
- rect
.left
,
3376 rect
.bottom
- rect
.top
,
3384 SetWindowLong (hwnd
, WND_FONTWIDTH_INDEX
, FONT_WIDTH (f
->output_data
.w32
->font
));
3385 SetWindowLong (hwnd
, WND_LINEHEIGHT_INDEX
, f
->output_data
.w32
->line_height
);
3386 SetWindowLong (hwnd
, WND_BORDER_INDEX
, f
->output_data
.w32
->internal_border_width
);
3387 SetWindowLong (hwnd
, WND_SCROLLBAR_INDEX
, f
->output_data
.w32
->vertical_scroll_bar_extra
);
3388 SetWindowLong (hwnd
, WND_BACKGROUND_INDEX
, FRAME_BACKGROUND_PIXEL (f
));
3390 /* Enable drag-n-drop. */
3391 DragAcceptFiles (hwnd
, TRUE
);
3393 /* Do this to discard the default setting specified by our parent. */
3394 ShowWindow (hwnd
, SW_HIDE
);
3399 my_post_msg (wmsg
, hwnd
, msg
, wParam
, lParam
)
3406 wmsg
->msg
.hwnd
= hwnd
;
3407 wmsg
->msg
.message
= msg
;
3408 wmsg
->msg
.wParam
= wParam
;
3409 wmsg
->msg
.lParam
= lParam
;
3410 wmsg
->msg
.time
= GetMessageTime ();
3415 /* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
3416 between left and right keys as advertised. We test for this
3417 support dynamically, and set a flag when the support is absent. If
3418 absent, we keep track of the left and right control and alt keys
3419 ourselves. This is particularly necessary on keyboards that rely
3420 upon the AltGr key, which is represented as having the left control
3421 and right alt keys pressed. For these keyboards, we need to know
3422 when the left alt key has been pressed in addition to the AltGr key
3423 so that we can properly support M-AltGr-key sequences (such as M-@
3424 on Swedish keyboards). */
3426 #define EMACS_LCONTROL 0
3427 #define EMACS_RCONTROL 1
3428 #define EMACS_LMENU 2
3429 #define EMACS_RMENU 3
3431 static int modifiers
[4];
3432 static int modifiers_recorded
;
3433 static int modifier_key_support_tested
;
3436 test_modifier_support (unsigned int wparam
)
3440 if (wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
)
3442 if (wparam
== VK_CONTROL
)
3452 if (!(GetKeyState (l
) & 0x8000) && !(GetKeyState (r
) & 0x8000))
3453 modifiers_recorded
= 1;
3455 modifiers_recorded
= 0;
3456 modifier_key_support_tested
= 1;
3460 record_keydown (unsigned int wparam
, unsigned int lparam
)
3464 if (!modifier_key_support_tested
)
3465 test_modifier_support (wparam
);
3467 if ((wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
) || !modifiers_recorded
)
3470 if (wparam
== VK_CONTROL
)
3471 i
= (lparam
& 0x1000000) ? EMACS_RCONTROL
: EMACS_LCONTROL
;
3473 i
= (lparam
& 0x1000000) ? EMACS_RMENU
: EMACS_LMENU
;
3479 record_keyup (unsigned int wparam
, unsigned int lparam
)
3483 if ((wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
) || !modifiers_recorded
)
3486 if (wparam
== VK_CONTROL
)
3487 i
= (lparam
& 0x1000000) ? EMACS_RCONTROL
: EMACS_LCONTROL
;
3489 i
= (lparam
& 0x1000000) ? EMACS_RMENU
: EMACS_LMENU
;
3494 /* Emacs can lose focus while a modifier key has been pressed. When
3495 it regains focus, be conservative and clear all modifiers since
3496 we cannot reconstruct the left and right modifier state. */
3502 if (GetFocus () == NULL
)
3503 /* Emacs doesn't have keyboard focus. Do nothing. */
3506 ctrl
= GetAsyncKeyState (VK_CONTROL
);
3507 alt
= GetAsyncKeyState (VK_MENU
);
3509 if (!(ctrl
& 0x08000))
3510 /* Clear any recorded control modifier state. */
3511 modifiers
[EMACS_RCONTROL
] = modifiers
[EMACS_LCONTROL
] = 0;
3513 if (!(alt
& 0x08000))
3514 /* Clear any recorded alt modifier state. */
3515 modifiers
[EMACS_RMENU
] = modifiers
[EMACS_LMENU
] = 0;
3517 /* Update the state of all modifier keys, because modifiers used in
3518 hot-key combinations can get stuck on if Emacs loses focus as a
3519 result of a hot-key being pressed. */
3523 #define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
3525 GetKeyboardState (keystate
);
3526 keystate
[VK_SHIFT
] = CURRENT_STATE (VK_SHIFT
);
3527 keystate
[VK_CONTROL
] = CURRENT_STATE (VK_CONTROL
);
3528 keystate
[VK_LCONTROL
] = CURRENT_STATE (VK_LCONTROL
);
3529 keystate
[VK_RCONTROL
] = CURRENT_STATE (VK_RCONTROL
);
3530 keystate
[VK_MENU
] = CURRENT_STATE (VK_MENU
);
3531 keystate
[VK_LMENU
] = CURRENT_STATE (VK_LMENU
);
3532 keystate
[VK_RMENU
] = CURRENT_STATE (VK_RMENU
);
3533 keystate
[VK_LWIN
] = CURRENT_STATE (VK_LWIN
);
3534 keystate
[VK_RWIN
] = CURRENT_STATE (VK_RWIN
);
3535 keystate
[VK_APPS
] = CURRENT_STATE (VK_APPS
);
3536 SetKeyboardState (keystate
);
3540 /* Synchronize modifier state with what is reported with the current
3541 keystroke. Even if we cannot distinguish between left and right
3542 modifier keys, we know that, if no modifiers are set, then neither
3543 the left or right modifier should be set. */
3547 if (!modifiers_recorded
)
3550 if (!(GetKeyState (VK_CONTROL
) & 0x8000))
3551 modifiers
[EMACS_RCONTROL
] = modifiers
[EMACS_LCONTROL
] = 0;
3553 if (!(GetKeyState (VK_MENU
) & 0x8000))
3554 modifiers
[EMACS_RMENU
] = modifiers
[EMACS_LMENU
] = 0;
3558 modifier_set (int vkey
)
3560 if (vkey
== VK_CAPITAL
|| vkey
== VK_SCROLL
)
3561 return (GetKeyState (vkey
) & 0x1);
3562 if (!modifiers_recorded
)
3563 return (GetKeyState (vkey
) & 0x8000);
3568 return modifiers
[EMACS_LCONTROL
];
3570 return modifiers
[EMACS_RCONTROL
];
3572 return modifiers
[EMACS_LMENU
];
3574 return modifiers
[EMACS_RMENU
];
3576 return (GetKeyState (vkey
) & 0x8000);
3579 /* Convert between the modifier bits W32 uses and the modifier bits
3583 w32_key_to_modifier (int key
)
3585 Lisp_Object key_mapping
;
3590 key_mapping
= Vw32_lwindow_modifier
;
3593 key_mapping
= Vw32_rwindow_modifier
;
3596 key_mapping
= Vw32_apps_modifier
;
3599 key_mapping
= Vw32_scroll_lock_modifier
;
3605 /* NB. This code runs in the input thread, asychronously to the lisp
3606 thread, so we must be careful to ensure access to lisp data is
3607 thread-safe. The following code is safe because the modifier
3608 variable values are updated atomically from lisp and symbols are
3609 not relocated by GC. Also, we don't have to worry about seeing GC
3611 if (EQ (key_mapping
, Qhyper
))
3612 return hyper_modifier
;
3613 if (EQ (key_mapping
, Qsuper
))
3614 return super_modifier
;
3615 if (EQ (key_mapping
, Qmeta
))
3616 return meta_modifier
;
3617 if (EQ (key_mapping
, Qalt
))
3618 return alt_modifier
;
3619 if (EQ (key_mapping
, Qctrl
))
3620 return ctrl_modifier
;
3621 if (EQ (key_mapping
, Qcontrol
)) /* synonym for ctrl */
3622 return ctrl_modifier
;
3623 if (EQ (key_mapping
, Qshift
))
3624 return shift_modifier
;
3626 /* Don't generate any modifier if not explicitly requested. */
3631 w32_get_modifiers ()
3633 return ((modifier_set (VK_SHIFT
) ? shift_modifier
: 0) |
3634 (modifier_set (VK_CONTROL
) ? ctrl_modifier
: 0) |
3635 (modifier_set (VK_LWIN
) ? w32_key_to_modifier (VK_LWIN
) : 0) |
3636 (modifier_set (VK_RWIN
) ? w32_key_to_modifier (VK_RWIN
) : 0) |
3637 (modifier_set (VK_APPS
) ? w32_key_to_modifier (VK_APPS
) : 0) |
3638 (modifier_set (VK_SCROLL
) ? w32_key_to_modifier (VK_SCROLL
) : 0) |
3639 (modifier_set (VK_MENU
) ?
3640 ((NILP (Vw32_alt_is_meta
)) ? alt_modifier
: meta_modifier
) : 0));
3643 /* We map the VK_* modifiers into console modifier constants
3644 so that we can use the same routines to handle both console
3645 and window input. */
3648 construct_console_modifiers ()
3653 mods
|= (modifier_set (VK_SHIFT
)) ? SHIFT_PRESSED
: 0;
3654 mods
|= (modifier_set (VK_CAPITAL
)) ? CAPSLOCK_ON
: 0;
3655 mods
|= (modifier_set (VK_SCROLL
)) ? SCROLLLOCK_ON
: 0;
3656 mods
|= (modifier_set (VK_NUMLOCK
)) ? NUMLOCK_ON
: 0;
3657 mods
|= (modifier_set (VK_LCONTROL
)) ? LEFT_CTRL_PRESSED
: 0;
3658 mods
|= (modifier_set (VK_RCONTROL
)) ? RIGHT_CTRL_PRESSED
: 0;
3659 mods
|= (modifier_set (VK_LMENU
)) ? LEFT_ALT_PRESSED
: 0;
3660 mods
|= (modifier_set (VK_RMENU
)) ? RIGHT_ALT_PRESSED
: 0;
3661 mods
|= (modifier_set (VK_LWIN
)) ? LEFT_WIN_PRESSED
: 0;
3662 mods
|= (modifier_set (VK_RWIN
)) ? RIGHT_WIN_PRESSED
: 0;
3663 mods
|= (modifier_set (VK_APPS
)) ? APPS_PRESSED
: 0;
3669 w32_get_key_modifiers (unsigned int wparam
, unsigned int lparam
)
3673 /* Convert to emacs modifiers. */
3674 mods
= w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam
);
3680 map_keypad_keys (unsigned int virt_key
, unsigned int extended
)
3682 if (virt_key
< VK_CLEAR
|| virt_key
> VK_DELETE
)
3685 if (virt_key
== VK_RETURN
)
3686 return (extended
? VK_NUMPAD_ENTER
: VK_RETURN
);
3688 if (virt_key
>= VK_PRIOR
&& virt_key
<= VK_DOWN
)
3689 return (!extended
? (VK_NUMPAD_PRIOR
+ (virt_key
- VK_PRIOR
)) : virt_key
);
3691 if (virt_key
== VK_INSERT
|| virt_key
== VK_DELETE
)
3692 return (!extended
? (VK_NUMPAD_INSERT
+ (virt_key
- VK_INSERT
)) : virt_key
);
3694 if (virt_key
== VK_CLEAR
)
3695 return (!extended
? VK_NUMPAD_CLEAR
: virt_key
);
3700 /* List of special key combinations which w32 would normally capture,
3701 but emacs should grab instead. Not directly visible to lisp, to
3702 simplify synchronization. Each item is an integer encoding a virtual
3703 key code and modifier combination to capture. */
3704 Lisp_Object w32_grabbed_keys
;
3706 #define HOTKEY(vk,mods) make_number (((vk) & 255) | ((mods) << 8))
3707 #define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
3708 #define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
3709 #define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
3711 /* Register hot-keys for reserved key combinations when Emacs has
3712 keyboard focus, since this is the only way Emacs can receive key
3713 combinations like Alt-Tab which are used by the system. */
3716 register_hot_keys (hwnd
)
3719 Lisp_Object keylist
;
3721 /* Use GC_CONSP, since we are called asynchronously. */
3722 for (keylist
= w32_grabbed_keys
; GC_CONSP (keylist
); keylist
= XCDR (keylist
))
3724 Lisp_Object key
= XCAR (keylist
);
3726 /* Deleted entries get set to nil. */
3727 if (!INTEGERP (key
))
3730 RegisterHotKey (hwnd
, HOTKEY_ID (key
),
3731 HOTKEY_MODIFIERS (key
), HOTKEY_VK_CODE (key
));
3736 unregister_hot_keys (hwnd
)
3739 Lisp_Object keylist
;
3741 /* Use GC_CONSP, since we are called asynchronously. */
3742 for (keylist
= w32_grabbed_keys
; GC_CONSP (keylist
); keylist
= XCDR (keylist
))
3744 Lisp_Object key
= XCAR (keylist
);
3746 if (!INTEGERP (key
))
3749 UnregisterHotKey (hwnd
, HOTKEY_ID (key
));
3753 /* Main message dispatch loop. */
3756 w32_msg_pump (deferred_msg
* msg_buf
)
3762 msh_mousewheel
= RegisterWindowMessage (MSH_MOUSEWHEEL
);
3764 while (GetMessage (&msg
, NULL
, 0, 0))
3766 if (msg
.hwnd
== NULL
)
3768 switch (msg
.message
)
3771 /* Produced by complete_deferred_msg; just ignore. */
3773 case WM_EMACS_CREATEWINDOW
:
3774 w32_createwindow ((struct frame
*) msg
.wParam
);
3775 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
3778 case WM_EMACS_SETLOCALE
:
3779 SetThreadLocale (msg
.wParam
);
3780 /* Reply is not expected. */
3782 case WM_EMACS_SETKEYBOARDLAYOUT
:
3783 result
= (int) ActivateKeyboardLayout ((HKL
) msg
.wParam
, 0);
3784 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
,
3788 case WM_EMACS_REGISTER_HOT_KEY
:
3789 focus_window
= GetFocus ();
3790 if (focus_window
!= NULL
)
3791 RegisterHotKey (focus_window
,
3792 HOTKEY_ID (msg
.wParam
),
3793 HOTKEY_MODIFIERS (msg
.wParam
),
3794 HOTKEY_VK_CODE (msg
.wParam
));
3795 /* Reply is not expected. */
3797 case WM_EMACS_UNREGISTER_HOT_KEY
:
3798 focus_window
= GetFocus ();
3799 if (focus_window
!= NULL
)
3800 UnregisterHotKey (focus_window
, HOTKEY_ID (msg
.wParam
));
3801 /* Mark item as erased. NB: this code must be
3802 thread-safe. The next line is okay because the cons
3803 cell is never made into garbage and is not relocated by
3805 XCAR ((Lisp_Object
) msg
.lParam
) = Qnil
;
3806 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
3809 case WM_EMACS_TOGGLE_LOCK_KEY
:
3811 int vk_code
= (int) msg
.wParam
;
3812 int cur_state
= (GetKeyState (vk_code
) & 1);
3813 Lisp_Object new_state
= (Lisp_Object
) msg
.lParam
;
3815 /* NB: This code must be thread-safe. It is safe to
3816 call NILP because symbols are not relocated by GC,
3817 and pointer here is not touched by GC (so the markbit
3818 can't be set). Numbers are safe because they are
3819 immediate values. */
3820 if (NILP (new_state
)
3821 || (NUMBERP (new_state
)
3822 && (XUINT (new_state
)) & 1 != cur_state
))
3824 one_w32_display_info
.faked_key
= vk_code
;
3826 keybd_event ((BYTE
) vk_code
,
3827 (BYTE
) MapVirtualKey (vk_code
, 0),
3828 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
3829 keybd_event ((BYTE
) vk_code
,
3830 (BYTE
) MapVirtualKey (vk_code
, 0),
3831 KEYEVENTF_EXTENDEDKEY
| 0, 0);
3832 keybd_event ((BYTE
) vk_code
,
3833 (BYTE
) MapVirtualKey (vk_code
, 0),
3834 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
3835 cur_state
= !cur_state
;
3837 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
,
3843 DebPrint (("msg %x not expected by w32_msg_pump\n", msg
.message
));
3848 DispatchMessage (&msg
);
3851 /* Exit nested loop when our deferred message has completed. */
3852 if (msg_buf
->completed
)
3857 deferred_msg
* deferred_msg_head
;
3859 static deferred_msg
*
3860 find_deferred_msg (HWND hwnd
, UINT msg
)
3862 deferred_msg
* item
;
3864 /* Don't actually need synchronization for read access, since
3865 modification of single pointer is always atomic. */
3866 /* enter_crit (); */
3868 for (item
= deferred_msg_head
; item
!= NULL
; item
= item
->next
)
3869 if (item
->w32msg
.msg
.hwnd
== hwnd
3870 && item
->w32msg
.msg
.message
== msg
)
3873 /* leave_crit (); */
3879 send_deferred_msg (deferred_msg
* msg_buf
,
3885 /* Only input thread can send deferred messages. */
3886 if (GetCurrentThreadId () != dwWindowsThreadId
)
3889 /* It is an error to send a message that is already deferred. */
3890 if (find_deferred_msg (hwnd
, msg
) != NULL
)
3893 /* Enforced synchronization is not needed because this is the only
3894 function that alters deferred_msg_head, and the following critical
3895 section is guaranteed to only be serially reentered (since only the
3896 input thread can call us). */
3898 /* enter_crit (); */
3900 msg_buf
->completed
= 0;
3901 msg_buf
->next
= deferred_msg_head
;
3902 deferred_msg_head
= msg_buf
;
3903 my_post_msg (&msg_buf
->w32msg
, hwnd
, msg
, wParam
, lParam
);
3905 /* leave_crit (); */
3907 /* Start a new nested message loop to process other messages until
3908 this one is completed. */
3909 w32_msg_pump (msg_buf
);
3911 deferred_msg_head
= msg_buf
->next
;
3913 return msg_buf
->result
;
3917 complete_deferred_msg (HWND hwnd
, UINT msg
, LRESULT result
)
3919 deferred_msg
* msg_buf
= find_deferred_msg (hwnd
, msg
);
3921 if (msg_buf
== NULL
)
3922 /* Message may have been cancelled, so don't abort(). */
3925 msg_buf
->result
= result
;
3926 msg_buf
->completed
= 1;
3928 /* Ensure input thread is woken so it notices the completion. */
3929 PostThreadMessage (dwWindowsThreadId
, WM_NULL
, 0, 0);
3933 cancel_all_deferred_msgs ()
3935 deferred_msg
* item
;
3937 /* Don't actually need synchronization for read access, since
3938 modification of single pointer is always atomic. */
3939 /* enter_crit (); */
3941 for (item
= deferred_msg_head
; item
!= NULL
; item
= item
->next
)
3944 item
->completed
= 1;
3947 /* leave_crit (); */
3949 /* Ensure input thread is woken so it notices the completion. */
3950 PostThreadMessage (dwWindowsThreadId
, WM_NULL
, 0, 0);
3958 deferred_msg dummy_buf
;
3960 /* Ensure our message queue is created */
3962 PeekMessage (&msg
, NULL
, 0, 0, PM_NOREMOVE
);
3964 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
3967 memset (&dummy_buf
, 0, sizeof (dummy_buf
));
3968 dummy_buf
.w32msg
.msg
.hwnd
= NULL
;
3969 dummy_buf
.w32msg
.msg
.message
= WM_NULL
;
3971 /* This is the inital message loop which should only exit when the
3972 application quits. */
3973 w32_msg_pump (&dummy_buf
);
3979 post_character_message (hwnd
, msg
, wParam
, lParam
, modifiers
)
3989 wmsg
.dwModifiers
= modifiers
;
3991 /* Detect quit_char and set quit-flag directly. Note that we
3992 still need to post a message to ensure the main thread will be
3993 woken up if blocked in sys_select(), but we do NOT want to post
3994 the quit_char message itself (because it will usually be as if
3995 the user had typed quit_char twice). Instead, we post a dummy
3996 message that has no particular effect. */
3999 if (isalpha (c
) && wmsg
.dwModifiers
== ctrl_modifier
)
4000 c
= make_ctrl_char (c
) & 0377;
4002 || (wmsg
.dwModifiers
== 0 &&
4003 XFASTINT (Vw32_quit_key
) && wParam
== XFASTINT (Vw32_quit_key
)))
4007 /* The choice of message is somewhat arbitrary, as long as
4008 the main thread handler just ignores it. */
4011 /* Interrupt any blocking system calls. */
4014 /* As a safety precaution, forcibly complete any deferred
4015 messages. This is a kludge, but I don't see any particularly
4016 clean way to handle the situation where a deferred message is
4017 "dropped" in the lisp thread, and will thus never be
4018 completed, eg. by the user trying to activate the menubar
4019 when the lisp thread is busy, and then typing C-g when the
4020 menubar doesn't open promptly (with the result that the
4021 menubar never responds at all because the deferred
4022 WM_INITMENU message is never completed). Another problem
4023 situation is when the lisp thread calls SendMessage (to send
4024 a window manager command) when a message has been deferred;
4025 the lisp thread gets blocked indefinitely waiting for the
4026 deferred message to be completed, which itself is waiting for
4027 the lisp thread to respond.
4029 Note that we don't want to block the input thread waiting for
4030 a reponse from the lisp thread (although that would at least
4031 solve the deadlock problem above), because we want to be able
4032 to receive C-g to interrupt the lisp thread. */
4033 cancel_all_deferred_msgs ();
4037 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4040 /* Main window procedure */
4043 w32_wnd_proc (hwnd
, msg
, wParam
, lParam
)
4050 struct w32_display_info
*dpyinfo
= &one_w32_display_info
;
4052 int windows_translate
;
4055 /* Note that it is okay to call x_window_to_frame, even though we are
4056 not running in the main lisp thread, because frame deletion
4057 requires the lisp thread to synchronize with this thread. Thus, if
4058 a frame struct is returned, it can be used without concern that the
4059 lisp thread might make it disappear while we are using it.
4061 NB. Walking the frame list in this thread is safe (as long as
4062 writes of Lisp_Object slots are atomic, which they are on Windows).
4063 Although delete-frame can destructively modify the frame list while
4064 we are walking it, a garbage collection cannot occur until after
4065 delete-frame has synchronized with this thread.
4067 It is also safe to use functions that make GDI calls, such as
4068 w32_clear_rect, because these functions must obtain a DC handle
4069 from the frame struct using get_frame_dc which is thread-aware. */
4074 f
= x_window_to_frame (dpyinfo
, hwnd
);
4077 HDC hdc
= get_frame_dc (f
);
4078 GetUpdateRect (hwnd
, &wmsg
.rect
, FALSE
);
4079 w32_clear_rect (f
, hdc
, &wmsg
.rect
);
4080 release_frame_dc (f
, hdc
);
4082 #if defined (W32_DEBUG_DISPLAY)
4083 DebPrint (("WM_ERASEBKGND: erasing %d,%d-%d,%d\n",
4084 wmsg
.rect
.left
, wmsg
.rect
.top
, wmsg
.rect
.right
,
4086 #endif /* W32_DEBUG_DISPLAY */
4089 case WM_PALETTECHANGED
:
4090 /* ignore our own changes */
4091 if ((HWND
)wParam
!= hwnd
)
4093 f
= x_window_to_frame (dpyinfo
, hwnd
);
4095 /* get_frame_dc will realize our palette and force all
4096 frames to be redrawn if needed. */
4097 release_frame_dc (f
, get_frame_dc (f
));
4102 PAINTSTRUCT paintStruct
;
4105 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
4106 fails. Apparently this can happen under some
4108 if (!w32_strict_painting
|| GetUpdateRect (hwnd
, &update_rect
, FALSE
))
4111 BeginPaint (hwnd
, &paintStruct
);
4113 if (w32_strict_painting
)
4114 /* The rectangles returned by GetUpdateRect and BeginPaint
4115 do not always match. GetUpdateRect seems to be the
4116 more reliable of the two. */
4117 wmsg
.rect
= update_rect
;
4119 wmsg
.rect
= paintStruct
.rcPaint
;
4121 #if defined (W32_DEBUG_DISPLAY)
4122 DebPrint (("WM_PAINT: painting %d,%d-%d,%d\n", wmsg
.rect
.left
,
4123 wmsg
.rect
.top
, wmsg
.rect
.right
, wmsg
.rect
.bottom
));
4124 DebPrint (("WM_PAINT: update region is %d,%d-%d,%d\n",
4125 update_rect
.left
, update_rect
.top
,
4126 update_rect
.right
, update_rect
.bottom
));
4128 EndPaint (hwnd
, &paintStruct
);
4131 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4136 /* If GetUpdateRect returns 0 (meaning there is no update
4137 region), assume the whole window needs to be repainted. */
4138 GetClientRect(hwnd
, &wmsg
.rect
);
4139 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4143 case WM_INPUTLANGCHANGE
:
4144 /* Inform lisp thread of keyboard layout changes. */
4145 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4147 /* Clear dead keys in the keyboard state; for simplicity only
4148 preserve modifier key states. */
4153 GetKeyboardState (keystate
);
4154 for (i
= 0; i
< 256; i
++)
4171 SetKeyboardState (keystate
);
4176 /* Synchronize hot keys with normal input. */
4177 PostMessage (hwnd
, WM_KEYDOWN
, HIWORD (lParam
), 0);
4182 record_keyup (wParam
, lParam
);
4187 /* Ignore keystrokes we fake ourself; see below. */
4188 if (dpyinfo
->faked_key
== wParam
)
4190 dpyinfo
->faked_key
= 0;
4191 /* Make sure TranslateMessage sees them though (as long as
4192 they don't produce WM_CHAR messages). This ensures that
4193 indicator lights are toggled promptly on Windows 9x, for
4195 if (lispy_function_keys
[wParam
] != 0)
4197 windows_translate
= 1;
4203 /* Synchronize modifiers with current keystroke. */
4205 record_keydown (wParam
, lParam
);
4206 wParam
= map_keypad_keys (wParam
, (lParam
& 0x1000000L
) != 0);
4208 windows_translate
= 0;
4213 if (NILP (Vw32_pass_lwindow_to_system
))
4215 /* Prevent system from acting on keyup (which opens the
4216 Start menu if no other key was pressed) by simulating a
4217 press of Space which we will ignore. */
4218 if (GetAsyncKeyState (wParam
) & 1)
4220 if (NUMBERP (Vw32_phantom_key_code
))
4221 key
= XUINT (Vw32_phantom_key_code
) & 255;
4224 dpyinfo
->faked_key
= key
;
4225 keybd_event (key
, (BYTE
) MapVirtualKey (key
, 0), 0, 0);
4228 if (!NILP (Vw32_lwindow_modifier
))
4232 if (NILP (Vw32_pass_rwindow_to_system
))
4234 if (GetAsyncKeyState (wParam
) & 1)
4236 if (NUMBERP (Vw32_phantom_key_code
))
4237 key
= XUINT (Vw32_phantom_key_code
) & 255;
4240 dpyinfo
->faked_key
= key
;
4241 keybd_event (key
, (BYTE
) MapVirtualKey (key
, 0), 0, 0);
4244 if (!NILP (Vw32_rwindow_modifier
))
4248 if (!NILP (Vw32_apps_modifier
))
4252 if (NILP (Vw32_pass_alt_to_system
))
4253 /* Prevent DefWindowProc from activating the menu bar if an
4254 Alt key is pressed and released by itself. */
4256 windows_translate
= 1;
4259 /* Decide whether to treat as modifier or function key. */
4260 if (NILP (Vw32_enable_caps_lock
))
4261 goto disable_lock_key
;
4262 windows_translate
= 1;
4265 /* Decide whether to treat as modifier or function key. */
4266 if (NILP (Vw32_enable_num_lock
))
4267 goto disable_lock_key
;
4268 windows_translate
= 1;
4271 /* Decide whether to treat as modifier or function key. */
4272 if (NILP (Vw32_scroll_lock_modifier
))
4273 goto disable_lock_key
;
4274 windows_translate
= 1;
4277 /* Ensure the appropriate lock key state (and indicator light)
4278 remains in the same state. We do this by faking another
4279 press of the relevant key. Apparently, this really is the
4280 only way to toggle the state of the indicator lights. */
4281 dpyinfo
->faked_key
= wParam
;
4282 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
4283 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
4284 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
4285 KEYEVENTF_EXTENDEDKEY
| 0, 0);
4286 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
4287 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
4288 /* Ensure indicator lights are updated promptly on Windows 9x
4289 (TranslateMessage apparently does this), after forwarding
4291 post_character_message (hwnd
, msg
, wParam
, lParam
,
4292 w32_get_key_modifiers (wParam
, lParam
));
4293 windows_translate
= 1;
4297 case VK_PROCESSKEY
: /* Generated by IME. */
4298 windows_translate
= 1;
4301 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
4302 which is confusing for purposes of key binding; convert
4303 VK_CANCEL events into VK_PAUSE events. */
4307 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
4308 for purposes of key binding; convert these back into
4309 VK_NUMLOCK events, at least when we want to see NumLock key
4310 presses. (Note that there is never any possibility that
4311 VK_PAUSE with Ctrl really is C-Pause as per above.) */
4312 if (NILP (Vw32_enable_num_lock
) && modifier_set (VK_CONTROL
))
4313 wParam
= VK_NUMLOCK
;
4316 /* If not defined as a function key, change it to a WM_CHAR message. */
4317 if (lispy_function_keys
[wParam
] == 0)
4319 DWORD modifiers
= construct_console_modifiers ();
4321 if (!NILP (Vw32_recognize_altgr
)
4322 && modifier_set (VK_LCONTROL
) && modifier_set (VK_RMENU
))
4324 /* Always let TranslateMessage handle AltGr key chords;
4325 for some reason, ToAscii doesn't always process AltGr
4326 chords correctly. */
4327 windows_translate
= 1;
4329 else if ((modifiers
& (~SHIFT_PRESSED
& ~CAPSLOCK_ON
)) != 0)
4331 /* Handle key chords including any modifiers other
4332 than shift directly, in order to preserve as much
4333 modifier information as possible. */
4334 if ('A' <= wParam
&& wParam
<= 'Z')
4336 /* Don't translate modified alphabetic keystrokes,
4337 so the user doesn't need to constantly switch
4338 layout to type control or meta keystrokes when
4339 the normal layout translates alphabetic
4340 characters to non-ascii characters. */
4341 if (!modifier_set (VK_SHIFT
))
4342 wParam
+= ('a' - 'A');
4347 /* Try to handle other keystrokes by determining the
4348 base character (ie. translating the base key plus
4352 KEY_EVENT_RECORD key
;
4354 key
.bKeyDown
= TRUE
;
4355 key
.wRepeatCount
= 1;
4356 key
.wVirtualKeyCode
= wParam
;
4357 key
.wVirtualScanCode
= (lParam
& 0xFF0000) >> 16;
4358 key
.uChar
.AsciiChar
= 0;
4359 key
.dwControlKeyState
= modifiers
;
4361 add
= w32_kbd_patch_key (&key
);
4362 /* 0 means an unrecognised keycode, negative means
4363 dead key. Ignore both. */
4366 /* Forward asciified character sequence. */
4367 post_character_message
4368 (hwnd
, WM_CHAR
, key
.uChar
.AsciiChar
, lParam
,
4369 w32_get_key_modifiers (wParam
, lParam
));
4370 w32_kbd_patch_key (&key
);
4377 /* Let TranslateMessage handle everything else. */
4378 windows_translate
= 1;
4384 if (windows_translate
)
4386 MSG windows_msg
= { hwnd
, msg
, wParam
, lParam
, 0, {0,0} };
4388 windows_msg
.time
= GetMessageTime ();
4389 TranslateMessage (&windows_msg
);
4397 post_character_message (hwnd
, msg
, wParam
, lParam
,
4398 w32_get_key_modifiers (wParam
, lParam
));
4401 /* Simulate middle mouse button events when left and right buttons
4402 are used together, but only if user has two button mouse. */
4403 case WM_LBUTTONDOWN
:
4404 case WM_RBUTTONDOWN
:
4405 if (XINT (Vw32_num_mouse_buttons
) > 2)
4406 goto handle_plain_button
;
4409 int this = (msg
== WM_LBUTTONDOWN
) ? LMOUSE
: RMOUSE
;
4410 int other
= (msg
== WM_LBUTTONDOWN
) ? RMOUSE
: LMOUSE
;
4412 if (button_state
& this)
4415 if (button_state
== 0)
4418 button_state
|= this;
4420 if (button_state
& other
)
4422 if (mouse_button_timer
)
4424 KillTimer (hwnd
, mouse_button_timer
);
4425 mouse_button_timer
= 0;
4427 /* Generate middle mouse event instead. */
4428 msg
= WM_MBUTTONDOWN
;
4429 button_state
|= MMOUSE
;
4431 else if (button_state
& MMOUSE
)
4433 /* Ignore button event if we've already generated a
4434 middle mouse down event. This happens if the
4435 user releases and press one of the two buttons
4436 after we've faked a middle mouse event. */
4441 /* Flush out saved message. */
4442 post_msg (&saved_mouse_button_msg
);
4444 wmsg
.dwModifiers
= w32_get_modifiers ();
4445 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4447 /* Clear message buffer. */
4448 saved_mouse_button_msg
.msg
.hwnd
= 0;
4452 /* Hold onto message for now. */
4453 mouse_button_timer
=
4454 SetTimer (hwnd
, MOUSE_BUTTON_ID
,
4455 XINT (Vw32_mouse_button_tolerance
), NULL
);
4456 saved_mouse_button_msg
.msg
.hwnd
= hwnd
;
4457 saved_mouse_button_msg
.msg
.message
= msg
;
4458 saved_mouse_button_msg
.msg
.wParam
= wParam
;
4459 saved_mouse_button_msg
.msg
.lParam
= lParam
;
4460 saved_mouse_button_msg
.msg
.time
= GetMessageTime ();
4461 saved_mouse_button_msg
.dwModifiers
= w32_get_modifiers ();
4468 if (XINT (Vw32_num_mouse_buttons
) > 2)
4469 goto handle_plain_button
;
4472 int this = (msg
== WM_LBUTTONUP
) ? LMOUSE
: RMOUSE
;
4473 int other
= (msg
== WM_LBUTTONUP
) ? RMOUSE
: LMOUSE
;
4475 if ((button_state
& this) == 0)
4478 button_state
&= ~this;
4480 if (button_state
& MMOUSE
)
4482 /* Only generate event when second button is released. */
4483 if ((button_state
& other
) == 0)
4486 button_state
&= ~MMOUSE
;
4488 if (button_state
) abort ();
4495 /* Flush out saved message if necessary. */
4496 if (saved_mouse_button_msg
.msg
.hwnd
)
4498 post_msg (&saved_mouse_button_msg
);
4501 wmsg
.dwModifiers
= w32_get_modifiers ();
4502 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4504 /* Always clear message buffer and cancel timer. */
4505 saved_mouse_button_msg
.msg
.hwnd
= 0;
4506 KillTimer (hwnd
, mouse_button_timer
);
4507 mouse_button_timer
= 0;
4509 if (button_state
== 0)
4514 case WM_MBUTTONDOWN
:
4516 handle_plain_button
:
4521 if (parse_button (msg
, &button
, &up
))
4523 if (up
) ReleaseCapture ();
4524 else SetCapture (hwnd
);
4525 button
= (button
== 0) ? LMOUSE
:
4526 ((button
== 1) ? MMOUSE
: RMOUSE
);
4528 button_state
&= ~button
;
4530 button_state
|= button
;
4534 wmsg
.dwModifiers
= w32_get_modifiers ();
4535 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4540 if (XINT (Vw32_mouse_move_interval
) <= 0
4541 || (msg
== WM_MOUSEMOVE
&& button_state
== 0))
4543 wmsg
.dwModifiers
= w32_get_modifiers ();
4544 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4548 /* Hang onto mouse move and scroll messages for a bit, to avoid
4549 sending such events to Emacs faster than it can process them.
4550 If we get more events before the timer from the first message
4551 expires, we just replace the first message. */
4553 if (saved_mouse_move_msg
.msg
.hwnd
== 0)
4555 SetTimer (hwnd
, MOUSE_MOVE_ID
,
4556 XINT (Vw32_mouse_move_interval
), NULL
);
4558 /* Hold onto message for now. */
4559 saved_mouse_move_msg
.msg
.hwnd
= hwnd
;
4560 saved_mouse_move_msg
.msg
.message
= msg
;
4561 saved_mouse_move_msg
.msg
.wParam
= wParam
;
4562 saved_mouse_move_msg
.msg
.lParam
= lParam
;
4563 saved_mouse_move_msg
.msg
.time
= GetMessageTime ();
4564 saved_mouse_move_msg
.dwModifiers
= w32_get_modifiers ();
4569 wmsg
.dwModifiers
= w32_get_modifiers ();
4570 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4574 wmsg
.dwModifiers
= w32_get_modifiers ();
4575 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4579 /* Flush out saved messages if necessary. */
4580 if (wParam
== mouse_button_timer
)
4582 if (saved_mouse_button_msg
.msg
.hwnd
)
4584 post_msg (&saved_mouse_button_msg
);
4585 saved_mouse_button_msg
.msg
.hwnd
= 0;
4587 KillTimer (hwnd
, mouse_button_timer
);
4588 mouse_button_timer
= 0;
4590 else if (wParam
== mouse_move_timer
)
4592 if (saved_mouse_move_msg
.msg
.hwnd
)
4594 post_msg (&saved_mouse_move_msg
);
4595 saved_mouse_move_msg
.msg
.hwnd
= 0;
4597 KillTimer (hwnd
, mouse_move_timer
);
4598 mouse_move_timer
= 0;
4603 /* Windows doesn't send us focus messages when putting up and
4604 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
4605 The only indication we get that something happened is receiving
4606 this message afterwards. So this is a good time to reset our
4607 keyboard modifiers' state. */
4614 /* We must ensure menu bar is fully constructed and up to date
4615 before allowing user interaction with it. To achieve this
4616 we send this message to the lisp thread and wait for a
4617 reply (whose value is not actually needed) to indicate that
4618 the menu bar is now ready for use, so we can now return.
4620 To remain responsive in the meantime, we enter a nested message
4621 loop that can process all other messages.
4623 However, we skip all this if the message results from calling
4624 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
4625 thread a message because it is blocked on us at this point. We
4626 set menubar_active before calling TrackPopupMenu to indicate
4627 this (there is no possibility of confusion with real menubar
4630 f
= x_window_to_frame (dpyinfo
, hwnd
);
4632 && (f
->output_data
.w32
->menubar_active
4633 /* We can receive this message even in the absence of a
4634 menubar (ie. when the system menu is activated) - in this
4635 case we do NOT want to forward the message, otherwise it
4636 will cause the menubar to suddenly appear when the user
4637 had requested it to be turned off! */
4638 || f
->output_data
.w32
->menubar_widget
== NULL
))
4642 deferred_msg msg_buf
;
4644 /* Detect if message has already been deferred; in this case
4645 we cannot return any sensible value to ignore this. */
4646 if (find_deferred_msg (hwnd
, msg
) != NULL
)
4649 return send_deferred_msg (&msg_buf
, hwnd
, msg
, wParam
, lParam
);
4652 case WM_EXITMENULOOP
:
4653 f
= x_window_to_frame (dpyinfo
, hwnd
);
4655 /* Indicate that menubar can be modified again. */
4657 f
->output_data
.w32
->menubar_active
= 0;
4661 wmsg
.dwModifiers
= w32_get_modifiers ();
4662 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4665 case WM_MEASUREITEM
:
4666 f
= x_window_to_frame (dpyinfo
, hwnd
);
4669 MEASUREITEMSTRUCT
* pMis
= (MEASUREITEMSTRUCT
*) lParam
;
4671 if (pMis
->CtlType
== ODT_MENU
)
4673 /* Work out dimensions for popup menu titles. */
4674 char * title
= (char *) pMis
->itemData
;
4675 HDC hdc
= GetDC (hwnd
);
4676 HFONT menu_font
= GetCurrentObject (hdc
, OBJ_FONT
);
4677 LOGFONT menu_logfont
;
4681 GetObject (menu_font
, sizeof (menu_logfont
), &menu_logfont
);
4682 menu_logfont
.lfWeight
= FW_BOLD
;
4683 menu_font
= CreateFontIndirect (&menu_logfont
);
4684 old_font
= SelectObject (hdc
, menu_font
);
4686 pMis
->itemHeight
= GetSystemMetrics (SM_CYMENUSIZE
);
4689 GetTextExtentPoint32 (hdc
, title
, strlen (title
), &size
);
4690 pMis
->itemWidth
= size
.cx
;
4691 if (pMis
->itemHeight
< size
.cy
)
4692 pMis
->itemHeight
= size
.cy
;
4695 pMis
->itemWidth
= 0;
4697 SelectObject (hdc
, old_font
);
4698 DeleteObject (menu_font
);
4699 ReleaseDC (hwnd
, hdc
);
4706 f
= x_window_to_frame (dpyinfo
, hwnd
);
4709 DRAWITEMSTRUCT
* pDis
= (DRAWITEMSTRUCT
*) lParam
;
4711 if (pDis
->CtlType
== ODT_MENU
)
4713 /* Draw popup menu title. */
4714 char * title
= (char *) pDis
->itemData
;
4717 HDC hdc
= pDis
->hDC
;
4718 HFONT menu_font
= GetCurrentObject (hdc
, OBJ_FONT
);
4719 LOGFONT menu_logfont
;
4722 GetObject (menu_font
, sizeof (menu_logfont
), &menu_logfont
);
4723 menu_logfont
.lfWeight
= FW_BOLD
;
4724 menu_font
= CreateFontIndirect (&menu_logfont
);
4725 old_font
= SelectObject (hdc
, menu_font
);
4727 /* Always draw title as if not selected. */
4730 + GetSystemMetrics (SM_CXMENUCHECK
),
4732 ETO_OPAQUE
, &pDis
->rcItem
,
4733 title
, strlen (title
), NULL
);
4735 SelectObject (hdc
, old_font
);
4736 DeleteObject (menu_font
);
4744 /* Still not right - can't distinguish between clicks in the
4745 client area of the frame from clicks forwarded from the scroll
4746 bars - may have to hook WM_NCHITTEST to remember the mouse
4747 position and then check if it is in the client area ourselves. */
4748 case WM_MOUSEACTIVATE
:
4749 /* Discard the mouse click that activates a frame, allowing the
4750 user to click anywhere without changing point (or worse!).
4751 Don't eat mouse clicks on scrollbars though!! */
4752 if (LOWORD (lParam
) == HTCLIENT
)
4753 return MA_ACTIVATEANDEAT
;
4757 case WM_ACTIVATEAPP
:
4759 case WM_WINDOWPOSCHANGED
:
4761 /* Inform lisp thread that a frame might have just been obscured
4762 or exposed, so should recheck visibility of all frames. */
4763 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4767 dpyinfo
->faked_key
= 0;
4769 register_hot_keys (hwnd
);
4772 unregister_hot_keys (hwnd
);
4779 wmsg
.dwModifiers
= w32_get_modifiers ();
4780 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4784 wmsg
.dwModifiers
= w32_get_modifiers ();
4785 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4788 case WM_WINDOWPOSCHANGING
:
4791 LPWINDOWPOS lppos
= (WINDOWPOS
*) lParam
;
4793 wp
.length
= sizeof (WINDOWPLACEMENT
);
4794 GetWindowPlacement (hwnd
, &wp
);
4796 if (wp
.showCmd
!= SW_SHOWMINIMIZED
&& (lppos
->flags
& SWP_NOSIZE
) == 0)
4803 DWORD internal_border
;
4804 DWORD scrollbar_extra
;
4807 wp
.length
= sizeof(wp
);
4808 GetWindowRect (hwnd
, &wr
);
4812 font_width
= GetWindowLong (hwnd
, WND_FONTWIDTH_INDEX
);
4813 line_height
= GetWindowLong (hwnd
, WND_LINEHEIGHT_INDEX
);
4814 internal_border
= GetWindowLong (hwnd
, WND_BORDER_INDEX
);
4815 scrollbar_extra
= GetWindowLong (hwnd
, WND_SCROLLBAR_INDEX
);
4819 memset (&rect
, 0, sizeof (rect
));
4820 AdjustWindowRect (&rect
, GetWindowLong (hwnd
, GWL_STYLE
),
4821 GetMenu (hwnd
) != NULL
);
4823 /* Force width and height of client area to be exact
4824 multiples of the character cell dimensions. */
4825 wdiff
= (lppos
->cx
- (rect
.right
- rect
.left
)
4826 - 2 * internal_border
- scrollbar_extra
)
4828 hdiff
= (lppos
->cy
- (rect
.bottom
- rect
.top
)
4829 - 2 * internal_border
)
4834 /* For right/bottom sizing we can just fix the sizes.
4835 However for top/left sizing we will need to fix the X
4836 and Y positions as well. */
4841 if (wp
.showCmd
!= SW_SHOWMAXIMIZED
4842 && (lppos
->flags
& SWP_NOMOVE
) == 0)
4844 if (lppos
->x
!= wr
.left
|| lppos
->y
!= wr
.top
)
4851 lppos
->flags
|= SWP_NOMOVE
;
4862 case WM_GETMINMAXINFO
:
4863 /* Hack to correct bug that allows Emacs frames to be resized
4864 below the Minimum Tracking Size. */
4865 ((LPMINMAXINFO
) lParam
)->ptMinTrackSize
.y
++;
4868 case WM_EMACS_CREATESCROLLBAR
:
4869 return (LRESULT
) w32_createscrollbar ((struct frame
*) wParam
,
4870 (struct scroll_bar
*) lParam
);
4872 case WM_EMACS_SHOWWINDOW
:
4873 return ShowWindow ((HWND
) wParam
, (WPARAM
) lParam
);
4875 case WM_EMACS_SETFOREGROUND
:
4877 HWND foreground_window
;
4878 DWORD foreground_thread
, retval
;
4880 /* On NT 5.0, and apparently Windows 98, it is necessary to
4881 attach to the thread that currently has focus in order to
4882 pull the focus away from it. */
4883 foreground_window
= GetForegroundWindow ();
4884 foreground_thread
= GetWindowThreadProcessId (foreground_window
, NULL
);
4885 if (!foreground_window
4886 || foreground_thread
== GetCurrentThreadId ()
4887 || !AttachThreadInput (GetCurrentThreadId (),
4888 foreground_thread
, TRUE
))
4889 foreground_thread
= 0;
4891 retval
= SetForegroundWindow ((HWND
) wParam
);
4893 /* Detach from the previous foreground thread. */
4894 if (foreground_thread
)
4895 AttachThreadInput (GetCurrentThreadId (),
4896 foreground_thread
, FALSE
);
4901 case WM_EMACS_SETWINDOWPOS
:
4903 WINDOWPOS
* pos
= (WINDOWPOS
*) wParam
;
4904 return SetWindowPos (hwnd
, pos
->hwndInsertAfter
,
4905 pos
->x
, pos
->y
, pos
->cx
, pos
->cy
, pos
->flags
);
4908 case WM_EMACS_DESTROYWINDOW
:
4909 DragAcceptFiles ((HWND
) wParam
, FALSE
);
4910 return DestroyWindow ((HWND
) wParam
);
4912 case WM_EMACS_TRACKPOPUPMENU
:
4917 pos
= (POINT
*)lParam
;
4918 flags
= TPM_CENTERALIGN
;
4919 if (button_state
& LMOUSE
)
4920 flags
|= TPM_LEFTBUTTON
;
4921 else if (button_state
& RMOUSE
)
4922 flags
|= TPM_RIGHTBUTTON
;
4924 /* Remember we did a SetCapture on the initial mouse down event,
4925 so for safety, we make sure the capture is cancelled now. */
4929 /* Use menubar_active to indicate that WM_INITMENU is from
4930 TrackPopupMenu below, and should be ignored. */
4931 f
= x_window_to_frame (dpyinfo
, hwnd
);
4933 f
->output_data
.w32
->menubar_active
= 1;
4935 if (TrackPopupMenu ((HMENU
)wParam
, flags
, pos
->x
, pos
->y
,
4939 /* Eat any mouse messages during popupmenu */
4940 while (PeekMessage (&amsg
, hwnd
, WM_MOUSEFIRST
, WM_MOUSELAST
,
4942 /* Get the menu selection, if any */
4943 if (PeekMessage (&amsg
, hwnd
, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
))
4945 retval
= LOWORD (amsg
.wParam
);
4961 /* Check for messages registered at runtime. */
4962 if (msg
== msh_mousewheel
)
4964 wmsg
.dwModifiers
= w32_get_modifiers ();
4965 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
4970 return DefWindowProc (hwnd
, msg
, wParam
, lParam
);
4974 /* The most common default return code for handled messages is 0. */
4979 my_create_window (f
)
4984 if (!PostThreadMessage (dwWindowsThreadId
, WM_EMACS_CREATEWINDOW
, (WPARAM
)f
, 0))
4986 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
4989 /* Create and set up the w32 window for frame F. */
4992 w32_window (f
, window_prompting
, minibuffer_only
)
4994 long window_prompting
;
4995 int minibuffer_only
;
4999 /* Use the resource name as the top-level window name
5000 for looking up resources. Make a non-Lisp copy
5001 for the window manager, so GC relocation won't bother it.
5003 Elsewhere we specify the window name for the window manager. */
5006 char *str
= (char *) XSTRING (Vx_resource_name
)->data
;
5007 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
5008 strcpy (f
->namebuf
, str
);
5011 my_create_window (f
);
5013 validate_x_resource_name ();
5015 /* x_set_name normally ignores requests to set the name if the
5016 requested name is the same as the current name. This is the one
5017 place where that assumption isn't correct; f->name is set, but
5018 the server hasn't been told. */
5021 int explicit = f
->explicit_name
;
5023 f
->explicit_name
= 0;
5026 x_set_name (f
, name
, explicit);
5031 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
5032 initialize_frame_menubar (f
);
5034 if (FRAME_W32_WINDOW (f
) == 0)
5035 error ("Unable to create window");
5038 /* Handle the icon stuff for this window. Perhaps later we might
5039 want an x_set_icon_position which can be called interactively as
5047 Lisp_Object icon_x
, icon_y
;
5049 /* Set the position of the icon. Note that Windows 95 groups all
5050 icons in the tray. */
5051 icon_x
= w32_get_arg (parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
5052 icon_y
= w32_get_arg (parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
5053 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
5055 CHECK_NUMBER (icon_x
, 0);
5056 CHECK_NUMBER (icon_y
, 0);
5058 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
5059 error ("Both left and top icon corners of icon must be specified");
5063 if (! EQ (icon_x
, Qunbound
))
5064 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
5067 /* Start up iconic or window? */
5068 x_wm_set_window_state
5069 (f
, (EQ (w32_get_arg (parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
), Qicon
)
5073 x_text_icon (f
, (char *) XSTRING ((!NILP (f
->icon_name
)
5086 XGCValues gc_values
;
5090 /* Create the GC's of this frame.
5091 Note that many default values are used. */
5094 gc_values
.font
= f
->output_data
.w32
->font
;
5096 /* Cursor has cursor-color background, background-color foreground. */
5097 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
5098 gc_values
.background
= f
->output_data
.w32
->cursor_pixel
;
5099 f
->output_data
.w32
->cursor_gc
5100 = XCreateGC (NULL
, FRAME_W32_WINDOW (f
),
5101 (GCFont
| GCForeground
| GCBackground
),
5105 f
->output_data
.w32
->white_relief
.gc
= 0;
5106 f
->output_data
.w32
->black_relief
.gc
= 0;
5112 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
5114 "Make a new window, which is called a \"frame\" in Emacs terms.\n\
5115 Returns an Emacs frame object.\n\
5116 ALIST is an alist of frame parameters.\n\
5117 If the parameters specify that the frame should not have a minibuffer,\n\
5118 and do not specify a specific minibuffer window to use,\n\
5119 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\
5120 be shared by the new frame.\n\
5122 This function is an internal primitive--use `make-frame' instead.")
5127 Lisp_Object frame
, tem
;
5129 int minibuffer_only
= 0;
5130 long window_prompting
= 0;
5132 int count
= specpdl_ptr
- specpdl
;
5133 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
5134 Lisp_Object display
;
5135 struct w32_display_info
*dpyinfo
= NULL
;
5141 /* Use this general default value to start with
5142 until we know if this frame has a specified name. */
5143 Vx_resource_name
= Vinvocation_name
;
5145 display
= w32_get_arg (parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
5146 if (EQ (display
, Qunbound
))
5148 dpyinfo
= check_x_display_info (display
);
5150 kb
= dpyinfo
->kboard
;
5152 kb
= &the_only_kboard
;
5155 name
= w32_get_arg (parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
5157 && ! EQ (name
, Qunbound
)
5159 error ("Invalid frame name--not a string or nil");
5162 Vx_resource_name
= name
;
5164 /* See if parent window is specified. */
5165 parent
= w32_get_arg (parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
5166 if (EQ (parent
, Qunbound
))
5168 if (! NILP (parent
))
5169 CHECK_NUMBER (parent
, 0);
5171 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
5172 /* No need to protect DISPLAY because that's not used after passing
5173 it to make_frame_without_minibuffer. */
5175 GCPRO4 (parms
, parent
, name
, frame
);
5176 tem
= w32_get_arg (parms
, Qminibuffer
, "minibuffer", "Minibuffer",
5178 if (EQ (tem
, Qnone
) || NILP (tem
))
5179 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
5180 else if (EQ (tem
, Qonly
))
5182 f
= make_minibuffer_frame ();
5183 minibuffer_only
= 1;
5185 else if (WINDOWP (tem
))
5186 f
= make_frame_without_minibuffer (tem
, kb
, display
);
5190 XSETFRAME (frame
, f
);
5192 /* Note that Windows does support scroll bars. */
5193 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
5194 /* By default, make scrollbars the system standard width. */
5195 f
->scroll_bar_pixel_width
= GetSystemMetrics (SM_CXVSCROLL
);
5197 f
->output_method
= output_w32
;
5198 f
->output_data
.w32
=
5199 (struct w32_output
*) xmalloc (sizeof (struct w32_output
));
5200 bzero (f
->output_data
.w32
, sizeof (struct w32_output
));
5202 FRAME_FONTSET (f
) = -1;
5205 = w32_get_arg (parms
, Qicon_name
, "iconName", "Title", RES_TYPE_STRING
);
5206 if (! STRINGP (f
->icon_name
))
5207 f
->icon_name
= Qnil
;
5209 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
5211 FRAME_KBOARD (f
) = kb
;
5214 /* Specify the parent under which to make this window. */
5218 f
->output_data
.w32
->parent_desc
= (Window
) XFASTINT (parent
);
5219 f
->output_data
.w32
->explicit_parent
= 1;
5223 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
5224 f
->output_data
.w32
->explicit_parent
= 0;
5227 /* Set the name; the functions to which we pass f expect the name to
5229 if (EQ (name
, Qunbound
) || NILP (name
))
5231 f
->name
= build_string (dpyinfo
->w32_id_name
);
5232 f
->explicit_name
= 0;
5237 f
->explicit_name
= 1;
5238 /* use the frame's title when getting resources for this frame. */
5239 specbind (Qx_resource_name
, name
);
5242 /* Extract the window parameters from the supplied values
5243 that are needed to determine window geometry. */
5247 font
= w32_get_arg (parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
5250 /* First, try whatever font the caller has specified. */
5253 tem
= Fquery_fontset (font
, Qnil
);
5255 font
= x_new_fontset (f
, XSTRING (tem
)->data
);
5257 font
= x_new_font (f
, XSTRING (font
)->data
);
5259 /* Try out a font which we hope has bold and italic variations. */
5260 if (!STRINGP (font
))
5261 font
= x_new_font (f
, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
5262 if (! STRINGP (font
))
5263 font
= x_new_font (f
, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
5264 /* If those didn't work, look for something which will at least work. */
5265 if (! STRINGP (font
))
5266 font
= x_new_font (f
, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
5268 if (! STRINGP (font
))
5269 font
= build_string ("Fixedsys");
5271 x_default_parameter (f
, parms
, Qfont
, font
,
5272 "font", "Font", RES_TYPE_STRING
);
5275 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
5276 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
5277 /* This defaults to 2 in order to match xterm. We recognize either
5278 internalBorderWidth or internalBorder (which is what xterm calls
5280 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5284 value
= w32_get_arg (parms
, Qinternal_border_width
,
5285 "internalBorder", "InternalBorder", RES_TYPE_NUMBER
);
5286 if (! EQ (value
, Qunbound
))
5287 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
5290 /* Default internalBorderWidth to 0 on Windows to match other programs. */
5291 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (0),
5292 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER
);
5293 x_default_parameter (f
, parms
, Qvertical_scroll_bars
, Qright
,
5294 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL
);
5296 /* Also do the stuff which must be set before the window exists. */
5297 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
5298 "foreground", "Foreground", RES_TYPE_STRING
);
5299 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
5300 "background", "Background", RES_TYPE_STRING
);
5301 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
5302 "pointerColor", "Foreground", RES_TYPE_STRING
);
5303 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
5304 "cursorColor", "Foreground", RES_TYPE_STRING
);
5305 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
5306 "borderColor", "BorderColor", RES_TYPE_STRING
);
5307 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
5308 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
5309 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
5310 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
5313 /* Init faces before x_default_parameter is called for scroll-bar
5314 parameters because that function calls x_set_scroll_bar_width,
5315 which calls change_frame_size, which calls Fset_window_buffer,
5316 which runs hooks, which call Fvertical_motion. At the end, we
5317 end up in init_iterator with a null face cache, which should not
5319 init_frame_faces (f
);
5321 x_default_parameter (f
, parms
, Qmenu_bar_lines
, make_number (1),
5322 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
5323 x_default_parameter (f
, parms
, Qtool_bar_lines
, make_number (0),
5324 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
5325 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
5326 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL
);
5327 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
5328 "title", "Title", RES_TYPE_STRING
);
5330 f
->output_data
.w32
->dwStyle
= WS_OVERLAPPEDWINDOW
;
5331 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
5332 window_prompting
= x_figure_window_size (f
, parms
);
5334 if (window_prompting
& XNegative
)
5336 if (window_prompting
& YNegative
)
5337 f
->output_data
.w32
->win_gravity
= SouthEastGravity
;
5339 f
->output_data
.w32
->win_gravity
= NorthEastGravity
;
5343 if (window_prompting
& YNegative
)
5344 f
->output_data
.w32
->win_gravity
= SouthWestGravity
;
5346 f
->output_data
.w32
->win_gravity
= NorthWestGravity
;
5349 f
->output_data
.w32
->size_hint_flags
= window_prompting
;
5351 tem
= w32_get_arg (parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
5352 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
5354 /* Create the window. Add the tool-bar height to the initial frame
5355 height so that the user gets a text display area of the size he
5356 specified with -g or via the registry. Later changes of the
5357 tool-bar height don't change the frame size. This is done so that
5358 users can create tall Emacs frames without having to guess how
5359 tall the tool-bar will get. */
5360 f
->height
+= FRAME_TOOL_BAR_LINES (f
);
5361 w32_window (f
, window_prompting
, minibuffer_only
);
5366 /* Now consider the frame official. */
5367 FRAME_W32_DISPLAY_INFO (f
)->reference_count
++;
5368 Vframe_list
= Fcons (frame
, Vframe_list
);
5370 /* We need to do this after creating the window, so that the
5371 icon-creation functions can say whose icon they're describing. */
5372 x_default_parameter (f
, parms
, Qicon_type
, Qnil
,
5373 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
5375 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
5376 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
5377 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
5378 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
5379 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
5380 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
5381 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
5382 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER
);
5384 /* Dimensions, especially f->height, must be done via change_frame_size.
5385 Change will not be effected unless different from the current
5390 SET_FRAME_WIDTH (f
, 0);
5391 change_frame_size (f
, height
, width
, 1, 0, 0);
5393 /* Tell the server what size and position, etc, we want, and how
5394 badly we want them. This should be done after we have the menu
5395 bar so that its size can be taken into account. */
5397 x_wm_set_size_hint (f
, window_prompting
, 0);
5400 /* Set up faces after all frame parameters are known. This call
5401 also merges in face attributes specified for new frames. If we
5402 don't do this, the `menu' face for instance won't have the right
5403 colors, and the menu bar won't appear in the specified colors for
5405 call1 (Qface_set_after_frame_default
, frame
);
5407 /* Make the window appear on the frame and enable display, unless
5408 the caller says not to. However, with explicit parent, Emacs
5409 cannot control visibility, so don't try. */
5410 if (! f
->output_data
.w32
->explicit_parent
)
5412 Lisp_Object visibility
;
5414 visibility
= w32_get_arg (parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
);
5415 if (EQ (visibility
, Qunbound
))
5418 if (EQ (visibility
, Qicon
))
5419 x_iconify_frame (f
);
5420 else if (! NILP (visibility
))
5421 x_make_frame_visible (f
);
5423 /* Must have been Qnil. */
5427 return unbind_to (count
, frame
);
5430 /* FRAME is used only to get a handle on the X display. We don't pass the
5431 display info directly because we're called from frame.c, which doesn't
5432 know about that structure. */
5434 x_get_focus_frame (frame
)
5435 struct frame
*frame
;
5437 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (frame
);
5439 if (! dpyinfo
->w32_focus_frame
)
5442 XSETFRAME (xfocus
, dpyinfo
->w32_focus_frame
);
5446 DEFUN ("w32-focus-frame", Fw32_focus_frame
, Sw32_focus_frame
, 1, 1, 0,
5447 "Give FRAME input focus, raising to foreground if necessary.")
5451 x_focus_on_frame (check_x_frame (frame
));
5456 /* Return the charset portion of a font name. */
5457 char * xlfd_charset_of_font (char * fontname
)
5459 char *charset
, *encoding
;
5461 encoding
= strrchr(fontname
, '-');
5466 charset
= strrchr(fontname
, '-');
5469 if (!charset
|| strcmp(charset
, "-*-*") == 0)
5475 struct font_info
*w32_load_bdf_font (struct frame
*f
, char *fontname
,
5476 int size
, char* filename
);
5477 BOOL
w32_to_x_font (LOGFONT
* lplf
, char * lpxstr
, int len
, char * charset
);
5480 w32_load_system_font (f
,fontname
,size
)
5485 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
5486 Lisp_Object font_names
;
5488 /* Get a list of all the fonts that match this name. Once we
5489 have a list of matching fonts, we compare them against the fonts
5490 we already have loaded by comparing names. */
5491 font_names
= w32_list_fonts (f
, build_string (fontname
), size
, 100);
5493 if (!NILP (font_names
))
5498 /* First check if any are already loaded, as that is cheaper
5499 than loading another one. */
5500 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
5501 for (tail
= font_names
; CONSP (tail
); tail
= XCDR (tail
))
5502 if (dpyinfo
->font_table
[i
].name
5503 && (!strcmp (dpyinfo
->font_table
[i
].name
,
5504 XSTRING (XCAR (tail
))->data
)
5505 || !strcmp (dpyinfo
->font_table
[i
].full_name
,
5506 XSTRING (XCAR (tail
))->data
)))
5507 return (dpyinfo
->font_table
+ i
);
5509 fontname
= (char *) XSTRING (XCAR (font_names
))->data
;
5511 else if (w32_strict_fontnames
)
5513 /* If EnumFontFamiliesEx was available, we got a full list of
5514 fonts back so stop now to avoid the possibility of loading a
5515 random font. If we had to fall back to EnumFontFamilies, the
5516 list is incomplete, so continue whether the font we want was
5518 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
5519 FARPROC enum_font_families_ex
5520 = GetProcAddress (gdi32
, "EnumFontFamiliesExA");
5521 if (enum_font_families_ex
)
5525 /* Load the font and add it to the table. */
5527 char *full_name
, *encoding
, *charset
;
5529 struct font_info
*fontp
;
5534 if (!fontname
|| !x_to_w32_font (fontname
, &lf
))
5537 if (!*lf
.lfFaceName
)
5538 /* If no name was specified for the font, we get a random font
5539 from CreateFontIndirect - this is not particularly
5540 desirable, especially since CreateFontIndirect does not
5541 fill out the missing name in lf, so we never know what we
5545 font
= (XFontStruct
*) xmalloc (sizeof (XFontStruct
));
5546 bzero (font
, sizeof (*font
));
5548 /* Set bdf to NULL to indicate that this is a Windows font. */
5553 font
->hfont
= CreateFontIndirect (&lf
);
5555 if (font
->hfont
== NULL
)
5563 int codepage
= w32_codepage_for_font (fontname
);
5565 hdc
= GetDC (dpyinfo
->root_window
);
5566 oldobj
= SelectObject (hdc
, font
->hfont
);
5568 ok
= GetTextMetrics (hdc
, &font
->tm
);
5569 if (codepage
== CP_UNICODE
)
5570 font
->double_byte_p
= 1;
5572 font
->double_byte_p
= GetFontLanguageInfo(hdc
) & GCP_DBCS
;
5574 SelectObject (hdc
, oldobj
);
5575 ReleaseDC (dpyinfo
->root_window
, hdc
);
5576 /* Fill out details in lf according to the font that was
5578 lf
.lfHeight
= font
->tm
.tmInternalLeading
- font
->tm
.tmHeight
;
5579 lf
.lfWidth
= font
->tm
.tmAveCharWidth
;
5580 lf
.lfWeight
= font
->tm
.tmWeight
;
5581 lf
.lfItalic
= font
->tm
.tmItalic
;
5582 lf
.lfCharSet
= font
->tm
.tmCharSet
;
5583 lf
.lfPitchAndFamily
= ((font
->tm
.tmPitchAndFamily
& TMPF_FIXED_PITCH
)
5584 ? VARIABLE_PITCH
: FIXED_PITCH
);
5585 lf
.lfOutPrecision
= ((font
->tm
.tmPitchAndFamily
& TMPF_VECTOR
)
5586 ? OUT_STROKE_PRECIS
: OUT_STRING_PRECIS
);
5588 w32_cache_char_metrics (font
);
5595 w32_unload_font (dpyinfo
, font
);
5599 /* Find a free slot in the font table. */
5600 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
5601 if (dpyinfo
->font_table
[i
].name
== NULL
)
5604 /* If no free slot found, maybe enlarge the font table. */
5605 if (i
== dpyinfo
->n_fonts
5606 && dpyinfo
->n_fonts
== dpyinfo
->font_table_size
)
5609 dpyinfo
->font_table_size
= max (16, 2 * dpyinfo
->font_table_size
);
5610 sz
= dpyinfo
->font_table_size
* sizeof *dpyinfo
->font_table
;
5612 = (struct font_info
*) xrealloc (dpyinfo
->font_table
, sz
);
5615 fontp
= dpyinfo
->font_table
+ i
;
5616 if (i
== dpyinfo
->n_fonts
)
5619 /* Now fill in the slots of *FONTP. */
5622 fontp
->font_idx
= i
;
5623 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
5624 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
5626 charset
= xlfd_charset_of_font (fontname
);
5628 /* Work out the font's full name. */
5629 full_name
= (char *)xmalloc (100);
5630 if (full_name
&& w32_to_x_font (&lf
, full_name
, 100, charset
))
5631 fontp
->full_name
= full_name
;
5634 /* If all else fails - just use the name we used to load it. */
5636 fontp
->full_name
= fontp
->name
;
5639 fontp
->size
= FONT_WIDTH (font
);
5640 fontp
->height
= FONT_HEIGHT (font
);
5642 /* The slot `encoding' specifies how to map a character
5643 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
5644 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
5645 (0:0x20..0x7F, 1:0xA0..0xFF,
5646 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
5647 2:0xA020..0xFF7F). For the moment, we don't know which charset
5648 uses this font. So, we set information in fontp->encoding[1]
5649 which is never used by any charset. If mapping can't be
5650 decided, set FONT_ENCODING_NOT_DECIDED. */
5652 /* SJIS fonts need to be set to type 4, all others seem to work as
5653 type FONT_ENCODING_NOT_DECIDED. */
5654 encoding
= strrchr (fontp
->name
, '-');
5655 if (encoding
&& stricmp (encoding
+1, "sjis") == 0)
5656 fontp
->encoding
[1] = 4;
5658 fontp
->encoding
[1] = FONT_ENCODING_NOT_DECIDED
;
5660 /* The following three values are set to 0 under W32, which is
5661 what they get set to if XGetFontProperty fails under X. */
5662 fontp
->baseline_offset
= 0;
5663 fontp
->relative_compose
= 0;
5664 fontp
->default_ascent
= 0;
5666 /* Set global flag fonts_changed_p to non-zero if the font loaded
5667 has a character with a smaller width than any other character
5668 before, or if the font loaded has a smalle>r height than any
5669 other font loaded before. If this happens, it will make a
5670 glyph matrix reallocation necessary. */
5671 fonts_changed_p
= x_compute_min_glyph_bounds (f
);
5677 /* Load font named FONTNAME of size SIZE for frame F, and return a
5678 pointer to the structure font_info while allocating it dynamically.
5679 If loading fails, return NULL. */
5681 w32_load_font (f
,fontname
,size
)
5686 Lisp_Object bdf_fonts
;
5687 struct font_info
*retval
= NULL
;
5689 bdf_fonts
= w32_list_bdf_fonts (build_string (fontname
));
5691 while (!retval
&& CONSP (bdf_fonts
))
5693 char *bdf_name
, *bdf_file
;
5694 Lisp_Object bdf_pair
;
5696 bdf_name
= XSTRING (XCAR (bdf_fonts
))->data
;
5697 bdf_pair
= Fassoc (XCAR (bdf_fonts
), Vw32_bdf_filename_alist
);
5698 bdf_file
= XSTRING (XCDR (bdf_pair
))->data
;
5700 retval
= w32_load_bdf_font (f
, bdf_name
, size
, bdf_file
);
5702 bdf_fonts
= XCDR (bdf_fonts
);
5708 return w32_load_system_font(f
, fontname
, size
);
5713 w32_unload_font (dpyinfo
, font
)
5714 struct w32_display_info
*dpyinfo
;
5719 if (font
->per_char
) xfree (font
->per_char
);
5720 if (font
->bdf
) w32_free_bdf_font (font
->bdf
);
5722 if (font
->hfont
) DeleteObject(font
->hfont
);
5727 /* The font conversion stuff between x and w32 */
5729 /* X font string is as follows (from faces.el)
5733 * (weight "\\(bold\\|demibold\\|medium\\)") ; 1
5734 * (weight\? "\\([^-]*\\)") ; 1
5735 * (slant "\\([ior]\\)") ; 2
5736 * (slant\? "\\([^-]?\\)") ; 2
5737 * (swidth "\\([^-]*\\)") ; 3
5738 * (adstyle "[^-]*") ; 4
5739 * (pixelsize "[0-9]+")
5740 * (pointsize "[0-9][0-9]+")
5741 * (resx "[0-9][0-9]+")
5742 * (resy "[0-9][0-9]+")
5743 * (spacing "[cmp?*]")
5744 * (avgwidth "[0-9]+")
5745 * (registry "[^-]+")
5746 * (encoding "[^-]+")
5751 x_to_w32_weight (lpw
)
5754 if (!lpw
) return (FW_DONTCARE
);
5756 if (stricmp (lpw
,"heavy") == 0) return FW_HEAVY
;
5757 else if (stricmp (lpw
,"extrabold") == 0) return FW_EXTRABOLD
;
5758 else if (stricmp (lpw
,"bold") == 0) return FW_BOLD
;
5759 else if (stricmp (lpw
,"demibold") == 0) return FW_SEMIBOLD
;
5760 else if (stricmp (lpw
,"semibold") == 0) return FW_SEMIBOLD
;
5761 else if (stricmp (lpw
,"medium") == 0) return FW_MEDIUM
;
5762 else if (stricmp (lpw
,"normal") == 0) return FW_NORMAL
;
5763 else if (stricmp (lpw
,"light") == 0) return FW_LIGHT
;
5764 else if (stricmp (lpw
,"extralight") == 0) return FW_EXTRALIGHT
;
5765 else if (stricmp (lpw
,"thin") == 0) return FW_THIN
;
5772 w32_to_x_weight (fnweight
)
5775 if (fnweight
>= FW_HEAVY
) return "heavy";
5776 if (fnweight
>= FW_EXTRABOLD
) return "extrabold";
5777 if (fnweight
>= FW_BOLD
) return "bold";
5778 if (fnweight
>= FW_SEMIBOLD
) return "demibold";
5779 if (fnweight
>= FW_MEDIUM
) return "medium";
5780 if (fnweight
>= FW_NORMAL
) return "normal";
5781 if (fnweight
>= FW_LIGHT
) return "light";
5782 if (fnweight
>= FW_EXTRALIGHT
) return "extralight";
5783 if (fnweight
>= FW_THIN
) return "thin";
5789 x_to_w32_charset (lpcs
)
5792 Lisp_Object this_entry
, w32_charset
;
5794 /* Look through w32-charset-info-alist for the character set.
5795 Format of each entry is
5796 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5798 this_entry
= Fassoc (build_string(lpcs
), Vw32_charset_info_alist
);
5800 if (NILP(this_entry
))
5802 /* At startup, we want iso8859-1 fonts to come up properly. */
5803 if (stricmp(lpcs
, "iso8859-1") == 0)
5804 return ANSI_CHARSET
;
5806 return DEFAULT_CHARSET
;
5809 w32_charset
= Fcar (Fcdr (this_entry
));
5811 // Translate Lisp symbol to number.
5812 if (w32_charset
== Qw32_charset_ansi
)
5813 return ANSI_CHARSET
;
5814 if (w32_charset
== Qw32_charset_symbol
)
5815 return SYMBOL_CHARSET
;
5816 if (w32_charset
== Qw32_charset_shiftjis
)
5817 return SHIFTJIS_CHARSET
;
5818 if (w32_charset
== Qw32_charset_hangeul
)
5819 return HANGEUL_CHARSET
;
5820 if (w32_charset
== Qw32_charset_chinesebig5
)
5821 return CHINESEBIG5_CHARSET
;
5822 if (w32_charset
== Qw32_charset_gb2312
)
5823 return GB2312_CHARSET
;
5824 if (w32_charset
== Qw32_charset_oem
)
5826 #ifdef JOHAB_CHARSET
5827 if (w32_charset
== Qw32_charset_johab
)
5828 return JOHAB_CHARSET
;
5829 if (w32_charset
== Qw32_charset_easteurope
)
5830 return EASTEUROPE_CHARSET
;
5831 if (w32_charset
== Qw32_charset_turkish
)
5832 return TURKISH_CHARSET
;
5833 if (w32_charset
== Qw32_charset_baltic
)
5834 return BALTIC_CHARSET
;
5835 if (w32_charset
== Qw32_charset_russian
)
5836 return RUSSIAN_CHARSET
;
5837 if (w32_charset
== Qw32_charset_arabic
)
5838 return ARABIC_CHARSET
;
5839 if (w32_charset
== Qw32_charset_greek
)
5840 return GREEK_CHARSET
;
5841 if (w32_charset
== Qw32_charset_hebrew
)
5842 return HEBREW_CHARSET
;
5843 if (w32_charset
== Qw32_charset_vietnamese
)
5844 return VIETNAMESE_CHARSET
;
5845 if (w32_charset
== Qw32_charset_thai
)
5846 return THAI_CHARSET
;
5847 if (w32_charset
== Qw32_charset_mac
)
5849 #endif /* JOHAB_CHARSET */
5850 #ifdef UNICODE_CHARSET
5851 if (w32_charset
== Qw32_charset_unicode
)
5852 return UNICODE_CHARSET
;
5855 return DEFAULT_CHARSET
;
5860 w32_to_x_charset (fncharset
)
5863 static char buf
[16];
5864 Lisp_Object charset_type
;
5869 /* Handle startup case of w32-charset-info-alist not
5870 being set up yet. */
5871 if (NILP(Vw32_charset_info_alist
))
5873 charset_type
= Qw32_charset_ansi
;
5875 case DEFAULT_CHARSET
:
5876 charset_type
= Qw32_charset_default
;
5878 case SYMBOL_CHARSET
:
5879 charset_type
= Qw32_charset_symbol
;
5881 case SHIFTJIS_CHARSET
:
5882 charset_type
= Qw32_charset_shiftjis
;
5884 case HANGEUL_CHARSET
:
5885 charset_type
= Qw32_charset_hangeul
;
5887 case GB2312_CHARSET
:
5888 charset_type
= Qw32_charset_gb2312
;
5890 case CHINESEBIG5_CHARSET
:
5891 charset_type
= Qw32_charset_chinesebig5
;
5894 charset_type
= Qw32_charset_oem
;
5897 /* More recent versions of Windows (95 and NT4.0) define more
5899 #ifdef EASTEUROPE_CHARSET
5900 case EASTEUROPE_CHARSET
:
5901 charset_type
= Qw32_charset_easteurope
;
5903 case TURKISH_CHARSET
:
5904 charset_type
= Qw32_charset_turkish
;
5906 case BALTIC_CHARSET
:
5907 charset_type
= Qw32_charset_baltic
;
5909 case RUSSIAN_CHARSET
:
5910 charset_type
= Qw32_charset_russian
;
5912 case ARABIC_CHARSET
:
5913 charset_type
= Qw32_charset_arabic
;
5916 charset_type
= Qw32_charset_greek
;
5918 case HEBREW_CHARSET
:
5919 charset_type
= Qw32_charset_hebrew
;
5921 case VIETNAMESE_CHARSET
:
5922 charset_type
= Qw32_charset_vietnamese
;
5925 charset_type
= Qw32_charset_thai
;
5928 charset_type
= Qw32_charset_mac
;
5931 charset_type
= Qw32_charset_johab
;
5935 #ifdef UNICODE_CHARSET
5936 case UNICODE_CHARSET
:
5937 charset_type
= Qw32_charset_unicode
;
5941 /* Encode numerical value of unknown charset. */
5942 sprintf (buf
, "*-#%u", fncharset
);
5948 char * best_match
= NULL
;
5950 /* Look through w32-charset-info-alist for the character set.
5951 Prefer ISO codepages, and prefer lower numbers in the ISO
5952 range. Only return charsets for codepages which are installed.
5954 Format of each entry is
5955 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5957 for (rest
= Vw32_charset_info_alist
; CONSP (rest
); rest
= XCDR (rest
))
5960 Lisp_Object w32_charset
;
5961 Lisp_Object codepage
;
5963 Lisp_Object this_entry
= XCAR (rest
);
5965 /* Skip invalid entries in alist. */
5966 if (!CONSP (this_entry
) || !STRINGP (XCAR (this_entry
))
5967 || !CONSP (XCDR (this_entry
))
5968 || !SYMBOLP (XCAR (XCDR (this_entry
))))
5971 x_charset
= XSTRING (XCAR (this_entry
))->data
;
5972 w32_charset
= XCAR (XCDR (this_entry
));
5973 codepage
= XCDR (XCDR (this_entry
));
5975 /* Look for Same charset and a valid codepage (or non-int
5976 which means ignore). */
5977 if (w32_charset
== charset_type
5978 && (!INTEGERP (codepage
) || codepage
== CP_DEFAULT
5979 || IsValidCodePage (XINT (codepage
))))
5981 /* If we don't have a match already, then this is the
5984 best_match
= x_charset
;
5985 /* If this is an ISO codepage, and the best so far isn't,
5986 then this is better. */
5987 else if (stricmp (best_match
, "iso") != 0
5988 && stricmp (x_charset
, "iso") == 0)
5989 best_match
= x_charset
;
5990 /* If both are ISO8859 codepages, choose the one with the
5991 lowest number in the encoding field. */
5992 else if (stricmp (best_match
, "iso8859-") == 0
5993 && stricmp (x_charset
, "iso8859-") == 0)
5995 int best_enc
= atoi (best_match
+ 8);
5996 int this_enc
= atoi (x_charset
+ 8);
5997 if (this_enc
> 0 && this_enc
< best_enc
)
5998 best_match
= x_charset
;
6003 /* If no match, encode the numeric value. */
6006 sprintf (buf
, "*-#%u", fncharset
);
6010 strncpy(buf
, best_match
, 15);
6017 /* Get the Windows codepage corresponding to the specified font. The
6018 charset info in the font name is used to look up
6019 w32-charset-to-codepage-alist. */
6021 w32_codepage_for_font (char *fontname
)
6023 Lisp_Object codepage
, entry
;
6024 char *charset_str
, *charset
, *end
;
6026 if (NILP (Vw32_charset_info_alist
))
6029 /* Extract charset part of font string. */
6030 charset
= xlfd_charset_of_font (fontname
);
6035 charset_str
= (char *) alloca (strlen (charset
));
6036 strcpy (charset_str
, charset
);
6038 /* Remove leading "*-". */
6039 if (strncmp ("*-", charset_str
, 2) == 0)
6040 charset
= charset_str
+ 2;
6042 charset
= charset_str
;
6044 /* Stop match at wildcard (including preceding '-'). */
6045 if (end
= strchr (charset
, '*'))
6047 if (end
> charset
&& *(end
-1) == '-')
6052 entry
= Fassoc (build_string(charset
), Vw32_charset_info_alist
);
6056 codepage
= Fcdr (Fcdr (entry
));
6058 if (NILP (codepage
))
6060 else if (XFASTINT (codepage
) == XFASTINT (Qt
))
6062 else if (INTEGERP (codepage
))
6063 return XINT (codepage
);
6070 w32_to_x_font (lplogfont
, lpxstr
, len
, specific_charset
)
6071 LOGFONT
* lplogfont
;
6074 char * specific_charset
;
6078 char height_pixels
[8];
6080 char width_pixels
[8];
6081 char *fontname_dash
;
6082 int display_resy
= one_w32_display_info
.resy
;
6083 int display_resx
= one_w32_display_info
.resx
;
6085 struct coding_system coding
;
6087 if (!lpxstr
) abort ();
6092 if (lplogfont
->lfOutPrecision
== OUT_STRING_PRECIS
)
6093 fonttype
= "raster";
6094 else if (lplogfont
->lfOutPrecision
== OUT_STROKE_PRECIS
)
6095 fonttype
= "outline";
6097 fonttype
= "unknown";
6099 setup_coding_system (Fcheck_coding_system (Vw32_system_coding_system
),
6101 coding
.src_multibyte
= 0;
6102 coding
.dst_multibyte
= 1;
6103 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6104 bufsz
= decoding_buffer_size (&coding
, LF_FACESIZE
);
6106 fontname
= alloca(sizeof(*fontname
) * bufsz
);
6107 decode_coding (&coding
, lplogfont
->lfFaceName
, fontname
,
6108 strlen(lplogfont
->lfFaceName
), bufsz
- 1);
6109 *(fontname
+ coding
.produced
) = '\0';
6111 /* Replace dashes with underscores so the dashes are not
6113 fontname_dash
= fontname
;
6114 while (fontname_dash
= strchr (fontname_dash
, '-'))
6115 *fontname_dash
= '_';
6117 if (lplogfont
->lfHeight
)
6119 sprintf (height_pixels
, "%u", abs (lplogfont
->lfHeight
));
6120 sprintf (height_dpi
, "%u",
6121 abs (lplogfont
->lfHeight
) * 720 / display_resy
);
6125 strcpy (height_pixels
, "*");
6126 strcpy (height_dpi
, "*");
6128 if (lplogfont
->lfWidth
)
6129 sprintf (width_pixels
, "%u", lplogfont
->lfWidth
* 10);
6131 strcpy (width_pixels
, "*");
6133 _snprintf (lpxstr
, len
- 1,
6134 "-%s-%s-%s-%c-normal-normal-%s-%s-%d-%d-%c-%s-%s",
6135 fonttype
, /* foundry */
6136 fontname
, /* family */
6137 w32_to_x_weight (lplogfont
->lfWeight
), /* weight */
6138 lplogfont
->lfItalic
?'i':'r', /* slant */
6140 /* add style name */
6141 height_pixels
, /* pixel size */
6142 height_dpi
, /* point size */
6143 display_resx
, /* resx */
6144 display_resy
, /* resy */
6145 ((lplogfont
->lfPitchAndFamily
& 0x3) == VARIABLE_PITCH
)
6146 ? 'p' : 'c', /* spacing */
6147 width_pixels
, /* avg width */
6148 specific_charset
? specific_charset
6149 : w32_to_x_charset (lplogfont
->lfCharSet
)
6150 /* charset registry and encoding */
6153 lpxstr
[len
- 1] = 0; /* just to be sure */
6158 x_to_w32_font (lpxstr
, lplogfont
)
6160 LOGFONT
* lplogfont
;
6162 struct coding_system coding
;
6164 if (!lplogfont
) return (FALSE
);
6166 memset (lplogfont
, 0, sizeof (*lplogfont
));
6168 /* Set default value for each field. */
6170 lplogfont
->lfOutPrecision
= OUT_DEFAULT_PRECIS
;
6171 lplogfont
->lfClipPrecision
= CLIP_DEFAULT_PRECIS
;
6172 lplogfont
->lfQuality
= DEFAULT_QUALITY
;
6174 /* go for maximum quality */
6175 lplogfont
->lfOutPrecision
= OUT_STROKE_PRECIS
;
6176 lplogfont
->lfClipPrecision
= CLIP_STROKE_PRECIS
;
6177 lplogfont
->lfQuality
= PROOF_QUALITY
;
6180 lplogfont
->lfCharSet
= DEFAULT_CHARSET
;
6181 lplogfont
->lfWeight
= FW_DONTCARE
;
6182 lplogfont
->lfPitchAndFamily
= DEFAULT_PITCH
| FF_DONTCARE
;
6187 /* Provide a simple escape mechanism for specifying Windows font names
6188 * directly -- if font spec does not beginning with '-', assume this
6190 * "<font name>[:height in pixels[:width in pixels[:weight]]]"
6196 char name
[50], weight
[20], slant
, pitch
, pixels
[10], height
[10],
6197 width
[10], resy
[10], remainder
[20];
6199 int dpi
= one_w32_display_info
.resy
;
6201 fields
= sscanf (lpxstr
,
6202 "-%*[^-]-%49[^-]-%19[^-]-%c-%*[^-]-%*[^-]-%9[^-]-%9[^-]-%*[^-]-%9[^-]-%c-%9[^-]-%19s",
6203 name
, weight
, &slant
, pixels
, height
, resy
, &pitch
, width
, remainder
);
6204 if (fields
== EOF
) return (FALSE
);
6206 /* If wildcards cover more than one field, we don't know which
6207 field is which, so don't fill any in. */
6212 if (fields
> 0 && name
[0] != '*')
6218 (Fcheck_coding_system (Vw32_system_coding_system
), &coding
);
6219 coding
.src_multibyte
= 1;
6220 coding
.dst_multibyte
= 1;
6221 bufsize
= encoding_buffer_size (&coding
, strlen (name
));
6222 buf
= (unsigned char *) alloca (bufsize
);
6223 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6224 encode_coding (&coding
, name
, buf
, strlen (name
), bufsize
);
6225 if (coding
.produced
>= LF_FACESIZE
)
6226 coding
.produced
= LF_FACESIZE
- 1;
6227 buf
[coding
.produced
] = 0;
6228 strcpy (lplogfont
->lfFaceName
, buf
);
6232 lplogfont
->lfFaceName
[0] = '\0';
6237 lplogfont
->lfWeight
= x_to_w32_weight ((fields
> 0 ? weight
: ""));
6241 lplogfont
->lfItalic
= (fields
> 0 && slant
== 'i');
6245 if (fields
> 0 && pixels
[0] != '*')
6246 lplogfont
->lfHeight
= atoi (pixels
);
6250 if (fields
> 0 && resy
[0] != '*')
6253 if (tem
> 0) dpi
= tem
;
6256 if (fields
> -1 && lplogfont
->lfHeight
== 0 && height
[0] != '*')
6257 lplogfont
->lfHeight
= atoi (height
) * dpi
/ 720;
6260 lplogfont
->lfPitchAndFamily
=
6261 (fields
> 0 && pitch
== 'p') ? VARIABLE_PITCH
: FIXED_PITCH
;
6265 if (fields
> 0 && width
[0] != '*')
6266 lplogfont
->lfWidth
= atoi (width
) / 10;
6270 /* Strip the trailing '-' if present. (it shouldn't be, as it
6271 fails the test against xlfd-tight-regexp in fontset.el). */
6273 int len
= strlen (remainder
);
6274 if (len
> 0 && remainder
[len
-1] == '-')
6275 remainder
[len
-1] = 0;
6277 encoding
= remainder
;
6278 if (strncmp (encoding
, "*-", 2) == 0)
6280 lplogfont
->lfCharSet
= x_to_w32_charset (fields
> 0 ? encoding
: "");
6285 char name
[100], height
[10], width
[10], weight
[20];
6287 fields
= sscanf (lpxstr
,
6288 "%99[^:]:%9[^:]:%9[^:]:%19s",
6289 name
, height
, width
, weight
);
6291 if (fields
== EOF
) return (FALSE
);
6295 strncpy (lplogfont
->lfFaceName
,name
, LF_FACESIZE
);
6296 lplogfont
->lfFaceName
[LF_FACESIZE
-1] = 0;
6300 lplogfont
->lfFaceName
[0] = 0;
6306 lplogfont
->lfHeight
= atoi (height
);
6311 lplogfont
->lfWidth
= atoi (width
);
6315 lplogfont
->lfWeight
= x_to_w32_weight ((fields
> 0 ? weight
: ""));
6318 /* This makes TrueType fonts work better. */
6319 lplogfont
->lfHeight
= - abs (lplogfont
->lfHeight
);
6324 /* Strip the pixel height and point height from the given xlfd, and
6325 return the pixel height. If no pixel height is specified, calculate
6326 one from the point height, or if that isn't defined either, return
6327 0 (which usually signifies a scalable font).
6329 int xlfd_strip_height (char *fontname
)
6331 int pixel_height
, point_height
, dpi
, field_number
;
6332 char *read_from
, *write_to
;
6336 pixel_height
= field_number
= 0;
6339 /* Look for height fields. */
6340 for (read_from
= fontname
; *read_from
; read_from
++)
6342 if (*read_from
== '-')
6345 if (field_number
== 7) /* Pixel height. */
6348 write_to
= read_from
;
6350 /* Find end of field. */
6351 for (;*read_from
&& *read_from
!= '-'; read_from
++)
6354 /* Split the fontname at end of field. */
6360 pixel_height
= atoi (write_to
);
6361 /* Blank out field. */
6362 if (read_from
> write_to
)
6367 /* If the pixel height field is at the end (partial xlfd),
6370 return pixel_height
;
6372 /* If we got a pixel height, the point height can be
6373 ignored. Just blank it out and break now. */
6376 /* Find end of point size field. */
6377 for (; *read_from
&& *read_from
!= '-'; read_from
++)
6383 /* Blank out the point size field. */
6384 if (read_from
> write_to
)
6390 return pixel_height
;
6394 /* If the point height is already blank, break now. */
6395 if (*read_from
== '-')
6401 else if (field_number
== 8)
6403 /* If we didn't get a pixel height, try to get the point
6404 height and convert that. */
6406 char *point_size_start
= read_from
++;
6408 /* Find end of field. */
6409 for (; *read_from
&& *read_from
!= '-'; read_from
++)
6418 point_size
= atoi (point_size_start
);
6420 /* Convert to pixel height. */
6421 pixel_height
= point_size
6422 * one_w32_display_info
.height_in
/ 720;
6424 /* Blank out this field and break. */
6432 /* Shift the rest of the font spec into place. */
6433 if (write_to
&& read_from
> write_to
)
6435 for (; *read_from
; read_from
++, write_to
++)
6436 *write_to
= *read_from
;
6440 return pixel_height
;
6443 /* Assume parameter 1 is fully qualified, no wildcards. */
6445 w32_font_match (fontname
, pattern
)
6449 char *regex
= alloca (strlen (pattern
) * 2);
6450 char *font_name_copy
= alloca (strlen (fontname
) + 1);
6453 /* Copy fontname so we can modify it during comparison. */
6454 strcpy (font_name_copy
, fontname
);
6459 /* Turn pattern into a regexp and do a regexp match. */
6460 for (; *pattern
; pattern
++)
6462 if (*pattern
== '?')
6464 else if (*pattern
== '*')
6475 /* Strip out font heights and compare them seperately, since
6476 rounding error can cause mismatches. This also allows a
6477 comparison between a font that declares only a pixel height and a
6478 pattern that declares the point height.
6481 int font_height
, pattern_height
;
6483 font_height
= xlfd_strip_height (font_name_copy
);
6484 pattern_height
= xlfd_strip_height (regex
);
6486 /* Compare now, and don't bother doing expensive regexp matching
6487 if the heights differ. */
6488 if (font_height
&& pattern_height
&& (font_height
!= pattern_height
))
6492 return (fast_c_string_match_ignore_case (build_string (regex
),
6493 font_name_copy
) >= 0);
6496 /* Callback functions, and a structure holding info they need, for
6497 listing system fonts on W32. We need one set of functions to do the
6498 job properly, but these don't work on NT 3.51 and earlier, so we
6499 have a second set which don't handle character sets properly to
6502 In both cases, there are two passes made. The first pass gets one
6503 font from each family, the second pass lists all the fonts from
6506 typedef struct enumfont_t
6511 XFontStruct
*size_ref
;
6512 Lisp_Object
*pattern
;
6517 enum_font_cb2 (lplf
, lptm
, FontType
, lpef
)
6519 NEWTEXTMETRIC
* lptm
;
6523 if (lplf
->elfLogFont
.lfStrikeOut
|| lplf
->elfLogFont
.lfUnderline
)
6526 /* Check that the character set matches if it was specified */
6527 if (lpef
->logfont
.lfCharSet
!= DEFAULT_CHARSET
&&
6528 lplf
->elfLogFont
.lfCharSet
!= lpef
->logfont
.lfCharSet
)
6533 Lisp_Object width
= Qnil
;
6534 char *charset
= NULL
;
6536 /* Truetype fonts do not report their true metrics until loaded */
6537 if (FontType
!= RASTER_FONTTYPE
)
6539 if (!NILP (*(lpef
->pattern
)))
6541 /* Scalable fonts are as big as you want them to be. */
6542 lplf
->elfLogFont
.lfHeight
= lpef
->logfont
.lfHeight
;
6543 lplf
->elfLogFont
.lfWidth
= lpef
->logfont
.lfWidth
;
6544 width
= make_number (lpef
->logfont
.lfWidth
);
6548 lplf
->elfLogFont
.lfHeight
= 0;
6549 lplf
->elfLogFont
.lfWidth
= 0;
6553 /* Make sure the height used here is the same as everywhere
6554 else (ie character height, not cell height). */
6555 if (lplf
->elfLogFont
.lfHeight
> 0)
6557 /* lptm can be trusted for RASTER fonts, but not scalable ones. */
6558 if (FontType
== RASTER_FONTTYPE
)
6559 lplf
->elfLogFont
.lfHeight
= lptm
->tmInternalLeading
- lptm
->tmHeight
;
6561 lplf
->elfLogFont
.lfHeight
= -lplf
->elfLogFont
.lfHeight
;
6564 if (!NILP (*(lpef
->pattern
)))
6566 charset
= xlfd_charset_of_font (XSTRING(*(lpef
->pattern
))->data
);
6568 /* Ensure that charset is valid for this font. */
6570 && (x_to_w32_charset (charset
) != lplf
->elfLogFont
.lfCharSet
))
6574 /* TODO: List all relevant charsets if charset not specified. */
6575 if (!w32_to_x_font (&(lplf
->elfLogFont
), buf
, 100, charset
))
6578 if (NILP (*(lpef
->pattern
))
6579 || w32_font_match (buf
, XSTRING (*(lpef
->pattern
))->data
))
6581 *lpef
->tail
= Fcons (Fcons (build_string (buf
), width
), Qnil
);
6582 lpef
->tail
= &(XCDR (*lpef
->tail
));
6591 enum_font_cb1 (lplf
, lptm
, FontType
, lpef
)
6593 NEWTEXTMETRIC
* lptm
;
6597 return EnumFontFamilies (lpef
->hdc
,
6598 lplf
->elfLogFont
.lfFaceName
,
6599 (FONTENUMPROC
) enum_font_cb2
,
6605 enum_fontex_cb2 (lplf
, lptm
, font_type
, lpef
)
6606 ENUMLOGFONTEX
* lplf
;
6607 NEWTEXTMETRICEX
* lptm
;
6611 /* We are not interested in the extra info we get back from the 'Ex
6612 version - only the fact that we get character set variations
6613 enumerated seperately. */
6614 return enum_font_cb2 ((ENUMLOGFONT
*) lplf
, (NEWTEXTMETRIC
*) lptm
,
6619 enum_fontex_cb1 (lplf
, lptm
, font_type
, lpef
)
6620 ENUMLOGFONTEX
* lplf
;
6621 NEWTEXTMETRICEX
* lptm
;
6625 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
6626 FARPROC enum_font_families_ex
6627 = GetProcAddress ( gdi32
, "EnumFontFamiliesExA");
6628 /* We don't really expect EnumFontFamiliesEx to disappear once we
6629 get here, so don't bother handling it gracefully. */
6630 if (enum_font_families_ex
== NULL
)
6631 error ("gdi32.dll has disappeared!");
6632 return enum_font_families_ex (lpef
->hdc
,
6634 (FONTENUMPROC
) enum_fontex_cb2
,
6638 /* Interface to fontset handler. (adapted from mw32font.c in Meadow
6639 and xterm.c in Emacs 20.3) */
6641 Lisp_Object
w32_list_bdf_fonts (Lisp_Object pattern
, int max_names
)
6643 char *fontname
, *ptnstr
;
6644 Lisp_Object list
, tem
, newlist
= Qnil
;
6647 list
= Vw32_bdf_filename_alist
;
6648 ptnstr
= XSTRING (pattern
)->data
;
6650 for ( ; CONSP (list
); list
= XCDR (list
))
6654 fontname
= XSTRING (XCAR (tem
))->data
;
6655 else if (STRINGP (tem
))
6656 fontname
= XSTRING (tem
)->data
;
6660 if (w32_font_match (fontname
, ptnstr
))
6662 newlist
= Fcons (XCAR (tem
), newlist
);
6664 if (n_fonts
>= max_names
)
6672 Lisp_Object
w32_list_synthesized_fonts (FRAME_PTR f
, Lisp_Object pattern
,
6673 int size
, int max_names
);
6675 /* Return a list of names of available fonts matching PATTERN on frame
6676 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
6677 to be listed. Frame F NULL means we have not yet created any
6678 frame, which means we can't get proper size info, as we don't have
6679 a device context to use for GetTextMetrics.
6680 MAXNAMES sets a limit on how many fonts to match. */
6683 w32_list_fonts (FRAME_PTR f
, Lisp_Object pattern
, int size
, int maxnames
)
6685 Lisp_Object patterns
, key
= Qnil
, tem
, tpat
;
6686 Lisp_Object list
= Qnil
, newlist
= Qnil
, second_best
= Qnil
;
6687 struct w32_display_info
*dpyinfo
= &one_w32_display_info
;
6690 patterns
= Fassoc (pattern
, Valternate_fontname_alist
);
6691 if (NILP (patterns
))
6692 patterns
= Fcons (pattern
, Qnil
);
6694 for (; CONSP (patterns
); patterns
= XCDR (patterns
))
6699 tpat
= XCAR (patterns
);
6701 if (!STRINGP (tpat
))
6704 /* Avoid expensive EnumFontFamilies functions if we are not
6705 going to be able to output one of these anyway. */
6706 codepage
= w32_codepage_for_font (XSTRING (tpat
)->data
);
6707 if (codepage
!= CP_8BIT
&& codepage
!= CP_UNICODE
6708 && codepage
!= CP_DEFAULT
&& !IsValidCodePage(codepage
))
6711 /* See if we cached the result for this particular query.
6712 The cache is an alist of the form:
6713 ((PATTERN (FONTNAME . WIDTH) ...) ...)
6715 if (tem
= XCDR (dpyinfo
->name_list_element
),
6716 !NILP (list
= Fassoc (tpat
, tem
)))
6718 list
= Fcdr_safe (list
);
6719 /* We have a cached list. Don't have to get the list again. */
6724 /* At first, put PATTERN in the cache. */
6730 /* Use EnumFontFamiliesEx where it is available, as it knows
6731 about character sets. Fall back to EnumFontFamilies for
6732 older versions of NT that don't support the 'Ex function. */
6733 x_to_w32_font (XSTRING (tpat
)->data
, &ef
.logfont
);
6735 LOGFONT font_match_pattern
;
6736 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
6737 FARPROC enum_font_families_ex
6738 = GetProcAddress ( gdi32
, "EnumFontFamiliesExA");
6740 /* We do our own pattern matching so we can handle wildcards. */
6741 font_match_pattern
.lfFaceName
[0] = 0;
6742 font_match_pattern
.lfPitchAndFamily
= 0;
6743 /* We can use the charset, because if it is a wildcard it will
6744 be DEFAULT_CHARSET anyway. */
6745 font_match_pattern
.lfCharSet
= ef
.logfont
.lfCharSet
;
6747 ef
.hdc
= GetDC (dpyinfo
->root_window
);
6749 if (enum_font_families_ex
)
6750 enum_font_families_ex (ef
.hdc
,
6751 &font_match_pattern
,
6752 (FONTENUMPROC
) enum_fontex_cb1
,
6755 EnumFontFamilies (ef
.hdc
, NULL
, (FONTENUMPROC
) enum_font_cb1
,
6758 ReleaseDC (dpyinfo
->root_window
, ef
.hdc
);
6763 /* Make a list of the fonts we got back.
6764 Store that in the font cache for the display. */
6765 XCDR (dpyinfo
->name_list_element
)
6766 = Fcons (Fcons (tpat
, list
),
6767 XCDR (dpyinfo
->name_list_element
));
6770 if (NILP (list
)) continue; /* Try the remaining alternatives. */
6772 newlist
= second_best
= Qnil
;
6774 /* Make a list of the fonts that have the right width. */
6775 for (; CONSP (list
); list
= XCDR (list
))
6782 if (NILP (XCAR (tem
)))
6786 newlist
= Fcons (XCAR (tem
), newlist
);
6788 if (n_fonts
>= maxnames
)
6793 if (!INTEGERP (XCDR (tem
)))
6795 /* Since we don't yet know the size of the font, we must
6796 load it and try GetTextMetrics. */
6797 W32FontStruct thisinfo
;
6802 if (!x_to_w32_font (XSTRING (XCAR (tem
))->data
, &lf
))
6806 thisinfo
.bdf
= NULL
;
6807 thisinfo
.hfont
= CreateFontIndirect (&lf
);
6808 if (thisinfo
.hfont
== NULL
)
6811 hdc
= GetDC (dpyinfo
->root_window
);
6812 oldobj
= SelectObject (hdc
, thisinfo
.hfont
);
6813 if (GetTextMetrics (hdc
, &thisinfo
.tm
))
6814 XCDR (tem
) = make_number (FONT_WIDTH (&thisinfo
));
6816 XCDR (tem
) = make_number (0);
6817 SelectObject (hdc
, oldobj
);
6818 ReleaseDC (dpyinfo
->root_window
, hdc
);
6819 DeleteObject(thisinfo
.hfont
);
6822 found_size
= XINT (XCDR (tem
));
6823 if (found_size
== size
)
6825 newlist
= Fcons (XCAR (tem
), newlist
);
6827 if (n_fonts
>= maxnames
)
6830 /* keep track of the closest matching size in case
6831 no exact match is found. */
6832 else if (found_size
> 0)
6834 if (NILP (second_best
))
6837 else if (found_size
< size
)
6839 if (XINT (XCDR (second_best
)) > size
6840 || XINT (XCDR (second_best
)) < found_size
)
6845 if (XINT (XCDR (second_best
)) > size
6846 && XINT (XCDR (second_best
)) >
6853 if (!NILP (newlist
))
6855 else if (!NILP (second_best
))
6857 newlist
= Fcons (XCAR (second_best
), Qnil
);
6862 /* Include any bdf fonts. */
6863 if (n_fonts
< maxnames
)
6865 Lisp_Object combined
[2];
6866 combined
[0] = w32_list_bdf_fonts (pattern
, maxnames
- n_fonts
);
6867 combined
[1] = newlist
;
6868 newlist
= Fnconc(2, combined
);
6871 /* If we can't find a font that matches, check if Windows would be
6872 able to synthesize it from a different style. */
6873 if (NILP (newlist
) && !NILP (Vw32_enable_synthesized_fonts
))
6874 newlist
= w32_list_synthesized_fonts (f
, pattern
, size
, maxnames
);
6880 w32_list_synthesized_fonts (f
, pattern
, size
, max_names
)
6882 Lisp_Object pattern
;
6887 char *full_pattn
, *new_pattn
, foundary
[50], family
[50], *pattn_part2
;
6888 char style
[20], slant
;
6889 Lisp_Object matches
, match
, tem
, synthed_matches
= Qnil
;
6891 full_pattn
= XSTRING (pattern
)->data
;
6893 pattn_part2
= alloca (XSTRING (pattern
)->size
);
6894 /* Allow some space for wildcard expansion. */
6895 new_pattn
= alloca (XSTRING (pattern
)->size
+ 100);
6897 fields
= sscanf (full_pattn
, "-%49[^-]-%49[^-]-%19[^-]-%c-%s",
6898 foundary
, family
, style
, &slant
, pattn_part2
);
6899 if (fields
== EOF
|| fields
< 5)
6902 /* If the style and slant are wildcards already there is no point
6903 checking again (and we don't want to keep recursing). */
6904 if (*style
== '*' && slant
== '*')
6907 sprintf (new_pattn
, "-%s-%s-*-*-%s", foundary
, family
, pattn_part2
);
6909 matches
= w32_list_fonts (f
, build_string (new_pattn
), size
, max_names
);
6911 for ( ; CONSP (matches
); matches
= XCDR (matches
))
6913 tem
= XCAR (matches
);
6917 full_pattn
= XSTRING (tem
)->data
;
6918 fields
= sscanf (full_pattn
, "-%49[^-]-%49[^-]-%*[^-]-%*c-%s",
6919 foundary
, family
, pattn_part2
);
6920 if (fields
== EOF
|| fields
< 3)
6923 sprintf (new_pattn
, "-%s-%s-%s-%c-%s", foundary
, family
, style
,
6924 slant
, pattn_part2
);
6926 synthed_matches
= Fcons (build_string (new_pattn
),
6930 return synthed_matches
;
6934 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6936 w32_get_font_info (f
, font_idx
)
6940 return (FRAME_W32_FONT_TABLE (f
) + font_idx
);
6945 w32_query_font (struct frame
*f
, char *fontname
)
6948 struct font_info
*pfi
;
6950 pfi
= FRAME_W32_FONT_TABLE (f
);
6952 for (i
= 0; i
< one_w32_display_info
.n_fonts
;i
++, pfi
++)
6954 if (strcmp(pfi
->name
, fontname
) == 0) return pfi
;
6960 /* Find a CCL program for a font specified by FONTP, and set the member
6961 `encoder' of the structure. */
6964 w32_find_ccl_program (fontp
)
6965 struct font_info
*fontp
;
6967 Lisp_Object list
, elt
;
6969 for (list
= Vfont_ccl_encoder_alist
; CONSP (list
); list
= XCDR (list
))
6973 && STRINGP (XCAR (elt
))
6974 && (fast_c_string_match_ignore_case (XCAR (elt
), fontp
->name
)
6980 struct ccl_program
*ccl
6981 = (struct ccl_program
*) xmalloc (sizeof (struct ccl_program
));
6983 if (setup_ccl_program (ccl
, XCDR (elt
)) < 0)
6986 fontp
->font_encoder
= ccl
;
6991 DEFUN ("w32-find-bdf-fonts", Fw32_find_bdf_fonts
, Sw32_find_bdf_fonts
,
6993 "Return a list of BDF fonts in DIR, suitable for appending to\n\
6994 w32-bdf-filename-alist. Fonts which do not contain an xlfd description\n\
6995 will not be included in the list. DIR may be a list of directories.")
6997 Lisp_Object directory
;
6999 Lisp_Object list
= Qnil
;
7000 struct gcpro gcpro1
, gcpro2
;
7002 if (!CONSP (directory
))
7003 return w32_find_bdf_fonts_in_dir (directory
);
7005 for ( ; CONSP (directory
); directory
= XCDR (directory
))
7007 Lisp_Object pair
[2];
7010 GCPRO2 (directory
, list
);
7011 pair
[1] = w32_find_bdf_fonts_in_dir( XCAR (directory
) );
7012 list
= Fnconc( 2, pair
);
7018 /* Find BDF files in a specified directory. (use GCPRO when calling,
7019 as this calls lisp to get a directory listing). */
7020 Lisp_Object
w32_find_bdf_fonts_in_dir( Lisp_Object directory
)
7022 Lisp_Object filelist
, list
= Qnil
;
7025 if (!STRINGP(directory
))
7028 filelist
= Fdirectory_files (directory
, Qt
,
7029 build_string (".*\\.[bB][dD][fF]"), Qt
);
7031 for ( ; CONSP(filelist
); filelist
= XCDR (filelist
))
7033 Lisp_Object filename
= XCAR (filelist
);
7034 if (w32_BDF_to_x_font (XSTRING (filename
)->data
, fontname
, 100))
7035 store_in_alist (&list
, build_string (fontname
), filename
);
7041 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
7042 "Internal function called by `color-defined-p', which see.")
7044 Lisp_Object color
, frame
;
7047 FRAME_PTR f
= check_x_frame (frame
);
7049 CHECK_STRING (color
, 1);
7051 if (w32_defined_color (f
, XSTRING (color
)->data
, &foo
, 0))
7057 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
7058 "Internal function called by `color-values', which see.")
7060 Lisp_Object color
, frame
;
7063 FRAME_PTR f
= check_x_frame (frame
);
7065 CHECK_STRING (color
, 1);
7067 if (w32_defined_color (f
, XSTRING (color
)->data
, &foo
, 0))
7071 rgb
[0] = make_number ((GetRValue (foo
.pixel
) << 8)
7072 | GetRValue (foo
.pixel
));
7073 rgb
[1] = make_number ((GetGValue (foo
.pixel
) << 8)
7074 | GetGValue (foo
.pixel
));
7075 rgb
[2] = make_number ((GetBValue (foo
.pixel
) << 8)
7076 | GetBValue (foo
.pixel
));
7077 return Flist (3, rgb
);
7083 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
7084 "Internal function called by `display-color-p', which see.")
7086 Lisp_Object display
;
7088 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7090 if ((dpyinfo
->n_planes
* dpyinfo
->n_cbits
) <= 2)
7096 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
7098 "Return t if the X display supports shades of gray.\n\
7099 Note that color displays do support shades of gray.\n\
7100 The optional argument DISPLAY specifies which display to ask about.\n\
7101 DISPLAY should be either a frame or a display name (a string).\n\
7102 If omitted or nil, that stands for the selected frame's display.")
7104 Lisp_Object display
;
7106 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7108 if ((dpyinfo
->n_planes
* dpyinfo
->n_cbits
) <= 1)
7114 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
7116 "Returns the width in pixels of the X display DISPLAY.\n\
7117 The optional argument DISPLAY specifies which display to ask about.\n\
7118 DISPLAY should be either a frame or a display name (a string).\n\
7119 If omitted or nil, that stands for the selected frame's display.")
7121 Lisp_Object display
;
7123 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7125 return make_number (dpyinfo
->width
);
7128 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
7129 Sx_display_pixel_height
, 0, 1, 0,
7130 "Returns the height in pixels of the X display DISPLAY.\n\
7131 The optional argument DISPLAY specifies which display to ask about.\n\
7132 DISPLAY should be either a frame or a display name (a string).\n\
7133 If omitted or nil, that stands for the selected frame's display.")
7135 Lisp_Object display
;
7137 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7139 return make_number (dpyinfo
->height
);
7142 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
7144 "Returns the number of bitplanes of the display DISPLAY.\n\
7145 The optional argument DISPLAY specifies which display to ask about.\n\
7146 DISPLAY should be either a frame or a display name (a string).\n\
7147 If omitted or nil, that stands for the selected frame's display.")
7149 Lisp_Object display
;
7151 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7153 return make_number (dpyinfo
->n_planes
* dpyinfo
->n_cbits
);
7156 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
7158 "Returns the number of color cells of the display DISPLAY.\n\
7159 The optional argument DISPLAY specifies which display to ask about.\n\
7160 DISPLAY should be either a frame or a display name (a string).\n\
7161 If omitted or nil, that stands for the selected frame's display.")
7163 Lisp_Object display
;
7165 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7169 hdc
= GetDC (dpyinfo
->root_window
);
7170 if (dpyinfo
->has_palette
)
7171 cap
= GetDeviceCaps (hdc
,SIZEPALETTE
);
7173 cap
= GetDeviceCaps (hdc
,NUMCOLORS
);
7175 ReleaseDC (dpyinfo
->root_window
, hdc
);
7177 return make_number (cap
);
7180 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
7181 Sx_server_max_request_size
,
7183 "Returns the maximum request size of the server of display DISPLAY.\n\
7184 The optional argument DISPLAY specifies which display to ask about.\n\
7185 DISPLAY should be either a frame or a display name (a string).\n\
7186 If omitted or nil, that stands for the selected frame's display.")
7188 Lisp_Object display
;
7190 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7192 return make_number (1);
7195 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
7196 "Returns the vendor ID string of the W32 system (Microsoft).\n\
7197 The optional argument DISPLAY specifies which display to ask about.\n\
7198 DISPLAY should be either a frame or a display name (a string).\n\
7199 If omitted or nil, that stands for the selected frame's display.")
7201 Lisp_Object display
;
7203 return build_string ("Microsoft Corp.");
7206 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
7207 "Returns the version numbers of the server of display DISPLAY.\n\
7208 The value is a list of three integers: the major and minor\n\
7209 version numbers, and the vendor-specific release\n\
7210 number. See also the function `x-server-vendor'.\n\n\
7211 The optional argument DISPLAY specifies which display to ask about.\n\
7212 DISPLAY should be either a frame or a display name (a string).\n\
7213 If omitted or nil, that stands for the selected frame's display.")
7215 Lisp_Object display
;
7217 return Fcons (make_number (w32_major_version
),
7218 Fcons (make_number (w32_minor_version
),
7219 Fcons (make_number (w32_build_number
), Qnil
)));
7222 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
7223 "Returns the number of screens on the server of display DISPLAY.\n\
7224 The optional argument DISPLAY specifies which display to ask about.\n\
7225 DISPLAY should be either a frame or a display name (a string).\n\
7226 If omitted or nil, that stands for the selected frame's display.")
7228 Lisp_Object display
;
7230 return make_number (1);
7233 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
7234 "Returns the height in millimeters of the X display DISPLAY.\n\
7235 The optional argument DISPLAY specifies which display to ask about.\n\
7236 DISPLAY should be either a frame or a display name (a string).\n\
7237 If omitted or nil, that stands for the selected frame's display.")
7239 Lisp_Object display
;
7241 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7245 hdc
= GetDC (dpyinfo
->root_window
);
7247 cap
= GetDeviceCaps (hdc
, VERTSIZE
);
7249 ReleaseDC (dpyinfo
->root_window
, hdc
);
7251 return make_number (cap
);
7254 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
7255 "Returns the width in millimeters of the X display DISPLAY.\n\
7256 The optional argument DISPLAY specifies which display to ask about.\n\
7257 DISPLAY should be either a frame or a display name (a string).\n\
7258 If omitted or nil, that stands for the selected frame's display.")
7260 Lisp_Object display
;
7262 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7267 hdc
= GetDC (dpyinfo
->root_window
);
7269 cap
= GetDeviceCaps (hdc
, HORZSIZE
);
7271 ReleaseDC (dpyinfo
->root_window
, hdc
);
7273 return make_number (cap
);
7276 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
7277 Sx_display_backing_store
, 0, 1, 0,
7278 "Returns an indication of whether display DISPLAY does backing store.\n\
7279 The value may be `always', `when-mapped', or `not-useful'.\n\
7280 The optional argument DISPLAY specifies which display to ask about.\n\
7281 DISPLAY should be either a frame or a display name (a string).\n\
7282 If omitted or nil, that stands for the selected frame's display.")
7284 Lisp_Object display
;
7286 return intern ("not-useful");
7289 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
7290 Sx_display_visual_class
, 0, 1, 0,
7291 "Returns the visual class of the display DISPLAY.\n\
7292 The value is one of the symbols `static-gray', `gray-scale',\n\
7293 `static-color', `pseudo-color', `true-color', or `direct-color'.\n\n\
7294 The optional argument DISPLAY specifies which display to ask about.\n\
7295 DISPLAY should be either a frame or a display name (a string).\n\
7296 If omitted or nil, that stands for the selected frame's display.")
7298 Lisp_Object display
;
7300 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7303 switch (dpyinfo
->visual
->class)
7305 case StaticGray
: return (intern ("static-gray"));
7306 case GrayScale
: return (intern ("gray-scale"));
7307 case StaticColor
: return (intern ("static-color"));
7308 case PseudoColor
: return (intern ("pseudo-color"));
7309 case TrueColor
: return (intern ("true-color"));
7310 case DirectColor
: return (intern ("direct-color"));
7312 error ("Display has an unknown visual class");
7316 error ("Display has an unknown visual class");
7319 DEFUN ("x-display-save-under", Fx_display_save_under
,
7320 Sx_display_save_under
, 0, 1, 0,
7321 "Returns t if the display DISPLAY supports the save-under feature.\n\
7322 The optional argument DISPLAY specifies which display to ask about.\n\
7323 DISPLAY should be either a frame or a display name (a string).\n\
7324 If omitted or nil, that stands for the selected frame's display.")
7326 Lisp_Object display
;
7333 register struct frame
*f
;
7335 return PIXEL_WIDTH (f
);
7340 register struct frame
*f
;
7342 return PIXEL_HEIGHT (f
);
7347 register struct frame
*f
;
7349 return FONT_WIDTH (f
->output_data
.w32
->font
);
7354 register struct frame
*f
;
7356 return f
->output_data
.w32
->line_height
;
7361 register struct frame
*f
;
7363 return FRAME_W32_DISPLAY_INFO (f
)->n_planes
;
7366 /* Return the display structure for the display named NAME.
7367 Open a new connection if necessary. */
7369 struct w32_display_info
*
7370 x_display_info_for_name (name
)
7374 struct w32_display_info
*dpyinfo
;
7376 CHECK_STRING (name
, 0);
7378 for (dpyinfo
= &one_w32_display_info
, names
= w32_display_name_list
;
7380 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
7383 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
7388 /* Use this general default value to start with. */
7389 Vx_resource_name
= Vinvocation_name
;
7391 validate_x_resource_name ();
7393 dpyinfo
= w32_term_init (name
, (unsigned char *)0,
7394 (char *) XSTRING (Vx_resource_name
)->data
);
7397 error ("Cannot connect to server %s", XSTRING (name
)->data
);
7400 XSETFASTINT (Vwindow_system_version
, 3);
7405 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
7406 1, 3, 0, "Open a connection to a server.\n\
7407 DISPLAY is the name of the display to connect to.\n\
7408 Optional second arg XRM-STRING is a string of resources in xrdb format.\n\
7409 If the optional third arg MUST-SUCCEED is non-nil,\n\
7410 terminate Emacs if we can't open the connection.")
7411 (display
, xrm_string
, must_succeed
)
7412 Lisp_Object display
, xrm_string
, must_succeed
;
7414 unsigned char *xrm_option
;
7415 struct w32_display_info
*dpyinfo
;
7417 CHECK_STRING (display
, 0);
7418 if (! NILP (xrm_string
))
7419 CHECK_STRING (xrm_string
, 1);
7421 if (! EQ (Vwindow_system
, intern ("w32")))
7422 error ("Not using Microsoft Windows");
7424 /* Allow color mapping to be defined externally; first look in user's
7425 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
7427 Lisp_Object color_file
;
7428 struct gcpro gcpro1
;
7430 color_file
= build_string("~/rgb.txt");
7432 GCPRO1 (color_file
);
7434 if (NILP (Ffile_readable_p (color_file
)))
7436 Fexpand_file_name (build_string ("rgb.txt"),
7437 Fsymbol_value (intern ("data-directory")));
7439 Vw32_color_map
= Fw32_load_color_file (color_file
);
7443 if (NILP (Vw32_color_map
))
7444 Vw32_color_map
= Fw32_default_color_map ();
7446 if (! NILP (xrm_string
))
7447 xrm_option
= (unsigned char *) XSTRING (xrm_string
)->data
;
7449 xrm_option
= (unsigned char *) 0;
7451 /* Use this general default value to start with. */
7452 /* First remove .exe suffix from invocation-name - it looks ugly. */
7454 char basename
[ MAX_PATH
], *str
;
7456 strcpy (basename
, XSTRING (Vinvocation_name
)->data
);
7457 str
= strrchr (basename
, '.');
7459 Vinvocation_name
= build_string (basename
);
7461 Vx_resource_name
= Vinvocation_name
;
7463 validate_x_resource_name ();
7465 /* This is what opens the connection and sets x_current_display.
7466 This also initializes many symbols, such as those used for input. */
7467 dpyinfo
= w32_term_init (display
, xrm_option
,
7468 (char *) XSTRING (Vx_resource_name
)->data
);
7472 if (!NILP (must_succeed
))
7473 fatal ("Cannot connect to server %s.\n",
7474 XSTRING (display
)->data
);
7476 error ("Cannot connect to server %s", XSTRING (display
)->data
);
7481 XSETFASTINT (Vwindow_system_version
, 3);
7485 DEFUN ("x-close-connection", Fx_close_connection
,
7486 Sx_close_connection
, 1, 1, 0,
7487 "Close the connection to DISPLAY's server.\n\
7488 For DISPLAY, specify either a frame or a display name (a string).\n\
7489 If DISPLAY is nil, that stands for the selected frame's display.")
7491 Lisp_Object display
;
7493 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
7496 if (dpyinfo
->reference_count
> 0)
7497 error ("Display still has frames on it");
7500 /* Free the fonts in the font table. */
7501 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
7502 if (dpyinfo
->font_table
[i
].name
)
7504 if (dpyinfo
->font_table
[i
].name
!= dpyinfo
->font_table
[i
].full_name
)
7505 xfree (dpyinfo
->font_table
[i
].full_name
);
7506 xfree (dpyinfo
->font_table
[i
].name
);
7507 w32_unload_font (dpyinfo
, dpyinfo
->font_table
[i
].font
);
7509 x_destroy_all_bitmaps (dpyinfo
);
7511 x_delete_display (dpyinfo
);
7517 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
7518 "Return the list of display names that Emacs has connections to.")
7521 Lisp_Object tail
, result
;
7524 for (tail
= w32_display_name_list
; ! NILP (tail
); tail
= XCDR (tail
))
7525 result
= Fcons (XCAR (XCAR (tail
)), result
);
7530 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
7531 "If ON is non-nil, report errors as soon as the erring request is made.\n\
7532 If ON is nil, allow buffering of requests.\n\
7533 This is a noop on W32 systems.\n\
7534 The optional second argument DISPLAY specifies which display to act on.\n\
7535 DISPLAY should be either a frame or a display name (a string).\n\
7536 If DISPLAY is omitted or nil, that stands for the selected frame's display.")
7538 Lisp_Object display
, on
;
7545 /***********************************************************************
7547 ***********************************************************************/
7549 /* Value is the number of elements of vector VECTOR. */
7551 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
7553 /* List of supported image types. Use define_image_type to add new
7554 types. Use lookup_image_type to find a type for a given symbol. */
7556 static struct image_type
*image_types
;
7558 /* The symbol `image' which is the car of the lists used to represent
7561 extern Lisp_Object Qimage
;
7563 /* The symbol `xbm' which is used as the type symbol for XBM images. */
7569 extern Lisp_Object QCwidth
, QCheight
, QCforeground
, QCbackground
, QCfile
;
7570 extern Lisp_Object QCdata
;
7571 Lisp_Object QCtype
, QCascent
, QCmargin
, QCrelief
;
7572 Lisp_Object QCalgorithm
, QCcolor_symbols
, QCheuristic_mask
;
7573 Lisp_Object QCindex
;
7575 /* Other symbols. */
7577 Lisp_Object Qlaplace
;
7579 /* Time in seconds after which images should be removed from the cache
7580 if not displayed. */
7582 Lisp_Object Vimage_cache_eviction_delay
;
7584 /* Function prototypes. */
7586 static void define_image_type
P_ ((struct image_type
*type
));
7587 static struct image_type
*lookup_image_type
P_ ((Lisp_Object symbol
));
7588 static void image_error
P_ ((char *format
, Lisp_Object
, Lisp_Object
));
7589 static void x_laplace
P_ ((struct frame
*, struct image
*));
7590 static int x_build_heuristic_mask
P_ ((struct frame
*, struct image
*,
7594 /* Define a new image type from TYPE. This adds a copy of TYPE to
7595 image_types and adds the symbol *TYPE->type to Vimage_types. */
7598 define_image_type (type
)
7599 struct image_type
*type
;
7601 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
7602 The initialized data segment is read-only. */
7603 struct image_type
*p
= (struct image_type
*) xmalloc (sizeof *p
);
7604 bcopy (type
, p
, sizeof *p
);
7605 p
->next
= image_types
;
7607 Vimage_types
= Fcons (*p
->type
, Vimage_types
);
7611 /* Look up image type SYMBOL, and return a pointer to its image_type
7612 structure. Value is null if SYMBOL is not a known image type. */
7614 static INLINE
struct image_type
*
7615 lookup_image_type (symbol
)
7618 struct image_type
*type
;
7620 for (type
= image_types
; type
; type
= type
->next
)
7621 if (EQ (symbol
, *type
->type
))
7628 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
7629 valid image specification is a list whose car is the symbol
7630 `image', and whose rest is a property list. The property list must
7631 contain a value for key `:type'. That value must be the name of a
7632 supported image type. The rest of the property list depends on the
7636 valid_image_p (object
)
7641 if (CONSP (object
) && EQ (XCAR (object
), Qimage
))
7643 Lisp_Object symbol
= Fplist_get (XCDR (object
), QCtype
);
7644 struct image_type
*type
= lookup_image_type (symbol
);
7647 valid_p
= type
->valid_p (object
);
7654 /* Log error message with format string FORMAT and argument ARG.
7655 Signaling an error, e.g. when an image cannot be loaded, is not a
7656 good idea because this would interrupt redisplay, and the error
7657 message display would lead to another redisplay. This function
7658 therefore simply displays a message. */
7661 image_error (format
, arg1
, arg2
)
7663 Lisp_Object arg1
, arg2
;
7665 add_to_log (format
, arg1
, arg2
);
7670 /***********************************************************************
7671 Image specifications
7672 ***********************************************************************/
7674 enum image_value_type
7676 IMAGE_DONT_CHECK_VALUE_TYPE
,
7679 IMAGE_POSITIVE_INTEGER_VALUE
,
7680 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
7682 IMAGE_INTEGER_VALUE
,
7683 IMAGE_FUNCTION_VALUE
,
7688 /* Structure used when parsing image specifications. */
7690 struct image_keyword
7692 /* Name of keyword. */
7695 /* The type of value allowed. */
7696 enum image_value_type type
;
7698 /* Non-zero means key must be present. */
7701 /* Used to recognize duplicate keywords in a property list. */
7704 /* The value that was found. */
7709 static int parse_image_spec
P_ ((Lisp_Object
, struct image_keyword
*,
7711 static Lisp_Object image_spec_value
P_ ((Lisp_Object
, Lisp_Object
, int *));
7714 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
7715 has the format (image KEYWORD VALUE ...). One of the keyword/
7716 value pairs must be `:type TYPE'. KEYWORDS is a vector of
7717 image_keywords structures of size NKEYWORDS describing other
7718 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
7721 parse_image_spec (spec
, keywords
, nkeywords
, type
)
7723 struct image_keyword
*keywords
;
7730 if (!CONSP (spec
) || !EQ (XCAR (spec
), Qimage
))
7733 plist
= XCDR (spec
);
7734 while (CONSP (plist
))
7736 Lisp_Object key
, value
;
7738 /* First element of a pair must be a symbol. */
7740 plist
= XCDR (plist
);
7744 /* There must follow a value. */
7747 value
= XCAR (plist
);
7748 plist
= XCDR (plist
);
7750 /* Find key in KEYWORDS. Error if not found. */
7751 for (i
= 0; i
< nkeywords
; ++i
)
7752 if (strcmp (keywords
[i
].name
, XSYMBOL (key
)->name
->data
) == 0)
7758 /* Record that we recognized the keyword. If a keywords
7759 was found more than once, it's an error. */
7760 keywords
[i
].value
= value
;
7761 ++keywords
[i
].count
;
7763 if (keywords
[i
].count
> 1)
7766 /* Check type of value against allowed type. */
7767 switch (keywords
[i
].type
)
7769 case IMAGE_STRING_VALUE
:
7770 if (!STRINGP (value
))
7774 case IMAGE_SYMBOL_VALUE
:
7775 if (!SYMBOLP (value
))
7779 case IMAGE_POSITIVE_INTEGER_VALUE
:
7780 if (!INTEGERP (value
) || XINT (value
) <= 0)
7784 case IMAGE_ASCENT_VALUE
:
7785 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
7787 else if (INTEGERP (value
)
7788 && XINT (value
) >= 0
7789 && XINT (value
) <= 100)
7793 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
7794 if (!INTEGERP (value
) || XINT (value
) < 0)
7798 case IMAGE_DONT_CHECK_VALUE_TYPE
:
7801 case IMAGE_FUNCTION_VALUE
:
7802 value
= indirect_function (value
);
7804 || COMPILEDP (value
)
7805 || (CONSP (value
) && EQ (XCAR (value
), Qlambda
)))
7809 case IMAGE_NUMBER_VALUE
:
7810 if (!INTEGERP (value
) && !FLOATP (value
))
7814 case IMAGE_INTEGER_VALUE
:
7815 if (!INTEGERP (value
))
7819 case IMAGE_BOOL_VALUE
:
7820 if (!NILP (value
) && !EQ (value
, Qt
))
7829 if (EQ (key
, QCtype
) && !EQ (type
, value
))
7833 /* Check that all mandatory fields are present. */
7834 for (i
= 0; i
< nkeywords
; ++i
)
7835 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
7838 return NILP (plist
);
7842 /* Return the value of KEY in image specification SPEC. Value is nil
7843 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
7844 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
7847 image_spec_value (spec
, key
, found
)
7848 Lisp_Object spec
, key
;
7853 xassert (valid_image_p (spec
));
7855 for (tail
= XCDR (spec
);
7856 CONSP (tail
) && CONSP (XCDR (tail
));
7857 tail
= XCDR (XCDR (tail
)))
7859 if (EQ (XCAR (tail
), key
))
7863 return XCAR (XCDR (tail
));
7875 /***********************************************************************
7876 Image type independent image structures
7877 ***********************************************************************/
7879 static struct image
*make_image
P_ ((Lisp_Object spec
, unsigned hash
));
7880 static void free_image
P_ ((struct frame
*f
, struct image
*img
));
7883 /* Allocate and return a new image structure for image specification
7884 SPEC. SPEC has a hash value of HASH. */
7886 static struct image
*
7887 make_image (spec
, hash
)
7891 struct image
*img
= (struct image
*) xmalloc (sizeof *img
);
7893 xassert (valid_image_p (spec
));
7894 bzero (img
, sizeof *img
);
7895 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
7896 xassert (img
->type
!= NULL
);
7898 img
->data
.lisp_val
= Qnil
;
7899 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
7905 /* Free image IMG which was used on frame F, including its resources. */
7914 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
7916 /* Remove IMG from the hash table of its cache. */
7918 img
->prev
->next
= img
->next
;
7920 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
7923 img
->next
->prev
= img
->prev
;
7925 c
->images
[img
->id
] = NULL
;
7927 /* Free resources, then free IMG. */
7928 img
->type
->free (f
, img
);
7934 /* Prepare image IMG for display on frame F. Must be called before
7935 drawing an image. */
7938 prepare_image_for_display (f
, img
)
7944 /* We're about to display IMG, so set its timestamp to `now'. */
7946 img
->timestamp
= EMACS_SECS (t
);
7948 /* If IMG doesn't have a pixmap yet, load it now, using the image
7949 type dependent loader function. */
7950 if (img
->pixmap
== 0 && !img
->load_failed_p
)
7951 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
7955 /* Value is the number of pixels for the ascent of image IMG when
7956 drawn in face FACE. */
7959 image_ascent (img
, face
)
7963 int height
= img
->height
+ img
->margin
;
7966 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
7969 ascent
= height
/ 2 - (FONT_DESCENT(face
->font
)
7970 - FONT_BASE(face
->font
)) / 2;
7972 ascent
= height
/ 2;
7975 ascent
= height
* img
->ascent
/ 100.0;
7982 /***********************************************************************
7983 Helper functions for X image types
7984 ***********************************************************************/
7986 static void x_clear_image
P_ ((struct frame
*f
, struct image
*img
));
7987 static unsigned long x_alloc_image_color
P_ ((struct frame
*f
,
7989 Lisp_Object color_name
,
7990 unsigned long dflt
));
7992 /* Free X resources of image IMG which is used on frame F. */
7995 x_clear_image (f
, img
)
7999 #if 0 /* TODO: W32 image support */
8004 XFreePixmap (NULL
, img
->pixmap
);
8011 int class = FRAME_W32_DISPLAY_INFO (f
)->visual
->class;
8013 /* If display has an immutable color map, freeing colors is not
8014 necessary and some servers don't allow it. So don't do it. */
8015 if (class != StaticColor
8016 && class != StaticGray
8017 && class != TrueColor
)
8021 cmap
= DefaultColormapOfScreen (FRAME_W32_DISPLAY_INFO (f
)->screen
);
8022 XFreeColors (FRAME_W32_DISPLAY (f
), cmap
, img
->colors
,
8027 xfree (img
->colors
);
8035 /* Allocate color COLOR_NAME for image IMG on frame F. If color
8036 cannot be allocated, use DFLT. Add a newly allocated color to
8037 IMG->colors, so that it can be freed again. Value is the pixel
8040 static unsigned long
8041 x_alloc_image_color (f
, img
, color_name
, dflt
)
8044 Lisp_Object color_name
;
8047 #if 0 /* TODO: allocing colors. */
8049 unsigned long result
;
8051 xassert (STRINGP (color_name
));
8053 if (w32_defined_color (f
, XSTRING (color_name
)->data
, &color
, 1))
8055 /* This isn't called frequently so we get away with simply
8056 reallocating the color vector to the needed size, here. */
8059 (unsigned long *) xrealloc (img
->colors
,
8060 img
->ncolors
* sizeof *img
->colors
);
8061 img
->colors
[img
->ncolors
- 1] = color
.pixel
;
8062 result
= color
.pixel
;
8073 /***********************************************************************
8075 ***********************************************************************/
8077 static void cache_image
P_ ((struct frame
*f
, struct image
*img
));
8080 /* Return a new, initialized image cache that is allocated from the
8081 heap. Call free_image_cache to free an image cache. */
8083 struct image_cache
*
8086 struct image_cache
*c
= (struct image_cache
*) xmalloc (sizeof *c
);
8089 bzero (c
, sizeof *c
);
8091 c
->images
= (struct image
**) xmalloc (c
->size
* sizeof *c
->images
);
8092 size
= IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
8093 c
->buckets
= (struct image
**) xmalloc (size
);
8094 bzero (c
->buckets
, size
);
8099 /* Free image cache of frame F. Be aware that X frames share images
8103 free_image_cache (f
)
8106 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
8111 /* Cache should not be referenced by any frame when freed. */
8112 xassert (c
->refcount
== 0);
8114 for (i
= 0; i
< c
->used
; ++i
)
8115 free_image (f
, c
->images
[i
]);
8119 FRAME_X_IMAGE_CACHE (f
) = NULL
;
8124 /* Clear image cache of frame F. FORCE_P non-zero means free all
8125 images. FORCE_P zero means clear only images that haven't been
8126 displayed for some time. Should be called from time to time to
8127 reduce the number of loaded images. If image-eviction-seconds is
8128 non-nil, this frees images in the cache which weren't displayed for
8129 at least that many seconds. */
8132 clear_image_cache (f
, force_p
)
8136 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
8138 if (c
&& INTEGERP (Vimage_cache_eviction_delay
))
8142 int i
, any_freed_p
= 0;
8145 old
= EMACS_SECS (t
) - XFASTINT (Vimage_cache_eviction_delay
);
8147 for (i
= 0; i
< c
->used
; ++i
)
8149 struct image
*img
= c
->images
[i
];
8152 || (img
->timestamp
> old
)))
8154 free_image (f
, img
);
8159 /* We may be clearing the image cache because, for example,
8160 Emacs was iconified for a longer period of time. In that
8161 case, current matrices may still contain references to
8162 images freed above. So, clear these matrices. */
8165 clear_current_matrices (f
);
8166 ++windows_or_buffers_changed
;
8172 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
8174 "Clear the image cache of FRAME.\n\
8175 FRAME nil or omitted means use the selected frame.\n\
8176 FRAME t means clear the image caches of all frames.")
8184 FOR_EACH_FRAME (tail
, frame
)
8185 if (FRAME_W32_P (XFRAME (frame
)))
8186 clear_image_cache (XFRAME (frame
), 1);
8189 clear_image_cache (check_x_frame (frame
), 1);
8195 /* Return the id of image with Lisp specification SPEC on frame F.
8196 SPEC must be a valid Lisp image specification (see valid_image_p). */
8199 lookup_image (f
, spec
)
8203 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
8207 struct gcpro gcpro1
;
8210 /* F must be a window-system frame, and SPEC must be a valid image
8212 xassert (FRAME_WINDOW_P (f
));
8213 xassert (valid_image_p (spec
));
8217 /* Look up SPEC in the hash table of the image cache. */
8218 hash
= sxhash (spec
, 0);
8219 i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
8221 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
8222 if (img
->hash
== hash
&& !NILP (Fequal (img
->spec
, spec
)))
8225 /* If not found, create a new image and cache it. */
8228 img
= make_image (spec
, hash
);
8229 cache_image (f
, img
);
8230 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
8231 xassert (!interrupt_input_blocked
);
8233 /* If we can't load the image, and we don't have a width and
8234 height, use some arbitrary width and height so that we can
8235 draw a rectangle for it. */
8236 if (img
->load_failed_p
)
8240 value
= image_spec_value (spec
, QCwidth
, NULL
);
8241 img
->width
= (INTEGERP (value
)
8242 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
8243 value
= image_spec_value (spec
, QCheight
, NULL
);
8244 img
->height
= (INTEGERP (value
)
8245 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
8249 /* Handle image type independent image attributes
8250 `:ascent PERCENT', `:margin MARGIN', `:relief RELIEF'. */
8251 Lisp_Object ascent
, margin
, relief
, algorithm
, heuristic_mask
;
8254 ascent
= image_spec_value (spec
, QCascent
, NULL
);
8255 if (INTEGERP (ascent
))
8256 img
->ascent
= XFASTINT (ascent
);
8257 else if (EQ (ascent
, Qcenter
))
8258 img
->ascent
= CENTERED_IMAGE_ASCENT
;
8260 margin
= image_spec_value (spec
, QCmargin
, NULL
);
8261 if (INTEGERP (margin
) && XINT (margin
) >= 0)
8262 img
->margin
= XFASTINT (margin
);
8264 relief
= image_spec_value (spec
, QCrelief
, NULL
);
8265 if (INTEGERP (relief
))
8267 img
->relief
= XINT (relief
);
8268 img
->margin
+= abs (img
->relief
);
8271 /* Should we apply a Laplace edge-detection algorithm? */
8272 algorithm
= image_spec_value (spec
, QCalgorithm
, NULL
);
8273 if (img
->pixmap
&& EQ (algorithm
, Qlaplace
))
8276 /* Should we built a mask heuristically? */
8277 heuristic_mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
8278 if (img
->pixmap
&& !img
->mask
&& !NILP (heuristic_mask
))
8279 x_build_heuristic_mask (f
, img
, heuristic_mask
);
8283 /* We're using IMG, so set its timestamp to `now'. */
8284 EMACS_GET_TIME (now
);
8285 img
->timestamp
= EMACS_SECS (now
);
8289 /* Value is the image id. */
8294 /* Cache image IMG in the image cache of frame F. */
8297 cache_image (f
, img
)
8301 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
8304 /* Find a free slot in c->images. */
8305 for (i
= 0; i
< c
->used
; ++i
)
8306 if (c
->images
[i
] == NULL
)
8309 /* If no free slot found, maybe enlarge c->images. */
8310 if (i
== c
->used
&& c
->used
== c
->size
)
8313 c
->images
= (struct image
**) xrealloc (c
->images
,
8314 c
->size
* sizeof *c
->images
);
8317 /* Add IMG to c->images, and assign IMG an id. */
8323 /* Add IMG to the cache's hash table. */
8324 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
8325 img
->next
= c
->buckets
[i
];
8327 img
->next
->prev
= img
;
8329 c
->buckets
[i
] = img
;
8333 /* Call FN on every image in the image cache of frame F. Used to mark
8334 Lisp Objects in the image cache. */
8337 forall_images_in_image_cache (f
, fn
)
8339 void (*fn
) P_ ((struct image
*img
));
8341 if (FRAME_LIVE_P (f
) && FRAME_W32_P (f
))
8343 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
8347 for (i
= 0; i
< c
->used
; ++i
)
8356 /***********************************************************************
8358 ***********************************************************************/
8360 #if 0 /* TODO: W32 specific image code. */
8362 static int x_create_x_image_and_pixmap
P_ ((struct frame
*, int, int, int,
8363 XImage
**, Pixmap
*));
8364 static void x_destroy_x_image
P_ ((XImage
*));
8365 static void x_put_x_image
P_ ((struct frame
*, XImage
*, Pixmap
, int, int));
8368 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
8369 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
8370 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
8371 via xmalloc. Print error messages via image_error if an error
8372 occurs. Value is non-zero if successful. */
8375 x_create_x_image_and_pixmap (f
, width
, height
, depth
, ximg
, pixmap
)
8377 int width
, height
, depth
;
8381 #if 0 /* TODO: Image support for W32 */
8382 Display
*display
= FRAME_W32_DISPLAY (f
);
8383 Screen
*screen
= FRAME_X_SCREEN (f
);
8384 Window window
= FRAME_W32_WINDOW (f
);
8386 xassert (interrupt_input_blocked
);
8389 depth
= DefaultDepthOfScreen (screen
);
8390 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
8391 depth
, ZPixmap
, 0, NULL
, width
, height
,
8392 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
8395 image_error ("Unable to allocate X image", Qnil
, Qnil
);
8399 /* Allocate image raster. */
8400 (*ximg
)->data
= (char *) xmalloc ((*ximg
)->bytes_per_line
* height
);
8402 /* Allocate a pixmap of the same size. */
8403 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
8406 x_destroy_x_image (*ximg
);
8408 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
8416 /* Destroy XImage XIMG. Free XIMG->data. */
8419 x_destroy_x_image (ximg
)
8422 xassert (interrupt_input_blocked
);
8427 XDestroyImage (ximg
);
8432 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
8433 are width and height of both the image and pixmap. */
8436 x_put_x_image (f
, ximg
, pixmap
, width
, height
)
8443 xassert (interrupt_input_blocked
);
8444 gc
= XCreateGC (NULL
, pixmap
, 0, NULL
);
8445 XPutImage (NULL
, pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
8452 /***********************************************************************
8454 ***********************************************************************/
8456 static Lisp_Object x_find_image_file
P_ ((Lisp_Object
));
8458 /* Find image file FILE. Look in data-directory, then
8459 x-bitmap-file-path. Value is the full name of the file found, or
8460 nil if not found. */
8463 x_find_image_file (file
)
8466 Lisp_Object file_found
, search_path
;
8467 struct gcpro gcpro1
, gcpro2
;
8471 search_path
= Fcons (Vdata_directory
, Vx_bitmap_file_path
);
8472 GCPRO2 (file_found
, search_path
);
8474 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
8475 fd
= openp (search_path
, file
, "", &file_found
, 0);
8488 /***********************************************************************
8490 ***********************************************************************/
8492 static int xbm_load
P_ ((struct frame
*f
, struct image
*img
));
8493 static int xbm_load_image_from_file
P_ ((struct frame
*f
, struct image
*img
,
8495 static int xbm_image_p
P_ ((Lisp_Object object
));
8496 static int xbm_read_bitmap_file_data
P_ ((char *, int *, int *,
8500 /* Indices of image specification fields in xbm_format, below. */
8502 enum xbm_keyword_index
8519 /* Vector of image_keyword structures describing the format
8520 of valid XBM image specifications. */
8522 static struct image_keyword xbm_format
[XBM_LAST
] =
8524 {":type", IMAGE_SYMBOL_VALUE
, 1},
8525 {":file", IMAGE_STRING_VALUE
, 0},
8526 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
8527 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
8528 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8529 {":foreground", IMAGE_STRING_VALUE
, 0},
8530 {":background", IMAGE_STRING_VALUE
, 0},
8531 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
8532 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
8533 {":relief", IMAGE_INTEGER_VALUE
, 0},
8534 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8535 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
8538 /* Structure describing the image type XBM. */
8540 static struct image_type xbm_type
=
8549 /* Tokens returned from xbm_scan. */
8558 /* Return non-zero if OBJECT is a valid XBM-type image specification.
8559 A valid specification is a list starting with the symbol `image'
8560 The rest of the list is a property list which must contain an
8563 If the specification specifies a file to load, it must contain
8564 an entry `:file FILENAME' where FILENAME is a string.
8566 If the specification is for a bitmap loaded from memory it must
8567 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
8568 WIDTH and HEIGHT are integers > 0. DATA may be:
8570 1. a string large enough to hold the bitmap data, i.e. it must
8571 have a size >= (WIDTH + 7) / 8 * HEIGHT
8573 2. a bool-vector of size >= WIDTH * HEIGHT
8575 3. a vector of strings or bool-vectors, one for each line of the
8578 Both the file and data forms may contain the additional entries
8579 `:background COLOR' and `:foreground COLOR'. If not present,
8580 foreground and background of the frame on which the image is
8581 displayed, is used. */
8584 xbm_image_p (object
)
8587 struct image_keyword kw
[XBM_LAST
];
8589 bcopy (xbm_format
, kw
, sizeof kw
);
8590 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
8593 xassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
8595 if (kw
[XBM_FILE
].count
)
8597 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
8605 /* Entries for `:width', `:height' and `:data' must be present. */
8606 if (!kw
[XBM_WIDTH
].count
8607 || !kw
[XBM_HEIGHT
].count
8608 || !kw
[XBM_DATA
].count
)
8611 data
= kw
[XBM_DATA
].value
;
8612 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
8613 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
8615 /* Check type of data, and width and height against contents of
8621 /* Number of elements of the vector must be >= height. */
8622 if (XVECTOR (data
)->size
< height
)
8625 /* Each string or bool-vector in data must be large enough
8626 for one line of the image. */
8627 for (i
= 0; i
< height
; ++i
)
8629 Lisp_Object elt
= XVECTOR (data
)->contents
[i
];
8633 if (XSTRING (elt
)->size
8634 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
8637 else if (BOOL_VECTOR_P (elt
))
8639 if (XBOOL_VECTOR (elt
)->size
< width
)
8646 else if (STRINGP (data
))
8648 if (XSTRING (data
)->size
8649 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
8652 else if (BOOL_VECTOR_P (data
))
8654 if (XBOOL_VECTOR (data
)->size
< width
* height
)
8661 /* Baseline must be a value between 0 and 100 (a percentage). */
8662 if (kw
[XBM_ASCENT
].count
8663 && XFASTINT (kw
[XBM_ASCENT
].value
) > 100)
8670 /* Scan a bitmap file. FP is the stream to read from. Value is
8671 either an enumerator from enum xbm_token, or a character for a
8672 single-character token, or 0 at end of file. If scanning an
8673 identifier, store the lexeme of the identifier in SVAL. If
8674 scanning a number, store its value in *IVAL. */
8677 xbm_scan (fp
, sval
, ival
)
8684 /* Skip white space. */
8685 while ((c
= fgetc (fp
)) != EOF
&& isspace (c
))
8690 else if (isdigit (c
))
8692 int value
= 0, digit
;
8697 if (c
== 'x' || c
== 'X')
8699 while ((c
= fgetc (fp
)) != EOF
)
8703 else if (c
>= 'a' && c
<= 'f')
8704 digit
= c
- 'a' + 10;
8705 else if (c
>= 'A' && c
<= 'F')
8706 digit
= c
- 'A' + 10;
8709 value
= 16 * value
+ digit
;
8712 else if (isdigit (c
))
8715 while ((c
= fgetc (fp
)) != EOF
8717 value
= 8 * value
+ c
- '0';
8723 while ((c
= fgetc (fp
)) != EOF
8725 value
= 10 * value
+ c
- '0';
8733 else if (isalpha (c
) || c
== '_')
8736 while ((c
= fgetc (fp
)) != EOF
8737 && (isalnum (c
) || c
== '_'))
8749 /* Replacement for XReadBitmapFileData which isn't available under old
8750 X versions. FILE is the name of the bitmap file to read. Set
8751 *WIDTH and *HEIGHT to the width and height of the image. Return in
8752 *DATA the bitmap data allocated with xmalloc. Value is non-zero if
8756 xbm_read_bitmap_file_data (file
, width
, height
, data
)
8758 int *width
, *height
;
8759 unsigned char **data
;
8762 char buffer
[BUFSIZ
];
8765 int bytes_per_line
, i
, nbytes
;
8771 LA1 = xbm_scan (fp, buffer, &value)
8773 #define expect(TOKEN) \
8774 if (LA1 != (TOKEN)) \
8779 #define expect_ident(IDENT) \
8780 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
8785 fp
= fopen (file
, "r");
8789 *width
= *height
= -1;
8791 LA1
= xbm_scan (fp
, buffer
, &value
);
8793 /* Parse defines for width, height and hot-spots. */
8797 expect_ident ("define");
8798 expect (XBM_TK_IDENT
);
8800 if (LA1
== XBM_TK_NUMBER
);
8802 char *p
= strrchr (buffer
, '_');
8803 p
= p
? p
+ 1 : buffer
;
8804 if (strcmp (p
, "width") == 0)
8806 else if (strcmp (p
, "height") == 0)
8809 expect (XBM_TK_NUMBER
);
8812 if (*width
< 0 || *height
< 0)
8815 /* Parse bits. Must start with `static'. */
8816 expect_ident ("static");
8817 if (LA1
== XBM_TK_IDENT
)
8819 if (strcmp (buffer
, "unsigned") == 0)
8822 expect_ident ("char");
8824 else if (strcmp (buffer
, "short") == 0)
8828 if (*width
% 16 && *width
% 16 < 9)
8831 else if (strcmp (buffer
, "char") == 0)
8839 expect (XBM_TK_IDENT
);
8845 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
8846 nbytes
= bytes_per_line
* *height
;
8847 p
= *data
= (char *) xmalloc (nbytes
);
8852 for (i
= 0; i
< nbytes
; i
+= 2)
8855 expect (XBM_TK_NUMBER
);
8858 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
8861 if (LA1
== ',' || LA1
== '}')
8869 for (i
= 0; i
< nbytes
; ++i
)
8872 expect (XBM_TK_NUMBER
);
8876 if (LA1
== ',' || LA1
== '}')
8902 /* Load XBM image IMG which will be displayed on frame F from file
8903 SPECIFIED_FILE. Value is non-zero if successful. */
8906 xbm_load_image_from_file (f
, img
, specified_file
)
8909 Lisp_Object specified_file
;
8912 unsigned char *data
;
8915 struct gcpro gcpro1
;
8917 xassert (STRINGP (specified_file
));
8921 file
= x_find_image_file (specified_file
);
8922 if (!STRINGP (file
))
8924 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
8929 rc
= xbm_read_bitmap_file_data (XSTRING (file
)->data
, &img
->width
,
8930 &img
->height
, &data
);
8933 int depth
= one_w32_display_info
.n_cbits
;
8934 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
8935 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
8938 xassert (img
->width
> 0 && img
->height
> 0);
8940 /* Get foreground and background colors, maybe allocate colors. */
8941 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
8943 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
8945 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
8947 background
= x_alloc_image_color (f
, img
, value
, background
);
8949 #if 0 /* TODO : Port image display to W32 */
8952 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f
),
8953 FRAME_W32_WINDOW (f
),
8955 img
->width
, img
->height
,
8956 foreground
, background
,
8960 if (img
->pixmap
== 0)
8962 x_clear_image (f
, img
);
8963 image_error ("Unable to create X pixmap for `%s'", file
, Qnil
);
8972 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
8979 /* Fill image IMG which is used on frame F with pixmap data. Value is
8980 non-zero if successful. */
8988 Lisp_Object file_name
;
8990 xassert (xbm_image_p (img
->spec
));
8992 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8993 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
8994 if (STRINGP (file_name
))
8995 success_p
= xbm_load_image_from_file (f
, img
, file_name
);
8998 struct image_keyword fmt
[XBM_LAST
];
9001 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
9002 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
9006 /* Parse the list specification. */
9007 bcopy (xbm_format
, fmt
, sizeof fmt
);
9008 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
9011 /* Get specified width, and height. */
9012 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
9013 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
9014 xassert (img
->width
> 0 && img
->height
> 0);
9018 if (fmt
[XBM_ASCENT
].count
)
9019 img
->ascent
= XFASTINT (fmt
[XBM_ASCENT
].value
);
9021 /* Get foreground and background colors, maybe allocate colors. */
9022 if (fmt
[XBM_FOREGROUND
].count
)
9023 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
9025 if (fmt
[XBM_BACKGROUND
].count
)
9026 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
9029 /* Set bits to the bitmap image data. */
9030 data
= fmt
[XBM_DATA
].value
;
9035 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
9037 p
= bits
= (char *) alloca (nbytes
* img
->height
);
9038 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
9040 Lisp_Object line
= XVECTOR (data
)->contents
[i
];
9042 bcopy (XSTRING (line
)->data
, p
, nbytes
);
9044 bcopy (XBOOL_VECTOR (line
)->data
, p
, nbytes
);
9047 else if (STRINGP (data
))
9048 bits
= XSTRING (data
)->data
;
9050 bits
= XBOOL_VECTOR (data
)->data
;
9052 #if 0 /* TODO : W32 XPM code */
9053 /* Create the pixmap. */
9054 depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
9056 = XCreatePixmapFromBitmapData (FRAME_W32_DISPLAY (f
),
9057 FRAME_W32_WINDOW (f
),
9059 img
->width
, img
->height
,
9060 foreground
, background
,
9068 image_error ("Unable to create pixmap for XBM image `%s'",
9070 x_clear_image (f
, img
);
9081 /***********************************************************************
9083 ***********************************************************************/
9087 static int xpm_image_p
P_ ((Lisp_Object object
));
9088 static int xpm_load
P_ ((struct frame
*f
, struct image
*img
));
9089 static int xpm_valid_color_symbols_p
P_ ((Lisp_Object
));
9091 #include "X11/xpm.h"
9093 /* The symbol `xpm' identifying XPM-format images. */
9097 /* Indices of image specification fields in xpm_format, below. */
9099 enum xpm_keyword_index
9113 /* Vector of image_keyword structures describing the format
9114 of valid XPM image specifications. */
9116 static struct image_keyword xpm_format
[XPM_LAST
] =
9118 {":type", IMAGE_SYMBOL_VALUE
, 1},
9119 {":file", IMAGE_STRING_VALUE
, 0},
9120 {":data", IMAGE_STRING_VALUE
, 0},
9121 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
9122 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
9123 {":relief", IMAGE_INTEGER_VALUE
, 0},
9124 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9125 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9126 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
9129 /* Structure describing the image type XBM. */
9131 static struct image_type xpm_type
=
9141 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
9142 for XPM images. Such a list must consist of conses whose car and
9146 xpm_valid_color_symbols_p (color_symbols
)
9147 Lisp_Object color_symbols
;
9149 while (CONSP (color_symbols
))
9151 Lisp_Object sym
= XCAR (color_symbols
);
9153 || !STRINGP (XCAR (sym
))
9154 || !STRINGP (XCDR (sym
)))
9156 color_symbols
= XCDR (color_symbols
);
9159 return NILP (color_symbols
);
9163 /* Value is non-zero if OBJECT is a valid XPM image specification. */
9166 xpm_image_p (object
)
9169 struct image_keyword fmt
[XPM_LAST
];
9170 bcopy (xpm_format
, fmt
, sizeof fmt
);
9171 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
9172 /* Either `:file' or `:data' must be present. */
9173 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
9174 /* Either no `:color-symbols' or it's a list of conses
9175 whose car and cdr are strings. */
9176 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
9177 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
))
9178 && (fmt
[XPM_ASCENT
].count
== 0
9179 || XFASTINT (fmt
[XPM_ASCENT
].value
) < 100));
9183 /* Load image IMG which will be displayed on frame F. Value is
9184 non-zero if successful. */
9192 XpmAttributes attrs
;
9193 Lisp_Object specified_file
, color_symbols
;
9195 /* Configure the XPM lib. Use the visual of frame F. Allocate
9196 close colors. Return colors allocated. */
9197 bzero (&attrs
, sizeof attrs
);
9198 attrs
.visual
= FRAME_X_VISUAL (f
);
9199 attrs
.colormap
= FRAME_X_COLORMAP (f
);
9200 attrs
.valuemask
|= XpmVisual
;
9201 attrs
.valuemask
|= XpmColormap
;
9202 attrs
.valuemask
|= XpmReturnAllocPixels
;
9203 #ifdef XpmAllocCloseColors
9204 attrs
.alloc_close_colors
= 1;
9205 attrs
.valuemask
|= XpmAllocCloseColors
;
9207 attrs
.closeness
= 600;
9208 attrs
.valuemask
|= XpmCloseness
;
9211 /* If image specification contains symbolic color definitions, add
9212 these to `attrs'. */
9213 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
9214 if (CONSP (color_symbols
))
9217 XpmColorSymbol
*xpm_syms
;
9220 attrs
.valuemask
|= XpmColorSymbols
;
9222 /* Count number of symbols. */
9223 attrs
.numsymbols
= 0;
9224 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
9227 /* Allocate an XpmColorSymbol array. */
9228 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
9229 xpm_syms
= (XpmColorSymbol
*) alloca (size
);
9230 bzero (xpm_syms
, size
);
9231 attrs
.colorsymbols
= xpm_syms
;
9233 /* Fill the color symbol array. */
9234 for (tail
= color_symbols
, i
= 0;
9236 ++i
, tail
= XCDR (tail
))
9238 Lisp_Object name
= XCAR (XCAR (tail
));
9239 Lisp_Object color
= XCDR (XCAR (tail
));
9240 xpm_syms
[i
].name
= (char *) alloca (XSTRING (name
)->size
+ 1);
9241 strcpy (xpm_syms
[i
].name
, XSTRING (name
)->data
);
9242 xpm_syms
[i
].value
= (char *) alloca (XSTRING (color
)->size
+ 1);
9243 strcpy (xpm_syms
[i
].value
, XSTRING (color
)->data
);
9247 /* Create a pixmap for the image, either from a file, or from a
9248 string buffer containing data in the same format as an XPM file. */
9250 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
9251 if (STRINGP (specified_file
))
9253 Lisp_Object file
= x_find_image_file (specified_file
);
9254 if (!STRINGP (file
))
9256 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
9261 rc
= XpmReadFileToPixmap (NULL
, FRAME_W32_WINDOW (f
),
9262 XSTRING (file
)->data
, &img
->pixmap
, &img
->mask
,
9267 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
9268 rc
= XpmCreatePixmapFromBuffer (NULL
, FRAME_W32_WINDOW (f
),
9269 XSTRING (buffer
)->data
,
9270 &img
->pixmap
, &img
->mask
,
9275 if (rc
== XpmSuccess
)
9277 /* Remember allocated colors. */
9278 img
->ncolors
= attrs
.nalloc_pixels
;
9279 img
->colors
= (unsigned long *) xmalloc (img
->ncolors
9280 * sizeof *img
->colors
);
9281 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
9282 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
9284 img
->width
= attrs
.width
;
9285 img
->height
= attrs
.height
;
9286 xassert (img
->width
> 0 && img
->height
> 0);
9288 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
9290 XpmFreeAttributes (&attrs
);
9298 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
9301 case XpmFileInvalid
:
9302 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
9306 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
9309 case XpmColorFailed
:
9310 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
9314 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
9319 return rc
== XpmSuccess
;
9322 #endif /* HAVE_XPM != 0 */
9325 #if 0 /* TODO : Color tables on W32. */
9326 /***********************************************************************
9328 ***********************************************************************/
9330 /* An entry in the color table mapping an RGB color to a pixel color. */
9335 unsigned long pixel
;
9337 /* Next in color table collision list. */
9338 struct ct_color
*next
;
9341 /* The bucket vector size to use. Must be prime. */
9345 /* Value is a hash of the RGB color given by R, G, and B. */
9347 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
9349 /* The color hash table. */
9351 struct ct_color
**ct_table
;
9353 /* Number of entries in the color table. */
9355 int ct_colors_allocated
;
9357 /* Function prototypes. */
9359 static void init_color_table
P_ ((void));
9360 static void free_color_table
P_ ((void));
9361 static unsigned long *colors_in_color_table
P_ ((int *n
));
9362 static unsigned long lookup_rgb_color
P_ ((struct frame
*f
, int r
, int g
, int b
));
9363 static unsigned long lookup_pixel_color
P_ ((struct frame
*f
, unsigned long p
));
9366 /* Initialize the color table. */
9371 int size
= CT_SIZE
* sizeof (*ct_table
);
9372 ct_table
= (struct ct_color
**) xmalloc (size
);
9373 bzero (ct_table
, size
);
9374 ct_colors_allocated
= 0;
9378 /* Free memory associated with the color table. */
9384 struct ct_color
*p
, *next
;
9386 for (i
= 0; i
< CT_SIZE
; ++i
)
9387 for (p
= ct_table
[i
]; p
; p
= next
)
9398 /* Value is a pixel color for RGB color R, G, B on frame F. If an
9399 entry for that color already is in the color table, return the
9400 pixel color of that entry. Otherwise, allocate a new color for R,
9401 G, B, and make an entry in the color table. */
9403 static unsigned long
9404 lookup_rgb_color (f
, r
, g
, b
)
9408 unsigned hash
= CT_HASH_RGB (r
, g
, b
);
9409 int i
= hash
% CT_SIZE
;
9412 for (p
= ct_table
[i
]; p
; p
= p
->next
)
9413 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
9422 color
= PALETTERGB (r
, g
, b
);
9424 ++ct_colors_allocated
;
9426 p
= (struct ct_color
*) xmalloc (sizeof *p
);
9431 p
->next
= ct_table
[i
];
9439 /* Look up pixel color PIXEL which is used on frame F in the color
9440 table. If not already present, allocate it. Value is PIXEL. */
9442 static unsigned long
9443 lookup_pixel_color (f
, pixel
)
9445 unsigned long pixel
;
9447 int i
= pixel
% CT_SIZE
;
9450 for (p
= ct_table
[i
]; p
; p
= p
->next
)
9451 if (p
->pixel
== pixel
)
9462 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
9463 color
.pixel
= pixel
;
9464 XQueryColor (NULL
, cmap
, &color
);
9465 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
9470 ++ct_colors_allocated
;
9472 p
= (struct ct_color
*) xmalloc (sizeof *p
);
9477 p
->next
= ct_table
[i
];
9481 return FRAME_FOREGROUND_PIXEL (f
);
9487 /* Value is a vector of all pixel colors contained in the color table,
9488 allocated via xmalloc. Set *N to the number of colors. */
9490 static unsigned long *
9491 colors_in_color_table (n
)
9496 unsigned long *colors
;
9498 if (ct_colors_allocated
== 0)
9505 colors
= (unsigned long *) xmalloc (ct_colors_allocated
9507 *n
= ct_colors_allocated
;
9509 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
9510 for (p
= ct_table
[i
]; p
; p
= p
->next
)
9511 colors
[j
++] = p
->pixel
;
9520 /***********************************************************************
9522 ***********************************************************************/
9524 #if 0 /* TODO : W32 versions of low level algorithms */
9525 static void x_laplace_write_row
P_ ((struct frame
*, long *,
9526 int, XImage
*, int));
9527 static void x_laplace_read_row
P_ ((struct frame
*, Colormap
,
9528 XColor
*, int, XImage
*, int));
9531 /* Fill COLORS with RGB colors from row Y of image XIMG. F is the
9532 frame we operate on, CMAP is the color-map in effect, and WIDTH is
9533 the width of one row in the image. */
9536 x_laplace_read_row (f
, cmap
, colors
, width
, ximg
, y
)
9546 for (x
= 0; x
< width
; ++x
)
9547 colors
[x
].pixel
= XGetPixel (ximg
, x
, y
);
9549 XQueryColors (NULL
, cmap
, colors
, width
);
9553 /* Write row Y of image XIMG. PIXELS is an array of WIDTH longs
9554 containing the pixel colors to write. F is the frame we are
9558 x_laplace_write_row (f
, pixels
, width
, ximg
, y
)
9567 for (x
= 0; x
< width
; ++x
)
9568 XPutPixel (ximg
, x
, y
, pixels
[x
]);
9572 /* Transform image IMG which is used on frame F with a Laplace
9573 edge-detection algorithm. The result is an image that can be used
9574 to draw disabled buttons, for example. */
9581 #if 0 /* TODO : W32 version */
9582 Colormap cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
9583 XImage
*ximg
, *oimg
;
9589 int in_y
, out_y
, rc
;
9594 /* Get the X image IMG->pixmap. */
9595 ximg
= XGetImage (NULL
, img
->pixmap
,
9596 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
9598 /* Allocate 3 input rows, and one output row of colors. */
9599 for (i
= 0; i
< 3; ++i
)
9600 in
[i
] = (XColor
*) alloca (img
->width
* sizeof (XColor
));
9601 out
= (long *) alloca (img
->width
* sizeof (long));
9603 /* Create an X image for output. */
9604 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 0,
9607 /* Fill first two rows. */
9608 x_laplace_read_row (f
, cmap
, in
[0], img
->width
, ximg
, 0);
9609 x_laplace_read_row (f
, cmap
, in
[1], img
->width
, ximg
, 1);
9612 /* Write first row, all zeros. */
9613 init_color_table ();
9614 pixel
= lookup_rgb_color (f
, 0, 0, 0);
9615 for (x
= 0; x
< img
->width
; ++x
)
9617 x_laplace_write_row (f
, out
, img
->width
, oimg
, 0);
9620 for (y
= 2; y
< img
->height
; ++y
)
9623 int rowb
= (y
+ 2) % 3;
9625 x_laplace_read_row (f
, cmap
, in
[rowa
], img
->width
, ximg
, in_y
++);
9627 for (x
= 0; x
< img
->width
- 2; ++x
)
9629 int r
= in
[rowa
][x
].red
+ mv2
- in
[rowb
][x
+ 2].red
;
9630 int g
= in
[rowa
][x
].green
+ mv2
- in
[rowb
][x
+ 2].green
;
9631 int b
= in
[rowa
][x
].blue
+ mv2
- in
[rowb
][x
+ 2].blue
;
9633 out
[x
+ 1] = lookup_rgb_color (f
, r
& 0xffff, g
& 0xffff,
9637 x_laplace_write_row (f
, out
, img
->width
, oimg
, out_y
++);
9640 /* Write last line, all zeros. */
9641 for (x
= 0; x
< img
->width
; ++x
)
9643 x_laplace_write_row (f
, out
, img
->width
, oimg
, out_y
);
9645 /* Free the input image, and free resources of IMG. */
9646 XDestroyImage (ximg
);
9647 x_clear_image (f
, img
);
9649 /* Put the output image into pixmap, and destroy it. */
9650 x_put_x_image (f
, oimg
, pixmap
, img
->width
, img
->height
);
9651 x_destroy_x_image (oimg
);
9653 /* Remember new pixmap and colors in IMG. */
9654 img
->pixmap
= pixmap
;
9655 img
->colors
= colors_in_color_table (&img
->ncolors
);
9656 free_color_table ();
9663 /* Build a mask for image IMG which is used on frame F. FILE is the
9664 name of an image file, for error messages. HOW determines how to
9665 determine the background color of IMG. If it is a list '(R G B)',
9666 with R, G, and B being integers >= 0, take that as the color of the
9667 background. Otherwise, determine the background color of IMG
9668 heuristically. Value is non-zero if successful. */
9671 x_build_heuristic_mask (f
, img
, how
)
9676 #if 0 /* TODO : W32 version */
9677 Display
*dpy
= FRAME_W32_DISPLAY (f
);
9678 XImage
*ximg
, *mask_img
;
9679 int x
, y
, rc
, look_at_corners_p
;
9684 /* Create an image and pixmap serving as mask. */
9685 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 1,
9686 &mask_img
, &img
->mask
);
9693 /* Get the X image of IMG->pixmap. */
9694 ximg
= XGetImage (dpy
, img
->pixmap
, 0, 0, img
->width
, img
->height
,
9697 /* Determine the background color of ximg. If HOW is `(R G B)'
9698 take that as color. Otherwise, try to determine the color
9700 look_at_corners_p
= 1;
9708 && NATNUMP (XCAR (how
)))
9710 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
9714 if (i
== 3 && NILP (how
))
9716 char color_name
[30];
9717 XColor exact
, color
;
9720 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
9722 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
9723 if (XLookupColor (dpy
, cmap
, color_name
, &exact
, &color
))
9726 look_at_corners_p
= 0;
9731 if (look_at_corners_p
)
9733 unsigned long corners
[4];
9736 /* Get the colors at the corners of ximg. */
9737 corners
[0] = XGetPixel (ximg
, 0, 0);
9738 corners
[1] = XGetPixel (ximg
, img
->width
- 1, 0);
9739 corners
[2] = XGetPixel (ximg
, img
->width
- 1, img
->height
- 1);
9740 corners
[3] = XGetPixel (ximg
, 0, img
->height
- 1);
9742 /* Choose the most frequently found color as background. */
9743 for (i
= best_count
= 0; i
< 4; ++i
)
9747 for (j
= n
= 0; j
< 4; ++j
)
9748 if (corners
[i
] == corners
[j
])
9752 bg
= corners
[i
], best_count
= n
;
9756 /* Set all bits in mask_img to 1 whose color in ximg is different
9757 from the background color bg. */
9758 for (y
= 0; y
< img
->height
; ++y
)
9759 for (x
= 0; x
< img
->width
; ++x
)
9760 XPutPixel (mask_img
, x
, y
, XGetPixel (ximg
, x
, y
) != bg
);
9762 /* Put mask_img into img->mask. */
9763 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
9764 x_destroy_x_image (mask_img
);
9765 XDestroyImage (ximg
);
9775 /***********************************************************************
9776 PBM (mono, gray, color)
9777 ***********************************************************************/
9780 static int pbm_image_p
P_ ((Lisp_Object object
));
9781 static int pbm_load
P_ ((struct frame
*f
, struct image
*img
));
9782 static int pbm_scan_number
P_ ((unsigned char **, unsigned char *));
9784 /* The symbol `pbm' identifying images of this type. */
9788 /* Indices of image specification fields in gs_format, below. */
9790 enum pbm_keyword_index
9803 /* Vector of image_keyword structures describing the format
9804 of valid user-defined image specifications. */
9806 static struct image_keyword pbm_format
[PBM_LAST
] =
9808 {":type", IMAGE_SYMBOL_VALUE
, 1},
9809 {":file", IMAGE_STRING_VALUE
, 0},
9810 {":data", IMAGE_STRING_VALUE
, 0},
9811 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
9812 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
9813 {":relief", IMAGE_INTEGER_VALUE
, 0},
9814 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9815 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
9818 /* Structure describing the image type `pbm'. */
9820 static struct image_type pbm_type
=
9830 /* Return non-zero if OBJECT is a valid PBM image specification. */
9833 pbm_image_p (object
)
9836 struct image_keyword fmt
[PBM_LAST
];
9838 bcopy (pbm_format
, fmt
, sizeof fmt
);
9840 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
)
9841 || (fmt
[PBM_ASCENT
].count
9842 && XFASTINT (fmt
[PBM_ASCENT
].value
) > 100))
9845 /* Must specify either :data or :file. */
9846 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
9850 /* Scan a decimal number from *S and return it. Advance *S while
9851 reading the number. END is the end of the string. Value is -1 at
9855 pbm_scan_number (s
, end
)
9856 unsigned char **s
, *end
;
9862 /* Skip white-space. */
9863 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
9868 /* Skip comment to end of line. */
9869 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n'))
9872 else if (isdigit (c
))
9874 /* Read decimal number. */
9876 while (*s
< end
&& (c
= *(*s
)++, isdigit (c
)))
9877 val
= 10 * val
+ c
- '0';
9888 /* Read FILE into memory. Value is a pointer to a buffer allocated
9889 with xmalloc holding FILE's contents. Value is null if an error
9890 occured. *SIZE is set to the size of the file. */
9893 pbm_read_file (file
, size
)
9901 if (stat (XSTRING (file
)->data
, &st
) == 0
9902 && (fp
= fopen (XSTRING (file
)->data
, "r")) != NULL
9903 && (buf
= (char *) xmalloc (st
.st_size
),
9904 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
9924 /* Load PBM image IMG for use on frame F. */
9932 int width
, height
, max_color_idx
= 0;
9934 Lisp_Object file
, specified_file
;
9935 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
9936 struct gcpro gcpro1
;
9937 unsigned char *contents
= NULL
;
9938 unsigned char *end
, *p
;
9941 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
9945 if (STRINGP (specified_file
))
9947 file
= x_find_image_file (specified_file
);
9948 if (!STRINGP (file
))
9950 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
9955 contents
= pbm_read_file (file
, &size
);
9956 if (contents
== NULL
)
9958 image_error ("Error reading `%s'", file
, Qnil
);
9964 end
= contents
+ size
;
9969 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
9970 p
= XSTRING (data
)->data
;
9971 end
= p
+ STRING_BYTES (XSTRING (data
));
9974 /* Check magic number. */
9975 if (end
- p
< 2 || *p
++ != 'P')
9977 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
9987 raw_p
= 0, type
= PBM_MONO
;
9991 raw_p
= 0, type
= PBM_GRAY
;
9995 raw_p
= 0, type
= PBM_COLOR
;
9999 raw_p
= 1, type
= PBM_MONO
;
10003 raw_p
= 1, type
= PBM_GRAY
;
10007 raw_p
= 1, type
= PBM_COLOR
;
10011 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
10015 /* Read width, height, maximum color-component. Characters
10016 starting with `#' up to the end of a line are ignored. */
10017 width
= pbm_scan_number (&p
, end
);
10018 height
= pbm_scan_number (&p
, end
);
10020 if (type
!= PBM_MONO
)
10022 max_color_idx
= pbm_scan_number (&p
, end
);
10023 if (raw_p
&& max_color_idx
> 255)
10024 max_color_idx
= 255;
10029 || (type
!= PBM_MONO
&& max_color_idx
< 0))
10033 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
10034 &ximg
, &img
->pixmap
))
10040 /* Initialize the color hash table. */
10041 init_color_table ();
10043 if (type
== PBM_MONO
)
10047 for (y
= 0; y
< height
; ++y
)
10048 for (x
= 0; x
< width
; ++x
)
10058 g
= pbm_scan_number (&p
, end
);
10060 XPutPixel (ximg
, x
, y
, (g
10061 ? FRAME_FOREGROUND_PIXEL (f
)
10062 : FRAME_BACKGROUND_PIXEL (f
)));
10067 for (y
= 0; y
< height
; ++y
)
10068 for (x
= 0; x
< width
; ++x
)
10072 if (type
== PBM_GRAY
)
10073 r
= g
= b
= raw_p
? *p
++ : pbm_scan_number (&p
, end
);
10082 r
= pbm_scan_number (&p
, end
);
10083 g
= pbm_scan_number (&p
, end
);
10084 b
= pbm_scan_number (&p
, end
);
10087 if (r
< 0 || g
< 0 || b
< 0)
10089 xfree (ximg
->data
);
10091 XDestroyImage (ximg
);
10093 image_error ("Invalid pixel value in image `%s'",
10098 /* RGB values are now in the range 0..max_color_idx.
10099 Scale this to the range 0..0xffff supported by X. */
10100 r
= (double) r
* 65535 / max_color_idx
;
10101 g
= (double) g
* 65535 / max_color_idx
;
10102 b
= (double) b
* 65535 / max_color_idx
;
10103 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
10107 /* Store in IMG->colors the colors allocated for the image, and
10108 free the color table. */
10109 img
->colors
= colors_in_color_table (&img
->ncolors
);
10110 free_color_table ();
10112 /* Put the image into a pixmap. */
10113 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
10114 x_destroy_x_image (ximg
);
10117 img
->width
= width
;
10118 img
->height
= height
;
10124 #endif /* HAVE_PBM */
10127 /***********************************************************************
10129 ***********************************************************************/
10135 /* Function prototypes. */
10137 static int png_image_p
P_ ((Lisp_Object object
));
10138 static int png_load
P_ ((struct frame
*f
, struct image
*img
));
10140 /* The symbol `png' identifying images of this type. */
10144 /* Indices of image specification fields in png_format, below. */
10146 enum png_keyword_index
10155 PNG_HEURISTIC_MASK
,
10159 /* Vector of image_keyword structures describing the format
10160 of valid user-defined image specifications. */
10162 static struct image_keyword png_format
[PNG_LAST
] =
10164 {":type", IMAGE_SYMBOL_VALUE
, 1},
10165 {":data", IMAGE_STRING_VALUE
, 0},
10166 {":file", IMAGE_STRING_VALUE
, 0},
10167 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
10168 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
10169 {":relief", IMAGE_INTEGER_VALUE
, 0},
10170 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
10171 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
10174 /* Structure describing the image type `png'. */
10176 static struct image_type png_type
=
10186 /* Return non-zero if OBJECT is a valid PNG image specification. */
10189 png_image_p (object
)
10190 Lisp_Object object
;
10192 struct image_keyword fmt
[PNG_LAST
];
10193 bcopy (png_format
, fmt
, sizeof fmt
);
10195 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
)
10196 || (fmt
[PNG_ASCENT
].count
10197 && XFASTINT (fmt
[PNG_ASCENT
].value
) > 100))
10200 /* Must specify either the :data or :file keyword. */
10201 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
10205 /* Error and warning handlers installed when the PNG library
10209 my_png_error (png_ptr
, msg
)
10210 png_struct
*png_ptr
;
10213 xassert (png_ptr
!= NULL
);
10214 image_error ("PNG error: %s", build_string (msg
), Qnil
);
10215 longjmp (png_ptr
->jmpbuf
, 1);
10220 my_png_warning (png_ptr
, msg
)
10221 png_struct
*png_ptr
;
10224 xassert (png_ptr
!= NULL
);
10225 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
10228 /* Memory source for PNG decoding. */
10230 struct png_memory_storage
10232 unsigned char *bytes
; /* The data */
10233 size_t len
; /* How big is it? */
10234 int index
; /* Where are we? */
10238 /* Function set as reader function when reading PNG image from memory.
10239 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
10240 bytes from the input to DATA. */
10243 png_read_from_memory (png_ptr
, data
, length
)
10244 png_structp png_ptr
;
10248 struct png_memory_storage
*tbr
10249 = (struct png_memory_storage
*) png_get_io_ptr (png_ptr
);
10251 if (length
> tbr
->len
- tbr
->index
)
10252 png_error (png_ptr
, "Read error");
10254 bcopy (tbr
->bytes
+ tbr
->index
, data
, length
);
10255 tbr
->index
= tbr
->index
+ length
;
10258 /* Load PNG image IMG for use on frame F. Value is non-zero if
10266 Lisp_Object file
, specified_file
;
10267 Lisp_Object specified_data
;
10269 XImage
*ximg
, *mask_img
= NULL
;
10270 struct gcpro gcpro1
;
10271 png_struct
*png_ptr
= NULL
;
10272 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
10275 png_byte
*pixels
= NULL
;
10276 png_byte
**rows
= NULL
;
10277 png_uint_32 width
, height
;
10278 int bit_depth
, color_type
, interlace_type
;
10280 png_uint_32 row_bytes
;
10283 double screen_gamma
, image_gamma
;
10285 struct png_memory_storage tbr
; /* Data to be read */
10287 /* Find out what file to load. */
10288 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
10289 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
10293 if (NILP (specified_data
))
10295 file
= x_find_image_file (specified_file
);
10296 if (!STRINGP (file
))
10298 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
10303 /* Open the image file. */
10304 fp
= fopen (XSTRING (file
)->data
, "rb");
10307 image_error ("Cannot open image file `%s'", file
, Qnil
);
10313 /* Check PNG signature. */
10314 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
10315 || !png_check_sig (sig
, sizeof sig
))
10317 image_error ("Not a PNG file:` %s'", file
, Qnil
);
10325 /* Read from memory. */
10326 tbr
.bytes
= XSTRING (specified_data
)->data
;
10327 tbr
.len
= STRING_BYTES (XSTRING (specified_data
));
10330 /* Check PNG signature. */
10331 if (tbr
.len
< sizeof sig
10332 || !png_check_sig (tbr
.bytes
, sizeof sig
))
10334 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
10339 /* Need to skip past the signature. */
10340 tbr
.bytes
+= sizeof (sig
);
10343 /* Initialize read and info structs for PNG lib. */
10344 png_ptr
= png_create_read_struct (PNG_LIBPNG_VER_STRING
, NULL
,
10345 my_png_error
, my_png_warning
);
10348 if (fp
) fclose (fp
);
10353 info_ptr
= png_create_info_struct (png_ptr
);
10356 png_destroy_read_struct (&png_ptr
, NULL
, NULL
);
10357 if (fp
) fclose (fp
);
10362 end_info
= png_create_info_struct (png_ptr
);
10365 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
10366 if (fp
) fclose (fp
);
10371 /* Set error jump-back. We come back here when the PNG library
10372 detects an error. */
10373 if (setjmp (png_ptr
->jmpbuf
))
10377 png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
10380 if (fp
) fclose (fp
);
10385 /* Read image info. */
10386 if (!NILP (specified_data
))
10387 png_set_read_fn (png_ptr
, (void *) &tbr
, png_read_from_memory
);
10389 png_init_io (png_ptr
, fp
);
10391 png_set_sig_bytes (png_ptr
, sizeof sig
);
10392 png_read_info (png_ptr
, info_ptr
);
10393 png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
10394 &interlace_type
, NULL
, NULL
);
10396 /* If image contains simply transparency data, we prefer to
10397 construct a clipping mask. */
10398 if (png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
10403 /* This function is easier to write if we only have to handle
10404 one data format: RGB or RGBA with 8 bits per channel. Let's
10405 transform other formats into that format. */
10407 /* Strip more than 8 bits per channel. */
10408 if (bit_depth
== 16)
10409 png_set_strip_16 (png_ptr
);
10411 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
10413 png_set_expand (png_ptr
);
10415 /* Convert grayscale images to RGB. */
10416 if (color_type
== PNG_COLOR_TYPE_GRAY
10417 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
10418 png_set_gray_to_rgb (png_ptr
);
10420 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
10421 gamma_str
= getenv ("SCREEN_GAMMA");
10422 screen_gamma
= gamma_str
? atof (gamma_str
) : 2.2;
10424 /* Tell the PNG lib to handle gamma correction for us. */
10426 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
10427 if (png_get_sRGB (png_ptr
, info_ptr
, &intent
))
10428 /* There is a special chunk in the image specifying the gamma. */
10429 png_set_sRGB (png_ptr
, info_ptr
, intent
);
10432 if (png_get_gAMA (png_ptr
, info_ptr
, &image_gamma
))
10433 /* Image contains gamma information. */
10434 png_set_gamma (png_ptr
, screen_gamma
, image_gamma
);
10436 /* Use a default of 0.5 for the image gamma. */
10437 png_set_gamma (png_ptr
, screen_gamma
, 0.5);
10439 /* Handle alpha channel by combining the image with a background
10440 color. Do this only if a real alpha channel is supplied. For
10441 simple transparency, we prefer a clipping mask. */
10442 if (!transparent_p
)
10444 png_color_16
*image_background
;
10446 if (png_get_bKGD (png_ptr
, info_ptr
, &image_background
))
10447 /* Image contains a background color with which to
10448 combine the image. */
10449 png_set_background (png_ptr
, image_background
,
10450 PNG_BACKGROUND_GAMMA_FILE
, 1, 1.0);
10453 /* Image does not contain a background color with which
10454 to combine the image data via an alpha channel. Use
10455 the frame's background instead. */
10458 png_color_16 frame_background
;
10461 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
10462 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
10463 XQueryColor (FRAME_W32_DISPLAY (f
), cmap
, &color
);
10466 bzero (&frame_background
, sizeof frame_background
);
10467 frame_background
.red
= color
.red
;
10468 frame_background
.green
= color
.green
;
10469 frame_background
.blue
= color
.blue
;
10471 png_set_background (png_ptr
, &frame_background
,
10472 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
10476 /* Update info structure. */
10477 png_read_update_info (png_ptr
, info_ptr
);
10479 /* Get number of channels. Valid values are 1 for grayscale images
10480 and images with a palette, 2 for grayscale images with transparency
10481 information (alpha channel), 3 for RGB images, and 4 for RGB
10482 images with alpha channel, i.e. RGBA. If conversions above were
10483 sufficient we should only have 3 or 4 channels here. */
10484 channels
= png_get_channels (png_ptr
, info_ptr
);
10485 xassert (channels
== 3 || channels
== 4);
10487 /* Number of bytes needed for one row of the image. */
10488 row_bytes
= png_get_rowbytes (png_ptr
, info_ptr
);
10490 /* Allocate memory for the image. */
10491 pixels
= (png_byte
*) xmalloc (row_bytes
* height
* sizeof *pixels
);
10492 rows
= (png_byte
**) xmalloc (height
* sizeof *rows
);
10493 for (i
= 0; i
< height
; ++i
)
10494 rows
[i
] = pixels
+ i
* row_bytes
;
10496 /* Read the entire image. */
10497 png_read_image (png_ptr
, rows
);
10498 png_read_end (png_ptr
, info_ptr
);
10507 /* Create the X image and pixmap. */
10508 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
10515 /* Create an image and pixmap serving as mask if the PNG image
10516 contains an alpha channel. */
10519 && !x_create_x_image_and_pixmap (f
, width
, height
, 1,
10520 &mask_img
, &img
->mask
))
10522 x_destroy_x_image (ximg
);
10523 XFreePixmap (FRAME_W32_DISPLAY (f
), img
->pixmap
);
10529 /* Fill the X image and mask from PNG data. */
10530 init_color_table ();
10532 for (y
= 0; y
< height
; ++y
)
10534 png_byte
*p
= rows
[y
];
10536 for (x
= 0; x
< width
; ++x
)
10543 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
10545 /* An alpha channel, aka mask channel, associates variable
10546 transparency with an image. Where other image formats
10547 support binary transparency---fully transparent or fully
10548 opaque---PNG allows up to 254 levels of partial transparency.
10549 The PNG library implements partial transparency by combining
10550 the image with a specified background color.
10552 I'm not sure how to handle this here nicely: because the
10553 background on which the image is displayed may change, for
10554 real alpha channel support, it would be necessary to create
10555 a new image for each possible background.
10557 What I'm doing now is that a mask is created if we have
10558 boolean transparency information. Otherwise I'm using
10559 the frame's background color to combine the image with. */
10564 XPutPixel (mask_img
, x
, y
, *p
> 0);
10570 /* Remember colors allocated for this image. */
10571 img
->colors
= colors_in_color_table (&img
->ncolors
);
10572 free_color_table ();
10575 png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
10579 img
->width
= width
;
10580 img
->height
= height
;
10582 /* Put the image into the pixmap, then free the X image and its buffer. */
10583 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
10584 x_destroy_x_image (ximg
);
10586 /* Same for the mask. */
10589 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
10590 x_destroy_x_image (mask_img
);
10598 #endif /* HAVE_PNG != 0 */
10602 /***********************************************************************
10604 ***********************************************************************/
10608 /* Work around a warning about HAVE_STDLIB_H being redefined in
10610 #ifdef HAVE_STDLIB_H
10611 #define HAVE_STDLIB_H_1
10612 #undef HAVE_STDLIB_H
10613 #endif /* HAVE_STLIB_H */
10615 #include <jpeglib.h>
10616 #include <jerror.h>
10617 #include <setjmp.h>
10619 #ifdef HAVE_STLIB_H_1
10620 #define HAVE_STDLIB_H 1
10623 static int jpeg_image_p
P_ ((Lisp_Object object
));
10624 static int jpeg_load
P_ ((struct frame
*f
, struct image
*img
));
10626 /* The symbol `jpeg' identifying images of this type. */
10630 /* Indices of image specification fields in gs_format, below. */
10632 enum jpeg_keyword_index
10641 JPEG_HEURISTIC_MASK
,
10645 /* Vector of image_keyword structures describing the format
10646 of valid user-defined image specifications. */
10648 static struct image_keyword jpeg_format
[JPEG_LAST
] =
10650 {":type", IMAGE_SYMBOL_VALUE
, 1},
10651 {":data", IMAGE_STRING_VALUE
, 0},
10652 {":file", IMAGE_STRING_VALUE
, 0},
10653 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
10654 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
10655 {":relief", IMAGE_INTEGER_VALUE
, 0},
10656 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
10657 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
10660 /* Structure describing the image type `jpeg'. */
10662 static struct image_type jpeg_type
=
10672 /* Return non-zero if OBJECT is a valid JPEG image specification. */
10675 jpeg_image_p (object
)
10676 Lisp_Object object
;
10678 struct image_keyword fmt
[JPEG_LAST
];
10680 bcopy (jpeg_format
, fmt
, sizeof fmt
);
10682 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
)
10683 || (fmt
[JPEG_ASCENT
].count
10684 && XFASTINT (fmt
[JPEG_ASCENT
].value
) > 100))
10687 /* Must specify either the :data or :file keyword. */
10688 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
10692 struct my_jpeg_error_mgr
10694 struct jpeg_error_mgr pub
;
10695 jmp_buf setjmp_buffer
;
10699 my_error_exit (cinfo
)
10700 j_common_ptr cinfo
;
10702 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
10703 longjmp (mgr
->setjmp_buffer
, 1);
10706 /* Init source method for JPEG data source manager. Called by
10707 jpeg_read_header() before any data is actually read. See
10708 libjpeg.doc from the JPEG lib distribution. */
10711 our_init_source (cinfo
)
10712 j_decompress_ptr cinfo
;
10717 /* Fill input buffer method for JPEG data source manager. Called
10718 whenever more data is needed. We read the whole image in one step,
10719 so this only adds a fake end of input marker at the end. */
10722 our_fill_input_buffer (cinfo
)
10723 j_decompress_ptr cinfo
;
10725 /* Insert a fake EOI marker. */
10726 struct jpeg_source_mgr
*src
= cinfo
->src
;
10727 static JOCTET buffer
[2];
10729 buffer
[0] = (JOCTET
) 0xFF;
10730 buffer
[1] = (JOCTET
) JPEG_EOI
;
10732 src
->next_input_byte
= buffer
;
10733 src
->bytes_in_buffer
= 2;
10738 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
10739 is the JPEG data source manager. */
10742 our_skip_input_data (cinfo
, num_bytes
)
10743 j_decompress_ptr cinfo
;
10746 struct jpeg_source_mgr
*src
= (struct jpeg_source_mgr
*) cinfo
->src
;
10750 if (num_bytes
> src
->bytes_in_buffer
)
10751 ERREXIT (cinfo
, JERR_INPUT_EOF
);
10753 src
->bytes_in_buffer
-= num_bytes
;
10754 src
->next_input_byte
+= num_bytes
;
10759 /* Method to terminate data source. Called by
10760 jpeg_finish_decompress() after all data has been processed. */
10763 our_term_source (cinfo
)
10764 j_decompress_ptr cinfo
;
10769 /* Set up the JPEG lib for reading an image from DATA which contains
10770 LEN bytes. CINFO is the decompression info structure created for
10771 reading the image. */
10774 jpeg_memory_src (cinfo
, data
, len
)
10775 j_decompress_ptr cinfo
;
10779 struct jpeg_source_mgr
*src
;
10781 if (cinfo
->src
== NULL
)
10783 /* First time for this JPEG object? */
10784 cinfo
->src
= (struct jpeg_source_mgr
*)
10785 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
10786 sizeof (struct jpeg_source_mgr
));
10787 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
10788 src
->next_input_byte
= data
;
10791 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
10792 src
->init_source
= our_init_source
;
10793 src
->fill_input_buffer
= our_fill_input_buffer
;
10794 src
->skip_input_data
= our_skip_input_data
;
10795 src
->resync_to_restart
= jpeg_resync_to_restart
; /* Use default method. */
10796 src
->term_source
= our_term_source
;
10797 src
->bytes_in_buffer
= len
;
10798 src
->next_input_byte
= data
;
10802 /* Load image IMG for use on frame F. Patterned after example.c
10803 from the JPEG lib. */
10810 struct jpeg_decompress_struct cinfo
;
10811 struct my_jpeg_error_mgr mgr
;
10812 Lisp_Object file
, specified_file
;
10813 Lisp_Object specified_data
;
10816 int row_stride
, x
, y
;
10817 XImage
*ximg
= NULL
;
10819 unsigned long *colors
;
10821 struct gcpro gcpro1
;
10823 /* Open the JPEG file. */
10824 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
10825 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
10829 if (NILP (specified_data
))
10831 file
= x_find_image_file (specified_file
);
10832 if (!STRINGP (file
))
10834 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
10839 fp
= fopen (XSTRING (file
)->data
, "r");
10842 image_error ("Cannot open `%s'", file
, Qnil
);
10848 /* Customize libjpeg's error handling to call my_error_exit when an
10849 error is detected. This function will perform a longjmp. */
10850 mgr
.pub
.error_exit
= my_error_exit
;
10851 cinfo
.err
= jpeg_std_error (&mgr
.pub
);
10853 if ((rc
= setjmp (mgr
.setjmp_buffer
)) != 0)
10857 /* Called from my_error_exit. Display a JPEG error. */
10858 char buffer
[JMSG_LENGTH_MAX
];
10859 cinfo
.err
->format_message ((j_common_ptr
) &cinfo
, buffer
);
10860 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
10861 build_string (buffer
));
10864 /* Close the input file and destroy the JPEG object. */
10867 jpeg_destroy_decompress (&cinfo
);
10871 /* If we already have an XImage, free that. */
10872 x_destroy_x_image (ximg
);
10874 /* Free pixmap and colors. */
10875 x_clear_image (f
, img
);
10882 /* Create the JPEG decompression object. Let it read from fp.
10883 Read the JPEG image header. */
10884 jpeg_create_decompress (&cinfo
);
10886 if (NILP (specified_data
))
10887 jpeg_stdio_src (&cinfo
, fp
);
10889 jpeg_memory_src (&cinfo
, XSTRING (specified_data
)->data
,
10890 STRING_BYTES (XSTRING (specified_data
)));
10892 jpeg_read_header (&cinfo
, TRUE
);
10894 /* Customize decompression so that color quantization will be used.
10895 Start decompression. */
10896 cinfo
.quantize_colors
= TRUE
;
10897 jpeg_start_decompress (&cinfo
);
10898 width
= img
->width
= cinfo
.output_width
;
10899 height
= img
->height
= cinfo
.output_height
;
10903 /* Create X image and pixmap. */
10904 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
10908 longjmp (mgr
.setjmp_buffer
, 2);
10911 /* Allocate colors. When color quantization is used,
10912 cinfo.actual_number_of_colors has been set with the number of
10913 colors generated, and cinfo.colormap is a two-dimensional array
10914 of color indices in the range 0..cinfo.actual_number_of_colors.
10915 No more than 255 colors will be generated. */
10919 if (cinfo
.out_color_components
> 2)
10920 ir
= 0, ig
= 1, ib
= 2;
10921 else if (cinfo
.out_color_components
> 1)
10922 ir
= 0, ig
= 1, ib
= 0;
10924 ir
= 0, ig
= 0, ib
= 0;
10926 /* Use the color table mechanism because it handles colors that
10927 cannot be allocated nicely. Such colors will be replaced with
10928 a default color, and we don't have to care about which colors
10929 can be freed safely, and which can't. */
10930 init_color_table ();
10931 colors
= (unsigned long *) alloca (cinfo
.actual_number_of_colors
10934 for (i
= 0; i
< cinfo
.actual_number_of_colors
; ++i
)
10936 /* Multiply RGB values with 255 because X expects RGB values
10937 in the range 0..0xffff. */
10938 int r
= cinfo
.colormap
[ir
][i
] << 8;
10939 int g
= cinfo
.colormap
[ig
][i
] << 8;
10940 int b
= cinfo
.colormap
[ib
][i
] << 8;
10941 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
10944 /* Remember those colors actually allocated. */
10945 img
->colors
= colors_in_color_table (&img
->ncolors
);
10946 free_color_table ();
10950 row_stride
= width
* cinfo
.output_components
;
10951 buffer
= cinfo
.mem
->alloc_sarray ((j_common_ptr
) &cinfo
, JPOOL_IMAGE
,
10953 for (y
= 0; y
< height
; ++y
)
10955 jpeg_read_scanlines (&cinfo
, buffer
, 1);
10956 for (x
= 0; x
< cinfo
.output_width
; ++x
)
10957 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
10961 jpeg_finish_decompress (&cinfo
);
10962 jpeg_destroy_decompress (&cinfo
);
10966 /* Put the image into the pixmap. */
10967 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
10968 x_destroy_x_image (ximg
);
10974 #endif /* HAVE_JPEG */
10978 /***********************************************************************
10980 ***********************************************************************/
10984 #include <tiffio.h>
10986 static int tiff_image_p
P_ ((Lisp_Object object
));
10987 static int tiff_load
P_ ((struct frame
*f
, struct image
*img
));
10989 /* The symbol `tiff' identifying images of this type. */
10993 /* Indices of image specification fields in tiff_format, below. */
10995 enum tiff_keyword_index
11004 TIFF_HEURISTIC_MASK
,
11008 /* Vector of image_keyword structures describing the format
11009 of valid user-defined image specifications. */
11011 static struct image_keyword tiff_format
[TIFF_LAST
] =
11013 {":type", IMAGE_SYMBOL_VALUE
, 1},
11014 {":data", IMAGE_STRING_VALUE
, 0},
11015 {":file", IMAGE_STRING_VALUE
, 0},
11016 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
11017 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
11018 {":relief", IMAGE_INTEGER_VALUE
, 0},
11019 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
11020 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
11023 /* Structure describing the image type `tiff'. */
11025 static struct image_type tiff_type
=
11035 /* Return non-zero if OBJECT is a valid TIFF image specification. */
11038 tiff_image_p (object
)
11039 Lisp_Object object
;
11041 struct image_keyword fmt
[TIFF_LAST
];
11042 bcopy (tiff_format
, fmt
, sizeof fmt
);
11044 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
)
11045 || (fmt
[TIFF_ASCENT
].count
11046 && XFASTINT (fmt
[TIFF_ASCENT
].value
) > 100))
11049 /* Must specify either the :data or :file keyword. */
11050 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
11054 /* Reading from a memory buffer for TIFF images Based on the PNG
11055 memory source, but we have to provide a lot of extra functions.
11058 We really only need to implement read and seek, but I am not
11059 convinced that the TIFF library is smart enough not to destroy
11060 itself if we only hand it the function pointers we need to
11065 unsigned char *bytes
;
11069 tiff_memory_source
;
11072 tiff_read_from_memory (data
, buf
, size
)
11077 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
11079 if (size
> src
->len
- src
->index
)
11080 return (size_t) -1;
11081 bcopy (src
->bytes
+ src
->index
, buf
, size
);
11082 src
->index
+= size
;
11087 tiff_write_from_memory (data
, buf
, size
)
11092 return (size_t) -1;
11096 tiff_seek_in_memory (data
, off
, whence
)
11101 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
11106 case SEEK_SET
: /* Go from beginning of source. */
11110 case SEEK_END
: /* Go from end of source. */
11111 idx
= src
->len
+ off
;
11114 case SEEK_CUR
: /* Go from current position. */
11115 idx
= src
->index
+ off
;
11118 default: /* Invalid `whence'. */
11122 if (idx
> src
->len
|| idx
< 0)
11130 tiff_close_memory (data
)
11138 tiff_mmap_memory (data
, pbase
, psize
)
11143 /* It is already _IN_ memory. */
11148 tiff_unmap_memory (data
, base
, size
)
11153 /* We don't need to do this. */
11157 tiff_size_of_memory (data
)
11160 return ((tiff_memory_source
*) data
)->len
;
11163 /* Load TIFF image IMG for use on frame F. Value is non-zero if
11171 Lisp_Object file
, specified_file
;
11172 Lisp_Object specified_data
;
11174 int width
, height
, x
, y
;
11178 struct gcpro gcpro1
;
11179 tiff_memory_source memsrc
;
11181 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
11182 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
11186 if (NILP (specified_data
))
11188 /* Read from a file */
11189 file
= x_find_image_file (specified_file
);
11190 if (!STRINGP (file
))
11192 image_error ("Cannot find image file `%s'", file
, Qnil
);
11197 /* Try to open the image file. */
11198 tiff
= TIFFOpen (XSTRING (file
)->data
, "r");
11201 image_error ("Cannot open `%s'", file
, Qnil
);
11208 /* Memory source! */
11209 memsrc
.bytes
= XSTRING (specified_data
)->data
;
11210 memsrc
.len
= STRING_BYTES (XSTRING (specified_data
));
11213 tiff
= TIFFClientOpen ("memory_source", "r", &memsrc
,
11214 (TIFFReadWriteProc
) tiff_read_from_memory
,
11215 (TIFFReadWriteProc
) tiff_write_from_memory
,
11216 tiff_seek_in_memory
,
11218 tiff_size_of_memory
,
11220 tiff_unmap_memory
);
11224 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
11230 /* Get width and height of the image, and allocate a raster buffer
11231 of width x height 32-bit values. */
11232 TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
11233 TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
11234 buf
= (uint32
*) xmalloc (width
* height
* sizeof *buf
);
11236 rc
= TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
11240 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
11248 /* Create the X image and pixmap. */
11249 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
11257 /* Initialize the color table. */
11258 init_color_table ();
11260 /* Process the pixel raster. Origin is in the lower-left corner. */
11261 for (y
= 0; y
< height
; ++y
)
11263 uint32
*row
= buf
+ y
* width
;
11265 for (x
= 0; x
< width
; ++x
)
11267 uint32 abgr
= row
[x
];
11268 int r
= TIFFGetR (abgr
) << 8;
11269 int g
= TIFFGetG (abgr
) << 8;
11270 int b
= TIFFGetB (abgr
) << 8;
11271 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
11275 /* Remember the colors allocated for the image. Free the color table. */
11276 img
->colors
= colors_in_color_table (&img
->ncolors
);
11277 free_color_table ();
11279 /* Put the image into the pixmap, then free the X image and its buffer. */
11280 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
11281 x_destroy_x_image (ximg
);
11285 img
->width
= width
;
11286 img
->height
= height
;
11292 #endif /* HAVE_TIFF != 0 */
11296 /***********************************************************************
11298 ***********************************************************************/
11302 #include <gif_lib.h>
11304 static int gif_image_p
P_ ((Lisp_Object object
));
11305 static int gif_load
P_ ((struct frame
*f
, struct image
*img
));
11307 /* The symbol `gif' identifying images of this type. */
11311 /* Indices of image specification fields in gif_format, below. */
11313 enum gif_keyword_index
11322 GIF_HEURISTIC_MASK
,
11327 /* Vector of image_keyword structures describing the format
11328 of valid user-defined image specifications. */
11330 static struct image_keyword gif_format
[GIF_LAST
] =
11332 {":type", IMAGE_SYMBOL_VALUE
, 1},
11333 {":data", IMAGE_STRING_VALUE
, 0},
11334 {":file", IMAGE_STRING_VALUE
, 0},
11335 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
11336 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
11337 {":relief", IMAGE_INTEGER_VALUE
, 0},
11338 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
11339 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
11340 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
11343 /* Structure describing the image type `gif'. */
11345 static struct image_type gif_type
=
11354 /* Return non-zero if OBJECT is a valid GIF image specification. */
11357 gif_image_p (object
)
11358 Lisp_Object object
;
11360 struct image_keyword fmt
[GIF_LAST
];
11361 bcopy (gif_format
, fmt
, sizeof fmt
);
11363 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
)
11364 || (fmt
[GIF_ASCENT
].count
11365 && XFASTINT (fmt
[GIF_ASCENT
].value
) > 100))
11368 /* Must specify either the :data or :file keyword. */
11369 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
11372 /* Reading a GIF image from memory
11373 Based on the PNG memory stuff to a certain extent. */
11377 unsigned char *bytes
;
11383 /* Make the current memory source available to gif_read_from_memory.
11384 It's done this way because not all versions of libungif support
11385 a UserData field in the GifFileType structure. */
11386 static gif_memory_source
*current_gif_memory_src
;
11389 gif_read_from_memory (file
, buf
, len
)
11394 gif_memory_source
*src
= current_gif_memory_src
;
11396 if (len
> src
->len
- src
->index
)
11399 bcopy (src
->bytes
+ src
->index
, buf
, len
);
11405 /* Load GIF image IMG for use on frame F. Value is non-zero if
11413 Lisp_Object file
, specified_file
;
11414 Lisp_Object specified_data
;
11415 int rc
, width
, height
, x
, y
, i
;
11417 ColorMapObject
*gif_color_map
;
11418 unsigned long pixel_colors
[256];
11420 struct gcpro gcpro1
;
11422 int ino
, image_left
, image_top
, image_width
, image_height
;
11423 gif_memory_source memsrc
;
11424 unsigned char *raster
;
11426 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
11427 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
11431 if (NILP (specified_data
))
11433 file
= x_find_image_file (specified_file
);
11434 if (!STRINGP (file
))
11436 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
11441 /* Open the GIF file. */
11442 gif
= DGifOpenFileName (XSTRING (file
)->data
);
11445 image_error ("Cannot open `%s'", file
, Qnil
);
11452 /* Read from memory! */
11453 current_gif_memory_src
= &memsrc
;
11454 memsrc
.bytes
= XSTRING (specified_data
)->data
;
11455 memsrc
.len
= STRING_BYTES (XSTRING (specified_data
));
11458 gif
= DGifOpen(&memsrc
, gif_read_from_memory
);
11461 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
11467 /* Read entire contents. */
11468 rc
= DGifSlurp (gif
);
11469 if (rc
== GIF_ERROR
)
11471 image_error ("Error reading `%s'", img
->spec
, Qnil
);
11472 DGifCloseFile (gif
);
11477 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
11478 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
11479 if (ino
>= gif
->ImageCount
)
11481 image_error ("Invalid image number `%s' in image `%s'",
11483 DGifCloseFile (gif
);
11488 width
= img
->width
= gif
->SWidth
;
11489 height
= img
->height
= gif
->SHeight
;
11493 /* Create the X image and pixmap. */
11494 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
11497 DGifCloseFile (gif
);
11502 /* Allocate colors. */
11503 gif_color_map
= gif
->SavedImages
[ino
].ImageDesc
.ColorMap
;
11504 if (!gif_color_map
)
11505 gif_color_map
= gif
->SColorMap
;
11506 init_color_table ();
11507 bzero (pixel_colors
, sizeof pixel_colors
);
11509 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
11511 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
11512 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
11513 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
11514 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
11517 img
->colors
= colors_in_color_table (&img
->ncolors
);
11518 free_color_table ();
11520 /* Clear the part of the screen image that are not covered by
11521 the image from the GIF file. Full animated GIF support
11522 requires more than can be done here (see the gif89 spec,
11523 disposal methods). Let's simply assume that the part
11524 not covered by a sub-image is in the frame's background color. */
11525 image_top
= gif
->SavedImages
[ino
].ImageDesc
.Top
;
11526 image_left
= gif
->SavedImages
[ino
].ImageDesc
.Left
;
11527 image_width
= gif
->SavedImages
[ino
].ImageDesc
.Width
;
11528 image_height
= gif
->SavedImages
[ino
].ImageDesc
.Height
;
11530 for (y
= 0; y
< image_top
; ++y
)
11531 for (x
= 0; x
< width
; ++x
)
11532 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
11534 for (y
= image_top
+ image_height
; y
< height
; ++y
)
11535 for (x
= 0; x
< width
; ++x
)
11536 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
11538 for (y
= image_top
; y
< image_top
+ image_height
; ++y
)
11540 for (x
= 0; x
< image_left
; ++x
)
11541 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
11542 for (x
= image_left
+ image_width
; x
< width
; ++x
)
11543 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
11546 /* Read the GIF image into the X image. We use a local variable
11547 `raster' here because RasterBits below is a char *, and invites
11548 problems with bytes >= 0x80. */
11549 raster
= (unsigned char *) gif
->SavedImages
[ino
].RasterBits
;
11551 if (gif
->SavedImages
[ino
].ImageDesc
.Interlace
)
11553 static int interlace_start
[] = {0, 4, 2, 1};
11554 static int interlace_increment
[] = {8, 8, 4, 2};
11556 int row
= interlace_start
[0];
11560 for (y
= 0; y
< image_height
; y
++)
11562 if (row
>= image_height
)
11564 row
= interlace_start
[++pass
];
11565 while (row
>= image_height
)
11566 row
= interlace_start
[++pass
];
11569 for (x
= 0; x
< image_width
; x
++)
11571 int i
= raster
[(y
* image_width
) + x
];
11572 XPutPixel (ximg
, x
+ image_left
, row
+ image_top
,
11576 row
+= interlace_increment
[pass
];
11581 for (y
= 0; y
< image_height
; ++y
)
11582 for (x
= 0; x
< image_width
; ++x
)
11584 int i
= raster
[y
* image_width
+ x
];
11585 XPutPixel (ximg
, x
+ image_left
, y
+ image_top
, pixel_colors
[i
]);
11589 DGifCloseFile (gif
);
11591 /* Put the image into the pixmap, then free the X image and its buffer. */
11592 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
11593 x_destroy_x_image (ximg
);
11600 #endif /* HAVE_GIF != 0 */
11604 /***********************************************************************
11606 ***********************************************************************/
11608 #ifdef HAVE_GHOSTSCRIPT
11609 static int gs_image_p
P_ ((Lisp_Object object
));
11610 static int gs_load
P_ ((struct frame
*f
, struct image
*img
));
11611 static void gs_clear_image
P_ ((struct frame
*f
, struct image
*img
));
11613 /* The symbol `postscript' identifying images of this type. */
11615 Lisp_Object Qpostscript
;
11617 /* Keyword symbols. */
11619 Lisp_Object QCloader
, QCbounding_box
, QCpt_width
, QCpt_height
;
11621 /* Indices of image specification fields in gs_format, below. */
11623 enum gs_keyword_index
11639 /* Vector of image_keyword structures describing the format
11640 of valid user-defined image specifications. */
11642 static struct image_keyword gs_format
[GS_LAST
] =
11644 {":type", IMAGE_SYMBOL_VALUE
, 1},
11645 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
11646 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
11647 {":file", IMAGE_STRING_VALUE
, 1},
11648 {":loader", IMAGE_FUNCTION_VALUE
, 0},
11649 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
11650 {":ascent", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
11651 {":margin", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
11652 {":relief", IMAGE_INTEGER_VALUE
, 0},
11653 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
11654 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
11657 /* Structure describing the image type `ghostscript'. */
11659 static struct image_type gs_type
=
11669 /* Free X resources of Ghostscript image IMG which is used on frame F. */
11672 gs_clear_image (f
, img
)
11676 /* IMG->data.ptr_val may contain a recorded colormap. */
11677 xfree (img
->data
.ptr_val
);
11678 x_clear_image (f
, img
);
11682 /* Return non-zero if OBJECT is a valid Ghostscript image
11686 gs_image_p (object
)
11687 Lisp_Object object
;
11689 struct image_keyword fmt
[GS_LAST
];
11693 bcopy (gs_format
, fmt
, sizeof fmt
);
11695 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
)
11696 || (fmt
[GS_ASCENT
].count
11697 && XFASTINT (fmt
[GS_ASCENT
].value
) > 100))
11700 /* Bounding box must be a list or vector containing 4 integers. */
11701 tem
= fmt
[GS_BOUNDING_BOX
].value
;
11704 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
11705 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
11710 else if (VECTORP (tem
))
11712 if (XVECTOR (tem
)->size
!= 4)
11714 for (i
= 0; i
< 4; ++i
)
11715 if (!INTEGERP (XVECTOR (tem
)->contents
[i
]))
11725 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
11734 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
11735 struct gcpro gcpro1
, gcpro2
;
11737 double in_width
, in_height
;
11738 Lisp_Object pixel_colors
= Qnil
;
11740 /* Compute pixel size of pixmap needed from the given size in the
11741 image specification. Sizes in the specification are in pt. 1 pt
11742 = 1/72 in, xdpi and ydpi are stored in the frame's X display
11744 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
11745 in_width
= XFASTINT (pt_width
) / 72.0;
11746 img
->width
= in_width
* FRAME_W32_DISPLAY_INFO (f
)->resx
;
11747 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
11748 in_height
= XFASTINT (pt_height
) / 72.0;
11749 img
->height
= in_height
* FRAME_W32_DISPLAY_INFO (f
)->resy
;
11751 /* Create the pixmap. */
11753 xassert (img
->pixmap
== 0);
11754 img
->pixmap
= XCreatePixmap (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
11755 img
->width
, img
->height
,
11756 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
11761 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
11765 /* Call the loader to fill the pixmap. It returns a process object
11766 if successful. We do not record_unwind_protect here because
11767 other places in redisplay like calling window scroll functions
11768 don't either. Let the Lisp loader use `unwind-protect' instead. */
11769 GCPRO2 (window_and_pixmap_id
, pixel_colors
);
11771 sprintf (buffer
, "%lu %lu",
11772 (unsigned long) FRAME_W32_WINDOW (f
),
11773 (unsigned long) img
->pixmap
);
11774 window_and_pixmap_id
= build_string (buffer
);
11776 sprintf (buffer
, "%lu %lu",
11777 FRAME_FOREGROUND_PIXEL (f
),
11778 FRAME_BACKGROUND_PIXEL (f
));
11779 pixel_colors
= build_string (buffer
);
11781 XSETFRAME (frame
, f
);
11782 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
11784 loader
= intern ("gs-load-image");
11786 img
->data
.lisp_val
= call6 (loader
, frame
, img
->spec
,
11787 make_number (img
->width
),
11788 make_number (img
->height
),
11789 window_and_pixmap_id
,
11792 return PROCESSP (img
->data
.lisp_val
);
11796 /* Kill the Ghostscript process that was started to fill PIXMAP on
11797 frame F. Called from XTread_socket when receiving an event
11798 telling Emacs that Ghostscript has finished drawing. */
11801 x_kill_gs_process (pixmap
, f
)
11805 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
11809 /* Find the image containing PIXMAP. */
11810 for (i
= 0; i
< c
->used
; ++i
)
11811 if (c
->images
[i
]->pixmap
== pixmap
)
11814 /* Kill the GS process. We should have found PIXMAP in the image
11815 cache and its image should contain a process object. */
11816 xassert (i
< c
->used
);
11817 img
= c
->images
[i
];
11818 xassert (PROCESSP (img
->data
.lisp_val
));
11819 Fkill_process (img
->data
.lisp_val
, Qnil
);
11820 img
->data
.lisp_val
= Qnil
;
11822 /* On displays with a mutable colormap, figure out the colors
11823 allocated for the image by looking at the pixels of an XImage for
11825 class = FRAME_W32_DISPLAY_INFO (f
)->visual
->class;
11826 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
11832 /* Try to get an XImage for img->pixmep. */
11833 ximg
= XGetImage (FRAME_W32_DISPLAY (f
), img
->pixmap
,
11834 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
11839 /* Initialize the color table. */
11840 init_color_table ();
11842 /* For each pixel of the image, look its color up in the
11843 color table. After having done so, the color table will
11844 contain an entry for each color used by the image. */
11845 for (y
= 0; y
< img
->height
; ++y
)
11846 for (x
= 0; x
< img
->width
; ++x
)
11848 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
11849 lookup_pixel_color (f
, pixel
);
11852 /* Record colors in the image. Free color table and XImage. */
11853 img
->colors
= colors_in_color_table (&img
->ncolors
);
11854 free_color_table ();
11855 XDestroyImage (ximg
);
11857 #if 0 /* This doesn't seem to be the case. If we free the colors
11858 here, we get a BadAccess later in x_clear_image when
11859 freeing the colors. */
11860 /* We have allocated colors once, but Ghostscript has also
11861 allocated colors on behalf of us. So, to get the
11862 reference counts right, free them once. */
11865 Colormap cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
11866 XFreeColors (FRAME_W32_DISPLAY (f
), cmap
,
11867 img
->colors
, img
->ncolors
, 0);
11872 image_error ("Cannot get X image of `%s'; colors will not be freed",
11879 #endif /* HAVE_GHOSTSCRIPT */
11882 /***********************************************************************
11884 ***********************************************************************/
11886 DEFUN ("x-change-window-property", Fx_change_window_property
,
11887 Sx_change_window_property
, 2, 3, 0,
11888 "Change window property PROP to VALUE on the X window of FRAME.\n\
11889 PROP and VALUE must be strings. FRAME nil or omitted means use the\n\
11890 selected frame. Value is VALUE.")
11891 (prop
, value
, frame
)
11892 Lisp_Object frame
, prop
, value
;
11894 #if 0 /* TODO : port window properties to W32 */
11895 struct frame
*f
= check_x_frame (frame
);
11898 CHECK_STRING (prop
, 1);
11899 CHECK_STRING (value
, 2);
11902 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), XSTRING (prop
)->data
, False
);
11903 XChangeProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
11904 prop_atom
, XA_STRING
, 8, PropModeReplace
,
11905 XSTRING (value
)->data
, XSTRING (value
)->size
);
11907 /* Make sure the property is set when we return. */
11908 XFlush (FRAME_W32_DISPLAY (f
));
11917 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
11918 Sx_delete_window_property
, 1, 2, 0,
11919 "Remove window property PROP from X window of FRAME.\n\
11920 FRAME nil or omitted means use the selected frame. Value is PROP.")
11922 Lisp_Object prop
, frame
;
11924 #if 0 /* TODO : port window properties to W32 */
11926 struct frame
*f
= check_x_frame (frame
);
11929 CHECK_STRING (prop
, 1);
11931 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), XSTRING (prop
)->data
, False
);
11932 XDeleteProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
), prop_atom
);
11934 /* Make sure the property is removed when we return. */
11935 XFlush (FRAME_W32_DISPLAY (f
));
11943 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
11945 "Value is the value of window property PROP on FRAME.\n\
11946 If FRAME is nil or omitted, use the selected frame. Value is nil\n\
11947 if FRAME hasn't a property with name PROP or if PROP has no string\n\
11950 Lisp_Object prop
, frame
;
11952 #if 0 /* TODO : port window properties to W32 */
11954 struct frame
*f
= check_x_frame (frame
);
11957 Lisp_Object prop_value
= Qnil
;
11958 char *tmp_data
= NULL
;
11961 unsigned long actual_size
, bytes_remaining
;
11963 CHECK_STRING (prop
, 1);
11965 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), XSTRING (prop
)->data
, False
);
11966 rc
= XGetWindowProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
11967 prop_atom
, 0, 0, False
, XA_STRING
,
11968 &actual_type
, &actual_format
, &actual_size
,
11969 &bytes_remaining
, (unsigned char **) &tmp_data
);
11972 int size
= bytes_remaining
;
11977 rc
= XGetWindowProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
11978 prop_atom
, 0, bytes_remaining
,
11980 &actual_type
, &actual_format
,
11981 &actual_size
, &bytes_remaining
,
11982 (unsigned char **) &tmp_data
);
11984 prop_value
= make_string (tmp_data
, size
);
11999 /***********************************************************************
12001 ***********************************************************************/
12003 /* If non-null, an asynchronous timer that, when it expires, displays
12004 a busy cursor on all frames. */
12006 static struct atimer
*busy_cursor_atimer
;
12008 /* Non-zero means a busy cursor is currently shown. */
12010 static int busy_cursor_shown_p
;
12012 /* Number of seconds to wait before displaying a busy cursor. */
12014 static Lisp_Object Vbusy_cursor_delay
;
12016 /* Default number of seconds to wait before displaying a busy
12019 #define DEFAULT_BUSY_CURSOR_DELAY 1
12021 /* Function prototypes. */
12023 static void show_busy_cursor
P_ ((struct atimer
*));
12024 static void hide_busy_cursor
P_ ((void));
12027 /* Cancel a currently active busy-cursor timer, and start a new one. */
12030 start_busy_cursor ()
12032 #if 0 /* TODO: cursor shape changes. */
12034 int secs
, usecs
= 0;
12036 cancel_busy_cursor ();
12038 if (INTEGERP (Vbusy_cursor_delay
)
12039 && XINT (Vbusy_cursor_delay
) > 0)
12040 secs
= XFASTINT (Vbusy_cursor_delay
);
12041 else if (FLOATP (Vbusy_cursor_delay
)
12042 && XFLOAT_DATA (Vbusy_cursor_delay
) > 0)
12045 tem
= Ftruncate (Vbusy_cursor_delay
, Qnil
);
12046 secs
= XFASTINT (tem
);
12047 usecs
= (XFLOAT_DATA (Vbusy_cursor_delay
) - secs
) * 1000000;
12050 secs
= DEFAULT_BUSY_CURSOR_DELAY
;
12052 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
12053 busy_cursor_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
12054 show_busy_cursor
, NULL
);
12059 /* Cancel the busy cursor timer if active, hide a busy cursor if
12063 cancel_busy_cursor ()
12065 if (busy_cursor_atimer
)
12067 cancel_atimer (busy_cursor_atimer
);
12068 busy_cursor_atimer
= NULL
;
12071 if (busy_cursor_shown_p
)
12072 hide_busy_cursor ();
12076 /* Timer function of busy_cursor_atimer. TIMER is equal to
12077 busy_cursor_atimer.
12079 Display a busy cursor on all frames by mapping the frames'
12080 busy_window. Set the busy_p flag in the frames' output_data.x
12081 structure to indicate that a busy cursor is shown on the
12085 show_busy_cursor (timer
)
12086 struct atimer
*timer
;
12088 #if 0 /* TODO: cursor shape changes. */
12089 /* The timer implementation will cancel this timer automatically
12090 after this function has run. Set busy_cursor_atimer to null
12091 so that we know the timer doesn't have to be canceled. */
12092 busy_cursor_atimer
= NULL
;
12094 if (!busy_cursor_shown_p
)
12096 Lisp_Object rest
, frame
;
12100 FOR_EACH_FRAME (rest
, frame
)
12101 if (FRAME_X_P (XFRAME (frame
)))
12103 struct frame
*f
= XFRAME (frame
);
12105 f
->output_data
.w32
->busy_p
= 1;
12107 if (!f
->output_data
.w32
->busy_window
)
12109 unsigned long mask
= CWCursor
;
12110 XSetWindowAttributes attrs
;
12112 attrs
.cursor
= f
->output_data
.w32
->busy_cursor
;
12114 f
->output_data
.w32
->busy_window
12115 = XCreateWindow (FRAME_X_DISPLAY (f
),
12116 FRAME_OUTER_WINDOW (f
),
12117 0, 0, 32000, 32000, 0, 0,
12123 XMapRaised (FRAME_X_DISPLAY (f
), f
->output_data
.w32
->busy_window
);
12124 XFlush (FRAME_X_DISPLAY (f
));
12127 busy_cursor_shown_p
= 1;
12134 /* Hide the busy cursor on all frames, if it is currently shown. */
12137 hide_busy_cursor ()
12139 #if 0 /* TODO: cursor shape changes. */
12140 if (busy_cursor_shown_p
)
12142 Lisp_Object rest
, frame
;
12145 FOR_EACH_FRAME (rest
, frame
)
12147 struct frame
*f
= XFRAME (frame
);
12150 /* Watch out for newly created frames. */
12151 && f
->output_data
.x
->busy_window
)
12153 XUnmapWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->busy_window
);
12154 /* Sync here because XTread_socket looks at the busy_p flag
12155 that is reset to zero below. */
12156 XSync (FRAME_X_DISPLAY (f
), False
);
12157 f
->output_data
.x
->busy_p
= 0;
12161 busy_cursor_shown_p
= 0;
12169 /***********************************************************************
12171 ***********************************************************************/
12173 static Lisp_Object x_create_tip_frame
P_ ((struct w32_display_info
*,
12176 /* The frame of a currently visible tooltip, or null. */
12178 struct frame
*tip_frame
;
12180 /* If non-nil, a timer started that hides the last tooltip when it
12183 Lisp_Object tip_timer
;
12186 /* Create a frame for a tooltip on the display described by DPYINFO.
12187 PARMS is a list of frame parameters. Value is the frame. */
12190 x_create_tip_frame (dpyinfo
, parms
)
12191 struct w32_display_info
*dpyinfo
;
12194 #if 0 /* TODO : w32 version */
12196 Lisp_Object frame
, tem
;
12198 long window_prompting
= 0;
12200 int count
= specpdl_ptr
- specpdl
;
12201 struct gcpro gcpro1
, gcpro2
, gcpro3
;
12206 /* Use this general default value to start with until we know if
12207 this frame has a specified name. */
12208 Vx_resource_name
= Vinvocation_name
;
12210 #ifdef MULTI_KBOARD
12211 kb
= dpyinfo
->kboard
;
12213 kb
= &the_only_kboard
;
12216 /* Get the name of the frame to use for resource lookup. */
12217 name
= w32_get_arg (parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
12218 if (!STRINGP (name
)
12219 && !EQ (name
, Qunbound
)
12221 error ("Invalid frame name--not a string or nil");
12222 Vx_resource_name
= name
;
12225 GCPRO3 (parms
, name
, frame
);
12226 tip_frame
= f
= make_frame (1);
12227 XSETFRAME (frame
, f
);
12228 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
12230 f
->output_method
= output_w32
;
12231 f
->output_data
.w32
=
12232 (struct w32_output
*) xmalloc (sizeof (struct w32_output
));
12233 bzero (f
->output_data
.w32
, sizeof (struct w32_output
));
12235 f
->output_data
.w32
->icon_bitmap
= -1;
12237 f
->output_data
.w32
->fontset
= -1;
12238 f
->icon_name
= Qnil
;
12240 #ifdef MULTI_KBOARD
12241 FRAME_KBOARD (f
) = kb
;
12243 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
12244 f
->output_data
.w32
->explicit_parent
= 0;
12246 /* Set the name; the functions to which we pass f expect the name to
12248 if (EQ (name
, Qunbound
) || NILP (name
))
12250 f
->name
= build_string (dpyinfo
->x_id_name
);
12251 f
->explicit_name
= 0;
12256 f
->explicit_name
= 1;
12257 /* use the frame's title when getting resources for this frame. */
12258 specbind (Qx_resource_name
, name
);
12261 /* Extract the window parameters from the supplied values
12262 that are needed to determine window geometry. */
12266 font
= w32_get_arg (parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
12269 /* First, try whatever font the caller has specified. */
12270 if (STRINGP (font
))
12272 tem
= Fquery_fontset (font
, Qnil
);
12274 font
= x_new_fontset (f
, XSTRING (tem
)->data
);
12276 font
= x_new_font (f
, XSTRING (font
)->data
);
12279 /* Try out a font which we hope has bold and italic variations. */
12280 if (!STRINGP (font
))
12281 font
= x_new_font (f
, "-*-courier new-normal-r-*-*-*-100-*-*-*-*-iso8859-1");
12282 if (!STRINGP (font
))
12283 font
= x_new_font (f
, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12284 if (! STRINGP (font
))
12285 font
= x_new_font (f
, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
12286 if (! STRINGP (font
))
12287 /* This was formerly the first thing tried, but it finds too many fonts
12288 and takes too long. */
12289 font
= x_new_font (f
, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
12290 /* If those didn't work, look for something which will at least work. */
12291 if (! STRINGP (font
))
12292 font
= x_new_font (f
, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
12294 if (! STRINGP (font
))
12295 font
= build_string ("fixed");
12297 x_default_parameter (f
, parms
, Qfont
, font
,
12298 "font", "Font", RES_TYPE_STRING
);
12301 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
12302 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
12304 /* This defaults to 2 in order to match xterm. We recognize either
12305 internalBorderWidth or internalBorder (which is what xterm calls
12307 if (NILP (Fassq (Qinternal_border_width
, parms
)))
12311 value
= w32_get_arg (parms
, Qinternal_border_width
,
12312 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
12313 if (! EQ (value
, Qunbound
))
12314 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
12318 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
12319 "internalBorderWidth", "internalBorderWidth",
12322 /* Also do the stuff which must be set before the window exists. */
12323 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
12324 "foreground", "Foreground", RES_TYPE_STRING
);
12325 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
12326 "background", "Background", RES_TYPE_STRING
);
12327 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
12328 "pointerColor", "Foreground", RES_TYPE_STRING
);
12329 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
12330 "cursorColor", "Foreground", RES_TYPE_STRING
);
12331 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
12332 "borderColor", "BorderColor", RES_TYPE_STRING
);
12334 /* Init faces before x_default_parameter is called for scroll-bar
12335 parameters because that function calls x_set_scroll_bar_width,
12336 which calls change_frame_size, which calls Fset_window_buffer,
12337 which runs hooks, which call Fvertical_motion. At the end, we
12338 end up in init_iterator with a null face cache, which should not
12340 init_frame_faces (f
);
12342 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
12343 window_prompting
= x_figure_window_size (f
, parms
);
12345 if (window_prompting
& XNegative
)
12347 if (window_prompting
& YNegative
)
12348 f
->output_data
.w32
->win_gravity
= SouthEastGravity
;
12350 f
->output_data
.w32
->win_gravity
= NorthEastGravity
;
12354 if (window_prompting
& YNegative
)
12355 f
->output_data
.w32
->win_gravity
= SouthWestGravity
;
12357 f
->output_data
.w32
->win_gravity
= NorthWestGravity
;
12360 f
->output_data
.w32
->size_hint_flags
= window_prompting
;
12362 XSetWindowAttributes attrs
;
12363 unsigned long mask
;
12366 mask
= CWBackPixel
| CWOverrideRedirect
| CWSaveUnder
| CWEventMask
;
12367 /* Window managers looks at the override-redirect flag to
12368 determine whether or net to give windows a decoration (Xlib
12370 attrs
.override_redirect
= True
;
12371 attrs
.save_under
= True
;
12372 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
12373 /* Arrange for getting MapNotify and UnmapNotify events. */
12374 attrs
.event_mask
= StructureNotifyMask
;
12376 = FRAME_W32_WINDOW (f
)
12377 = XCreateWindow (FRAME_W32_DISPLAY (f
),
12378 FRAME_W32_DISPLAY_INFO (f
)->root_window
,
12379 /* x, y, width, height */
12383 CopyFromParent
, InputOutput
, CopyFromParent
,
12390 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
12391 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
12392 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
12393 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
12394 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
12395 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
12397 /* Dimensions, especially f->height, must be done via change_frame_size.
12398 Change will not be effected unless different from the current
12401 height
= f
->height
;
12403 SET_FRAME_WIDTH (f
, 0);
12404 change_frame_size (f
, height
, width
, 1, 0, 0);
12410 /* It is now ok to make the frame official even if we get an error
12411 below. And the frame needs to be on Vframe_list or making it
12412 visible won't work. */
12413 Vframe_list
= Fcons (frame
, Vframe_list
);
12415 /* Now that the frame is official, it counts as a reference to
12417 FRAME_W32_DISPLAY_INFO (f
)->reference_count
++;
12419 return unbind_to (count
, frame
);
12424 #ifdef TODO /* Tooltip support not complete. */
12425 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
12426 "Show STRING in a \"tooltip\" window on frame FRAME.\n\
12427 A tooltip window is a small X window displaying a string.\n\
12429 FRAME nil or omitted means use the selected frame.\n\
12431 PARMS is an optional list of frame parameters which can be\n\
12432 used to change the tooltip's appearance.\n\
12434 Automatically hide the tooltip after TIMEOUT seconds.\n\
12435 TIMEOUT nil means use the default timeout of 5 seconds.\n\
12437 If the list of frame parameters PARAMS contains a `left' parameters,\n\
12438 the tooltip is displayed at that x-position. Otherwise it is\n\
12439 displayed at the mouse position, with offset DX added (default is 5 if\n\
12440 DX isn't specified). Likewise for the y-position; if a `top' frame\n\
12441 parameter is specified, it determines the y-position of the tooltip\n\
12442 window, otherwise it is displayed at the mouse position, with offset\n\
12443 DY added (default is -5).")
12444 (string
, frame
, parms
, timeout
, dx
, dy
)
12445 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
12449 Window root
, child
;
12450 Lisp_Object buffer
, top
, left
;
12451 struct buffer
*old_buffer
;
12452 struct text_pos pos
;
12453 int i
, width
, height
;
12454 int root_x
, root_y
, win_x
, win_y
;
12456 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
12457 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
12458 int count
= specpdl_ptr
- specpdl
;
12460 specbind (Qinhibit_redisplay
, Qt
);
12462 GCPRO4 (string
, parms
, frame
, timeout
);
12464 CHECK_STRING (string
, 0);
12465 f
= check_x_frame (frame
);
12466 if (NILP (timeout
))
12467 timeout
= make_number (5);
12469 CHECK_NATNUM (timeout
, 2);
12472 dx
= make_number (5);
12474 CHECK_NUMBER (dx
, 5);
12477 dy
= make_number (-5);
12479 CHECK_NUMBER (dy
, 6);
12481 /* Hide a previous tip, if any. */
12484 /* Add default values to frame parameters. */
12485 if (NILP (Fassq (Qname
, parms
)))
12486 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
12487 if (NILP (Fassq (Qinternal_border_width
, parms
)))
12488 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
12489 if (NILP (Fassq (Qborder_width
, parms
)))
12490 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
12491 if (NILP (Fassq (Qborder_color
, parms
)))
12492 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
12493 if (NILP (Fassq (Qbackground_color
, parms
)))
12494 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
12497 /* Create a frame for the tooltip, and record it in the global
12498 variable tip_frame. */
12499 frame
= x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f
), parms
);
12500 tip_frame
= f
= XFRAME (frame
);
12502 /* Set up the frame's root window. Currently we use a size of 80
12503 columns x 40 lines. If someone wants to show a larger tip, he
12504 will loose. I don't think this is a realistic case. */
12505 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
12506 w
->left
= w
->top
= make_number (0);
12510 w
->pseudo_window_p
= 1;
12512 /* Display the tooltip text in a temporary buffer. */
12513 buffer
= Fget_buffer_create (build_string (" *tip*"));
12514 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
);
12515 old_buffer
= current_buffer
;
12516 set_buffer_internal_1 (XBUFFER (buffer
));
12518 Finsert (make_number (1), &string
);
12519 clear_glyph_matrix (w
->desired_matrix
);
12520 clear_glyph_matrix (w
->current_matrix
);
12521 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
12522 try_window (FRAME_ROOT_WINDOW (f
), pos
);
12524 /* Compute width and height of the tooltip. */
12525 width
= height
= 0;
12526 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
12528 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
12529 struct glyph
*last
;
12532 /* Stop at the first empty row at the end. */
12533 if (!row
->enabled_p
|| !row
->displays_text_p
)
12536 /* Let the row go over the full width of the frame. */
12537 row
->full_width_p
= 1;
12539 /* There's a glyph at the end of rows that is use to place
12540 the cursor there. Don't include the width of this glyph. */
12541 if (row
->used
[TEXT_AREA
])
12543 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
12544 row_width
= row
->pixel_width
- last
->pixel_width
;
12547 row_width
= row
->pixel_width
;
12549 height
+= row
->height
;
12550 width
= max (width
, row_width
);
12553 /* Add the frame's internal border to the width and height the X
12554 window should have. */
12555 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
12556 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
12558 /* User-specified position? */
12559 left
= Fcdr (Fassq (Qleft
, parms
));
12560 top
= Fcdr (Fassq (Qtop
, parms
));
12562 /* Move the tooltip window where the mouse pointer is. Resize and
12564 #if 0 /* TODO : W32 specifics */
12566 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
12567 &root
, &child
, &root_x
, &root_y
, &win_x
, &win_y
, &pmask
);
12570 root_x
+= XINT (dx
);
12571 root_y
+= XINT (dy
);
12573 if (INTEGERP (left
))
12574 root_x
= XINT (left
);
12575 if (INTEGERP (top
))
12576 root_y
= XINT (top
);
12579 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
12580 root_x
, root_y
- height
, width
, height
);
12581 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
12585 /* Draw into the window. */
12586 w
->must_be_updated_p
= 1;
12587 update_single_window (w
, 1);
12589 /* Restore original current buffer. */
12590 set_buffer_internal_1 (old_buffer
);
12591 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
12593 /* Let the tip disappear after timeout seconds. */
12594 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
12595 intern ("x-hide-tip"));
12598 return unbind_to (count
, Qnil
);
12602 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
12603 "Hide the current tooltip window, if there is any.\n\
12604 Value is t is tooltip was open, nil otherwise.")
12607 int count
= specpdl_ptr
- specpdl
;
12610 specbind (Qinhibit_redisplay
, Qt
);
12612 if (!NILP (tip_timer
))
12614 call1 (intern ("cancel-timer"), tip_timer
);
12622 XSETFRAME (frame
, tip_frame
);
12623 Fdelete_frame (frame
, Qt
);
12628 return unbind_to (count
, deleted_p
? Qt
: Qnil
);
12634 /***********************************************************************
12635 File selection dialog
12636 ***********************************************************************/
12638 extern Lisp_Object Qfile_name_history
;
12640 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 4, 0,
12641 "Read file name, prompting with PROMPT in directory DIR.\n\
12642 Use a file selection dialog.\n\
12643 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
12644 specified. Don't let the user enter a file name in the file\n\
12645 selection dialog's entry field, if MUSTMATCH is non-nil.")
12646 (prompt
, dir
, default_filename
, mustmatch
)
12647 Lisp_Object prompt
, dir
, default_filename
, mustmatch
;
12649 struct frame
*f
= SELECTED_FRAME ();
12650 Lisp_Object file
= Qnil
;
12651 int count
= specpdl_ptr
- specpdl
;
12652 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
12653 char filename
[MAX_PATH
+ 1];
12654 char init_dir
[MAX_PATH
+ 1];
12655 int use_dialog_p
= 1;
12657 GCPRO5 (prompt
, dir
, default_filename
, mustmatch
, file
);
12658 CHECK_STRING (prompt
, 0);
12659 CHECK_STRING (dir
, 1);
12661 /* Create the dialog with PROMPT as title, using DIR as initial
12662 directory and using "*" as pattern. */
12663 dir
= Fexpand_file_name (dir
, Qnil
);
12664 strncpy (init_dir
, XSTRING (dir
)->data
, MAX_PATH
);
12665 init_dir
[MAX_PATH
] = '\0';
12666 unixtodos_filename (init_dir
);
12668 if (STRINGP (default_filename
))
12670 char *file_name_only
;
12671 char *full_path_name
= XSTRING (default_filename
)->data
;
12673 unixtodos_filename (full_path_name
);
12675 file_name_only
= strrchr (full_path_name
, '\\');
12676 if (!file_name_only
)
12677 file_name_only
= full_path_name
;
12682 /* If default_file_name is a directory, don't use the open
12683 file dialog, as it does not support selecting
12685 if (!(*file_name_only
))
12689 strncpy (filename
, file_name_only
, MAX_PATH
);
12690 filename
[MAX_PATH
] = '\0';
12693 filename
[0] = '\0';
12697 OPENFILENAME file_details
;
12698 char *filename_file
;
12700 /* Prevent redisplay. */
12701 specbind (Qinhibit_redisplay
, Qt
);
12704 bzero (&file_details
, sizeof (file_details
));
12705 file_details
.lStructSize
= sizeof (file_details
);
12706 file_details
.hwndOwner
= FRAME_W32_WINDOW (f
);
12707 file_details
.lpstrFile
= filename
;
12708 file_details
.nMaxFile
= sizeof (filename
);
12709 file_details
.lpstrInitialDir
= init_dir
;
12710 file_details
.lpstrTitle
= XSTRING (prompt
)->data
;
12711 file_details
.Flags
= OFN_HIDEREADONLY
| OFN_NOCHANGEDIR
;
12713 if (!NILP (mustmatch
))
12714 file_details
.Flags
|= OFN_FILEMUSTEXIST
| OFN_PATHMUSTEXIST
;
12716 if (GetOpenFileName (&file_details
))
12718 dostounix_filename (filename
);
12719 file
= build_string (filename
);
12725 file
= unbind_to (count
, file
);
12727 /* Open File dialog will not allow folders to be selected, so resort
12728 to minibuffer completing reads for directories. */
12730 file
= Fcompleting_read (prompt
, intern ("read-file-name-internal"),
12731 dir
, mustmatch
, dir
, Qfile_name_history
,
12732 default_filename
, Qnil
);
12736 /* Make "Cancel" equivalent to C-g. */
12738 Fsignal (Qquit
, Qnil
);
12740 return unbind_to (count
, file
);
12745 /***********************************************************************
12747 ***********************************************************************/
12751 DEFUN ("imagep", Fimagep
, Simagep
, 1, 1, 0,
12752 "Value is non-nil if SPEC is a valid image specification.")
12756 return valid_image_p (spec
) ? Qt
: Qnil
;
12760 DEFUN ("lookup-image", Flookup_image
, Slookup_image
, 1, 1, 0, "")
12766 if (valid_image_p (spec
))
12767 id
= lookup_image (SELECTED_FRAME (), spec
);
12769 debug_print (spec
);
12770 return make_number (id
);
12773 #endif /* GLYPH_DEBUG != 0 */
12777 /***********************************************************************
12778 w32 specialized functions
12779 ***********************************************************************/
12781 DEFUN ("w32-select-font", Fw32_select_font
, Sw32_select_font
, 0, 1, 0,
12782 "This will display the W32 font dialog and return an X font string corresponding to the selection.")
12786 FRAME_PTR f
= check_x_frame (frame
);
12794 bzero (&cf
, sizeof (cf
));
12795 bzero (&lf
, sizeof (lf
));
12797 cf
.lStructSize
= sizeof (cf
);
12798 cf
.hwndOwner
= FRAME_W32_WINDOW (f
);
12799 cf
.Flags
= CF_FORCEFONTEXIST
| CF_SCREENFONTS
;
12800 cf
.lpLogFont
= &lf
;
12802 /* Initialize as much of the font details as we can from the current
12804 hdc
= GetDC (FRAME_W32_WINDOW (f
));
12805 oldobj
= SelectObject (hdc
, FRAME_FONT (f
)->hfont
);
12806 GetTextFace (hdc
, LF_FACESIZE
, lf
.lfFaceName
);
12807 if (GetTextMetrics (hdc
, &tm
))
12809 lf
.lfHeight
= tm
.tmInternalLeading
- tm
.tmHeight
;
12810 lf
.lfWeight
= tm
.tmWeight
;
12811 lf
.lfItalic
= tm
.tmItalic
;
12812 lf
.lfUnderline
= tm
.tmUnderlined
;
12813 lf
.lfStrikeOut
= tm
.tmStruckOut
;
12814 lf
.lfCharSet
= tm
.tmCharSet
;
12815 cf
.Flags
|= CF_INITTOLOGFONTSTRUCT
;
12817 SelectObject (hdc
, oldobj
);
12818 ReleaseDC (FRAME_W32_WINDOW (f
), hdc
);
12820 if (!ChooseFont (&cf
) || !w32_to_x_font (&lf
, buf
, 100, NULL
))
12823 return build_string (buf
);
12826 DEFUN ("w32-send-sys-command", Fw32_send_sys_command
, Sw32_send_sys_command
, 1, 2, 0,
12827 "Send frame a Windows WM_SYSCOMMAND message of type COMMAND.\n\
12828 Some useful values for command are 0xf030 to maximise frame (0xf020\n\
12829 to minimize), 0xf120 to restore frame to original size, and 0xf100\n\
12830 to activate the menubar for keyboard access. 0xf140 activates the\n\
12831 screen saver if defined.\n\
12833 If optional parameter FRAME is not specified, use selected frame.")
12835 Lisp_Object command
, frame
;
12838 FRAME_PTR f
= check_x_frame (frame
);
12840 CHECK_NUMBER (command
, 0);
12842 PostMessage (FRAME_W32_WINDOW (f
), WM_SYSCOMMAND
, XINT (command
), 0);
12847 DEFUN ("w32-shell-execute", Fw32_shell_execute
, Sw32_shell_execute
, 2, 4, 0,
12848 "Get Windows to perform OPERATION on DOCUMENT.\n\
12849 This is a wrapper around the ShellExecute system function, which\n\
12850 invokes the application registered to handle OPERATION for DOCUMENT.\n\
12851 OPERATION is typically \"open\", \"print\" or \"explore\" (but can be\n\
12852 nil for the default action), and DOCUMENT is typically the name of a\n\
12853 document file or URL, but can also be a program executable to run or\n\
12854 a directory to open in the Windows Explorer.\n\
12856 If DOCUMENT is a program executable, PARAMETERS can be a string\n\
12857 containing command line parameters, but otherwise should be nil.\n\
12859 SHOW-FLAG can be used to control whether the invoked application is hidden\n\
12860 or minimized. If SHOW-FLAG is nil, the application is displayed normally,\n\
12861 otherwise it is an integer representing a ShowWindow flag:\n\
12863 0 - start hidden\n\
12864 1 - start normally\n\
12865 3 - start maximized\n\
12866 6 - start minimized")
12867 (operation
, document
, parameters
, show_flag
)
12868 Lisp_Object operation
, document
, parameters
, show_flag
;
12870 Lisp_Object current_dir
;
12872 CHECK_STRING (document
, 0);
12874 /* Encode filename and current directory. */
12875 current_dir
= ENCODE_FILE (current_buffer
->directory
);
12876 document
= ENCODE_FILE (document
);
12877 if ((int) ShellExecute (NULL
,
12878 (STRINGP (operation
) ?
12879 XSTRING (operation
)->data
: NULL
),
12880 XSTRING (document
)->data
,
12881 (STRINGP (parameters
) ?
12882 XSTRING (parameters
)->data
: NULL
),
12883 XSTRING (current_dir
)->data
,
12884 (INTEGERP (show_flag
) ?
12885 XINT (show_flag
) : SW_SHOWDEFAULT
))
12888 error ("ShellExecute failed");
12891 /* Lookup virtual keycode from string representing the name of a
12892 non-ascii keystroke into the corresponding virtual key, using
12893 lispy_function_keys. */
12895 lookup_vk_code (char *key
)
12899 for (i
= 0; i
< 256; i
++)
12900 if (lispy_function_keys
[i
] != 0
12901 && strcmp (lispy_function_keys
[i
], key
) == 0)
12907 /* Convert a one-element vector style key sequence to a hot key
12910 w32_parse_hot_key (key
)
12913 /* Copied from Fdefine_key and store_in_keymap. */
12914 register Lisp_Object c
;
12916 int lisp_modifiers
;
12918 struct gcpro gcpro1
;
12920 CHECK_VECTOR (key
, 0);
12922 if (XFASTINT (Flength (key
)) != 1)
12927 c
= Faref (key
, make_number (0));
12929 if (CONSP (c
) && lucid_event_type_list_p (c
))
12930 c
= Fevent_convert_list (c
);
12934 if (! INTEGERP (c
) && ! SYMBOLP (c
))
12935 error ("Key definition is invalid");
12937 /* Work out the base key and the modifiers. */
12940 c
= parse_modifiers (c
);
12941 lisp_modifiers
= Fcar (Fcdr (c
));
12945 vk_code
= lookup_vk_code (XSYMBOL (c
)->name
->data
);
12947 else if (INTEGERP (c
))
12949 lisp_modifiers
= XINT (c
) & ~CHARACTERBITS
;
12950 /* Many ascii characters are their own virtual key code. */
12951 vk_code
= XINT (c
) & CHARACTERBITS
;
12954 if (vk_code
< 0 || vk_code
> 255)
12957 if ((lisp_modifiers
& meta_modifier
) != 0
12958 && !NILP (Vw32_alt_is_meta
))
12959 lisp_modifiers
|= alt_modifier
;
12961 /* Supply defs missing from mingw32. */
12963 #define MOD_ALT 0x0001
12964 #define MOD_CONTROL 0x0002
12965 #define MOD_SHIFT 0x0004
12966 #define MOD_WIN 0x0008
12969 /* Convert lisp modifiers to Windows hot-key form. */
12970 w32_modifiers
= (lisp_modifiers
& hyper_modifier
) ? MOD_WIN
: 0;
12971 w32_modifiers
|= (lisp_modifiers
& alt_modifier
) ? MOD_ALT
: 0;
12972 w32_modifiers
|= (lisp_modifiers
& ctrl_modifier
) ? MOD_CONTROL
: 0;
12973 w32_modifiers
|= (lisp_modifiers
& shift_modifier
) ? MOD_SHIFT
: 0;
12975 return HOTKEY (vk_code
, w32_modifiers
);
12978 DEFUN ("w32-register-hot-key", Fw32_register_hot_key
, Sw32_register_hot_key
, 1, 1, 0,
12979 "Register KEY as a hot-key combination.\n\
12980 Certain key combinations like Alt-Tab are reserved for system use on\n\
12981 Windows, and therefore are normally intercepted by the system. However,\n\
12982 most of these key combinations can be received by registering them as\n\
12983 hot-keys, overriding their special meaning.\n\
12985 KEY must be a one element key definition in vector form that would be\n\
12986 acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta\n\
12987 modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper\n\
12988 is always interpreted as the Windows modifier keys.\n\
12990 The return value is the hotkey-id if registered, otherwise nil.")
12994 key
= w32_parse_hot_key (key
);
12996 if (NILP (Fmemq (key
, w32_grabbed_keys
)))
12998 /* Reuse an empty slot if possible. */
12999 Lisp_Object item
= Fmemq (Qnil
, w32_grabbed_keys
);
13001 /* Safe to add new key to list, even if we have focus. */
13003 w32_grabbed_keys
= Fcons (key
, w32_grabbed_keys
);
13007 /* Notify input thread about new hot-key definition, so that it
13008 takes effect without needing to switch focus. */
13009 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_REGISTER_HOT_KEY
,
13016 DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key
, Sw32_unregister_hot_key
, 1, 1, 0,
13017 "Unregister HOTKEY as a hot-key combination.")
13023 if (!INTEGERP (key
))
13024 key
= w32_parse_hot_key (key
);
13026 item
= Fmemq (key
, w32_grabbed_keys
);
13030 /* Notify input thread about hot-key definition being removed, so
13031 that it takes effect without needing focus switch. */
13032 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_UNREGISTER_HOT_KEY
,
13033 (WPARAM
) XINT (XCAR (item
)), (LPARAM
) item
))
13036 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
13043 DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys
, Sw32_registered_hot_keys
, 0, 0, 0,
13044 "Return list of registered hot-key IDs.")
13047 return Fcopy_sequence (w32_grabbed_keys
);
13050 DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key
, Sw32_reconstruct_hot_key
, 1, 1, 0,
13051 "Convert hot-key ID to a lisp key combination.")
13053 Lisp_Object hotkeyid
;
13055 int vk_code
, w32_modifiers
;
13058 CHECK_NUMBER (hotkeyid
, 0);
13060 vk_code
= HOTKEY_VK_CODE (hotkeyid
);
13061 w32_modifiers
= HOTKEY_MODIFIERS (hotkeyid
);
13063 if (lispy_function_keys
[vk_code
])
13064 key
= intern (lispy_function_keys
[vk_code
]);
13066 key
= make_number (vk_code
);
13068 key
= Fcons (key
, Qnil
);
13069 if (w32_modifiers
& MOD_SHIFT
)
13070 key
= Fcons (Qshift
, key
);
13071 if (w32_modifiers
& MOD_CONTROL
)
13072 key
= Fcons (Qctrl
, key
);
13073 if (w32_modifiers
& MOD_ALT
)
13074 key
= Fcons (NILP (Vw32_alt_is_meta
) ? Qalt
: Qmeta
, key
);
13075 if (w32_modifiers
& MOD_WIN
)
13076 key
= Fcons (Qhyper
, key
);
13081 DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key
, Sw32_toggle_lock_key
, 1, 2, 0,
13082 "Toggle the state of the lock key KEY.\n\
13083 KEY can be `capslock', `kp-numlock', or `scroll'.\n\
13084 If the optional parameter NEW-STATE is a number, then the state of KEY\n\
13085 is set to off if the low bit of NEW-STATE is zero, otherwise on.")
13087 Lisp_Object key
, new_state
;
13092 if (EQ (key
, intern ("capslock")))
13093 vk_code
= VK_CAPITAL
;
13094 else if (EQ (key
, intern ("kp-numlock")))
13095 vk_code
= VK_NUMLOCK
;
13096 else if (EQ (key
, intern ("scroll")))
13097 vk_code
= VK_SCROLL
;
13101 if (!dwWindowsThreadId
)
13102 return make_number (w32_console_toggle_lock_key (vk_code
, new_state
));
13104 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_TOGGLE_LOCK_KEY
,
13105 (WPARAM
) vk_code
, (LPARAM
) new_state
))
13108 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
13109 return make_number (msg
.wParam
);
13116 /* This is zero if not using MS-Windows. */
13119 /* The section below is built by the lisp expression at the top of the file,
13120 just above where these variables are declared. */
13121 /*&&& init symbols here &&&*/
13122 Qauto_raise
= intern ("auto-raise");
13123 staticpro (&Qauto_raise
);
13124 Qauto_lower
= intern ("auto-lower");
13125 staticpro (&Qauto_lower
);
13126 Qbar
= intern ("bar");
13128 Qborder_color
= intern ("border-color");
13129 staticpro (&Qborder_color
);
13130 Qborder_width
= intern ("border-width");
13131 staticpro (&Qborder_width
);
13132 Qbox
= intern ("box");
13134 Qcursor_color
= intern ("cursor-color");
13135 staticpro (&Qcursor_color
);
13136 Qcursor_type
= intern ("cursor-type");
13137 staticpro (&Qcursor_type
);
13138 Qgeometry
= intern ("geometry");
13139 staticpro (&Qgeometry
);
13140 Qicon_left
= intern ("icon-left");
13141 staticpro (&Qicon_left
);
13142 Qicon_top
= intern ("icon-top");
13143 staticpro (&Qicon_top
);
13144 Qicon_type
= intern ("icon-type");
13145 staticpro (&Qicon_type
);
13146 Qicon_name
= intern ("icon-name");
13147 staticpro (&Qicon_name
);
13148 Qinternal_border_width
= intern ("internal-border-width");
13149 staticpro (&Qinternal_border_width
);
13150 Qleft
= intern ("left");
13151 staticpro (&Qleft
);
13152 Qright
= intern ("right");
13153 staticpro (&Qright
);
13154 Qmouse_color
= intern ("mouse-color");
13155 staticpro (&Qmouse_color
);
13156 Qnone
= intern ("none");
13157 staticpro (&Qnone
);
13158 Qparent_id
= intern ("parent-id");
13159 staticpro (&Qparent_id
);
13160 Qscroll_bar_width
= intern ("scroll-bar-width");
13161 staticpro (&Qscroll_bar_width
);
13162 Qsuppress_icon
= intern ("suppress-icon");
13163 staticpro (&Qsuppress_icon
);
13164 Qundefined_color
= intern ("undefined-color");
13165 staticpro (&Qundefined_color
);
13166 Qvertical_scroll_bars
= intern ("vertical-scroll-bars");
13167 staticpro (&Qvertical_scroll_bars
);
13168 Qvisibility
= intern ("visibility");
13169 staticpro (&Qvisibility
);
13170 Qwindow_id
= intern ("window-id");
13171 staticpro (&Qwindow_id
);
13172 Qx_frame_parameter
= intern ("x-frame-parameter");
13173 staticpro (&Qx_frame_parameter
);
13174 Qx_resource_name
= intern ("x-resource-name");
13175 staticpro (&Qx_resource_name
);
13176 Quser_position
= intern ("user-position");
13177 staticpro (&Quser_position
);
13178 Quser_size
= intern ("user-size");
13179 staticpro (&Quser_size
);
13180 Qscreen_gamma
= intern ("screen-gamma");
13181 staticpro (&Qscreen_gamma
);
13182 Qline_spacing
= intern ("line-spacing");
13183 staticpro (&Qline_spacing
);
13184 Qcenter
= intern ("center");
13185 staticpro (&Qcenter
);
13186 /* This is the end of symbol initialization. */
13188 Qhyper
= intern ("hyper");
13189 staticpro (&Qhyper
);
13190 Qsuper
= intern ("super");
13191 staticpro (&Qsuper
);
13192 Qmeta
= intern ("meta");
13193 staticpro (&Qmeta
);
13194 Qalt
= intern ("alt");
13196 Qctrl
= intern ("ctrl");
13197 staticpro (&Qctrl
);
13198 Qcontrol
= intern ("control");
13199 staticpro (&Qcontrol
);
13200 Qshift
= intern ("shift");
13201 staticpro (&Qshift
);
13203 /* Text property `display' should be nonsticky by default. */
13204 Vtext_property_default_nonsticky
13205 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
13208 Qlaplace
= intern ("laplace");
13209 staticpro (&Qlaplace
);
13211 Qface_set_after_frame_default
= intern ("face-set-after-frame-default");
13212 staticpro (&Qface_set_after_frame_default
);
13214 Fput (Qundefined_color
, Qerror_conditions
,
13215 Fcons (Qundefined_color
, Fcons (Qerror
, Qnil
)));
13216 Fput (Qundefined_color
, Qerror_message
,
13217 build_string ("Undefined color"));
13219 staticpro (&w32_grabbed_keys
);
13220 w32_grabbed_keys
= Qnil
;
13222 DEFVAR_LISP ("w32-color-map", &Vw32_color_map
,
13223 "An array of color name mappings for windows.");
13224 Vw32_color_map
= Qnil
;
13226 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system
,
13227 "Non-nil if alt key presses are passed on to Windows.\n\
13228 When non-nil, for example, alt pressed and released and then space will\n\
13229 open the System menu. When nil, Emacs silently swallows alt key events.");
13230 Vw32_pass_alt_to_system
= Qnil
;
13232 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta
,
13233 "Non-nil if the alt key is to be considered the same as the meta key.\n\
13234 When nil, Emacs will translate the alt key to the Alt modifier, and not Meta.");
13235 Vw32_alt_is_meta
= Qt
;
13237 DEFVAR_INT ("w32-quit-key", &Vw32_quit_key
,
13238 "If non-zero, the virtual key code for an alternative quit key.");
13239 XSETINT (Vw32_quit_key
, 0);
13241 DEFVAR_LISP ("w32-pass-lwindow-to-system",
13242 &Vw32_pass_lwindow_to_system
,
13243 "Non-nil if the left \"Windows\" key is passed on to Windows.\n\
13244 When non-nil, the Start menu is opened by tapping the key.");
13245 Vw32_pass_lwindow_to_system
= Qt
;
13247 DEFVAR_LISP ("w32-pass-rwindow-to-system",
13248 &Vw32_pass_rwindow_to_system
,
13249 "Non-nil if the right \"Windows\" key is passed on to Windows.\n\
13250 When non-nil, the Start menu is opened by tapping the key.");
13251 Vw32_pass_rwindow_to_system
= Qt
;
13253 DEFVAR_INT ("w32-phantom-key-code",
13254 &Vw32_phantom_key_code
,
13255 "Virtual key code used to generate \"phantom\" key presses.\n\
13256 Value is a number between 0 and 255.\n\
13258 Phantom key presses are generated in order to stop the system from\n\
13259 acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or\n\
13260 `w32-pass-rwindow-to-system' is nil.");
13261 /* Although 255 is technically not a valid key code, it works and
13262 means that this hack won't interfere with any real key code. */
13263 Vw32_phantom_key_code
= 255;
13265 DEFVAR_LISP ("w32-enable-num-lock",
13266 &Vw32_enable_num_lock
,
13267 "Non-nil if Num Lock should act normally.\n\
13268 Set to nil to see Num Lock as the key `kp-numlock'.");
13269 Vw32_enable_num_lock
= Qt
;
13271 DEFVAR_LISP ("w32-enable-caps-lock",
13272 &Vw32_enable_caps_lock
,
13273 "Non-nil if Caps Lock should act normally.\n\
13274 Set to nil to see Caps Lock as the key `capslock'.");
13275 Vw32_enable_caps_lock
= Qt
;
13277 DEFVAR_LISP ("w32-scroll-lock-modifier",
13278 &Vw32_scroll_lock_modifier
,
13279 "Modifier to use for the Scroll Lock on state.\n\
13280 The value can be hyper, super, meta, alt, control or shift for the\n\
13281 respective modifier, or nil to see Scroll Lock as the key `scroll'.\n\
13282 Any other value will cause the key to be ignored.");
13283 Vw32_scroll_lock_modifier
= Qt
;
13285 DEFVAR_LISP ("w32-lwindow-modifier",
13286 &Vw32_lwindow_modifier
,
13287 "Modifier to use for the left \"Windows\" key.\n\
13288 The value can be hyper, super, meta, alt, control or shift for the\n\
13289 respective modifier, or nil to appear as the key `lwindow'.\n\
13290 Any other value will cause the key to be ignored.");
13291 Vw32_lwindow_modifier
= Qnil
;
13293 DEFVAR_LISP ("w32-rwindow-modifier",
13294 &Vw32_rwindow_modifier
,
13295 "Modifier to use for the right \"Windows\" key.\n\
13296 The value can be hyper, super, meta, alt, control or shift for the\n\
13297 respective modifier, or nil to appear as the key `rwindow'.\n\
13298 Any other value will cause the key to be ignored.");
13299 Vw32_rwindow_modifier
= Qnil
;
13301 DEFVAR_LISP ("w32-apps-modifier",
13302 &Vw32_apps_modifier
,
13303 "Modifier to use for the \"Apps\" key.\n\
13304 The value can be hyper, super, meta, alt, control or shift for the\n\
13305 respective modifier, or nil to appear as the key `apps'.\n\
13306 Any other value will cause the key to be ignored.");
13307 Vw32_apps_modifier
= Qnil
;
13309 DEFVAR_LISP ("w32-enable-synthesized-fonts", &Vw32_enable_synthesized_fonts
,
13310 "Non-nil enables selection of artificially italicized and bold fonts.");
13311 Vw32_enable_synthesized_fonts
= Qnil
;
13313 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette
,
13314 "Non-nil enables Windows palette management to map colors exactly.");
13315 Vw32_enable_palette
= Qt
;
13317 DEFVAR_INT ("w32-mouse-button-tolerance",
13318 &Vw32_mouse_button_tolerance
,
13319 "Analogue of double click interval for faking middle mouse events.\n\
13320 The value is the minimum time in milliseconds that must elapse between\n\
13321 left/right button down events before they are considered distinct events.\n\
13322 If both mouse buttons are depressed within this interval, a middle mouse\n\
13323 button down event is generated instead.");
13324 XSETINT (Vw32_mouse_button_tolerance
, GetDoubleClickTime () / 2);
13326 DEFVAR_INT ("w32-mouse-move-interval",
13327 &Vw32_mouse_move_interval
,
13328 "Minimum interval between mouse move events.\n\
13329 The value is the minimum time in milliseconds that must elapse between\n\
13330 successive mouse move (or scroll bar drag) events before they are\n\
13331 reported as lisp events.");
13332 XSETINT (Vw32_mouse_move_interval
, 0);
13334 init_x_parm_symbols ();
13336 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path
,
13337 "List of directories to search for bitmap files for w32.");
13338 Vx_bitmap_file_path
= decode_env_path ((char *) 0, "PATH");
13340 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
13341 "The shape of the pointer when over text.\n\
13342 Changing the value does not affect existing frames\n\
13343 unless you set the mouse color.");
13344 Vx_pointer_shape
= Qnil
;
13346 DEFVAR_LISP ("x-resource-name", &Vx_resource_name
,
13347 "The name Emacs uses to look up resources; for internal use only.\n\
13348 `x-get-resource' uses this as the first component of the instance name\n\
13349 when requesting resource values.\n\
13350 Emacs initially sets `x-resource-name' to the name under which Emacs\n\
13351 was invoked, or to the value specified with the `-name' or `-rn'\n\
13352 switches, if present.");
13353 Vx_resource_name
= Qnil
;
13355 Vx_nontext_pointer_shape
= Qnil
;
13357 Vx_mode_pointer_shape
= Qnil
;
13359 DEFVAR_LISP ("x-busy-pointer-shape", &Vx_busy_pointer_shape
,
13360 "The shape of the pointer when Emacs is busy.\n\
13361 This variable takes effect when you create a new frame\n\
13362 or when you set the mouse color.");
13363 Vx_busy_pointer_shape
= Qnil
;
13365 DEFVAR_BOOL ("display-busy-cursor", &display_busy_cursor_p
,
13366 "Non-zero means Emacs displays a busy cursor on window systems.");
13367 display_busy_cursor_p
= 1;
13369 DEFVAR_LISP ("busy-cursor-delay", &Vbusy_cursor_delay
,
13370 "*Seconds to wait before displaying a busy-cursor.\n\
13371 Value must be an integer or float.");
13372 Vbusy_cursor_delay
= make_number (DEFAULT_BUSY_CURSOR_DELAY
);
13374 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
13375 &Vx_sensitive_text_pointer_shape
,
13376 "The shape of the pointer when over mouse-sensitive text.\n\
13377 This variable takes effect when you create a new frame\n\
13378 or when you set the mouse color.");
13379 Vx_sensitive_text_pointer_shape
= Qnil
;
13381 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
13382 &Vx_window_horizontal_drag_shape
,
13383 "Pointer shape to use for indicating a window can be dragged horizontally.\n\
13384 This variable takes effect when you create a new frame\n\
13385 or when you set the mouse color.");
13386 Vx_window_horizontal_drag_shape
= Qnil
;
13388 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
13389 "A string indicating the foreground color of the cursor box.");
13390 Vx_cursor_fore_pixel
= Qnil
;
13392 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
13393 "Non-nil if no window manager is in use.\n\
13394 Emacs doesn't try to figure this out; this is always nil\n\
13395 unless you set it to something else.");
13396 /* We don't have any way to find this out, so set it to nil
13397 and maybe the user would like to set it to t. */
13398 Vx_no_window_manager
= Qnil
;
13400 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
13401 &Vx_pixel_size_width_font_regexp
,
13402 "Regexp matching a font name whose width is the same as `PIXEL_SIZE'.\n\
13404 Since Emacs gets width of a font matching with this regexp from\n\
13405 PIXEL_SIZE field of the name, font finding mechanism gets faster for\n\
13406 such a font. This is especially effective for such large fonts as\n\
13407 Chinese, Japanese, and Korean.");
13408 Vx_pixel_size_width_font_regexp
= Qnil
;
13410 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay
,
13411 "Time after which cached images are removed from the cache.\n\
13412 When an image has not been displayed this many seconds, remove it\n\
13413 from the image cache. Value must be an integer or nil with nil\n\
13414 meaning don't clear the cache.");
13415 Vimage_cache_eviction_delay
= make_number (30 * 60);
13417 DEFVAR_LISP ("w32-bdf-filename-alist",
13418 &Vw32_bdf_filename_alist
,
13419 "List of bdf fonts and their corresponding filenames.");
13420 Vw32_bdf_filename_alist
= Qnil
;
13422 DEFVAR_BOOL ("w32-strict-fontnames",
13423 &w32_strict_fontnames
,
13424 "Non-nil means only use fonts that are exact matches for those requested.\n\
13425 Default is nil, which allows old fontnames that are not XLFD compliant,\n\
13426 and allows third-party CJK display to work by specifying false charset\n\
13427 fields to trick Emacs into translating to Big5, SJIS etc.\n\
13428 Setting this to t will prevent wrong fonts being selected when\n\
13429 fontsets are automatically created.");
13430 w32_strict_fontnames
= 0;
13432 DEFVAR_BOOL ("w32-strict-painting",
13433 &w32_strict_painting
,
13434 "Non-nil means use strict rules for repainting frames.\n\
13435 Set this to nil to get the old behaviour for repainting; this should\n\
13436 only be necessary if the default setting causes problems.");
13437 w32_strict_painting
= 1;
13439 DEFVAR_LISP ("w32-system-coding-system",
13440 &Vw32_system_coding_system
,
13441 "Coding system used by Windows system functions, such as for font names.");
13442 Vw32_system_coding_system
= Qnil
;
13444 DEFVAR_LISP ("w32-charset-info-alist",
13445 &Vw32_charset_info_alist
,
13446 "Alist linking Emacs character sets to Windows fonts\n\
13447 and codepages. Each entry should be of the form:\n\
13449 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))\n\
13451 where CHARSET_NAME is a string used in font names to identify the charset,\n\
13452 WINDOWS_CHARSET is a symbol that can be one of:\n\
13453 w32-charset-ansi, w32-charset-default, w32-charset-symbol,\n\
13454 w32-charset-shiftjis, w32-charset-hangeul, w32-charset-gb2312,\n\
13455 w32-charset-chinesebig5, "
13456 #ifdef JOHAB_CHARSET
13457 "w32-charset-johab, w32-charset-hebrew,\n\
13458 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,\n\
13459 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,\n\
13460 w32-charset-russian, w32-charset-mac, w32-charset-baltic,\n"
13462 #ifdef UNICODE_CHARSET
13463 "w32-charset-unicode, "
13465 "or w32-charset-oem.\n\
13466 CODEPAGE should be an integer specifying the codepage that should be used\n\
13467 to display the character set, t to do no translation and output as Unicode,\n\
13468 or nil to do no translation and output as 8 bit (or multibyte on far-east\n\
13469 versions of Windows) characters.");
13470 Vw32_charset_info_alist
= Qnil
;
13472 staticpro (&Qw32_charset_ansi
);
13473 Qw32_charset_ansi
= intern ("w32-charset-ansi");
13474 staticpro (&Qw32_charset_symbol
);
13475 Qw32_charset_symbol
= intern ("w32-charset-symbol");
13476 staticpro (&Qw32_charset_shiftjis
);
13477 Qw32_charset_shiftjis
= intern ("w32-charset-shiftjis");
13478 staticpro (&Qw32_charset_hangeul
);
13479 Qw32_charset_hangeul
= intern ("w32-charset-hangeul");
13480 staticpro (&Qw32_charset_chinesebig5
);
13481 Qw32_charset_chinesebig5
= intern ("w32-charset-chinesebig5");
13482 staticpro (&Qw32_charset_gb2312
);
13483 Qw32_charset_gb2312
= intern ("w32-charset-gb2312");
13484 staticpro (&Qw32_charset_oem
);
13485 Qw32_charset_oem
= intern ("w32-charset-oem");
13487 #ifdef JOHAB_CHARSET
13489 static int w32_extra_charsets_defined
= 1;
13490 DEFVAR_BOOL ("w32-extra-charsets-defined", &w32_extra_charsets_defined
, "");
13492 staticpro (&Qw32_charset_johab
);
13493 Qw32_charset_johab
= intern ("w32-charset-johab");
13494 staticpro (&Qw32_charset_easteurope
);
13495 Qw32_charset_easteurope
= intern ("w32-charset-easteurope");
13496 staticpro (&Qw32_charset_turkish
);
13497 Qw32_charset_turkish
= intern ("w32-charset-turkish");
13498 staticpro (&Qw32_charset_baltic
);
13499 Qw32_charset_baltic
= intern ("w32-charset-baltic");
13500 staticpro (&Qw32_charset_russian
);
13501 Qw32_charset_russian
= intern ("w32-charset-russian");
13502 staticpro (&Qw32_charset_arabic
);
13503 Qw32_charset_arabic
= intern ("w32-charset-arabic");
13504 staticpro (&Qw32_charset_greek
);
13505 Qw32_charset_greek
= intern ("w32-charset-greek");
13506 staticpro (&Qw32_charset_hebrew
);
13507 Qw32_charset_hebrew
= intern ("w32-charset-hebrew");
13508 staticpro (&Qw32_charset_vietnamese
);
13509 Qw32_charset_vietnamese
= intern ("w32-charset-vietnamese");
13510 staticpro (&Qw32_charset_thai
);
13511 Qw32_charset_thai
= intern ("w32-charset-thai");
13512 staticpro (&Qw32_charset_mac
);
13513 Qw32_charset_mac
= intern ("w32-charset-mac");
13517 #ifdef UNICODE_CHARSET
13519 static int w32_unicode_charset_defined
= 1;
13520 DEFVAR_BOOL ("w32-unicode-charset-defined",
13521 &w32_unicode_charset_defined
, "");
13523 staticpro (&Qw32_charset_unicode
);
13524 Qw32_charset_unicode
= intern ("w32-charset-unicode");
13527 defsubr (&Sx_get_resource
);
13528 #if 0 /* TODO: Port to W32 */
13529 defsubr (&Sx_change_window_property
);
13530 defsubr (&Sx_delete_window_property
);
13531 defsubr (&Sx_window_property
);
13533 defsubr (&Sxw_display_color_p
);
13534 defsubr (&Sx_display_grayscale_p
);
13535 defsubr (&Sxw_color_defined_p
);
13536 defsubr (&Sxw_color_values
);
13537 defsubr (&Sx_server_max_request_size
);
13538 defsubr (&Sx_server_vendor
);
13539 defsubr (&Sx_server_version
);
13540 defsubr (&Sx_display_pixel_width
);
13541 defsubr (&Sx_display_pixel_height
);
13542 defsubr (&Sx_display_mm_width
);
13543 defsubr (&Sx_display_mm_height
);
13544 defsubr (&Sx_display_screens
);
13545 defsubr (&Sx_display_planes
);
13546 defsubr (&Sx_display_color_cells
);
13547 defsubr (&Sx_display_visual_class
);
13548 defsubr (&Sx_display_backing_store
);
13549 defsubr (&Sx_display_save_under
);
13550 defsubr (&Sx_parse_geometry
);
13551 defsubr (&Sx_create_frame
);
13552 defsubr (&Sx_open_connection
);
13553 defsubr (&Sx_close_connection
);
13554 defsubr (&Sx_display_list
);
13555 defsubr (&Sx_synchronize
);
13557 /* W32 specific functions */
13559 defsubr (&Sw32_focus_frame
);
13560 defsubr (&Sw32_select_font
);
13561 defsubr (&Sw32_define_rgb_color
);
13562 defsubr (&Sw32_default_color_map
);
13563 defsubr (&Sw32_load_color_file
);
13564 defsubr (&Sw32_send_sys_command
);
13565 defsubr (&Sw32_shell_execute
);
13566 defsubr (&Sw32_register_hot_key
);
13567 defsubr (&Sw32_unregister_hot_key
);
13568 defsubr (&Sw32_registered_hot_keys
);
13569 defsubr (&Sw32_reconstruct_hot_key
);
13570 defsubr (&Sw32_toggle_lock_key
);
13571 defsubr (&Sw32_find_bdf_fonts
);
13573 /* Setting callback functions for fontset handler. */
13574 get_font_info_func
= w32_get_font_info
;
13576 #if 0 /* This function pointer doesn't seem to be used anywhere.
13577 And the pointer assigned has the wrong type, anyway. */
13578 list_fonts_func
= w32_list_fonts
;
13581 load_font_func
= w32_load_font
;
13582 find_ccl_program_func
= w32_find_ccl_program
;
13583 query_font_func
= w32_query_font
;
13584 set_frame_fontset_func
= x_set_font
;
13585 check_window_system_func
= check_w32
;
13587 #if 0 /* TODO Image support for W32 */
13589 Qxbm
= intern ("xbm");
13591 QCtype
= intern (":type");
13592 staticpro (&QCtype
);
13593 QCalgorithm
= intern (":algorithm");
13594 staticpro (&QCalgorithm
);
13595 QCheuristic_mask
= intern (":heuristic-mask");
13596 staticpro (&QCheuristic_mask
);
13597 QCcolor_symbols
= intern (":color-symbols");
13598 staticpro (&QCcolor_symbols
);
13599 QCascent
= intern (":ascent");
13600 staticpro (&QCascent
);
13601 QCmargin
= intern (":margin");
13602 staticpro (&QCmargin
);
13603 QCrelief
= intern (":relief");
13604 staticpro (&QCrelief
);
13605 Qpostscript
= intern ("postscript");
13606 staticpro (&Qpostscript
);
13607 QCloader
= intern (":loader");
13608 staticpro (&QCloader
);
13609 QCbounding_box
= intern (":bounding-box");
13610 staticpro (&QCbounding_box
);
13611 QCpt_width
= intern (":pt-width");
13612 staticpro (&QCpt_width
);
13613 QCpt_height
= intern (":pt-height");
13614 staticpro (&QCpt_height
);
13615 QCindex
= intern (":index");
13616 staticpro (&QCindex
);
13617 Qpbm
= intern ("pbm");
13621 Qxpm
= intern ("xpm");
13626 Qjpeg
= intern ("jpeg");
13627 staticpro (&Qjpeg
);
13631 Qtiff
= intern ("tiff");
13632 staticpro (&Qtiff
);
13636 Qgif
= intern ("gif");
13641 Qpng
= intern ("png");
13645 defsubr (&Sclear_image_cache
);
13648 defsubr (&Simagep
);
13649 defsubr (&Slookup_image
);
13653 busy_cursor_atimer
= NULL
;
13654 busy_cursor_shown_p
= 0;
13655 #ifdef TODO /* Tooltip support not complete. */
13656 defsubr (&Sx_show_tip
);
13657 defsubr (&Sx_hide_tip
);
13659 staticpro (&tip_timer
);
13662 defsubr (&Sx_file_dialog
);
13669 image_types
= NULL
;
13670 Vimage_types
= Qnil
;
13672 #if 0 /* TODO : Image support for W32 */
13673 define_image_type (&xbm_type
);
13674 define_image_type (&gs_type
);
13675 define_image_type (&pbm_type
);
13678 define_image_type (&xpm_type
);
13682 define_image_type (&jpeg_type
);
13686 define_image_type (&tiff_type
);
13690 define_image_type (&gif_type
);
13694 define_image_type (&png_type
);
13705 button
= MessageBox (NULL
,
13706 "A fatal error has occurred!\n\n"
13707 "Select Abort to exit, Retry to debug, Ignore to continue",
13708 "Emacs Abort Dialog",
13709 MB_ICONEXCLAMATION
| MB_TASKMODAL
13710 | MB_SETFOREGROUND
| MB_ABORTRETRYIGNORE
);
13725 /* For convenience when debugging. */
13729 return GetLastError ();