annotate oldXMenu/EvHand.c @ 31633:829ed9cc42da
(QCmatrix, QCcolor_adjustment, QCmask, Qemboss)
(Qedge_detection, Qheuristic): New symbols.
(syms_of_xfns): Initialize new symbols.
(lookup_image): Handle `:mask X', `:algorithm emboss', and
`algorithm (edge-detection ...)'.
(xbm_format, xpm_format, pbm_format, png_format, jpeg_format):
(tiff_format, gif_format, gs_format): Add `:mask'.
(XBM_MASK, XPM_MASK, PBM_MASK, PNG_MASK, JPEG_MASK, TIFF_MASK)
(GIF_MASK, GS_MASK): New enumerators.
(x_laplace_read_row, x_laplace_write_row): Functions removed.
(emboss_matrix, laplace_matrix): New variables.
(x_to_xcolors, x_from_xcolors, x_detect_edges, x_emboss)
(x_edge_detection): New functions.
(x_laplace): Rewritten in terms of x_detect_edges.
(x_build_heuristic_mask): If image has a mask, free it.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Fri, 15 Sep 2000 11:48:16 +0000 |
parents |
bbce331da1be |
children |
695cf19ef79e d7ddb3e565de |
rev |
line source |
25858
|
1 #include "copyright.h"
|
|
2
|
|
3 /* $Header: /u/src/emacs/19.0/oldXMenu/RCS/EvHand.c,v 1.1 1992/04/11 22:10:19 jimb Exp $ */
|
|
4 /* Copyright Massachusetts Institute of Technology 1985 */
|
|
5
|
|
6 /*
|
|
7 * XMenu: MIT Project Athena, X Window system menu package
|
|
8 *
|
|
9 * XMenuEventHandler - Set the XMenu asynchronous event handler.
|
|
10 *
|
|
11 * Author: Tony Della Fera, DEC
|
|
12 * December 19, 1985
|
|
13 *
|
|
14 */
|
|
15
|
|
16 #include "XMenuInt.h"
|
|
17
|
|
18 XMenuEventHandler(handler)
|
|
19 int (*handler)();
|
|
20 {
|
|
21 /*
|
|
22 * Set the global event handler variable.
|
|
23 */
|
|
24 _XMEventHandler = handler;
|
|
25 }
|
|
26
|