annotate oldXMenu/Post.c @ 111232:a9904c1962db

SMIE: change indent rules format, improve smie-setup. * lisp/emacs-lisp/smie.el (smie-precs-precedence-table) (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels): Mark them pure so the tables gets built at compile time. (smie-bnf-precedence-table): Store the closer-alist in the table. (smie-prec2-levels): Preserve the closer-alist. (smie-blink-matching-open): Be more forgiving in case of indentation. (smie-hanging-p): Rename from smie-indent--hanging-p. (smie-bolp): Rename from smie-indent--bolp. (smie--parent, smie--after): New dynamic vars. (smie-parent-p, smie-next-p, smie-prev-p): New funs. (smie-indent-rules): Remove. (smie-indent--offset-rule): Remove fun. (smie-rules-function): New var. (smie-indent--rule): New fun. (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword) (smie-indent-exps): Use it. (smie-setup): Setup paren blinking; add keyword args for token functions; extract closer-alist from op-levels. (smie-indent-debug-log): Remove var. (smie-indent-debug): Remove fun. * lisp/progmodes/prolog.el (prolog-smie-indent-rules): Remove. (prolog-smie-rules): New fun to replace it. (prolog-mode-variables): Simplify. * lisp/progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that it's setup automatically. (octave-smie-indent-rules): Remove. (octave-smie-rules): New fun to replace it. (octave-mode): Simplify.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 29 Oct 2010 15:20:28 -0400
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) */