Mercurial > emacs
annotate oldXMenu/XMenuInt.h @ 111339:e302712538dc
Unify mouse highlight code of MSDOS and GUI sessions.
xdisp.c (coords_in_mouse_face_p): Move prototype out of the
HAVE_WINDOW_SYSTEM conditional.
(x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
HAVE_WINDOW_SYSTEM block.
(try_window_id) [HAVE_GPM || MSDOS]: Call
x_clear_window_mouse_face.
(draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
systems.
(show_mouse_face): Call it, instead of calling draw_glyphs directly.
(show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
(cursor_in_mouse_face_p, rows_from_pos_range)
(mouse_face_from_buffer_pos, mouse_face_from_string_pos)
(note_mode_line_or_margin_highlight, note_mouse_highlight)
(x_clear_window_mouse_face, cancel_mouse_face): Move out of the
HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
fragments.
(note_mouse_highlight): Call popup_activated for MSDOS as well.
Clear mouse highlight if pointer is over glyphs whose OBJECT is an
integer.
(mouse_face_from_buffer_pos): Add parentheses around && within ||.
xmenu.c (popup_activated): Don't define on MSDOS.
dispnew.c (mirror_make_current): Set Y coordinate of the
mode-line and header-line rows.
termchar.h (struct tty_display_info): Define mouse_face_*
members not only for MSDOS. Delete stray whitespace.
<mouse_face_beg_x, mouse_face_beg_y, mouse_face_overlay>: New
struct members.
dispextern.h (DPYINFO_DEFINED) [HAVE_X_WINDOWS]: Define.
(DPYINFO_DEFINED) [HAVE_NTGUI]: Define.
(DPYINFO_DEFINED) [HAVE_NS]: Define.
(Display_Info) [!DPYINFO_DEFINED]: Define here.
(FRAME_X_DISPLAY_INFO) [HAVE_GPM]: Define.
(FRAME_X_DISPLAY_INFO): Define to NULL if not defined.
(frame_to_window_pixel_xy, note_mouse_highlight)
(x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
(show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
HAVE_WINDOW_SYSTEM conditional.
(draw_row_with_mouse_face): Declare prototype.
msdos.h (Display_Info): Don't define here.
msdos.c (show_mouse_face, clear_mouse_face)
(fast_find_position, IT_note_mode_line_highlight)
(IT_note_mouse_highlight): Functions deleted.
(IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
instead of IT_note_mouse_highlight.
(draw_row_with_mouse_face, popup_activated): New functions.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 30 Oct 2010 15:09:52 +0200 |
parents | 5cc91198ffb2 |
children | ef719132ddfa |
rev | line source |
---|---|
25858 | 1 /* Copyright Massachusetts Institute of Technology 1985 */ |
76173
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
2 |
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
3 #include "copyright.h" |
c2500786b8c5
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
4 |
25858 | 5 |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuInternal.h - Internal menu system include file for the | |
10 * MIT Project Athena XMenu X window system | |
11 * menu package. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
12 * |
25858 | 13 * Author: Tony Della Fera, DEC |
14 * October, 1985 | |
15 */ | |
16 | |
17 #ifndef _XMenuInternal_h_ | |
18 #define _XMenuInternal_h_ | |
19 | |
20 /* Avoid warnings about redefining NULL by including <stdio.h> first; | |
21 the other file which wants to define it (<stddef.h> on Ultrix | |
22 systems) can deal if NULL is already defined, but <stdio.h> can't. */ | |
23 #include <stdio.h> | |
24 #include <X11/Xlib.h> | |
25 #include "X10.h" | |
26 #include "XMenu.h" | |
27 | |
28 #define min(x, y) ((x) <= (y) ? (x) : (y)) | |
29 #define max(x, y) ((x) >= (y) ? (x) : (y)) | |
30 #define abs(a) ((a) < 0 ? -(a) : (a)) | |
31 | |
32 #define _X_FAILURE -1 | |
33 | |
34 #define _SUCCESS 1 | |
35 #define _FAILURE -1 | |
36 | |
37 /* | |
38 * XMenu internal event handler variable. | |
39 */ | |
109124
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
40 extern int (*_XMEventHandler)(XEvent*); |
25858 | 41 |
42 #ifndef Pixel | |
43 #define Pixel unsigned long | |
44 #endif | |
45 | |
46 /* | |
47 * Internal routine declarations. | |
48 */ | |
109124
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
49 int _XMWinQueInit(void); /* No value actually returned. */ |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
50 int _XMWinQueAddPane(register Display *display, register XMenu *menu, register XMPane *p_ptr); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
51 int _XMWinQueAddSelection(register Display *display, register XMenu *menu, register XMSelect *s_ptr); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
52 int _XMWinQueFlush(register Display *display, register XMenu *menu, register XMPane *pane, XMSelect *select); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
53 XMPane *_XMGetPanePtr(register XMenu *menu, register int p_num); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
54 XMSelect *_XMGetSelectionPtr(register XMPane *p_ptr, register int s_num); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
55 int _XMRecomputeGlobals(register Display *display, register XMenu *menu); /* No value actually returned. */ |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
56 int _XMRecomputePane(register Display *display, register XMenu *menu, register XMPane *p_ptr, register int p_num); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
57 int _XMRecomputeSelection(register Display *display, register XMenu *menu, register XMSelect *s_ptr, register int s_num); |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
58 int _XMTransToOrigin(Display *display, register XMenu *menu, register XMPane *p_ptr, register XMSelect *s_ptr, int x_pos, int y_pos, int *orig_x, int *orig_y); /* No value actually returned. */ |
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76173
diff
changeset
|
59 int _XMRefreshPane(register Display *display, register XMenu *menu, register XMPane *pane); /* No value actually returned. */ |
25858 | 60 |
61 #endif | |
62 /* Don't add stuff after this #endif */ | |
52401 | 63 |
64 /* arch-tag: 00640af1-9386-48b5-a4be-35620b8cd3aa | |
65 (do not change this comment) */ |