[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/w32fns.c
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/src/w32fns.c |
Date: |
Fri, 18 Oct 2002 05:54:53 -0400 |
Index: emacs/src/w32fns.c
diff -c emacs/src/w32fns.c:1.184 emacs/src/w32fns.c:1.185
*** emacs/src/w32fns.c:1.184 Wed Oct 2 04:28:17 2002
--- emacs/src/w32fns.c Fri Oct 18 05:54:27 2002
***************
*** 296,302 ****
FARPROC track_mouse_event_fn;
/* W95 mousewheel handler */
! unsigned int msh_mousewheel = 0;
/* Timers */
#define MOUSE_BUTTON_ID 1
--- 296,302 ----
FARPROC track_mouse_event_fn;
/* W95 mousewheel handler */
! unsigned int msh_mousewheel = 0;
/* Timers */
#define MOUSE_BUTTON_ID 1
***************
*** 346,352 ****
/* Nonzero if we can use mouse menus.
You should not call this unless HAVE_MENUS is defined. */
!
int
have_menus_p ()
{
--- 346,352 ----
/* Nonzero if we can use mouse menus.
You should not call this unless HAVE_MENUS is defined. */
!
int
have_menus_p ()
{
***************
*** 371,377 ****
return f;
}
! /* Let the user specify an display with a frame.
nil stands for the selected frame--or, if that is not a w32 frame,
the first display on the list. */
--- 371,377 ----
return f;
}
! /* Let the user specify a display with a frame.
nil stands for the selected frame--or, if that is not a w32 frame,
the first display on the list. */
***************
*** 382,388 ****
if (NILP (frame))
{
struct frame *sf = XFRAME (selected_frame);
!
if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
return FRAME_W32_DISPLAY_INFO (sf);
else
--- 382,388 ----
if (NILP (frame))
{
struct frame *sf = XFRAME (selected_frame);
!
if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
return FRAME_W32_DISPLAY_INFO (sf);
else
***************
*** 590,596 ****
if (hinst == NULL)
return -1;
!
result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
filename, &width, &height, &bitmap, &xhot, &yhot);
if (result != BitmapSuccess)
--- 590,596 ----
if (hinst == NULL)
return -1;
!
result = XReadBitmapFile (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
filename, &width, &height, &bitmap, &xhot, &yhot);
if (result != BitmapSuccess)
***************
*** 863,869 ****
They are independent of other properties, but other properties (e.g.,
cursor_color) are dependent upon them. */
/* Process default font as well, since fringe widths depends on it. */
! for (p = 0; p < i; p++)
{
Lisp_Object prop, val;
--- 863,869 ----
They are independent of other properties, but other properties (e.g.,
cursor_color) are dependent upon them. */
/* Process default font as well, since fringe widths depends on it. */
! for (p = 0; p < i; p++)
{
Lisp_Object prop, val;
***************
*** 882,888 ****
if (NILP (Fequal (val, old_value)))
{
store_frame_param (f, prop, val);
!
param_index = Fget (prop, Qx_frame_parameter);
if (NATNUMP (param_index)
&& (XFASTINT (param_index)
--- 882,888 ----
if (NILP (Fequal (val, old_value)))
{
store_frame_param (f, prop, val);
!
param_index = Fget (prop, Qx_frame_parameter);
if (NATNUMP (param_index)
&& (XFASTINT (param_index)
***************
*** 978,984 ****
position. Resize of the frame is taken care of in the code after
this if-statement. */
int new_left, new_top;
!
x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
x_fullscreen_move (f, new_top, new_left);
}
--- 978,984 ----
position. Resize of the frame is taken care of in the code after
this if-statement. */
int new_left, new_top;
!
x_fullscreen_adjust (f, &width, &height, &new_top, &new_left);
x_fullscreen_move (f, new_top, new_left);
}
***************
*** 1245,1257 ****
}
/* The default colors for the w32 color map */
! typedef struct colormap_t
{
char *name;
COLORREF colorref;
} colormap_t;
! colormap_t w32_color_map[] =
{
{"snow" , PALETTERGB (255,250,250)},
{"ghost white" , PALETTERGB (248,248,255)},
--- 1245,1257 ----
}
/* The default colors for the w32 color map */
! typedef struct colormap_t
{
char *name;
COLORREF colorref;
} colormap_t;
! colormap_t w32_color_map[] =
{
{"snow" , PALETTERGB (255,250,250)},
{"ghost white" , PALETTERGB (248,248,255)},
***************
*** 1502,1537 ****
int i;
colormap_t *pc = w32_color_map;
Lisp_Object cmap;
!
BLOCK_INPUT;
!
cmap = Qnil;
!
! for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
pc++, i++)
cmap = Fcons (Fcons (build_string (pc->name),
make_number (pc->colorref)),
cmap);
!
UNBLOCK_INPUT;
!
return (cmap);
}
! Lisp_Object
w32_to_x_color (rgb)
Lisp_Object rgb;
{
Lisp_Object color;
!
CHECK_NUMBER (rgb);
!
BLOCK_INPUT;
!
color = Frassq (rgb, Vw32_color_map);
!
UNBLOCK_INPUT;
!
if (!NILP (color))
return (Fcar (color));
else
--- 1502,1537 ----
int i;
colormap_t *pc = w32_color_map;
Lisp_Object cmap;
!
BLOCK_INPUT;
!
cmap = Qnil;
!
! for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
pc++, i++)
cmap = Fcons (Fcons (build_string (pc->name),
make_number (pc->colorref)),
cmap);
!
UNBLOCK_INPUT;
!
return (cmap);
}
! Lisp_Object
w32_to_x_color (rgb)
Lisp_Object rgb;
{
Lisp_Object color;
!
CHECK_NUMBER (rgb);
!
BLOCK_INPUT;
!
color = Frassq (rgb, Vw32_color_map);
!
UNBLOCK_INPUT;
!
if (!NILP (color))
return (Fcar (color));
else
***************
*** 1570,1576 ****
return ret;
}
! COLORREF
x_to_w32_color (colorname)
char * colorname;
{
--- 1570,1576 ----
return ret;
}
! COLORREF
x_to_w32_color (colorname)
char * colorname;
{
***************
*** 1584,1590 ****
char *color;
int size;
color = colorname + 1;
!
size = strlen(color);
if (size == 3 || size == 6 || size == 9 || size == 12)
{
--- 1584,1590 ----
char *color;
int size;
color = colorname + 1;
!
size = strlen(color);
if (size == 3 || size == 6 || size == 9 || size == 12)
{
***************
*** 1593,1599 ****
pos = 0;
size /= 3;
colorval = 0;
!
for (i = 0; i < 3; i++)
{
char *end;
--- 1593,1599 ----
pos = 0;
size /= 3;
colorval = 0;
!
for (i = 0; i < 3; i++)
{
char *end;
***************
*** 1649,1655 ****
{
char *end;
unsigned long value;
!
/* The check for 'x' in the following conditional takes into
account the fact that strtol allows a "0x" in front of
our numbers, and we don't. */
--- 1649,1655 ----
{
char *end;
unsigned long value;
!
/* The check for 'x' in the following conditional takes into
account the fact that strtol allows a "0x" in front of
our numbers, and we don't. */
***************
*** 1712,1718 ****
if (value < 0.0 || value > 1.0)
break;
val = (UINT)(0x100 * value);
! /* We used 0x100 instead of 0xFF to give an continuous
range between 0.0 and 1.0 inclusive. The next statement
fixes the 1.0 case. */
if (val == 0x100)
--- 1712,1718 ----
if (value < 0.0 || value > 1.0)
break;
val = (UINT)(0x100 * value);
! /* We used 0x100 instead of 0xFF to give a continuous
range between 0.0 and 1.0 inclusive. The next statement
fixes the 1.0 case. */
if (val == 0x100)
***************
*** 1736,1762 ****
RGB. */
/* If we fail to lookup the color name in w32_color_map, then check the
! colorname to see if it can be crudely approximated: If the X color
ends in a number (e.g., "darkseagreen2"), strip the number and
return the result of looking up the base color name. */
ret = w32_color_map_lookup (colorname);
! if (NILP (ret))
{
int len = strlen (colorname);
! if (isdigit (colorname[len - 1]))
{
char *ptr, *approx = alloca (len + 1);
strcpy (approx, colorname);
ptr = &approx[len - 1];
! while (ptr > approx && isdigit (*ptr))
*ptr-- = '\0';
ret = w32_color_map_lookup (approx);
}
}
!
UNBLOCK_INPUT;
return ret;
}
--- 1736,1762 ----
RGB. */
/* If we fail to lookup the color name in w32_color_map, then check the
! colorname to see if it can be crudely approximated: If the X color
ends in a number (e.g., "darkseagreen2"), strip the number and
return the result of looking up the base color name. */
ret = w32_color_map_lookup (colorname);
! if (NILP (ret))
{
int len = strlen (colorname);
! if (isdigit (colorname[len - 1]))
{
char *ptr, *approx = alloca (len + 1);
strcpy (approx, colorname);
ptr = &approx[len - 1];
! while (ptr > approx && isdigit (*ptr))
*ptr-- = '\0';
ret = w32_color_map_lookup (approx);
}
}
!
UNBLOCK_INPUT;
return ret;
}
***************
*** 1911,1917 ****
tem = x_to_w32_color (color);
! if (!NILP (tem))
{
if (f)
{
--- 1911,1917 ----
tem = x_to_w32_color (color);
! if (!NILP (tem))
{
if (f)
{
***************
*** 1928,1934 ****
one_w32_display_info.color_list;
struct w32_palette_entry ** prev =
&one_w32_display_info.color_list;
!
/* check if color is already mapped */
while (entry)
{
--- 1928,1934 ----
one_w32_display_info.color_list;
struct w32_palette_entry ** prev =
&one_w32_display_info.color_list;
!
/* check if color is already mapped */
while (entry)
{
***************
*** 1964,1970 ****
return 1;
}
! else
{
return 0;
}
--- 1964,1970 ----
return 1;
}
! else
{
return 0;
}
***************
*** 2166,2172 ****
else
hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
!
x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
if (!EQ (Qnil, Vx_mode_pointer_shape))
{
--- 2166,2172 ----
else
hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
!
x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
if (!EQ (Qnil, Vx_mode_pointer_shape))
{
***************
*** 2249,2255 ****
&& f->output_data.w32->modeline_cursor != 0)
XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
f->output_data.w32->modeline_cursor = mode_cursor;
!
if (cross_cursor != f->output_data.w32->cross_cursor
&& f->output_data.w32->cross_cursor != 0)
XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor);
--- 2249,2255 ----
&& f->output_data.w32->modeline_cursor != 0)
XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
f->output_data.w32->modeline_cursor = mode_cursor;
!
if (cross_cursor != f->output_data.w32->cross_cursor
&& f->output_data.w32->cross_cursor != 0)
XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->cross_cursor);
***************
*** 2279,2285 ****
fore_pixel = FRAME_BACKGROUND_PIXEL (f);
pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
!
/* Make sure that the cursor color differs from the background color. */
if (pixel == FRAME_BACKGROUND_PIXEL (f))
{
--- 2279,2285 ----
fore_pixel = FRAME_BACKGROUND_PIXEL (f);
pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
!
/* Make sure that the cursor color differs from the background color. */
if (pixel == FRAME_BACKGROUND_PIXEL (f))
{
***************
*** 2312,2318 ****
/* Set the border-color of frame F to pixel value PIX.
Note that this does not fully take effect if done before
! F has an window. */
void
x_set_border_pixel (f, pix)
struct frame *f;
--- 2312,2318 ----
/* Set the border-color of frame F to pixel value PIX.
Note that this does not fully take effect if done before
! F has a window. */
void
x_set_border_pixel (f, pix)
struct frame *f;
***************
*** 2369,2375 ****
if (NILP (arg) && NILP (oldval))
return;
! if (STRINGP (arg) && STRINGP (oldval)
&& EQ (Fstring_equal (oldval, arg), Qt))
return;
--- 2369,2375 ----
if (NILP (arg) && NILP (oldval))
return;
! if (STRINGP (arg) && STRINGP (oldval)
&& EQ (Fstring_equal (oldval, arg), Qt))
return;
***************
*** 2474,2480 ****
? x_new_fontset (f, SDATA (fontset_name))
: x_new_font (f, SDATA (arg)));
UNBLOCK_INPUT;
!
if (EQ (result, Qnil))
error ("Font `%s' is not defined", SDATA (arg));
else if (EQ (result, Qt))
--- 2474,2480 ----
? x_new_fontset (f, SDATA (fontset_name))
: x_new_font (f, SDATA (arg)));
UNBLOCK_INPUT;
!
if (EQ (result, Qnil))
error ("Font `%s' is not defined", SDATA (arg));
else if (EQ (result, Qt))
***************
*** 2741,2747 ****
Lisp_Object name;
int explicit;
{
! /* Make sure that requests from lisp code override requests from
Emacs redisplay code. */
if (explicit)
{
--- 2741,2747 ----
Lisp_Object name;
int explicit;
{
! /* Make sure that requests from lisp code override requests from
Emacs redisplay code. */
if (explicit)
{
***************
*** 2889,2895 ****
/* Put scroll bars on the right by default, as is conventional
on MS-Windows. */
EQ (Qleft, arg)
! ? vertical_scroll_bar_left
: vertical_scroll_bar_right;
/* We set this parameter before creating the window for the
--- 2889,2895 ----
/* Put scroll bars on the right by default, as is conventional
on MS-Windows. */
EQ (Qleft, arg)
! ? vertical_scroll_bar_left
: vertical_scroll_bar_right;
/* We set this parameter before creating the window for the
***************
*** 2930,2939 ****
}
change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
! XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
}
! /* Subroutines of creating an frame. */
/* Make sure that Vx_resource_name is set to a reasonable value.
Fix it up, or set it to `emacs' if it is too hopeless. */
--- 2930,2939 ----
}
change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
! XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
}
! /* Subroutines of creating a frame. */
/* Make sure that Vx_resource_name is set to a reasonable value.
Fix it up, or set it to `emacs' if it is too hopeless. */
***************
*** 3160,3166 ****
if (!strcmp (SDATA (tem), "on")
|| !strcmp (SDATA (tem), "true"))
return Qt;
! else
return Qnil;
case RES_TYPE_STRING:
--- 3160,3166 ----
if (!strcmp (SDATA (tem), "on")
|| !strcmp (SDATA (tem), "true"))
return Qt;
! else
return Qnil;
case RES_TYPE_STRING:
***************
*** 3425,3431 ****
extern LRESULT CALLBACK w32_wnd_proc ();
! BOOL
w32_init_class (hinst)
HINSTANCE hinst;
{
--- 3425,3431 ----
extern LRESULT CALLBACK w32_wnd_proc ();
! BOOL
w32_init_class (hinst)
HINSTANCE hinst;
{
***************
*** 3445,3451 ****
return (RegisterClass (&wc));
}
! HWND
w32_createscrollbar (f, bar)
struct frame *f;
struct scroll_bar * bar;
--- 3445,3451 ----
return (RegisterClass (&wc));
}
! HWND
w32_createscrollbar (f, bar)
struct frame *f;
struct scroll_bar * bar;
***************
*** 3453,3459 ****
return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
/* Position and size of scroll bar. */
XINT(bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
! XINT(bar->top),
XINT(bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
XINT(bar->height),
FRAME_W32_WINDOW (f),
--- 3453,3459 ----
return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
/* Position and size of scroll bar. */
XINT(bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
! XINT(bar->top),
XINT(bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
XINT(bar->height),
FRAME_W32_WINDOW (f),
***************
*** 3462,3468 ****
NULL));
}
! void
w32_createwindow (f)
struct frame *f;
{
--- 3462,3468 ----
NULL));
}
! void
w32_createwindow (f)
struct frame *f;
{
***************
*** 3472,3488 ****
rect.left = rect.top = 0;
rect.right = PIXEL_WIDTH (f);
rect.bottom = PIXEL_HEIGHT (f);
!
AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
FRAME_EXTERNAL_MENU_BAR (f));
!
/* Do first time app init */
!
if (!hprevinst)
{
w32_init_class (hinst);
}
!
FRAME_W32_WINDOW (f) = hwnd
= CreateWindow (EMACS_CLASS,
f->namebuf,
--- 3472,3488 ----
rect.left = rect.top = 0;
rect.right = PIXEL_WIDTH (f);
rect.bottom = PIXEL_HEIGHT (f);
!
AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
FRAME_EXTERNAL_MENU_BAR (f));
!
/* Do first time app init */
!
if (!hprevinst)
{
w32_init_class (hinst);
}
!
FRAME_W32_WINDOW (f) = hwnd
= CreateWindow (EMACS_CLASS,
f->namebuf,
***************
*** 3506,3518 ****
/* Enable drag-n-drop. */
DragAcceptFiles (hwnd, TRUE);
!
/* Do this to discard the default setting specified by our parent. */
ShowWindow (hwnd, SW_HIDE);
}
}
! void
my_post_msg (wmsg, hwnd, msg, wParam, lParam)
W32Msg * wmsg;
HWND hwnd;
--- 3506,3518 ----
/* Enable drag-n-drop. */
DragAcceptFiles (hwnd, TRUE);
!
/* Do this to discard the default setting specified by our parent. */
ShowWindow (hwnd, SW_HIDE);
}
}
! void
my_post_msg (wmsg, hwnd, msg, wParam, lParam)
W32Msg * wmsg;
HWND hwnd;
***************
*** 3609,3615 ****
}
/* Emacs can lose focus while a modifier key has been pressed. When
! it regains focus, be conservative and clear all modifiers since
we cannot reconstruct the left and right modifier state. */
static void
reset_modifiers ()
--- 3609,3615 ----
}
/* Emacs can lose focus while a modifier key has been pressed. When
! it regains focus, be conservative and clear all modifiers since
we cannot reconstruct the left and right modifier state. */
static void
reset_modifiers ()
***************
*** 3664,3673 ****
if (!modifiers_recorded)
return;
! if (!(GetKeyState (VK_CONTROL) & 0x8000))
modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
! if (!(GetKeyState (VK_MENU) & 0x8000))
modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
}
--- 3664,3673 ----
if (!modifiers_recorded)
return;
! if (!(GetKeyState (VK_CONTROL) & 0x8000))
modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
! if (!(GetKeyState (VK_MENU) & 0x8000))
modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
}
***************
*** 3877,3883 ****
HWND focus_window;
msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
!
while (GetMessage (&msg, NULL, 0, 0))
{
if (msg.hwnd == NULL)
--- 3877,3883 ----
HWND focus_window;
msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
!
while (GetMessage (&msg, NULL, 0, 0))
{
if (msg.hwnd == NULL)
***************
*** 4067,4073 ****
PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
}
! DWORD
w32_msg_worker (dw)
DWORD dw;
{
--- 4067,4073 ----
PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
}
! DWORD
w32_msg_worker (dw)
DWORD dw;
{
***************
*** 4075,4083 ****
deferred_msg dummy_buf;
/* Ensure our message queue is created */
!
PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
!
if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
abort ();
--- 4075,4083 ----
deferred_msg dummy_buf;
/* Ensure our message queue is created */
!
PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
!
if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
abort ();
***************
*** 4156,4162 ****
/* Main window procedure */
! LRESULT CALLBACK
w32_wnd_proc (hwnd, msg, wParam, lParam)
HWND hwnd;
UINT msg;
--- 4156,4162 ----
/* Main window procedure */
! LRESULT CALLBACK
w32_wnd_proc (hwnd, msg, wParam, lParam)
HWND hwnd;
UINT msg;
***************
*** 4185,4191 ****
w32_clear_rect, because these functions must obtain a DC handle
from the frame struct using get_frame_dc which is thread-aware. */
! switch (msg)
{
case WM_ERASEBKGND:
f = x_window_to_frame (dpyinfo, hwnd);
--- 4185,4191 ----
w32_clear_rect, because these functions must obtain a DC handle
from the frame struct using get_frame_dc which is thread-aware. */
! switch (msg)
{
case WM_ERASEBKGND:
f = x_window_to_frame (dpyinfo, hwnd);
***************
*** 4254,4260 ****
leave_crit ();
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
!
return 0;
}
--- 4254,4260 ----
leave_crit ();
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
!
return 0;
}
***************
*** 4374,4386 ****
return 0;
break;
case VK_MENU:
! if (NILP (Vw32_pass_alt_to_system))
/* Prevent DefWindowProc from activating the menu bar if an
Alt key is pressed and released by itself. */
return 0;
windows_translate = 1;
break;
! case VK_CAPITAL:
/* Decide whether to treat as modifier or function key. */
if (NILP (Vw32_enable_caps_lock))
goto disable_lock_key;
--- 4374,4386 ----
return 0;
break;
case VK_MENU:
! if (NILP (Vw32_pass_alt_to_system))
/* Prevent DefWindowProc from activating the menu bar if an
Alt key is pressed and released by itself. */
return 0;
windows_translate = 1;
break;
! case VK_CAPITAL:
/* Decide whether to treat as modifier or function key. */
if (NILP (Vw32_enable_caps_lock))
goto disable_lock_key;
***************
*** 4417,4423 ****
w32_get_key_modifiers (wParam, lParam));
windows_translate = 1;
break;
! case VK_CONTROL:
case VK_SHIFT:
case VK_PROCESSKEY: /* Generated by IME. */
windows_translate = 1;
--- 4417,4423 ----
w32_get_key_modifiers (wParam, lParam));
windows_translate = 1;
break;
! case VK_CONTROL:
case VK_SHIFT:
case VK_PROCESSKEY: /* Generated by IME. */
windows_translate = 1;
***************
*** 4475,4481 ****
int add;
int isdead = 0;
KEY_EVENT_RECORD key;
!
key.bKeyDown = TRUE;
key.wRepeatCount = 1;
key.wVirtualKeyCode = wParam;
--- 4475,4481 ----
int add;
int isdead = 0;
KEY_EVENT_RECORD key;
!
key.bKeyDown = TRUE;
key.wRepeatCount = 1;
key.wVirtualKeyCode = wParam;
***************
*** 4516,4522 ****
}
/* Fall through */
!
case WM_SYSCHAR:
case WM_CHAR:
post_character_message (hwnd, msg, wParam, lParam,
--- 4516,4522 ----
}
/* Fall through */
!
case WM_SYSCHAR:
case WM_CHAR:
post_character_message (hwnd, msg, wParam, lParam,
***************
*** 4652,4658 ****
{
if (up) ReleaseCapture ();
else SetCapture (hwnd);
! button = (button == 0) ? LMOUSE :
((button == 1) ? MMOUSE : RMOUSE);
if (up)
button_state &= ~button;
--- 4652,4658 ----
{
if (up) ReleaseCapture ();
else SetCapture (hwnd);
! button = (button == 0) ? LMOUSE :
((button == 1) ? MMOUSE : RMOUSE);
if (up)
button_state &= ~button;
***************
*** 4660,4666 ****
button_state |= button;
}
}
!
wmsg.dwModifiers = w32_get_modifiers ();
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
--- 4660,4666 ----
button_state |= button;
}
}
!
wmsg.dwModifiers = w32_get_modifiers ();
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
***************
*** 4693,4699 ****
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
return 0;
}
!
/* Hang onto mouse move and scroll messages for a bit, to avoid
sending such events to Emacs faster than it can process them.
If we get more events before the timer from the first message
--- 4693,4699 ----
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
return 0;
}
!
/* Hang onto mouse move and scroll messages for a bit, to avoid
sending such events to Emacs faster than it can process them.
If we get more events before the timer from the first message
***************
*** 4711,4717 ****
saved_mouse_move_msg.msg.lParam = lParam;
saved_mouse_move_msg.msg.time = GetMessageTime ();
saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
!
return 0;
case WM_MOUSEWHEEL:
--- 4711,4717 ----
saved_mouse_move_msg.msg.lParam = lParam;
saved_mouse_move_msg.msg.time = GetMessageTime ();
saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
!
return 0;
case WM_MOUSEWHEEL:
***************
*** 4759,4765 ****
}
}
return 0;
!
case WM_NCACTIVATE:
/* Windows doesn't send us focus messages when putting up and
taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
--- 4759,4765 ----
}
}
return 0;
!
case WM_NCACTIVATE:
/* Windows doesn't send us focus messages when putting up and
taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
***************
*** 4963,4969 ****
if (menu_free_timer)
{
KillTimer (hwnd, menu_free_timer);
! menu_free_timer = 0;
}
}
case WM_MOVE:
--- 4963,4969 ----
if (menu_free_timer)
{
KillTimer (hwnd, menu_free_timer);
! menu_free_timer = 0;
}
}
case WM_MOVE:
***************
*** 4988,4994 ****
wp.length = sizeof (WINDOWPLACEMENT);
GetWindowPlacement (hwnd, &wp);
!
if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
{
RECT rect;
--- 4988,4994 ----
wp.length = sizeof (WINDOWPLACEMENT);
GetWindowPlacement (hwnd, &wp);
!
if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
{
RECT rect;
***************
*** 4999,5019 ****
DWORD internal_border;
DWORD scrollbar_extra;
RECT wr;
!
wp.length = sizeof(wp);
GetWindowRect (hwnd, &wr);
!
enter_crit ();
!
font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
!
leave_crit ();
!
memset (&rect, 0, sizeof (rect));
! AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
GetMenu (hwnd) != NULL);
/* Force width and height of client area to be exact
--- 4999,5019 ----
DWORD internal_border;
DWORD scrollbar_extra;
RECT wr;
!
wp.length = sizeof(wp);
GetWindowRect (hwnd, &wr);
!
enter_crit ();
!
font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
!
leave_crit ();
!
memset (&rect, 0, sizeof (rect));
! AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
GetMenu (hwnd) != NULL);
/* Force width and height of client area to be exact
***************
*** 5024,5040 ****
hdiff = (lppos->cy - (rect.bottom - rect.top)
- 2 * internal_border)
% line_height;
!
if (wdiff || hdiff)
{
! /* For right/bottom sizing we can just fix the sizes.
! However for top/left sizing we will need to fix the X
and Y positions as well. */
!
lppos->cx -= wdiff;
lppos->cy -= hdiff;
!
! if (wp.showCmd != SW_SHOWMAXIMIZED
&& (lppos->flags & SWP_NOMOVE) == 0)
{
if (lppos->x != wr.left || lppos->y != wr.top)
--- 5024,5040 ----
hdiff = (lppos->cy - (rect.bottom - rect.top)
- 2 * internal_border)
% line_height;
!
if (wdiff || hdiff)
{
! /* For right/bottom sizing we can just fix the sizes.
! However for top/left sizing we will need to fix the X
and Y positions as well. */
!
lppos->cx -= wdiff;
lppos->cy -= hdiff;
!
! if (wp.showCmd != SW_SHOWMAXIMIZED
&& (lppos->flags & SWP_NOMOVE) == 0)
{
if (lppos->x != wr.left || lppos->y != wr.top)
***************
*** 5047,5058 ****
lppos->flags |= SWP_NOMOVE;
}
}
!
return 0;
}
}
}
!
goto dflt;
case WM_GETMINMAXINFO:
--- 5047,5058 ----
lppos->flags |= SWP_NOMOVE;
}
}
!
return 0;
}
}
}
!
goto dflt;
case WM_GETMINMAXINFO:
***************
*** 5130,5136 ****
CreateCaret (hwnd, NULL, 0,
w32_system_caret_height);
}
!
if (!SetCaretPos (w32_system_caret_x, w32_system_caret_y))
return 0;
/* Ensure visible caret gets turned on when requested. */
--- 5130,5136 ----
CreateCaret (hwnd, NULL, 0,
w32_system_caret_height);
}
!
if (!SetCaretPos (w32_system_caret_x, w32_system_caret_y))
return 0;
/* Ensure visible caret gets turned on when requested. */
***************
*** 5161,5167 ****
flags |= TPM_LEFTBUTTON;
else if (button_state & RMOUSE)
flags |= TPM_RIGHTBUTTON;
!
/* Remember we did a SetCapture on the initial mouse down event,
so for safety, we make sure the capture is cancelled now. */
ReleaseCapture ();
--- 5161,5167 ----
flags |= TPM_LEFTBUTTON;
else if (button_state & RMOUSE)
flags |= TPM_RIGHTBUTTON;
!
/* Remember we did a SetCapture on the initial mouse down event,
so for safety, we make sure the capture is cancelled now. */
ReleaseCapture ();
***************
*** 5172,5179 ****
f = x_window_to_frame (dpyinfo, hwnd);
if (f)
f->output_data.w32->menubar_active = 1;
!
! if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
0, hwnd, NULL))
{
MSG amsg;
--- 5172,5179 ----
f = x_window_to_frame (dpyinfo, hwnd);
if (f)
f->output_data.w32->menubar_active = 1;
!
! if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
0, hwnd, NULL))
{
MSG amsg;
***************
*** 5206,5222 ****
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
return 0;
}
!
dflt:
return DefWindowProc (hwnd, msg, wParam, lParam);
}
!
/* The most common default return code for handled messages is 0. */
return 0;
}
! void
my_create_window (f)
struct frame * f;
{
--- 5206,5222 ----
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
return 0;
}
!
dflt:
return DefWindowProc (hwnd, msg, wParam, lParam);
}
!
/* The most common default return code for handled messages is 0. */
return 0;
}
! void
my_create_window (f)
struct frame * f;
{
***************
*** 5232,5238 ****
indirectly via the Window thread, as we do not need to process Window
messages for the tooltip. Creating tooltips indirectly also creates
deadlocks when tooltips are created for menu items. */
! void
my_create_tip_window (f)
struct frame *f;
{
--- 5232,5238 ----
indirectly via the Window thread, as we do not need to process Window
messages for the tooltip. Creating tooltips indirectly also creates
deadlocks when tooltips are created for menu items. */
! void
my_create_tip_window (f)
struct frame *f;
{
***************
*** 5289,5295 ****
for the window manager, so GC relocation won't bother it.
Elsewhere we specify the window name for the window manager. */
!
{
char *str = (char *) SDATA (Vx_resource_name);
f->namebuf = (char *) xmalloc (strlen (str) + 1);
--- 5289,5295 ----
for the window manager, so GC relocation won't bother it.
Elsewhere we specify the window name for the window manager. */
!
{
char *str = (char *) SDATA (Vx_resource_name);
f->namebuf = (char *) xmalloc (strlen (str) + 1);
***************
*** 5413,5419 ****
#ifdef GLYPH_DEBUG
struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
#endif
!
x_free_frame_resources (f);
/* Check that reference counts are indeed correct. */
--- 5413,5419 ----
#ifdef GLYPH_DEBUG
struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
#endif
!
x_free_frame_resources (f);
/* Check that reference counts are indeed correct. */
***************
*** 5422,5428 ****
return Qt;
}
!
return Qnil;
}
--- 5422,5428 ----
return Qt;
}
!
return Qnil;
}
***************
*** 5586,5592 ****
if (! STRINGP (font))
font = build_string ("Fixedsys");
! x_default_parameter (f, parms, Qfont, font,
"font", "Font", RES_TYPE_STRING);
}
--- 5586,5592 ----
if (! STRINGP (font))
font = build_string ("Fixedsys");
! x_default_parameter (f, parms, Qfont, font,
"font", "Font", RES_TYPE_STRING);
}
***************
*** 5639,5645 ****
end up in init_iterator with a null face cache, which should not
happen. */
init_frame_faces (f);
!
x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
"menuBar", "MenuBar", RES_TYPE_NUMBER);
x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
--- 5639,5645 ----
end up in init_iterator with a null face cache, which should not
happen. */
init_frame_faces (f);
!
x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
"menuBar", "MenuBar", RES_TYPE_NUMBER);
x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
***************
*** 5664,5670 ****
if (FRAME_TOOL_BAR_LINES (f))
{
int margin, relief, bar_height;
!
relief = (tool_bar_button_relief >= 0
? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF);
--- 5664,5670 ----
if (FRAME_TOOL_BAR_LINES (f))
{
int margin, relief, bar_height;
!
relief = (tool_bar_button_relief >= 0
? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF);
***************
*** 5678,5684 ****
margin = XFASTINT (XCDR (Vtool_bar_button_margin));
else
margin = 0;
!
bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
f->height += (bar_height + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
}
--- 5678,5684 ----
margin = XFASTINT (XCDR (Vtool_bar_button_margin));
else
margin = 0;
!
bar_height = DEFAULT_TOOL_BAR_IMAGE_HEIGHT + 2 * margin + 2 * relief;
f->height += (bar_height + CANON_Y_UNIT (f) - 1) / CANON_Y_UNIT (f);
}
***************
*** 5776,5786 ****
;
}
UNGCPRO;
!
/* Make sure windows on this frame appear in calls to next-window
and similar functions. */
Vwindow_list = Qnil;
!
return unbind_to (count, frame);
}
--- 5776,5786 ----
;
}
UNGCPRO;
!
/* Make sure windows on this frame appear in calls to next-window
and similar functions. */
Vwindow_list = Qnil;
!
return unbind_to (count, frame);
}
***************
*** 5917,5927 ****
font->hfont = CreateFontIndirect (&lf);
! if (font->hfont == NULL)
{
ok = FALSE;
! }
! else
{
HDC hdc;
HANDLE oldobj;
--- 5917,5927 ----
font->hfont = CreateFontIndirect (&lf);
! if (font->hfont == NULL)
{
ok = FALSE;
! }
! else
{
HDC hdc;
HANDLE oldobj;
***************
*** 6090,6101 ****
}
! void
w32_unload_font (dpyinfo, font)
struct w32_display_info *dpyinfo;
XFontStruct * font;
{
! if (font)
{
if (font->per_char) xfree (font->per_char);
if (font->bdf) w32_free_bdf_font (font->bdf);
--- 6090,6101 ----
}
! void
w32_unload_font (dpyinfo, font)
struct w32_display_info *dpyinfo;
XFontStruct * font;
{
! if (font)
{
if (font->per_char) xfree (font->per_char);
if (font->bdf) w32_free_bdf_font (font->bdf);
***************
*** 6128,6134 ****
* )
*/
! static LONG
x_to_w32_weight (lpw)
char * lpw;
{
--- 6128,6134 ----
* )
*/
! static LONG
x_to_w32_weight (lpw)
char * lpw;
{
***************
*** 6149,6155 ****
}
! static char *
w32_to_x_weight (fnweight)
int fnweight;
{
--- 6149,6155 ----
}
! static char *
w32_to_x_weight (fnweight)
int fnweight;
{
***************
*** 6336,6342 ****
sprintf (buf, "*-#%u", fncharset);
return buf;
}
!
{
Lisp_Object rest;
char * best_match = NULL;
--- 6336,6342 ----
sprintf (buf, "*-#%u", fncharset);
return buf;
}
!
{
Lisp_Object rest;
char * best_match = NULL;
***************
*** 6390,6396 ****
int this_enc = atoi (x_charset + 8);
if (this_enc > 0 && this_enc < best_enc)
best_match = x_charset;
! }
}
}
--- 6390,6396 ----
int this_enc = atoi (x_charset + 8);
if (this_enc > 0 && this_enc < best_enc)
best_match = x_charset;
! }
}
}
***************
*** 6497,6503 ****
sprintf (buf, "*-#%u", fncharset);
return Fcons (build_string (buf), Qnil);
}
!
{
Lisp_Object rest;
/* Look through w32-charset-info-alist for the character set.
--- 6497,6503 ----
sprintf (buf, "*-#%u", fncharset);
return Fcons (build_string (buf), Qnil);
}
!
{
Lisp_Object rest;
/* Look through w32-charset-info-alist for the character set.
***************
*** 6548,6554 ****
/* Get the Windows codepage corresponding to the specified font. The
charset info in the font name is used to look up
w32-charset-to-codepage-alist. */
! int
w32_codepage_for_font (char *fontname)
{
Lisp_Object codepage, entry;
--- 6548,6554 ----
/* Get the Windows codepage corresponding to the specified font. The
charset info in the font name is used to look up
w32-charset-to-codepage-alist. */
! int
w32_codepage_for_font (char *fontname)
{
Lisp_Object codepage, entry;
***************
*** 6599,6605 ****
}
! static BOOL
w32_to_x_font (lplogfont, lpxstr, len, specific_charset)
LOGFONT * lplogfont;
char * lpxstr;
--- 6599,6605 ----
}
! static BOOL
w32_to_x_font (lplogfont, lpxstr, len, specific_charset)
LOGFONT * lplogfont;
char * lpxstr;
***************
*** 6682,6688 ****
? 'p' : 'c', /* spacing */
width_pixels, /* avg width */
specific_charset ? specific_charset
! : w32_to_x_charset (lplogfont->lfCharSet)
/* charset registry and encoding */
);
--- 6682,6688 ----
? 'p' : 'c', /* spacing */
width_pixels, /* avg width */
specific_charset ? specific_charset
! : w32_to_x_charset (lplogfont->lfCharSet)
/* charset registry and encoding */
);
***************
*** 6690,6696 ****
return (TRUE);
}
! static BOOL
x_to_w32_font (lpxstr, lplogfont)
char * lpxstr;
LOGFONT * lplogfont;
--- 6690,6696 ----
return (TRUE);
}
! static BOOL
x_to_w32_font (lpxstr, lplogfont)
char * lpxstr;
LOGFONT * lplogfont;
***************
*** 6725,6731 ****
* format:
* "<font name>[:height in pixels[:width in pixels[:weight]]]"
*/
!
if (*lpxstr == '-')
{
int fields, tem;
--- 6725,6731 ----
* format:
* "<font name>[:height in pixels[:width in pixels[:weight]]]"
*/
!
if (*lpxstr == '-')
{
int fields, tem;
***************
*** 6993,6999 ****
}
/* Assume parameter 1 is fully qualified, no wildcards. */
! static BOOL
w32_font_match (fontname, pattern)
char * fontname;
char * pattern;
--- 6993,6999 ----
}
/* Assume parameter 1 is fully qualified, no wildcards. */
! static BOOL
w32_font_match (fontname, pattern)
char * fontname;
char * pattern;
***************
*** 7055,7061 ****
font from each family, the second pass lists all the fonts from
each family. */
! typedef struct enumfont_t
{
HDC hdc;
int numFonts;
--- 7055,7061 ----
font from each family, the second pass lists all the fonts from
each family. */
! typedef struct enumfont_t
{
HDC hdc;
int numFonts;
***************
*** 7070,7076 ****
enum_font_maybe_add_to_list (enumfont_t *, LOGFONT *, char *, Lisp_Object);
! static int CALLBACK
enum_font_cb2 (lplf, lptm, FontType, lpef)
ENUMLOGFONT * lplf;
NEWTEXTMETRIC * lptm;
--- 7070,7076 ----
enum_font_maybe_add_to_list (enumfont_t *, LOGFONT *, char *, Lisp_Object);
! static int CALLBACK
enum_font_cb2 (lplf, lptm, FontType, lpef)
ENUMLOGFONT * lplf;
NEWTEXTMETRIC * lptm;
***************
*** 7226,7232 ****
}
! static int CALLBACK
enum_font_cb1 (lplf, lptm, FontType, lpef)
ENUMLOGFONT * lplf;
NEWTEXTMETRIC * lptm;
--- 7226,7232 ----
}
! static int CALLBACK
enum_font_cb1 (lplf, lptm, FontType, lpef)
ENUMLOGFONT * lplf;
NEWTEXTMETRIC * lptm;
***************
*** 7413,7419 ****
newlist = second_best = Qnil;
! /* Make a list of the fonts that have the right width. */
for (; CONSP (list); list = XCDR (list))
{
int found_size;
--- 7413,7419 ----
newlist = second_best = Qnil;
! /* Make a list of the fonts that have the right width. */
for (; CONSP (list); list = XCDR (list))
{
int found_size;
***************
*** 7475,7481 ****
{
if (NILP (second_best))
second_best = tem;
!
else if (found_size < size)
{
if (XINT (XCDR (second_best)) > size
--- 7475,7481 ----
{
if (NILP (second_best))
second_best = tem;
!
else if (found_size < size)
{
if (XINT (XCDR (second_best)) > size
***************
*** 7761,7769 ****
and because probably is more meaningful on Windows anyway */
if (cap < 0)
cap = 1 << min(dpyinfo->n_planes * dpyinfo->n_cbits, 24);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
--- 7761,7769 ----
and because probably is more meaningful on Windows anyway */
if (cap < 0)
cap = 1 << min(dpyinfo->n_planes * dpyinfo->n_cbits, 24);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
***************
*** 7835,7845 ****
int cap;
hdc = GetDC (dpyinfo->root_window);
!
cap = GetDeviceCaps (hdc, VERTSIZE);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
--- 7835,7845 ----
int cap;
hdc = GetDC (dpyinfo->root_window);
!
cap = GetDeviceCaps (hdc, VERTSIZE);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
***************
*** 7857,7867 ****
int cap;
hdc = GetDC (dpyinfo->root_window);
!
cap = GetDeviceCaps (hdc, HORZSIZE);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
--- 7857,7867 ----
int cap;
hdc = GetDC (dpyinfo->root_window);
!
cap = GetDeviceCaps (hdc, HORZSIZE);
!
ReleaseDC (dpyinfo->root_window, hdc);
!
return make_number (cap);
}
***************
*** 8226,8232 ****
Lisp_Object object;
{
int valid_p = 0;
!
if (CONSP (object) && EQ (XCAR (object), Qimage))
{
Lisp_Object tem;
--- 8226,8232 ----
Lisp_Object object;
{
int valid_p = 0;
!
if (CONSP (object) && EQ (XCAR (object), Qimage))
{
Lisp_Object tem;
***************
*** 8361,8367 ****
was found more than once, it's an error. */
keywords[i].value = value;
++keywords[i].count;
!
if (keywords[i].count > 1)
return 0;
--- 8361,8367 ----
was found more than once, it's an error. */
keywords[i].value = value;
++keywords[i].count;
!
if (keywords[i].count > 1)
return 0;
***************
*** 8416,8422 ****
case IMAGE_FUNCTION_VALUE:
value = indirect_function (value);
! if (SUBRP (value)
|| COMPILEDP (value)
|| (CONSP (value) && EQ (XCAR (value), Qlambda)))
break;
--- 8416,8422 ----
case IMAGE_FUNCTION_VALUE:
value = indirect_function (value);
! if (SUBRP (value)
|| COMPILEDP (value)
|| (CONSP (value) && EQ (XCAR (value), Qlambda)))
break;
***************
*** 8465,8471 ****
int *found;
{
Lisp_Object tail;
!
xassert (valid_image_p (spec));
for (tail = XCDR (spec);
--- 8465,8471 ----
int *found;
{
Lisp_Object tail;
!
xassert (valid_image_p (spec));
for (tail = XCDR (spec);
***************
*** 8479,8490 ****
return XCAR (XCDR (tail));
}
}
!
if (found)
*found = 0;
return Qnil;
}
!
DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
--- 8479,8490 ----
return XCAR (XCDR (tail));
}
}
!
if (found)
*found = 0;
return Qnil;
}
!
DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
***************
*** 8505,8511 ****
struct image *img = IMAGE_FROM_ID (f, id);
int width = img->width + 2 * img->hmargin;
int height = img->height + 2 * img->vmargin;
!
if (NILP (pixels))
size = Fcons (make_float ((double) width / CANON_X_UNIT (f)),
make_float ((double) height / CANON_Y_UNIT (f)));
--- 8505,8511 ----
struct image *img = IMAGE_FROM_ID (f, id);
int width = img->width + 2 * img->hmargin;
int height = img->height + 2 * img->vmargin;
!
if (NILP (pixels))
size = Fcons (make_float ((double) width / CANON_X_UNIT (f)),
make_float ((double) height / CANON_Y_UNIT (f)));
***************
*** 8561,8567 ****
unsigned hash;
{
struct image *img = (struct image *) xmalloc (sizeof *img);
!
xassert (valid_image_p (spec));
bzero (img, sizeof *img);
img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
--- 8561,8567 ----
unsigned hash;
{
struct image *img = (struct image *) xmalloc (sizeof *img);
!
xassert (valid_image_p (spec));
bzero (img, sizeof *img);
img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
***************
*** 8622,8628 ****
if (img->pixmap == 0 && !img->load_failed_p)
img->load_failed_p = img->type->load (f, img) == 0;
}
!
/* Value is the number of pixels for the ascent of image IMG when
drawn in face FACE. */
--- 8622,8628 ----
if (img->pixmap == 0 && !img->load_failed_p)
img->load_failed_p = img->type->load (f, img) == 0;
}
!
/* Value is the number of pixels for the ascent of image IMG when
drawn in face FACE. */
***************
*** 8673,8679 ****
for (i = best_count = 0; i < 4; ++i)
{
int j, n;
!
for (j = n = 0; j < 4; ++j)
if (corners[i] == corners[j])
++n;
--- 8673,8679 ----
for (i = best_count = 0; i < 4; ++i)
{
int j, n;
!
for (j = n = 0; j < 4; ++j)
if (corners[i] == corners[j])
++n;
***************
*** 8793,8799 ****
img->mask = NULL;
img->background_transparent_valid = 0;
}
!
if (colors_p && img->ncolors)
{
#if 0 /* TODO: color table support. */
--- 8793,8799 ----
img->mask = NULL;
img->background_transparent_valid = 0;
}
!
if (colors_p && img->ncolors)
{
#if 0 /* TODO: color table support. */
***************
*** 8825,8831 ****
#if 0 /* TODO: color table support */
int class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
!
/* If display has an immutable color map, freeing colors is not
necessary and some servers don't allow it. So don't do it. */
if (class != StaticColor
--- 8825,8831 ----
#if 0 /* TODO: color table support */
int class = FRAME_W32_DISPLAY_INFO (f)->visual->class;
!
/* If display has an immutable color map, freeing colors is not
necessary and some servers don't allow it. So don't do it. */
if (class != StaticColor
***************
*** 8840,8846 ****
UNBLOCK_INPUT;
}
#endif
!
xfree (img->colors);
img->colors = NULL;
img->ncolors = 0;
--- 8840,8846 ----
UNBLOCK_INPUT;
}
#endif
!
xfree (img->colors);
img->colors = NULL;
img->ncolors = 0;
***************
*** 8899,8905 ****
{
struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
int size;
!
bzero (c, sizeof *c);
c->size = 50;
c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
--- 8899,8905 ----
{
struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
int size;
!
bzero (c, sizeof *c);
c->size = 50;
c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
***************
*** 8924,8930 ****
/* Cache should not be referenced by any frame when freed. */
xassert (c->refcount == 0);
!
for (i = 0; i < c->used; ++i)
free_image (f, c->images[i]);
xfree (c->images);
--- 8924,8930 ----
/* Cache should not be referenced by any frame when freed. */
xassert (c->refcount == 0);
!
for (i = 0; i < c->used; ++i)
free_image (f, c->images[i]);
xfree (c->images);
***************
*** 8957,8967 ****
EMACS_GET_TIME (t);
old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
!
/* Block input so that we won't be interrupted by a SIGIO
while being in an inconsistent state. */
BLOCK_INPUT;
!
for (i = nfreed = 0; i < c->used; ++i)
{
struct image *img = c->images[i];
--- 8957,8967 ----
EMACS_GET_TIME (t);
old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
!
/* Block input so that we won't be interrupted by a SIGIO
while being in an inconsistent state. */
BLOCK_INPUT;
!
for (i = nfreed = 0; i < c->used; ++i)
{
struct image *img = c->images[i];
***************
*** 8980,8986 ****
if (nfreed)
{
Lisp_Object tail, frame;
!
FOR_EACH_FRAME (tail, frame)
{
struct frame *f = XFRAME (frame);
--- 8980,8986 ----
if (nfreed)
{
Lisp_Object tail, frame;
!
FOR_EACH_FRAME (tail, frame)
{
struct frame *f = XFRAME (frame);
***************
*** 9008,9014 ****
if (EQ (frame, Qt))
{
Lisp_Object tail;
!
FOR_EACH_FRAME (tail, frame)
if (FRAME_W32_P (XFRAME (frame)))
clear_image_cache (XFRAME (frame), 1);
--- 9008,9014 ----
if (EQ (frame, Qt))
{
Lisp_Object tail;
!
FOR_EACH_FRAME (tail, frame)
if (FRAME_W32_P (XFRAME (frame)))
clear_image_cache (XFRAME (frame), 1);
***************
*** 9036,9042 ****
Lisp_Object mask;
spec = img->spec;
!
/* `:heuristic-mask t'
`:mask heuristic'
means build a mask heuristically.
--- 9036,9042 ----
Lisp_Object mask;
spec = img->spec;
!
/* `:heuristic-mask t'
`:mask heuristic'
means build a mask heuristically.
***************
*** 9046,9061 ****
image.
`:mask nil'
means remove a mask, if any. */
!
mask = image_spec_value (spec, QCheuristic_mask, NULL);
if (!NILP (mask))
x_build_heuristic_mask (f, img, mask);
else
{
int found_p;
!
mask = image_spec_value (spec, QCmask, &found_p);
!
if (EQ (mask, Qheuristic))
x_build_heuristic_mask (f, img, Qt);
else if (CONSP (mask)
--- 9046,9061 ----
image.
`:mask nil'
means remove a mask, if any. */
!
mask = image_spec_value (spec, QCheuristic_mask, NULL);
if (!NILP (mask))
x_build_heuristic_mask (f, img, mask);
else
{
int found_p;
!
mask = image_spec_value (spec, QCmask, &found_p);
!
if (EQ (mask, Qheuristic))
x_build_heuristic_mask (f, img, Qt);
else if (CONSP (mask)
***************
*** 9072,9079 ****
img->mask = NULL;
}
}
!
!
/* Should we apply an image transformation algorithm? */
conversion = image_spec_value (spec, QCconversion, NULL);
if (EQ (conversion, Qdisabled))
--- 9072,9079 ----
img->mask = NULL;
}
}
!
!
/* Should we apply an image transformation algorithm? */
conversion = image_spec_value (spec, QCconversion, NULL);
if (EQ (conversion, Qdisabled))
***************
*** 9116,9122 ****
specification. */
xassert (FRAME_WINDOW_P (f));
xassert (valid_image_p (spec));
!
GCPRO1 (spec);
/* Look up SPEC in the hash table of the image cache. */
--- 9116,9122 ----
specification. */
xassert (FRAME_WINDOW_P (f));
xassert (valid_image_p (spec));
!
GCPRO1 (spec);
/* Look up SPEC in the hash table of the image cache. */
***************
*** 9175,9181 ****
if (XINT (XCDR (margin)) > 0)
img->vmargin = XFASTINT (XCDR (margin));
}
!
relief = image_spec_value (spec, QCrelief, NULL);
if (INTEGERP (relief))
{
--- 9175,9181 ----
if (XINT (XCDR (margin)) > 0)
img->vmargin = XFASTINT (XCDR (margin));
}
!
relief = image_spec_value (spec, QCrelief, NULL);
if (INTEGERP (relief))
{
***************
*** 9209,9217 ****
/* We're using IMG, so set its timestamp to `now'. */
EMACS_GET_TIME (now);
img->timestamp = EMACS_SECS (now);
!
UNGCPRO;
!
/* Value is the image id. */
return img->id;
}
--- 9209,9217 ----
/* We're using IMG, so set its timestamp to `now'. */
EMACS_GET_TIME (now);
img->timestamp = EMACS_SECS (now);
!
UNGCPRO;
!
/* Value is the image id. */
return img->id;
}
***************
*** 9436,9442 ****
/* Try to find FILE in data-directory, then x-bitmap-file-path. */
fd = openp (search_path, file, Qnil, &file_found, Qnil);
!
if (fd == -1)
file_found = Qnil;
else
--- 9436,9442 ----
/* Try to find FILE in data-directory, then x-bitmap-file-path. */
fd = openp (search_path, file, Qnil, &file_found, Qnil);
!
if (fd == -1)
file_found = Qnil;
else
***************
*** 9478,9484 ****
buf = NULL;
}
}
!
return buf;
}
--- 9478,9484 ----
buf = NULL;
}
}
!
return buf;
}
***************
*** 9557,9563 ****
XBM_TK_NUMBER
};
!
/* Return non-zero if OBJECT is a valid XBM-type image specification.
A valid specification is a list starting with the symbol `image'
The rest of the list is a property list which must contain an
--- 9557,9563 ----
XBM_TK_NUMBER
};
!
/* Return non-zero if OBJECT is a valid XBM-type image specification.
A valid specification is a list starting with the symbol `image'
The rest of the list is a property list which must contain an
***************
*** 9592,9598 ****
Lisp_Object object;
{
struct image_keyword kw[XBM_LAST];
!
bcopy (xbm_format, kw, sizeof kw);
if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
return 0;
--- 9592,9598 ----
Lisp_Object object;
{
struct image_keyword kw[XBM_LAST];
!
bcopy (xbm_format, kw, sizeof kw);
if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
return 0;
***************
*** 9624,9636 ****
data = kw[XBM_DATA].value;
width = XFASTINT (kw[XBM_WIDTH].value);
height = XFASTINT (kw[XBM_HEIGHT].value);
!
/* Check type of data, and width and height against contents of
data. */
if (VECTORP (data))
{
int i;
!
/* Number of elements of the vector must be >= height. */
if (XVECTOR (data)->size < height)
return 0;
--- 9624,9636 ----
data = kw[XBM_DATA].value;
width = XFASTINT (kw[XBM_WIDTH].value);
height = XFASTINT (kw[XBM_HEIGHT].value);
!
/* Check type of data, and width and height against contents of
data. */
if (VECTORP (data))
{
int i;
!
/* Number of elements of the vector must be >= height. */
if (XVECTOR (data)->size < height)
return 0;
***************
*** 9700,9706 ****
else if (isdigit (c))
{
int value = 0, digit;
!
if (c == '0' && *s < end)
{
c = *(*s)++;
--- 9700,9706 ----
else if (isdigit (c))
{
int value = 0, digit;
!
if (c == '0' && *s < end)
{
c = *(*s)++;
***************
*** 9838,9844 ****
if (LA1 != (TOKEN)) \
goto failure; \
else \
! match ()
#define expect_ident(IDENT) \
if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
--- 9838,9844 ----
if (LA1 != (TOKEN)) \
goto failure; \
else \
! match ()
#define expect_ident(IDENT) \
if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
***************
*** 9881,9887 ****
{
if (strcmp (buffer, "unsigned") == 0)
{
! match ();
expect_ident ("char");
}
else if (strcmp (buffer, "short") == 0)
--- 9881,9887 ----
{
if (strcmp (buffer, "unsigned") == 0)
{
! match ();
expect_ident ("char");
}
else if (strcmp (buffer, "short") == 0)
***************
*** 9896,9902 ****
else
goto failure;
}
! else
goto failure;
expect (XBM_TK_IDENT);
--- 9896,9902 ----
else
goto failure;
}
! else
goto failure;
expect (XBM_TK_IDENT);
***************
*** 9919,9925 ****
*p++ = val;
if (!padding_p || ((i + 2) % bytes_per_line))
*p++ = value >> 8;
!
if (LA1 == ',' || LA1 == '}')
match ();
else
--- 9919,9925 ----
*p++ = val;
if (!padding_p || ((i + 2) % bytes_per_line))
*p++ = value >> 8;
!
if (LA1 == ',' || LA1 == '}')
match ();
else
***************
*** 9932,9938 ****
{
int val = value;
expect (XBM_TK_NUMBER);
!
*p++ = val;
if (LA1 == ',' || LA1 == '}')
--- 9932,9938 ----
{
int val = value;
expect (XBM_TK_NUMBER);
!
*p++ = val;
if (LA1 == ',' || LA1 == '}')
***************
*** 9973,9986 ****
int rc;
unsigned char *data;
int success_p = 0;
!
rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
if (rc)
{
unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
unsigned long background = FRAME_BACKGROUND_PIXEL (f);
Lisp_Object value;
!
xassert (img->width > 0 && img->height > 0);
/* Get foreground and background colors, maybe allocate colors. */
--- 9973,9986 ----
int rc;
unsigned char *data;
int success_p = 0;
!
rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
if (rc)
{
unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
unsigned long background = FRAME_BACKGROUND_PIXEL (f);
Lisp_Object value;
!
xassert (img->width > 0 && img->height > 0);
/* Get foreground and background colors, maybe allocate colors. */
***************
*** 10028,10034 ****
&w, &h, NULL));
}
!
/* Fill image IMG which is used on frame F with pixmap data. Value is
non-zero if successful. */
--- 10028,10034 ----
&w, &h, NULL));
}
!
/* Fill image IMG which is used on frame F with pixmap data. Value is
non-zero if successful. */
***************
*** 10120,10126 ****
int i;
char *p;
int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
!
p = bits = (char *) alloca (nbytes * img->height);
for (i = 0; i < img->height; ++i, p += nbytes)
{
--- 10120,10126 ----
int i;
char *p;
int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
!
p = bits = (char *) alloca (nbytes * img->height);
for (i = 0; i < img->height; ++i, p += nbytes)
{
***************
*** 10155,10168 ****
return success_p;
}
!
/***********************************************************************
XPM images
***********************************************************************/
! #if HAVE_XPM
static int xpm_image_p P_ ((Lisp_Object object));
static int xpm_load P_ ((struct frame *f, struct image *img));
--- 10155,10168 ----
return success_p;
}
!
/***********************************************************************
XPM images
***********************************************************************/
! #if HAVE_XPM
static int xpm_image_p P_ ((Lisp_Object object));
static int xpm_load P_ ((struct frame *f, struct image *img));
***************
*** 10300,10306 ****
Lisp_Object tail;
XpmColorSymbol *xpm_syms;
int i, size;
!
attrs.valuemask |= XpmColorSymbols;
/* Count number of symbols. */
--- 10300,10306 ----
Lisp_Object tail;
XpmColorSymbol *xpm_syms;
int i, size;
!
attrs.valuemask |= XpmColorSymbols;
/* Count number of symbols. */
***************
*** 10341,10347 ****
UNBLOCK_INPUT;
return 0;
}
!
rc = XpmReadFileToPixmap (NULL, FRAME_W32_WINDOW (f),
SDATA (file), &img->pixmap, &img->mask,
&attrs);
--- 10341,10347 ----
UNBLOCK_INPUT;
return 0;
}
!
rc = XpmReadFileToPixmap (NULL, FRAME_W32_WINDOW (f),
SDATA (file), &img->pixmap, &img->mask,
&attrs);
***************
*** 10381,10399 ****
case XpmOpenFailed:
image_error ("Error opening XPM file (%s)", img->spec, Qnil);
break;
!
case XpmFileInvalid:
image_error ("Invalid XPM file (%s)", img->spec, Qnil);
break;
!
case XpmNoMemory:
image_error ("Out of memory (%s)", img->spec, Qnil);
break;
!
case XpmColorFailed:
image_error ("Color allocation error (%s)", img->spec, Qnil);
break;
!
default:
image_error ("Unknown error (%s)", img->spec, Qnil);
break;
--- 10381,10399 ----
case XpmOpenFailed:
image_error ("Error opening XPM file (%s)", img->spec, Qnil);
break;
!
case XpmFileInvalid:
image_error ("Invalid XPM file (%s)", img->spec, Qnil);
break;
!
case XpmNoMemory:
image_error ("Out of memory (%s)", img->spec, Qnil);
break;
!
case XpmColorFailed:
image_error ("Color allocation error (%s)", img->spec, Qnil);
break;
!
default:
image_error ("Unknown error (%s)", img->spec, Qnil);
break;
***************
*** 10542,10548 ****
int rc;
BLOCK_INPUT;
!
cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
color.pixel = pixel;
XQueryColor (NULL, cmap, &color);
--- 10542,10548 ----
int rc;
BLOCK_INPUT;
!
cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
color.pixel = pixel;
XQueryColor (NULL, cmap, &color);
***************
*** 10552,10558 ****
if (rc)
{
++ct_colors_allocated;
!
p = (struct ct_color *) xmalloc (sizeof *p);
p->r = color.red;
p->g = color.green;
--- 10552,10558 ----
if (rc)
{
++ct_colors_allocated;
!
p = (struct ct_color *) xmalloc (sizeof *p);
p->r = color.red;
p->g = color.green;
***************
*** 10589,10595 ****
colors = (unsigned long *) xmalloc (ct_colors_allocated
* sizeof *colors);
*n = ct_colors_allocated;
!
for (i = j = 0; i < CT_SIZE; ++i)
for (p = ct_table[i]; p; p = p->next)
colors[j++] = p->pixel;
--- 10589,10595 ----
colors = (unsigned long *) xmalloc (ct_colors_allocated
* sizeof *colors);
*n = ct_colors_allocated;
!
for (i = j = 0; i < CT_SIZE; ++i)
for (p = ct_table[i]; p; p = p->next)
colors[j++] = p->pixel;
***************
*** 10665,10671 ****
for (y = 0; y < img->height; ++y)
{
XColor *row = p;
!
for (x = 0; x < img->width; ++x, ++p)
p->pixel = XGetPixel (ximg, x, y);
--- 10665,10671 ----
for (y = 0; y < img->height; ++y)
{
XColor *row = p;
!
for (x = 0; x < img->width; ++x, ++p)
p->pixel = XGetPixel (ximg, x, y);
***************
*** 10755,10761 ****
MATRIX is a nine-element array specifying the transformation
matrix. See emboss_matrix for an example.
!
COLOR_ADJUST is a color adjustment added to each pixel of the
outgoing image. */
--- 10755,10761 ----
MATRIX is a nine-element array specifying the transformation
matrix. See emboss_matrix for an example.
!
COLOR_ADJUST is a color adjustment added to each pixel of the
outgoing image. */
***************
*** 10783,10789 ****
p = COLOR (new, img->width - 1, y);
p->red = p->green = p->blue = 0xffff/2;
}
!
for (x = 1; x < img->width - 1; ++x)
{
p = COLOR (new, x, 0);
--- 10783,10789 ----
p = COLOR (new, img->width - 1, y);
p->red = p->green = p->blue = 0xffff/2;
}
!
for (x = 1; x < img->width - 1; ++x)
{
p = COLOR (new, x, 0);
***************
*** 10795,10801 ****
for (y = 1; y < img->height - 1; ++y)
{
p = COLOR (new, 1, y);
!
for (x = 1; x < img->width - 1; ++x, ++p)
{
int r, g, b, y1, x1;
--- 10795,10801 ----
for (y = 1; y < img->height - 1; ++y)
{
p = COLOR (new, 1, y);
!
for (x = 1; x < img->width - 1; ++x, ++p)
{
int r, g, b, y1, x1;
***************
*** 10869,10875 ****
{
int i = 0;
int trans[9];
!
if (CONSP (matrix))
{
for (i = 0;
--- 10869,10875 ----
{
int i = 0;
int trans[9];
!
if (CONSP (matrix))
{
for (i = 0;
***************
*** 10992,10998 ****
/* Determine the background color of ximg. If HOW is `(R G B)'
take that as color. Otherwise, use the image's background color. */
use_img_background = 1;
!
if (CONSP (how))
{
int rgb[3], i;
--- 10992,10998 ----
/* Determine the background color of ximg. If HOW is `(R G B)'
take that as color. Otherwise, use the image's background color. */
use_img_background = 1;
!
if (CONSP (how))
{
int rgb[3], i;
***************
*** 11011,11017 ****
use_img_background = 0;
}
}
!
if (use_img_background)
bg = four_corners_best (ximg, img->width, img->height);
--- 11011,11017 ----
use_img_background = 0;
}
}
!
if (use_img_background)
bg = four_corners_best (ximg, img->width, img->height);
***************
*** 11103,11113 ****
Lisp_Object object;
{
struct image_keyword fmt[PBM_LAST];
!
bcopy (pbm_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm)
! || (fmt[PBM_ASCENT].count
&& XFASTINT (fmt[PBM_ASCENT].value) > 100))
return 0;
--- 11103,11113 ----
Lisp_Object object;
{
struct image_keyword fmt[PBM_LAST];
!
bcopy (pbm_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm)
! || (fmt[PBM_ASCENT].count
&& XFASTINT (fmt[PBM_ASCENT].value) > 100))
return 0;
***************
*** 11185,11198 ****
buf = NULL;
}
}
!
return buf;
}
/* Load PBM image IMG for use on frame F. */
! static int
pbm_load (f, img)
struct frame *f;
struct image *img;
--- 11185,11198 ----
buf = NULL;
}
}
!
return buf;
}
/* Load PBM image IMG for use on frame F. */
! static int
pbm_load (f, img)
struct frame *f;
struct image *img;
***************
*** 11255,11261 ****
case '1':
raw_p = 0, type = PBM_MONO;
break;
!
case '2':
raw_p = 0, type = PBM_GRAY;
break;
--- 11255,11261 ----
case '1':
raw_p = 0, type = PBM_MONO;
break;
!
case '2':
raw_p = 0, type = PBM_GRAY;
break;
***************
*** 11267,11277 ****
case '4':
raw_p = 1, type = PBM_MONO;
break;
!
case '5':
raw_p = 1, type = PBM_GRAY;
break;
!
case '6':
raw_p = 1, type = PBM_COLOR;
break;
--- 11267,11277 ----
case '4':
raw_p = 1, type = PBM_MONO;
break;
!
case '5':
raw_p = 1, type = PBM_GRAY;
break;
!
case '6':
raw_p = 1, type = PBM_COLOR;
break;
***************
*** 11292,11298 ****
if (raw_p && max_color_idx > 255)
max_color_idx = 255;
}
!
if (width < 0
|| height < 0
|| (type != PBM_MONO && max_color_idx < 0))
--- 11292,11298 ----
if (raw_p && max_color_idx > 255)
max_color_idx = 255;
}
!
if (width < 0
|| height < 0
|| (type != PBM_MONO && max_color_idx < 0))
***************
*** 11316,11322 ****
/* Parse the image specification. */
bcopy (pbm_format, fmt, sizeof fmt);
parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
!
/* Get foreground and background colors, maybe allocate colors. */
if (fmt[PBM_FOREGROUND].count
&& STRINGP (fmt[PBM_FOREGROUND].value))
--- 11316,11322 ----
/* Parse the image specification. */
bcopy (pbm_format, fmt, sizeof fmt);
parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
!
/* Get foreground and background colors, maybe allocate colors. */
if (fmt[PBM_FOREGROUND].count
&& STRINGP (fmt[PBM_FOREGROUND].value))
***************
*** 11351,11357 ****
for (x = 0; x < width; ++x)
{
int r, g, b;
!
if (type == PBM_GRAY)
r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
else if (raw_p)
--- 11351,11357 ----
for (x = 0; x < width; ++x)
{
int r, g, b;
!
if (type == PBM_GRAY)
r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
else if (raw_p)
***************
*** 11366,11372 ****
g = pbm_scan_number (&p, end);
b = pbm_scan_number (&p, end);
}
!
if (r < 0 || g < 0 || b < 0)
{
x_destroy_x_image (ximg);
--- 11366,11372 ----
g = pbm_scan_number (&p, end);
b = pbm_scan_number (&p, end);
}
!
if (r < 0 || g < 0 || b < 0)
{
x_destroy_x_image (ximg);
***************
*** 11374,11380 ****
img->spec, Qnil);
goto error;
}
!
/* RGB values are now in the range 0..max_color_idx.
Scale this to the range 0..0xff supported by W32. */
r = (int) ((double) r * 255 / max_color_idx);
--- 11374,11380 ----
img->spec, Qnil);
goto error;
}
!
/* RGB values are now in the range 0..max_color_idx.
Scale this to the range 0..0xff supported by W32. */
r = (int) ((double) r * 255 / max_color_idx);
***************
*** 11398,11408 ****
/* Maybe fill in the background field while we have ximg handy. */
if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
IMAGE_BACKGROUND (img, f, ximg);
!
/* Put the image into a pixmap. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
!
img->width = width;
img->height = height;
--- 11398,11408 ----
/* Maybe fill in the background field while we have ximg handy. */
if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
IMAGE_BACKGROUND (img, f, ximg);
!
/* Put the image into a pixmap. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
!
img->width = width;
img->height = height;
***************
*** 11483,11491 ****
{
struct image_keyword fmt[PNG_LAST];
bcopy (png_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, PNG_LAST, Qpng)
! || (fmt[PNG_ASCENT].count
&& XFASTINT (fmt[PNG_ASCENT].value) > 100))
return 0;
--- 11483,11491 ----
{
struct image_keyword fmt[PNG_LAST];
bcopy (png_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, PNG_LAST, Qpng)
! || (fmt[PNG_ASCENT].count
&& XFASTINT (fmt[PNG_ASCENT].value) > 100))
return 0;
***************
*** 11542,11548 ****
if (length > tbr->len - tbr->index)
png_error (png_ptr, "Read error");
!
bcopy (tbr->bytes + tbr->index, data, length);
tbr->index = tbr->index + length;
}
--- 11542,11548 ----
if (length > tbr->len - tbr->index)
png_error (png_ptr, "Read error");
!
bcopy (tbr->bytes + tbr->index, data, length);
tbr->index = tbr->index + length;
}
***************
*** 11685,11698 ****
png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
&interlace_type, NULL, NULL);
! /* If image contains simply transparency data, we prefer to
construct a clipping mask. */
if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
transparent_p = 1;
else
transparent_p = 0;
! /* This function is easier to write if we only have to handle
one data format: RGB or RGBA with 8 bits per channel. Let's
transform other formats into that format. */
--- 11685,11698 ----
png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
&interlace_type, NULL, NULL);
! /* If image contains simply transparency data, we prefer to
construct a clipping mask. */
if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
transparent_p = 1;
else
transparent_p = 0;
! /* This function is easier to write if we only have to handle
one data format: RGB or RGBA with 8 bits per channel. Let's
transform other formats into that format. */
***************
*** 11705,11711 ****
png_set_expand (png_ptr);
/* Convert grayscale images to RGB. */
! if (color_type == PNG_COLOR_TYPE_GRAY
|| color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (png_ptr);
--- 11705,11711 ----
png_set_expand (png_ptr);
/* Convert grayscale images to RGB. */
! if (color_type == PNG_COLOR_TYPE_GRAY
|| color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
png_set_gray_to_rgb (png_ptr);
***************
*** 11756,11769 ****
}
}
else if (png_get_bKGD (png_ptr, info_ptr, &image_background))
! /* Image contains a background color with which to
combine the image. */
png_set_background (png_ptr, image_background,
PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
else
{
/* Image does not contain a background color with which
! to combine the image data via an alpha channel. Use
the frame's background instead. */
XColor color;
Colormap cmap;
--- 11756,11769 ----
}
}
else if (png_get_bKGD (png_ptr, info_ptr, &image_background))
! /* Image contains a background color with which to
combine the image. */
png_set_background (png_ptr, image_background,
PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
else
{
/* Image does not contain a background color with which
! to combine the image data via an alpha channel. Use
the frame's background instead. */
XColor color;
Colormap cmap;
***************
*** 11816,11822 ****
if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
&img->pixmap))
goto error;
!
/* Create an image and pixmap serving as mask if the PNG image
contains an alpha channel. */
if (channels == 4
--- 11816,11822 ----
if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
&img->pixmap))
goto error;
!
/* Create an image and pixmap serving as mask if the PNG image
contains an alpha channel. */
if (channels == 4
***************
*** 11847,11862 ****
XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
/* An alpha channel, aka mask channel, associates variable
! transparency with an image. Where other image formats
! support binary transparency---fully transparent or fully
opaque---PNG allows up to 254 levels of partial transparency.
The PNG library implements partial transparency by combining
the image with a specified background color.
I'm not sure how to handle this here nicely: because the
background on which the image is displayed may change, for
! real alpha channel support, it would be necessary to create
! a new image for each possible background.
What I'm doing now is that a mask is created if we have
boolean transparency information. Otherwise I'm using
--- 11847,11862 ----
XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
/* An alpha channel, aka mask channel, associates variable
! transparency with an image. Where other image formats
! support binary transparency---fully transparent or fully
opaque---PNG allows up to 254 levels of partial transparency.
The PNG library implements partial transparency by combining
the image with a specified background color.
I'm not sure how to handle this here nicely: because the
background on which the image is displayed may change, for
! real alpha channel support, it would be necessary to create
! a new image for each possible background.
What I'm doing now is that a mask is created if we have
boolean transparency information. Otherwise I'm using
***************
*** 12002,12012 ****
Lisp_Object object;
{
struct image_keyword fmt[JPEG_LAST];
!
bcopy (jpeg_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg)
! || (fmt[JPEG_ASCENT].count
&& XFASTINT (fmt[JPEG_ASCENT].value) > 100))
return 0;
--- 12002,12012 ----
Lisp_Object object;
{
struct image_keyword fmt[JPEG_LAST];
!
bcopy (jpeg_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg)
! || (fmt[JPEG_ASCENT].count
&& XFASTINT (fmt[JPEG_ASCENT].value) > 100))
return 0;
***************
*** 12075,12081 ****
{
if (num_bytes > src->bytes_in_buffer)
ERREXIT (cinfo, JERR_INPUT_EOF);
!
src->bytes_in_buffer -= num_bytes;
src->next_input_byte += num_bytes;
}
--- 12075,12081 ----
{
if (num_bytes > src->bytes_in_buffer)
ERREXIT (cinfo, JERR_INPUT_EOF);
!
src->bytes_in_buffer -= num_bytes;
src->next_input_byte += num_bytes;
}
***************
*** 12113,12119 ****
src = (struct jpeg_source_mgr *) cinfo->src;
src->next_input_byte = data;
}
!
src = (struct jpeg_source_mgr *) cinfo->src;
src->init_source = our_init_source;
src->fill_input_buffer = our_fill_input_buffer;
--- 12113,12119 ----
src = (struct jpeg_source_mgr *) cinfo->src;
src->next_input_byte = data;
}
!
src = (struct jpeg_source_mgr *) cinfo->src;
src->init_source = our_init_source;
src->fill_input_buffer = our_fill_input_buffer;
***************
*** 12128,12134 ****
/* Load image IMG for use on frame F. Patterned after example.c
from the JPEG lib. */
! static int
jpeg_load (f, img)
struct frame *f;
struct image *img;
--- 12128,12134 ----
/* Load image IMG for use on frame F. Patterned after example.c
from the JPEG lib. */
! static int
jpeg_load (f, img)
struct frame *f;
struct image *img;
***************
*** 12161,12167 ****
UNGCPRO;
return 0;
}
!
fp = fopen (SDATA (file), "r");
if (fp == NULL)
{
--- 12161,12167 ----
UNGCPRO;
return 0;
}
!
fp = fopen (SDATA (file), "r");
if (fp == NULL)
{
***************
*** 12170,12181 ****
return 0;
}
}
!
/* Customize libjpeg's error handling to call my_error_exit when an
error is detected. This function will perform a longjmp. */
cinfo.err = jpeg_std_error (&mgr.pub);
mgr.pub.error_exit = my_error_exit;
!
if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
{
if (rc == 1)
--- 12170,12181 ----
return 0;
}
}
!
/* Customize libjpeg's error handling to call my_error_exit when an
error is detected. This function will perform a longjmp. */
cinfo.err = jpeg_std_error (&mgr.pub);
mgr.pub.error_exit = my_error_exit;
!
if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
{
if (rc == 1)
***************
*** 12186,12203 ****
image_error ("Error reading JPEG image `%s': %s", img->spec,
build_string (buffer));
}
!
/* Close the input file and destroy the JPEG object. */
if (fp)
fclose (fp);
jpeg_destroy_decompress (&cinfo);
!
/* If we already have an XImage, free that. */
x_destroy_x_image (ximg);
/* Free pixmap and colors. */
x_clear_image (f, img);
!
UNGCPRO;
return 0;
}
--- 12186,12203 ----
image_error ("Error reading JPEG image `%s': %s", img->spec,
build_string (buffer));
}
!
/* Close the input file and destroy the JPEG object. */
if (fp)
fclose (fp);
jpeg_destroy_decompress (&cinfo);
!
/* If we already have an XImage, free that. */
x_destroy_x_image (ximg);
/* Free pixmap and colors. */
x_clear_image (f, img);
!
UNGCPRO;
return 0;
}
***************
*** 12248,12254 ****
init_color_table ();
colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
* sizeof *colors);
!
for (i = 0; i < cinfo.actual_number_of_colors; ++i)
{
/* Multiply RGB values with 255 because X expects RGB values
--- 12248,12254 ----
init_color_table ();
colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
* sizeof *colors);
!
for (i = 0; i < cinfo.actual_number_of_colors; ++i)
{
/* Multiply RGB values with 255 because X expects RGB values
***************
*** 12280,12290 ****
jpeg_destroy_decompress (&cinfo);
if (fp)
fclose (fp);
!
/* Maybe fill in the background field while we have ximg handy. */
if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
IMAGE_BACKGROUND (img, f, ximg);
!
/* Put the image into the pixmap. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
--- 12280,12290 ----
jpeg_destroy_decompress (&cinfo);
if (fp)
fclose (fp);
!
/* Maybe fill in the background field while we have ximg handy. */
if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
IMAGE_BACKGROUND (img, f, ximg);
!
/* Put the image into the pixmap. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
***************
*** 12366,12377 ****
{
struct image_keyword fmt[TIFF_LAST];
bcopy (tiff_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff)
! || (fmt[TIFF_ASCENT].count
&& XFASTINT (fmt[TIFF_ASCENT].value) > 100))
return 0;
!
/* Must specify either the :data or :file keyword. */
return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
}
--- 12366,12377 ----
{
struct image_keyword fmt[TIFF_LAST];
bcopy (tiff_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff)
! || (fmt[TIFF_ASCENT].count
&& XFASTINT (fmt[TIFF_ASCENT].value) > 100))
return 0;
!
/* Must specify either the :data or :file keyword. */
return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
}
***************
*** 12432,12453 ****
case SEEK_SET: /* Go from beginning of source. */
idx = off;
break;
!
case SEEK_END: /* Go from end of source. */
idx = src->len + off;
break;
!
case SEEK_CUR: /* Go from current position. */
idx = src->index + off;
break;
!
default: /* Invalid `whence'. */
return -1;
}
!
if (idx > src->len || idx < 0)
return -1;
!
src->index = idx;
return src->index;
}
--- 12432,12453 ----
case SEEK_SET: /* Go from beginning of source. */
idx = off;
break;
!
case SEEK_END: /* Go from end of source. */
idx = src->len + off;
break;
!
case SEEK_CUR: /* Go from current position. */
idx = src->index + off;
break;
!
default: /* Invalid `whence'. */
return -1;
}
!
if (idx > src->len || idx < 0)
return -1;
!
src->index = idx;
return src->index;
}
***************
*** 12494,12500 ****
{
char buf[512];
int len;
!
len = sprintf (buf, "TIFF error: %s ", title);
vsprintf (buf + len, format, ap);
add_to_log (buf, Qnil, Qnil);
--- 12494,12500 ----
{
char buf[512];
int len;
!
len = sprintf (buf, "TIFF error: %s ", title);
vsprintf (buf + len, format, ap);
add_to_log (buf, Qnil, Qnil);
***************
*** 12508,12514 ****
{
char buf[512];
int len;
!
len = sprintf (buf, "TIFF warning: %s ", title);
vsprintf (buf + len, format, ap);
add_to_log (buf, Qnil, Qnil);
--- 12508,12514 ----
{
char buf[512];
int len;
!
len = sprintf (buf, "TIFF warning: %s ", title);
vsprintf (buf + len, format, ap);
add_to_log (buf, Qnil, Qnil);
***************
*** 12551,12557 ****
UNGCPRO;
return 0;
}
!
/* Try to open the image file. */
tiff = TIFFOpen (SDATA (file), "r");
if (tiff == NULL)
--- 12551,12557 ----
UNGCPRO;
return 0;
}
!
/* Try to open the image file. */
tiff = TIFFOpen (SDATA (file), "r");
if (tiff == NULL)
***************
*** 12590,12596 ****
TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
buf = (uint32 *) xmalloc (width * height * sizeof *buf);
!
rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
TIFFClose (tiff);
if (!rc)
--- 12590,12596 ----
TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
buf = (uint32 *) xmalloc (width * height * sizeof *buf);
!
rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
TIFFClose (tiff);
if (!rc)
***************
*** 12616,12629 ****
for (y = 0; y < height; ++y)
{
uint32 *row = buf + y * width;
!
for (x = 0; x < width; ++x)
{
uint32 abgr = row[x];
int r = TIFFGetR (abgr) << 8;
int g = TIFFGetG (abgr) << 8;
int b = TIFFGetB (abgr) << 8;
! XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
}
}
--- 12616,12629 ----
for (y = 0; y < height; ++y)
{
uint32 *row = buf + y * width;
!
for (x = 0; x < width; ++x)
{
uint32 abgr = row[x];
int r = TIFFGetR (abgr) << 8;
int g = TIFFGetG (abgr) << 8;
int b = TIFFGetB (abgr) << 8;
! XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
}
}
***************
*** 12721,12732 ****
{
struct image_keyword fmt[GIF_LAST];
bcopy (gif_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, GIF_LAST, Qgif)
! || (fmt[GIF_ASCENT].count
&& XFASTINT (fmt[GIF_ASCENT].value) > 100))
return 0;
!
/* Must specify either the :data or :file keyword. */
return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
}
--- 12721,12732 ----
{
struct image_keyword fmt[GIF_LAST];
bcopy (gif_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, GIF_LAST, Qgif)
! || (fmt[GIF_ASCENT].count
&& XFASTINT (fmt[GIF_ASCENT].value) > 100))
return 0;
!
/* Must specify either the :data or :file keyword. */
return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
}
***************
*** 12799,12805 ****
UNGCPRO;
return 0;
}
!
/* Open the GIF file. */
gif = DGifOpenFileName (SDATA (file));
if (gif == NULL)
--- 12799,12805 ----
UNGCPRO;
return 0;
}
!
/* Open the GIF file. */
gif = DGifOpenFileName (SDATA (file));
if (gif == NULL)
***************
*** 12857,12870 ****
UNGCPRO;
return 0;
}
!
/* Allocate colors. */
gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
if (!gif_color_map)
gif_color_map = gif->SColorMap;
init_color_table ();
bzero (pixel_colors, sizeof pixel_colors);
!
for (i = 0; i < gif_color_map->ColorCount; ++i)
{
int r = gif_color_map->Colors[i].Red << 8;
--- 12857,12870 ----
UNGCPRO;
return 0;
}
!
/* Allocate colors. */
gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
if (!gif_color_map)
gif_color_map = gif->SColorMap;
init_color_table ();
bzero (pixel_colors, sizeof pixel_colors);
!
for (i = 0; i < gif_color_map->ColorCount; ++i)
{
int r = gif_color_map->Colors[i].Red << 8;
***************
*** 12877,12883 ****
free_color_table ();
/* Clear the part of the screen image that are not covered by
! the image from the GIF file. Full animated GIF support
requires more than can be done here (see the gif89 spec,
disposal methods). Let's simply assume that the part
not covered by a sub-image is in the frame's background color. */
--- 12877,12883 ----
free_color_table ();
/* Clear the part of the screen image that are not covered by
! the image from the GIF file. Full animated GIF support
requires more than can be done here (see the gif89 spec,
disposal methods). Let's simply assume that the part
not covered by a sub-image is in the frame's background color. */
***************
*** 12924,12937 ****
while (row >= image_height)
row = interlace_start[++pass];
}
!
for (x = 0; x < image_width; x++)
{
int i = raster[(y * image_width) + x];
XPutPixel (ximg, x + image_left, row + image_top,
pixel_colors[i]);
}
!
row += interlace_increment[pass];
}
}
--- 12924,12937 ----
while (row >= image_height)
row = interlace_start[++pass];
}
!
for (x = 0; x < image_width; x++)
{
int i = raster[(y * image_width) + x];
XPutPixel (ximg, x + image_left, row + image_top,
pixel_colors[i]);
}
!
row += interlace_increment[pass];
}
}
***************
*** 12944,12950 ****
XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
}
}
!
DGifCloseFile (gif);
/* Maybe fill in the background field while we have ximg handy. */
--- 12944,12950 ----
XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
}
}
!
DGifCloseFile (gif);
/* Maybe fill in the background field while we have ximg handy. */
***************
*** 12954,12960 ****
/* Put the image into the pixmap, then free the X image and its buffer. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
!
UNGCPRO;
return 1;
}
--- 12954,12960 ----
/* Put the image into the pixmap, then free the X image and its buffer. */
x_put_x_image (f, ximg, img->pixmap, width, height);
x_destroy_x_image (ximg);
!
UNGCPRO;
return 1;
}
***************
*** 13055,13065 ****
struct image_keyword fmt[GS_LAST];
Lisp_Object tem;
int i;
!
bcopy (gs_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript)
! || (fmt[GS_ASCENT].count
&& XFASTINT (fmt[GS_ASCENT].value) > 100))
return 0;
--- 13055,13065 ----
struct image_keyword fmt[GS_LAST];
Lisp_Object tem;
int i;
!
bcopy (gs_format, fmt, sizeof fmt);
!
if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript)
! || (fmt[GS_ASCENT].count
&& XFASTINT (fmt[GS_ASCENT].value) > 100))
return 0;
***************
*** 13127,13133 ****
image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
return 0;
}
!
/* Call the loader to fill the pixmap. It returns a process object
if successful. We do not record_unwind_protect here because
other places in redisplay like calling window scroll functions
--- 13127,13133 ----
image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
return 0;
}
!
/* Call the loader to fill the pixmap. It returns a process object
if successful. We do not record_unwind_protect here because
other places in redisplay like calling window scroll functions
***************
*** 13138,13149 ****
(unsigned long) FRAME_W32_WINDOW (f),
(unsigned long) img->pixmap);
window_and_pixmap_id = build_string (buffer);
!
sprintf (buffer, "%lu %lu",
FRAME_FOREGROUND_PIXEL (f),
FRAME_BACKGROUND_PIXEL (f));
pixel_colors = build_string (buffer);
!
XSETFRAME (frame, f);
loader = image_spec_value (img->spec, QCloader, NULL);
if (NILP (loader))
--- 13138,13149 ----
(unsigned long) FRAME_W32_WINDOW (f),
(unsigned long) img->pixmap);
window_and_pixmap_id = build_string (buffer);
!
sprintf (buffer, "%lu %lu",
FRAME_FOREGROUND_PIXEL (f),
FRAME_BACKGROUND_PIXEL (f));
pixel_colors = build_string (buffer);
!
XSETFRAME (frame, f);
loader = image_spec_value (img->spec, QCloader, NULL);
if (NILP (loader))
***************
*** 13205,13214 ****
if (ximg)
{
int x, y;
!
/* Initialize the color table. */
init_color_table ();
!
/* For each pixel of the image, look its color up in the
color table. After having done so, the color table will
contain an entry for each color used by the image. */
--- 13205,13214 ----
if (ximg)
{
int x, y;
!
/* Initialize the color table. */
init_color_table ();
!
/* For each pixel of the image, look its color up in the
color table. After having done so, the color table will
contain an entry for each color used by the image. */
***************
*** 13238,13244 ****
else
image_error ("Cannot get X image of `%s'; colors will not be freed",
img->spec, Qnil);
!
UNBLOCK_INPUT;
}
--- 13238,13244 ----
else
image_error ("Cannot get X image of `%s'; colors will not be freed",
img->spec, Qnil);
!
UNBLOCK_INPUT;
}
***************
*** 13350,13357 ****
rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
prop_atom, 0, bytes_remaining,
False, XA_STRING,
! &actual_type, &actual_format,
! &actual_size, &bytes_remaining,
(unsigned char **) &tmp_data);
if (rc == Success)
prop_value = make_string (tmp_data, size);
--- 13350,13357 ----
rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
prop_atom, 0, bytes_remaining,
False, XA_STRING,
! &actual_type, &actual_format,
! &actual_size, &bytes_remaining,
(unsigned char **) &tmp_data);
if (rc == Success)
prop_value = make_string (tmp_data, size);
***************
*** 13405,13411 ****
#if 0 /* TODO: cursor shape changes. */
EMACS_TIME delay;
int secs, usecs = 0;
!
cancel_hourglass ();
if (INTEGERP (Vhourglass_delay)
--- 13405,13411 ----
#if 0 /* TODO: cursor shape changes. */
EMACS_TIME delay;
int secs, usecs = 0;
!
cancel_hourglass ();
if (INTEGERP (Vhourglass_delay)
***************
*** 13421,13427 ****
}
else
secs = DEFAULT_HOURGLASS_DELAY;
!
EMACS_SET_SECS_USECS (delay, secs, usecs);
hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
show_hourglass, NULL);
--- 13421,13427 ----
}
else
secs = DEFAULT_HOURGLASS_DELAY;
!
EMACS_SET_SECS_USECS (delay, secs, usecs);
hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
show_hourglass, NULL);
***************
*** 13440,13446 ****
cancel_atimer (hourglass_atimer);
hourglass_atimer = NULL;
}
!
if (hourglass_shown_p)
hide_hourglass ();
}
--- 13440,13446 ----
cancel_atimer (hourglass_atimer);
hourglass_atimer = NULL;
}
!
if (hourglass_shown_p)
hide_hourglass ();
}
***************
*** 13467,13489 ****
if (!hourglass_shown_p)
{
Lisp_Object rest, frame;
!
BLOCK_INPUT;
!
FOR_EACH_FRAME (rest, frame)
if (FRAME_W32_P (XFRAME (frame)))
{
struct frame *f = XFRAME (frame);
!
f->output_data.w32->hourglass_p = 1;
!
if (!f->output_data.w32->hourglass_window)
{
unsigned long mask = CWCursor;
XSetWindowAttributes attrs;
!
attrs.cursor = f->output_data.w32->hourglass_cursor;
!
f->output_data.w32->hourglass_window
= XCreateWindow (FRAME_X_DISPLAY (f),
FRAME_OUTER_WINDOW (f),
--- 13467,13489 ----
if (!hourglass_shown_p)
{
Lisp_Object rest, frame;
!
BLOCK_INPUT;
!
FOR_EACH_FRAME (rest, frame)
if (FRAME_W32_P (XFRAME (frame)))
{
struct frame *f = XFRAME (frame);
!
f->output_data.w32->hourglass_p = 1;
!
if (!f->output_data.w32->hourglass_window)
{
unsigned long mask = CWCursor;
XSetWindowAttributes attrs;
!
attrs.cursor = f->output_data.w32->hourglass_cursor;
!
f->output_data.w32->hourglass_window
= XCreateWindow (FRAME_X_DISPLAY (f),
FRAME_OUTER_WINDOW (f),
***************
*** 13492,13498 ****
CopyFromParent,
mask, &attrs);
}
!
XMapRaised (FRAME_X_DISPLAY (f),
f->output_data.w32->hourglass_window);
XFlush (FRAME_X_DISPLAY (f));
--- 13492,13498 ----
CopyFromParent,
mask, &attrs);
}
!
XMapRaised (FRAME_X_DISPLAY (f),
f->output_data.w32->hourglass_window);
XFlush (FRAME_X_DISPLAY (f));
***************
*** 13519,13525 ****
FOR_EACH_FRAME (rest, frame)
{
struct frame *f = XFRAME (frame);
!
if (FRAME_W32_P (f)
/* Watch out for newly created frames. */
&& f->output_data.x->hourglass_window)
--- 13519,13525 ----
FOR_EACH_FRAME (rest, frame)
{
struct frame *f = XFRAME (frame);
!
if (FRAME_W32_P (f)
/* Watch out for newly created frames. */
&& f->output_data.x->hourglass_window)
***************
*** 13549,13555 ****
Lisp_Object, Lisp_Object));
static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
Lisp_Object, int, int, int *, int *));
!
/* The frame of a currently visible tooltip. */
Lisp_Object tip_frame;
--- 13549,13555 ----
Lisp_Object, Lisp_Object));
static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
Lisp_Object, int, int, int *, int *));
!
/* The frame of a currently visible tooltip. */
Lisp_Object tip_frame;
***************
*** 13582,13588 ****
tip_window = NULL;
tip_frame = Qnil;
}
!
return deleted;
}
--- 13582,13588 ----
tip_window = NULL;
tip_frame = Qnil;
}
!
return deleted;
}
***************
*** 13648,13654 ****
Ferase_buffer ();
Finsert (1, &text);
set_buffer_internal_1 (old_buffer);
!
FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
record_unwind_protect (unwind_create_tip_frame, frame);
--- 13648,13654 ----
Ferase_buffer ();
Finsert (1, &text);
set_buffer_internal_1 (old_buffer);
!
FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
record_unwind_protect (unwind_create_tip_frame, frame);
***************
*** 13706,13712 ****
else
font = x_new_font (f, SDATA (font));
}
!
/* Try out a font which we hope has bold and italic variations. */
if (!STRINGP (font))
font = x_new_font (f, "-*-Courier
New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
--- 13706,13712 ----
else
font = x_new_font (f, SDATA (font));
}
!
/* Try out a font which we hope has bold and italic variations. */
if (!STRINGP (font))
font = x_new_font (f, "-*-Courier
New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
***************
*** 13816,13822 ****
if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
Qnil));
!
/* Set up faces after all frame parameters are known. This call
also merges in face attributes specified for new frames.
--- 13816,13822 ----
if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
Qnil));
!
/* Set up faces after all frame parameters are known. This call
also merges in face attributes specified for new frames.
***************
*** 13831,13842 ****
/* Set tip_frame here, so that */
tip_frame = frame;
call1 (Qface_set_after_frame_default, frame);
!
if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
Qnil));
}
!
f->no_split = 1;
UNGCPRO;
--- 13831,13842 ----
/* Set tip_frame here, so that */
tip_frame = frame;
call1 (Qface_set_after_frame_default, frame);
!
if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
Qnil));
}
!
f->no_split = 1;
UNGCPRO;
***************
*** 13876,13886 ****
int *root_x, *root_y;
{
Lisp_Object left, top;
!
/* User-specified position? */
left = Fcdr (Fassq (Qleft, parms));
top = Fcdr (Fassq (Qtop, parms));
!
/* Move the tooltip window where the mouse pointer is. Resize and
show it. */
if (!INTEGERP (left) || !INTEGERP (top))
--- 13876,13886 ----
int *root_x, *root_y;
{
Lisp_Object left, top;
!
/* User-specified position? */
left = Fcdr (Fassq (Qleft, parms));
top = Fcdr (Fassq (Qtop, parms));
!
/* Move the tooltip window where the mouse pointer is. Resize and
show it. */
if (!INTEGERP (left) || !INTEGERP (top))
***************
*** 13952,13958 ****
struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
int old_windows_or_buffers_changed = windows_or_buffers_changed;
int count = SPECPDL_INDEX ();
!
specbind (Qinhibit_redisplay, Qt);
GCPRO4 (string, parms, frame, timeout);
--- 13952,13958 ----
struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
int old_windows_or_buffers_changed = windows_or_buffers_changed;
int count = SPECPDL_INDEX ();
!
specbind (Qinhibit_redisplay, Qt);
GCPRO4 (string, parms, frame, timeout);
***************
*** 13968,13974 ****
dx = make_number (5);
else
CHECK_NUMBER (dx);
!
if (NILP (dy))
dy = make_number (-10);
else
--- 13968,13974 ----
dx = make_number (5);
else
CHECK_NUMBER (dx);
!
if (NILP (dy))
dy = make_number (-10);
else
***************
*** 13988,13994 ****
&& !NILP (Fequal (last_parms, parms)))
{
struct frame *f = XFRAME (tip_frame);
!
/* Only DX and DY have changed. */
if (!NILP (tip_timer))
{
--- 13988,13994 ----
&& !NILP (Fequal (last_parms, parms)))
{
struct frame *f = XFRAME (tip_frame);
!
/* Only DX and DY have changed. */
if (!NILP (tip_timer))
{
***************
*** 14063,14069 ****
w->width = make_number (80);
w->height = make_number (40);
}
!
f->window_width = XINT (w->width);
adjust_glyphs (f);
w->pseudo_window_p = 1;
--- 14063,14069 ----
w->width = make_number (80);
w->height = make_number (40);
}
!
f->window_width = XINT (w->width);
adjust_glyphs (f);
w->pseudo_window_p = 1;
***************
*** 14104,14110 ****
else
#endif
row_width = row->pixel_width;
!
/* TODO: find why tips do not draw along baseline as instructed. */
height += row->height;
width = max (width, row_width);
--- 14104,14110 ----
else
#endif
row_width = row->pixel_width;
!
/* TODO: find why tips do not draw along baseline as instructed. */
height += row->height;
width = max (width, row_width);
***************
*** 14176,14191 ****
/* Return quickly if nothing to do. */
if (NILP (tip_timer) && NILP (tip_frame))
return Qnil;
!
frame = tip_frame;
timer = tip_timer;
GCPRO2 (frame, timer);
tip_frame = tip_timer = deleted = Qnil;
!
count = SPECPDL_INDEX ();
specbind (Qinhibit_redisplay, Qt);
specbind (Qinhibit_quit, Qt);
!
if (!NILP (timer))
call1 (Qcancel_timer, timer);
--- 14176,14191 ----
/* Return quickly if nothing to do. */
if (NILP (tip_timer) && NILP (tip_frame))
return Qnil;
!
frame = tip_frame;
timer = tip_timer;
GCPRO2 (frame, timer);
tip_frame = tip_timer = deleted = Qnil;
!
count = SPECPDL_INDEX ();
specbind (Qinhibit_redisplay, Qt);
specbind (Qinhibit_quit, Qt);
!
if (!NILP (timer))
call1 (Qcancel_timer, timer);
***************
*** 14953,14965 ****
doc: /* If non-zero, the virtual key code for an alternative quit
key. */);
XSETINT (Vw32_quit_key, 0);
! DEFVAR_LISP ("w32-pass-lwindow-to-system",
&Vw32_pass_lwindow_to_system,
doc: /* Non-nil if the left \"Windows\" key is passed on to
Windows.
When non-nil, the Start menu is opened by tapping the key. */);
Vw32_pass_lwindow_to_system = Qt;
! DEFVAR_LISP ("w32-pass-rwindow-to-system",
&Vw32_pass_rwindow_to_system,
doc: /* Non-nil if the right \"Windows\" key is passed on to
Windows.
When non-nil, the Start menu is opened by tapping the key. */);
--- 14953,14965 ----
doc: /* If non-zero, the virtual key code for an alternative quit
key. */);
XSETINT (Vw32_quit_key, 0);
! DEFVAR_LISP ("w32-pass-lwindow-to-system",
&Vw32_pass_lwindow_to_system,
doc: /* Non-nil if the left \"Windows\" key is passed on to
Windows.
When non-nil, the Start menu is opened by tapping the key. */);
Vw32_pass_lwindow_to_system = Qt;
! DEFVAR_LISP ("w32-pass-rwindow-to-system",
&Vw32_pass_rwindow_to_system,
doc: /* Non-nil if the right \"Windows\" key is passed on to
Windows.
When non-nil, the Start menu is opened by tapping the key. */);
***************
*** 14977,14989 ****
means that this hack won't interfere with any real key code. */
Vw32_phantom_key_code = 255;
! DEFVAR_LISP ("w32-enable-num-lock",
&Vw32_enable_num_lock,
doc: /* Non-nil if Num Lock should act normally.
Set to nil to see Num Lock as the key `kp-numlock'. */);
Vw32_enable_num_lock = Qt;
! DEFVAR_LISP ("w32-enable-caps-lock",
&Vw32_enable_caps_lock,
doc: /* Non-nil if Caps Lock should act normally.
Set to nil to see Caps Lock as the key `capslock'. */);
--- 14977,14989 ----
means that this hack won't interfere with any real key code. */
Vw32_phantom_key_code = 255;
! DEFVAR_LISP ("w32-enable-num-lock",
&Vw32_enable_num_lock,
doc: /* Non-nil if Num Lock should act normally.
Set to nil to see Num Lock as the key `kp-numlock'. */);
Vw32_enable_num_lock = Qt;
! DEFVAR_LISP ("w32-enable-caps-lock",
&Vw32_enable_caps_lock,
doc: /* Non-nil if Caps Lock should act normally.
Set to nil to see Caps Lock as the key `capslock'. */);
***************
*** 15090,15096 ****
DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
doc: /* Non-zero means Emacs displays an hourglass pointer on
window systems. */);
display_hourglass_p = 1;
!
DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
doc: /* *Seconds to wait before displaying an hourglass pointer.
Value must be an integer or float. */);
--- 15090,15096 ----
DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
doc: /* Non-zero means Emacs displays an hourglass pointer on
window systems. */);
display_hourglass_p = 1;
!
DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
doc: /* *Seconds to wait before displaying an hourglass pointer.
Value must be an integer or float. */);
***************
*** 15118,15124 ****
doc: /* Maximum size for tooltips.
Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
!
DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
doc: /* Non-nil if no window manager is in use.
Emacs doesn't try to figure this out; this is always nil
--- 15118,15124 ----
doc: /* Maximum size for tooltips.
Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
!
DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
doc: /* Non-nil if no window manager is in use.
Emacs doesn't try to figure this out; this is always nil
***************
*** 15349,15364 ****
Qxpm = intern ("xpm");
staticpro (&Qxpm);
#endif
!
#if HAVE_JPEG
Qjpeg = intern ("jpeg");
staticpro (&Qjpeg);
! #endif
#if HAVE_TIFF
Qtiff = intern ("tiff");
staticpro (&Qtiff);
! #endif
#if HAVE_GIF
Qgif = intern ("gif");
--- 15349,15364 ----
Qxpm = intern ("xpm");
staticpro (&Qxpm);
#endif
!
#if HAVE_JPEG
Qjpeg = intern ("jpeg");
staticpro (&Qjpeg);
! #endif
#if HAVE_TIFF
Qtiff = intern ("tiff");
staticpro (&Qtiff);
! #endif
#if HAVE_GIF
Qgif = intern ("gif");
***************
*** 15406,15420 ****
#if 0 /* TODO : Image support for W32 */
define_image_type (&gs_type);
#endif
!
#if HAVE_XPM
define_image_type (&xpm_type);
#endif
!
#if HAVE_JPEG
define_image_type (&jpeg_type);
#endif
!
#if HAVE_TIFF
define_image_type (&tiff_type);
#endif
--- 15406,15420 ----
#if 0 /* TODO : Image support for W32 */
define_image_type (&gs_type);
#endif
!
#if HAVE_XPM
define_image_type (&xpm_type);
#endif
!
#if HAVE_JPEG
define_image_type (&jpeg_type);
#endif
!
#if HAVE_TIFF
define_image_type (&tiff_type);
#endif
***************
*** 15422,15428 ****
#if HAVE_GIF
define_image_type (&gif_type);
#endif
!
#if HAVE_PNG
define_image_type (&png_type);
#endif
--- 15422,15428 ----
#if HAVE_GIF
define_image_type (&gif_type);
#endif
!
#if HAVE_PNG
define_image_type (&png_type);
#endif
***************
*** 15430,15436 ****
#undef abort
! void
w32_abort()
{
int button;
--- 15430,15436 ----
#undef abort
! void
w32_abort()
{
int button;
- [Emacs-diffs] Changes to emacs/src/w32fns.c,
Juanma Barranquero <=