annotate oldXMenu/SetFrz.c @ 41250:4423b32c875c
(x_set_frame_parameters): Avoid infinite recursion for
some items.
(x_set_internal_border_width): Set frame garbaged when window
doesn't exist yet.
(Fx_create_frame): Accept zero tool_bar_button_relief.
(x_clear_image_1, four_corners_best, image_background)
(image_background_transparent): New functions.
(xpm_format, png_format, jpeg_format, tiff_format, gif_format)
(gs_format): Add `:background' entry.
(lookup_image): Set IMG's background color if specified.
(pbm_load, xbm_load_image, png_load): Set IMG's background field
when appropriate.
(x_clear_image_1): Reset `background_valid' and
`background_transparent_valid' fields.
(x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
calculating it here. Set IMG's background_transparent field.
(enum xpm_keyword_index): Add XPM_BACKGROUND.
(enum png_keyword_index): Add PNG_BACKGROUND.
(enum jpeg_keyword_index): Add JPEG_BACKGROUND.
(enum tiff_keyword_index): Add TIFF_BACKGROUND.
(enum gif_keyword_index): Add GIF_BACKGROUND.
(enum gs_keyword_index): Add GS_BACKGROUND.
(pbm_load, png_load, jpeg_load, tiff_load, gif_load):
Pre-calculate image background color where necessary.
(x_create_x_image_and_pixmap, xbm_load, gs_load): Use
display info's n_cbits entry for screen depth.
(Fx_show_tip): Remove unused variables `buffer', `top',
`left', `max_width' and `max_height'.
author |
Jason Rumney <jasonr@gnu.org> |
date |
Sun, 18 Nov 2001 21:57:18 +0000 |
parents |
bbce331da1be |
children |
695cf19ef79e d7ddb3e565de |
rev |
line source |
25858
|
1 #include "copyright.h"
|
|
2
|
|
3 /* $Header: /u/src/emacs/19.0/oldXMenu/RCS/SetFrz.c,v 1.1 1992/04/11 22:10:21 jimb Exp $ */
|
|
4 /* Copyright Massachusetts Institute of Technology 1985 */
|
|
5
|
|
6 /*
|
|
7 * XMenu: MIT Project Athena, X Window system menu package
|
|
8 *
|
|
9 * XMenuSetFreeze - Forcibly set the menu freeze mode switch
|
|
10 * overriding the Xdefaults setting.
|
|
11 * This is necessary in some situations.
|
|
12 *
|
|
13 * Author: Tony Della Fera, DEC
|
|
14 * January 29, 1986
|
|
15 *
|
|
16 */
|
|
17
|
|
18 #include "XMenuInt.h"
|
|
19
|
|
20 XMenuSetFreeze(menu, freeze)
|
|
21 register XMenu *menu; /* Menu object to be modified. */
|
|
22 register int freeze; /* Freeze mode? */
|
|
23 {
|
|
24 /*
|
|
25 * Set the freeze mode switch.
|
|
26 */
|
|
27 menu->freeze = freeze;
|
|
28 }
|