Mercurial > emacs
annotate oldXMenu/XMenuInt.h @ 53333:c23cf5520cd9
(Qarrow, Qhand, Qtext, Qpointer): New variables for
pointer types.
(Qrelative_width, Qalign_to): Remove unused variables.
(Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
(QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for
image maps.
(x_y_to_hpos_vpos): Return glyph relative coordinates through
new dx and dy args.
Remove buffer_only_p arg (always 0). Simplify code accordingly.
(get_glyph_string_clip_rect): Draw cursor using glyph's rather
than row's ascent and height, to get sensible height on tall rows.
(build_desired_tool_bar_string): Remove Qimage extern.
(get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
(produce_image_glyph): Adjust it.ascent to minimum row ascent if
image glyph is alone on the last line.
(append_glyph, append_composite_glyph, produce_image_glyph)
(append_stretch_glyph): Set glyph's ascent and descent.
(on_hot_spot_p): New function to check if position is inside an
rectangular, circular, or polygon-shaped image hot-spot,
(find_hot_spot): New function to search for image hot-spot.
(Flookup_image_map): New defun to search for image hot-spot.
(define_frame_cursor1): New aux function to determine frame pointer.
(note_mode_line_or_margin_highlight, note_mouse_highlight):
Handle `pointer' text property and :pointer image property to
control frame pointer shape. Detect image hot-spots for pointer
and help_echo properties. Use define_frame_cursor1.
(note_mouse_highlight): Use Vvoid_text_area_pointer.
(syms_of_xdisp): Defsubr new defun. Intern and staticpro new variables.
DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sun, 28 Dec 2003 00:12:27 +0000 |
parents | 695cf19ef79e |
children | f0eb34e60705 e8824c4f5f7e 375f2633d815 |
rev | line source |
---|---|
25858 | 1 |
52401 | 2 /* $Header: /cvsroot/emacs/emacs/oldXMenu/XMenuInt.h,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ |
25858 | 3 /* Copyright Massachusetts Institute of Technology 1985 */ |
4 | |
5 /* | |
6 * XMenu: MIT Project Athena, X Window system menu package | |
7 * | |
8 * XMenuInternal.h - Internal menu system include file for the | |
9 * MIT Project Athena XMenu X window system | |
10 * menu package. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
11 * |
25858 | 12 * Author: Tony Della Fera, DEC |
13 * October, 1985 | |
14 */ | |
15 | |
16 #ifndef _XMenuInternal_h_ | |
17 #define _XMenuInternal_h_ | |
18 | |
19 /* Avoid warnings about redefining NULL by including <stdio.h> first; | |
20 the other file which wants to define it (<stddef.h> on Ultrix | |
21 systems) can deal if NULL is already defined, but <stdio.h> can't. */ | |
22 #include <stdio.h> | |
23 #include <X11/Xlib.h> | |
24 #include "X10.h" | |
25 #include "XMenu.h" | |
26 | |
27 #define min(x, y) ((x) <= (y) ? (x) : (y)) | |
28 #define max(x, y) ((x) >= (y) ? (x) : (y)) | |
29 #define abs(a) ((a) < 0 ? -(a) : (a)) | |
30 | |
31 #define _X_FAILURE -1 | |
32 | |
33 #define _SUCCESS 1 | |
34 #define _FAILURE -1 | |
35 | |
36 /* | |
37 * XMenu internal event handler variable. | |
38 */ | |
39 extern int (*_XMEventHandler)(); | |
40 | |
41 #ifndef Pixel | |
42 #define Pixel unsigned long | |
43 #endif | |
44 | |
45 /* | |
46 * Internal routine declarations. | |
47 */ | |
48 int _XMWinQueInit(); /* No value actually returned. */ | |
49 int _XMWinQueAddPane(); | |
50 int _XMWinQueAddSelection(); | |
51 int _XMWinQueFlush(); | |
52 XMPane *_XMGetPanePtr(); | |
53 XMSelect *_XMGetSelectionPtr(); | |
54 int _XMRecomputeGlobals(); /* No value actually returned. */ | |
55 int _XMRecomputePane(); | |
56 int _XMRecomputeSelection(); | |
57 int _XMTransToOrigin(); /* No value actually returned. */ | |
58 int _XMRefreshPane(); /* No value actually returned. */ | |
59 int _XMRefreshSelections(); /* No value actually returned. */ | |
60 int _XMHighlightSelection(); /* No value actually returned. */ | |
61 | |
62 #endif | |
63 /* Don't add stuff after this #endif */ | |
52401 | 64 |
65 /* arch-tag: 00640af1-9386-48b5-a4be-35620b8cd3aa | |
66 (do not change this comment) */ |