annotate oldXMenu/Post.c @ 110776:073caec7510f

* net/tramp.el (tramp-handle-directory-files-and-attributes) (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p): New defuns, taken from tramp-smb.el. (tramp-coding-system-change-eol-conversion) (tramp-set-process-query-on-exit-flag): Removed. * net/tramp-compat.el (top): Do not check for byte-compiler objects. (tramp-compat-coding-system-change-eol-conversion) (tramp-compat-set-process-query-on-exit-flag): New defuns, taken from tramp.el. * net/tramp-gvfs.el: * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag' by `tramp-compat-set-process-query-on-exit-flag'. * net/tramp-imap.el (tramp-imap-file-name-handler-alist): Use `tramp-handle-directory-files-and-attributes', `tramp-handle-file-exists-p' and `tramp-handle-file-newer-than-file-p'. (tramp-imap-handle-file-exists-p) (tramp-imap-handle-file-executable-p) (tramp-imap-handle-file-readable-p) (tramp-imap-handle-directory-files-and-attributes) (tramp-imap-handle-file-newer-than-file-p): Removed. * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag' by `tramp-compat-set-process-query-on-exit-flag' and `tramp-coding-system-change-eol-conversion' by `tramp-compat-coding-system-change-eol-conversion'. * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use `tramp-handle-directory-files-and-attributes', `tramp-handle-file-exists-p' and `tramp-handle-file-newer-than-file-p'. (tramp-smb-handle-directory-files-and-attributes) (tramp-smb-handle-file-exists-p) (tramp-smb-handle-file-newer-than-file-p): Removed. (tramp-smb-maybe-open-connection): Replace `tramp-set-process-query-on-exit-flag' by `tramp-compat-set-process-query-on-exit-flag'.
author Michael Albinus <michael.albinus@gmx.de>
date Tue, 05 Oct 2010 16:20:24 +0200
parents 5cc91198ffb2
children ef719132ddfa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
76174
fec5e03aaf59 Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
1 /* Copyright Massachusetts Institute of Technology 1985 */
fec5e03aaf59 Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
2
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
3 #include "copyright.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
4
Dave Love <fx@gnu.org>
parents:
diff changeset
5
Dave Love <fx@gnu.org>
parents:
diff changeset
6 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
7 * XMenu: MIT Project Athena, X Window system menu package
Dave Love <fx@gnu.org>
parents:
diff changeset
8 *
Dave Love <fx@gnu.org>
parents:
diff changeset
9 * XMenuPost - Maps a given menu to the display and activates
Dave Love <fx@gnu.org>
parents:
diff changeset
10 * the menu for user selection. The user is allowed to
Dave Love <fx@gnu.org>
parents:
diff changeset
11 * specify the mouse button event mask that will be used
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 27456
diff changeset
12 * to identify a selection request. When a selection
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
13 * request is received (i.e., when the specified mouse
Dave Love <fx@gnu.org>
parents:
diff changeset
14 * event occurs) the data returned will be either the
Dave Love <fx@gnu.org>
parents:
diff changeset
15 * data associated with the particular selection active
Dave Love <fx@gnu.org>
parents:
diff changeset
16 * at the time of the selection request or NULL if no
Dave Love <fx@gnu.org>
parents:
diff changeset
17 * selection was active. A menu selection is shown to
Dave Love <fx@gnu.org>
parents:
diff changeset
18 * be active by placing a highlight box around the
Dave Love <fx@gnu.org>
parents:
diff changeset
19 * selection as the mouse cursor enters its active
Dave Love <fx@gnu.org>
parents:
diff changeset
20 * region. Inactive selections will not be highlighted.
Dave Love <fx@gnu.org>
parents:
diff changeset
21 * As the mouse cursor moved from one menu pane
Dave Love <fx@gnu.org>
parents:
diff changeset
22 * to another menu pane the pane being entered is raised
Dave Love <fx@gnu.org>
parents:
diff changeset
23 * and activated and the pane being left is deactivated.
Dave Love <fx@gnu.org>
parents:
diff changeset
24 * If an error occurs NULL will be returned with the
Dave Love <fx@gnu.org>
parents:
diff changeset
25 * p_num set to POST_ERROR, s_num set to
Dave Love <fx@gnu.org>
parents:
diff changeset
26 * NO_SELECTION and _XMErrorCode set to an
Dave Love <fx@gnu.org>
parents:
diff changeset
27 * appropriate value.
Dave Love <fx@gnu.org>
parents:
diff changeset
28 * Every time the routine returns successfully the
Dave Love <fx@gnu.org>
parents:
diff changeset
29 * p_num and s_num indices will be set to indicate
Dave Love <fx@gnu.org>
parents:
diff changeset
30 * the currently active pane and/or selection. If the
Dave Love <fx@gnu.org>
parents:
diff changeset
31 * mouse was not in a selection window at the time
Dave Love <fx@gnu.org>
parents:
diff changeset
32 * s_num will be set to NO_SELECTION.
Dave Love <fx@gnu.org>
parents:
diff changeset
33 *
Dave Love <fx@gnu.org>
parents:
diff changeset
34 * Author: Tony Della Fera, DEC
Dave Love <fx@gnu.org>
parents:
diff changeset
35 * August, 1984
Dave Love <fx@gnu.org>
parents:
diff changeset
36 *
Dave Love <fx@gnu.org>
parents:
diff changeset
37 */
Dave Love <fx@gnu.org>
parents:
diff changeset
38
Dave Love <fx@gnu.org>
parents:
diff changeset
39 #include "XMenuInt.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
40
Dave Love <fx@gnu.org>
parents:
diff changeset
41 char *
109124
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
42 XMenuPost(register Display *display, register XMenu *menu, register int *p_num, register int *s_num, register int x_pos, register int y_pos, int event_mask)
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
43 /* Previously opened display. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
44 /* Menu to post. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
45 /* Pane number selected. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
46 /* Selection number selected. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
47 /* X coordinate of menu position. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
48 /* Y coordinate of menu position. */
5cc91198ffb2 Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 76174
diff changeset
49 /* Mouse button event mask. */
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
50 {
Dave Love <fx@gnu.org>
parents:
diff changeset
51 register int stat; /* Routine call return status. */
Dave Love <fx@gnu.org>
parents:
diff changeset
52 char *data; /* Return data. */
Dave Love <fx@gnu.org>
parents:
diff changeset
53
Dave Love <fx@gnu.org>
parents:
diff changeset
54 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
55 * Set up initial pane and selection assumptions.
Dave Love <fx@gnu.org>
parents:
diff changeset
56 */
Dave Love <fx@gnu.org>
parents:
diff changeset
57
Dave Love <fx@gnu.org>
parents:
diff changeset
58 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
59 * Make the procedure call.
Dave Love <fx@gnu.org>
parents:
diff changeset
60 */
Dave Love <fx@gnu.org>
parents:
diff changeset
61 stat = XMenuActivate(
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 27456
diff changeset
62 display,
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
63 menu,
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 27456
diff changeset
64 p_num, s_num,
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 27456
diff changeset
65 x_pos, y_pos,
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 27456
diff changeset
66 event_mask,
27456
4a9ea0d1735b (XMenuPost): Pass null help callback to XMenuActivate.
Gerd Moellmann <gerd@gnu.org>
parents: 25858
diff changeset
67 &data, 0);
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
68
Dave Love <fx@gnu.org>
parents:
diff changeset
69 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
70 * Check the return value and return accordingly.
Dave Love <fx@gnu.org>
parents:
diff changeset
71 */
Dave Love <fx@gnu.org>
parents:
diff changeset
72 switch (stat) {
Dave Love <fx@gnu.org>
parents:
diff changeset
73 case XM_FAILURE:
Dave Love <fx@gnu.org>
parents:
diff changeset
74 *p_num = POST_ERROR;
Dave Love <fx@gnu.org>
parents:
diff changeset
75 *s_num = NO_SELECTION;
Dave Love <fx@gnu.org>
parents:
diff changeset
76 return(NULL);
Dave Love <fx@gnu.org>
parents:
diff changeset
77 case XM_NO_SELECT:
Dave Love <fx@gnu.org>
parents:
diff changeset
78 case XM_IA_SELECT:
Dave Love <fx@gnu.org>
parents:
diff changeset
79 *s_num = NO_SELECTION;
Dave Love <fx@gnu.org>
parents:
diff changeset
80 return(NULL);
Dave Love <fx@gnu.org>
parents:
diff changeset
81 case XM_SUCCESS:
Dave Love <fx@gnu.org>
parents:
diff changeset
82 default:
Dave Love <fx@gnu.org>
parents:
diff changeset
83 return(data);
Dave Love <fx@gnu.org>
parents:
diff changeset
84 }
Dave Love <fx@gnu.org>
parents:
diff changeset
85 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
86
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
87 /* arch-tag: 7b6104e5-fa32-4342-aa17-05296a30dd70
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
88 (do not change this comment) */