annotate oldXMenu/Recomp.c @ 55420:c44f9de543e3

2004-05-07 Kai Grossjohann <kai@emptydomain.de> Version 2.0.40 of Tramp released. * net/tramp.el (tramp-completion-mode, tramp-md5-function): Use symbol-function to invoke functions only known on some Emacs flavors. This avoids byte-compiler warnings. Reported by Kevin Scaldeferri <kevin@scaldeferri.com>. (tramp-do-copy-or-rename-file-via-buffer): Renamed from tramp-do-copy-or-rename-via-buffer (without `file'), to make it consistent with the other tramp-do-* functions. (tramp-do-copy-or-rename-file): Calls adjusted. (tramp-process-initial-commands): Avoid liveness check on shell -- we know that it must be alive since we're opening a connection at this moment. (tramp-last-cmd): New internal variable. (tramp-process-echoes): New tunable. (tramp-send-command): Set tramp-last-cmd. (tramp-wait-for-output): Delete echo, if applicable. (tramp-read-passwd): Construct the key for the password cache in a way that works for multi methods, too. (tramp-bug): Add backup-directory-alist and bkup-backup-directory-info to bug reports, with Tramp counterparts. 2004-05-01 Michael Albinus <michael.albinus@gmx.de> * net/tramp*.el: Suppress byte-compiler warnings where possible. * net/tramp.el (tramp-out-of-band-prompt-regexp) (tramp-actions-copy-out-of-band): New defcustoms. (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process used instead of a synchronous one. Allows password entering. (tramp-action-out-of-band): New defun. (tramp-open-connection-rsh, tramp-method-out-of-band-p): Remove restriction with password from doc string. (tramp-bug): Add variables `tramp-terminal-prompt-regexp', `tramp-out-of-band-prompt-regexp', `tramp-actions-copy-out-of-band', `password-cache' and `password-cache-expiry'. (toplevel): Remove todo item wrt ssh-agent. Obsolete due to password caching. (tramp-touch): FILE can be a local file, too. (TODO): Remove items done. (tramp-handle-insert-directory): Properly quote file name also if not full-directory-p. Handle wildcard case. Reported by Andreas Schwab <schwab@suse.de>. (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the new file. (tramp-handle-file-local-copy, tramp-handle-write-region): The permissions of the temporary file are set if filename exists. Reported by Ted Stern <stern@cray.com>. (tramp-backup-directory-alist) (tramp-bkup-backup-directory-info): New defcustoms. (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'. (tramp-handle-find-backup-file-name): New function. Implements Tramp's find-backup-file-name. * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for `find-backup-file-name'. * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
author Kai Großjohann <kgrossjo@eu.uu.net>
date Fri, 07 May 2004 21:20:10 +0000
parents e8824c4f5f7e
children 3861ff8f4bf1 8e5779acd195
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
1 #include "copyright.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
2
Dave Love <fx@gnu.org>
parents:
diff changeset
3 /* Copyright Massachusetts Institute of Technology 1985 */
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 * XMenu: MIT Project Athena, X Window system menu package
Dave Love <fx@gnu.org>
parents:
diff changeset
7 *
Dave Love <fx@gnu.org>
parents:
diff changeset
8 * XMenuRecompute - Recompute XMenu object dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
9 *
Dave Love <fx@gnu.org>
parents:
diff changeset
10 * Author: Tony Della Fera, DEC
Dave Love <fx@gnu.org>
parents:
diff changeset
11 * September, 1985
Dave Love <fx@gnu.org>
parents:
diff changeset
12 *
Dave Love <fx@gnu.org>
parents:
diff changeset
13 */
Dave Love <fx@gnu.org>
parents:
diff changeset
14
Dave Love <fx@gnu.org>
parents:
diff changeset
15 #include "XMenuInt.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
16
Dave Love <fx@gnu.org>
parents:
diff changeset
17 int
Dave Love <fx@gnu.org>
parents:
diff changeset
18 XMenuRecompute(display, menu)
Dave Love <fx@gnu.org>
parents:
diff changeset
19 Display *display;
Dave Love <fx@gnu.org>
parents:
diff changeset
20 register XMenu *menu; /* Menu object to be recomputed. */
Dave Love <fx@gnu.org>
parents:
diff changeset
21 {
Dave Love <fx@gnu.org>
parents:
diff changeset
22 register XMPane *p_ptr; /* Pane pointer. */
Dave Love <fx@gnu.org>
parents:
diff changeset
23 register XMSelect *s_ptr; /* Selection pointer. */
Dave Love <fx@gnu.org>
parents:
diff changeset
24
Dave Love <fx@gnu.org>
parents:
diff changeset
25 register int p_num; /* Pane serial number. */
Dave Love <fx@gnu.org>
parents:
diff changeset
26 register int s_num; /* Selection serial number. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
27
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
28 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
29 * If there are no panes in the menu then return failure
Dave Love <fx@gnu.org>
parents:
diff changeset
30 * because the menu is not initialized.
Dave Love <fx@gnu.org>
parents:
diff changeset
31 */
Dave Love <fx@gnu.org>
parents:
diff changeset
32 if (menu->p_count == 0) {
Dave Love <fx@gnu.org>
parents:
diff changeset
33 _XMErrorCode = XME_NOT_INIT;
Dave Love <fx@gnu.org>
parents:
diff changeset
34 return(XM_FAILURE);
Dave Love <fx@gnu.org>
parents:
diff changeset
35 }
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 * Recompute menu wide global values: pane window size,
Dave Love <fx@gnu.org>
parents:
diff changeset
39 * selection size and maximum selection count.
Dave Love <fx@gnu.org>
parents:
diff changeset
40 */
Dave Love <fx@gnu.org>
parents:
diff changeset
41 _XMRecomputeGlobals(display, menu);
Dave Love <fx@gnu.org>
parents:
diff changeset
42
Dave Love <fx@gnu.org>
parents:
diff changeset
43 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
44 * For each pane in the menu...
Dave Love <fx@gnu.org>
parents:
diff changeset
45 */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
46
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
47 p_num = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
48 for (
Dave Love <fx@gnu.org>
parents:
diff changeset
49 p_ptr = menu->p_list->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
50 p_ptr != menu->p_list;
Dave Love <fx@gnu.org>
parents:
diff changeset
51 p_ptr = p_ptr->next
Dave Love <fx@gnu.org>
parents:
diff changeset
52 ){
Dave Love <fx@gnu.org>
parents:
diff changeset
53 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
54 * Recompute pane dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
55 */
Dave Love <fx@gnu.org>
parents:
diff changeset
56 if (_XMRecomputePane(display, menu, p_ptr, p_num) == _FAILURE) {
Dave Love <fx@gnu.org>
parents:
diff changeset
57 return(XM_FAILURE);
Dave Love <fx@gnu.org>
parents:
diff changeset
58 }
Dave Love <fx@gnu.org>
parents:
diff changeset
59 p_num++;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
60
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
61 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
62 * For each selection in the pane...
Dave Love <fx@gnu.org>
parents:
diff changeset
63 */
Dave Love <fx@gnu.org>
parents:
diff changeset
64 s_num = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
65 for (
Dave Love <fx@gnu.org>
parents:
diff changeset
66 s_ptr = p_ptr->s_list->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
67 s_ptr != p_ptr->s_list;
Dave Love <fx@gnu.org>
parents:
diff changeset
68 s_ptr = s_ptr->next
Dave Love <fx@gnu.org>
parents:
diff changeset
69 ) {
Dave Love <fx@gnu.org>
parents:
diff changeset
70 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
71 * Recompute selection dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
72 */
Dave Love <fx@gnu.org>
parents:
diff changeset
73 if (_XMRecomputeSelection(display, menu, s_ptr, s_num) == _FAILURE) {
Dave Love <fx@gnu.org>
parents:
diff changeset
74 return(XM_FAILURE);
Dave Love <fx@gnu.org>
parents:
diff changeset
75 }
Dave Love <fx@gnu.org>
parents:
diff changeset
76 s_num++;
Dave Love <fx@gnu.org>
parents:
diff changeset
77 }
Dave Love <fx@gnu.org>
parents:
diff changeset
78 }
Dave Love <fx@gnu.org>
parents:
diff changeset
79
Dave Love <fx@gnu.org>
parents:
diff changeset
80 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
81 * Recompute menu size.
Dave Love <fx@gnu.org>
parents:
diff changeset
82 */
Dave Love <fx@gnu.org>
parents:
diff changeset
83 if (menu->menu_style == CENTER) {
Dave Love <fx@gnu.org>
parents:
diff changeset
84 menu->width = menu->p_width + (menu->p_bdr_width << 1);
Dave Love <fx@gnu.org>
parents:
diff changeset
85 }
Dave Love <fx@gnu.org>
parents:
diff changeset
86 else {
Dave Love <fx@gnu.org>
parents:
diff changeset
87 menu->width = menu->p_width + (menu->p_bdr_width << 1) +
Dave Love <fx@gnu.org>
parents:
diff changeset
88 ((menu->p_count - 1) * menu->p_x_off);
Dave Love <fx@gnu.org>
parents:
diff changeset
89 }
Dave Love <fx@gnu.org>
parents:
diff changeset
90 menu->height = menu->p_height + (menu->p_bdr_width << 1) +
Dave Love <fx@gnu.org>
parents:
diff changeset
91 ((menu->p_count - 1) * menu->p_y_off);
Dave Love <fx@gnu.org>
parents:
diff changeset
92
Dave Love <fx@gnu.org>
parents:
diff changeset
93 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
94 * Reset the recompute flag.
Dave Love <fx@gnu.org>
parents:
diff changeset
95 */
Dave Love <fx@gnu.org>
parents:
diff changeset
96 menu->recompute = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
97
Dave Love <fx@gnu.org>
parents:
diff changeset
98 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
99 * Return successfully.
Dave Love <fx@gnu.org>
parents:
diff changeset
100 */
Dave Love <fx@gnu.org>
parents:
diff changeset
101 _XMErrorCode = XME_NO_ERROR;
Dave Love <fx@gnu.org>
parents:
diff changeset
102 return(XM_SUCCESS);
Dave Love <fx@gnu.org>
parents:
diff changeset
103 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
104
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
105 /* arch-tag: 1fe99b82-3873-4aab-b2b3-f277c93e00d9
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
106 (do not change this comment) */