Mercurial > emacs
annotate oldXMenu/XMenuInt.h @ 110645:7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
print.c (print_object): Fix format string and argument types for
printing a Lisp_Misc_Marker.
xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
(load_overlay_strings, get_overlay_strings_1)
(get_overlay_strings, forward_to_next_line_start)
(back_to_previous_visible_line_start, reseat, reseat_to_string)
(get_next_display_element, next_element_from_string)
(next_element_from_c_string, next_element_from_buffer)
(move_it_vertically_backward, move_it_by_lines, add_to_log)
(message_dolog, message_log_check_duplicate, message2_nolog)
(message3, message3_nolog, vmessage, set_message, set_message_1)
(hscroll_window_tree, text_outside_line_unchanged_p)
(set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
(find_last_unchanged_at_beg_row)
(find_first_unchanged_at_end_row, row_containing_pos)
(trailing_whitespace_p, display_mode_element, decode_mode_spec)
(display_count_lines, x_produce_glyphs, note_mouse_highlight): Use
EMACS_INT for buffer and string positions.
dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
(row_containing_pos): Adjust prototype.
lisp.h (pos_visible_p, message2, message2_nolog, message3)
(message2_nolog, set_message): Adjust prototypes.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Wed, 29 Sep 2010 05:06:53 -0400 |
| 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) */ |
