annotate oldXMenu/Post.c @ 110410:f2e111723c3a

Merge changes made in Gnus trunk. Reimplement nnimap, and do tweaks to the rest of the code to support that. * gnus-int.el (gnus-finish-retrieve-group-infos) (gnus-retrieve-group-data-early): New functions. * gnus-range.el (gnus-range-nconcat): New function. * gnus-start.el (gnus-get-unread-articles): Support early retrieval of data. (gnus-read-active-for-groups): Support finishing the early retrieval of data. * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name if the move is internal, so that nnimap can do fast internal moves. * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for nnimap usage. * nnimap.el: Rewritten. * nnmail.el (nnmail-inhibit-default-split-group): New internal variable to allow the mail splitting to not return a default group. This is useful for nnimap, which will leave unmatched mail in the inbox. * utf7.el (utf7-encode): Autoload. Implement shell connection. * nnimap.el (nnimap-open-shell-stream): New function. (nnimap-open-connection): Use it. Get the number of lines by using BODYSTRUCTURE. (nnimap-transform-headers): Get the number of lines in each message. (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the number of lines. Not all servers return UIDNEXT. Work past this problem. Remove junk from end of file. Fix typo in "bogus" section. Make capabilties be case-insensitive. Require cl when compiling. Don't bug out if the LIST command doesn't have any parameters. 2010-09-17 Knut Anders Hatlen <kahatlen@gmail.com> (tiny change) * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command doesn't have any parameters. (mm-text-html-renderer): Document gnus-article-html. 2010-09-17 Julien Danjou <julien@danjou.info> (tiny fix) * mm-decode.el (mm-text-html-renderer): Document gnus-article-html. * dgnushack.el: Define netrc-credentials. If the user doesn't have a /etc/services, supply some sensible port defaults. Have `unseen-or-unread' select an unread unseen article first. (nntp-open-server): Return whether the open was successful or not. Throughout all files, replace (save-excursion (set-buffer ...)) with (with-current-buffer ... ). Save result so that it doesn't say "failed" all the time. Add ~/.authinfo to the default, since that's probably most useful for users. Don't use the "finish" method when we're reading from the agent. Add some more nnimap-relevant agent stuff to nnagent.el. * nnimap.el (nnimap-with-process-buffer): Removed. Revert one line that was changed by mistake in the last checkin. (nnimap-open-connection): Don't error out when we can't make a connection nnimap-related changes to avoid bugging out if we can't contact a server. * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups from methods that are denied. * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log in. (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for nothing. * gnus-sum.el (gnus-select-newsgroup): Indent.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sat, 18 Sep 2010 10:02:19 +0000
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) */