annotate oldXMenu/Recomp.c @ 87595:4c6c79916238

* configure.in: Remove references to unsupported systems. * notes/copyright: * MAINTAINERS: Remove references to files that have been removed. * os.texi (System Environment): Remove references to OSes that are not supported anymore. * PROBLEMS: * MACHINES: Remove references to systems not supported anymore. * makefile.w32-in: * Makefile.in: Remove references to Xenix. * gnus.el (gnus-use-long-file-name): Remove reference to xenix. * obsolete/x-apollo.el: Remove file for unsupported system. * term/x-win.el (vendor-specific-keysyms): Remove reference to Apollo. * progmodes/gud.el (gud-dgux-p): Remove. (dbx): Remove reference to dgux. * progmodes/ps-mode.el (ps-mode-print-function): * ps-print.el (ps-lp-system): * paths.el (rmail-spool-directory): * ls-lisp.el (ls-lisp-emulation): * lpr.el (lpr-lp-system): * dired.el (dired-chown-program): Remove references to dgux. * m/7300.h: * m/acorn.h: * m/alliant-2800.h: * m/alliant.h: * m/alliant1.h: * m/alliant4.h: * m/altos.h: * m/amdahl.h: * m/apollo.h: * m/att3b.h: * m/aviion-intel.h: * m/aviion.h: * m/celerity.h: * m/clipper.h: * m/cnvrgnt.h: * m/convex.h: * m/cydra5.h: * m/delta88k.h: * m/dpx2.h: * m/dual.h: * m/elxsi.h: * m/f301.h: * m/gould-np1.h: * m/gould.h: * m/i860.h: * m/ibmps2-aix.h: * m/ibmrt-aix.h: * m/ibmrt.h: * m/irist.h: * m/is386.h: * m/isi-ov.h: * m/mega68.h: * m/mg1.h: * m/news-r6.h: * m/news-risc.h: * m/news.h: * m/nh3000.h: * m/nh4000.h: * m/ns16000.h: * m/ns32000.h: * m/nu.h: * m/orion.h: * m/orion105.h: * m/paragon.h: * m/pfa50.h: * m/plexus.h: * m/pyramid.h: * m/pyrmips.h: * m/sh3el.h: * m/sps7.h: * m/sr2k.h: * m/stride.h: * m/sun1.h: * m/sun2.h: * m/sun3-68881.h: * m/sun3-fpa.h: * m/sun3-soft.h: * m/sun3.h: * m/sun386.h: * m/symmetry.h: * m/tad68k.h: * m/tahoe.h: * m/targon31.h: * m/tek4300.h: * m/tekxd88.h: * m/tower32.h: * m/tower32v3.h: * m/ustation.h: * m/wicat.h: * m/xps100.h: * s/cxux.h: * s/cxux7.h: * s/dgux.h: * s/dgux4.h: * s/dgux5-4-3.h: * s/dgux5-4r2.h: * s/esix.h: * s/esix5r4.h: * s/hiuxmpp.h: * s/hiuxwe2.h: * s/iris3-5.h: * s/iris3-6.h: * s/isc2-2.h: * s/isc3-0.h: * s/isc4-0.h: * s/isc4-1.h: * s/newsos5.h: * s/newsos6.h: * s/osf1.h: * s/osf5-0.h: * s/riscix1-1.h: * s/riscix12.h: * s/sco4.h: * s/sco5.h: * s/sunos4-0.h: * s/sunos4-1.h: * s/sunos413.h: * s/sunos4shr.h: * s/umax.h: * s/unipl5-2.h: * s/xenix.h: * cxux-crt0.s: * unexapollo.c: * unexconvex.c: * unexenix.c: * unexsni.c: Remove files for systems no longer supported. * m/intel386.h: Remove references to unsupported systems. * w32.c (get_emacs_configuration): Remove reference to i860. * sysdep.c: Remove dead code.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 06 Jan 2008 00:56:56 +0000
parents fec5e03aaf59
children edf631bdbb7a ec58e5c426ef 5cc91198ffb2
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 * XMenuRecompute - Recompute XMenu object dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
10 *
Dave Love <fx@gnu.org>
parents:
diff changeset
11 * Author: Tony Della Fera, DEC
Dave Love <fx@gnu.org>
parents:
diff changeset
12 * September, 1985
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
Dave Love <fx@gnu.org>
parents:
diff changeset
16 #include "XMenuInt.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
17
Dave Love <fx@gnu.org>
parents:
diff changeset
18 int
Dave Love <fx@gnu.org>
parents:
diff changeset
19 XMenuRecompute(display, menu)
Dave Love <fx@gnu.org>
parents:
diff changeset
20 Display *display;
Dave Love <fx@gnu.org>
parents:
diff changeset
21 register XMenu *menu; /* Menu object to be recomputed. */
Dave Love <fx@gnu.org>
parents:
diff changeset
22 {
Dave Love <fx@gnu.org>
parents:
diff changeset
23 register XMPane *p_ptr; /* Pane pointer. */
Dave Love <fx@gnu.org>
parents:
diff changeset
24 register XMSelect *s_ptr; /* Selection pointer. */
Dave Love <fx@gnu.org>
parents:
diff changeset
25
Dave Love <fx@gnu.org>
parents:
diff changeset
26 register int p_num; /* Pane serial number. */
Dave Love <fx@gnu.org>
parents:
diff changeset
27 register int s_num; /* Selection serial number. */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
28
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
29 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
30 * If there are no panes in the menu then return failure
Dave Love <fx@gnu.org>
parents:
diff changeset
31 * because the menu is not initialized.
Dave Love <fx@gnu.org>
parents:
diff changeset
32 */
Dave Love <fx@gnu.org>
parents:
diff changeset
33 if (menu->p_count == 0) {
Dave Love <fx@gnu.org>
parents:
diff changeset
34 _XMErrorCode = XME_NOT_INIT;
Dave Love <fx@gnu.org>
parents:
diff changeset
35 return(XM_FAILURE);
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 * Recompute menu wide global values: pane window size,
Dave Love <fx@gnu.org>
parents:
diff changeset
40 * selection size and maximum selection count.
Dave Love <fx@gnu.org>
parents:
diff changeset
41 */
Dave Love <fx@gnu.org>
parents:
diff changeset
42 _XMRecomputeGlobals(display, menu);
Dave Love <fx@gnu.org>
parents:
diff changeset
43
Dave Love <fx@gnu.org>
parents:
diff changeset
44 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
45 * For each pane in the menu...
Dave Love <fx@gnu.org>
parents:
diff changeset
46 */
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
47
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
48 p_num = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
49 for (
Dave Love <fx@gnu.org>
parents:
diff changeset
50 p_ptr = menu->p_list->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
51 p_ptr != menu->p_list;
Dave Love <fx@gnu.org>
parents:
diff changeset
52 p_ptr = p_ptr->next
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 * Recompute pane dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
56 */
Dave Love <fx@gnu.org>
parents:
diff changeset
57 if (_XMRecomputePane(display, menu, p_ptr, p_num) == _FAILURE) {
Dave Love <fx@gnu.org>
parents:
diff changeset
58 return(XM_FAILURE);
Dave Love <fx@gnu.org>
parents:
diff changeset
59 }
Dave Love <fx@gnu.org>
parents:
diff changeset
60 p_num++;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
61
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
62 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
63 * For each selection in the pane...
Dave Love <fx@gnu.org>
parents:
diff changeset
64 */
Dave Love <fx@gnu.org>
parents:
diff changeset
65 s_num = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
66 for (
Dave Love <fx@gnu.org>
parents:
diff changeset
67 s_ptr = p_ptr->s_list->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
68 s_ptr != p_ptr->s_list;
Dave Love <fx@gnu.org>
parents:
diff changeset
69 s_ptr = s_ptr->next
Dave Love <fx@gnu.org>
parents:
diff changeset
70 ) {
Dave Love <fx@gnu.org>
parents:
diff changeset
71 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
72 * Recompute selection dependencies.
Dave Love <fx@gnu.org>
parents:
diff changeset
73 */
Dave Love <fx@gnu.org>
parents:
diff changeset
74 if (_XMRecomputeSelection(display, menu, s_ptr, s_num) == _FAILURE) {
Dave Love <fx@gnu.org>
parents:
diff changeset
75 return(XM_FAILURE);
Dave Love <fx@gnu.org>
parents:
diff changeset
76 }
Dave Love <fx@gnu.org>
parents:
diff changeset
77 s_num++;
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 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
82 * Recompute menu size.
Dave Love <fx@gnu.org>
parents:
diff changeset
83 */
Dave Love <fx@gnu.org>
parents:
diff changeset
84 if (menu->menu_style == CENTER) {
Dave Love <fx@gnu.org>
parents:
diff changeset
85 menu->width = menu->p_width + (menu->p_bdr_width << 1);
Dave Love <fx@gnu.org>
parents:
diff changeset
86 }
Dave Love <fx@gnu.org>
parents:
diff changeset
87 else {
Dave Love <fx@gnu.org>
parents:
diff changeset
88 menu->width = menu->p_width + (menu->p_bdr_width << 1) +
Dave Love <fx@gnu.org>
parents:
diff changeset
89 ((menu->p_count - 1) * menu->p_x_off);
Dave Love <fx@gnu.org>
parents:
diff changeset
90 }
Dave Love <fx@gnu.org>
parents:
diff changeset
91 menu->height = menu->p_height + (menu->p_bdr_width << 1) +
Dave Love <fx@gnu.org>
parents:
diff changeset
92 ((menu->p_count - 1) * menu->p_y_off);
Dave Love <fx@gnu.org>
parents:
diff changeset
93
Dave Love <fx@gnu.org>
parents:
diff changeset
94 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
95 * Reset the recompute flag.
Dave Love <fx@gnu.org>
parents:
diff changeset
96 */
Dave Love <fx@gnu.org>
parents:
diff changeset
97 menu->recompute = 0;
Dave Love <fx@gnu.org>
parents:
diff changeset
98
Dave Love <fx@gnu.org>
parents:
diff changeset
99 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
100 * Return successfully.
Dave Love <fx@gnu.org>
parents:
diff changeset
101 */
Dave Love <fx@gnu.org>
parents:
diff changeset
102 _XMErrorCode = XME_NO_ERROR;
Dave Love <fx@gnu.org>
parents:
diff changeset
103 return(XM_SUCCESS);
Dave Love <fx@gnu.org>
parents:
diff changeset
104 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
105
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
106 /* arch-tag: 1fe99b82-3873-4aab-b2b3-f277c93e00d9
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
107 (do not change this comment) */