3 /* $Header: /u/src/emacs/19.0/oldXMenu/RCS/AddSel.c,v 1.1 1992/04/11 22:10:17 jimb Exp $ */
4 /* Copyright Massachusetts Institute of Technology 1985 */
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuAddSelection - Adds a selection to an XMenu object.
11 * Author: Tony Della Fera, DEC
20 XMenuAddSelection(display
, menu
, p_num
, data
, label
, active
)
22 register XMenu
*menu
; /* Menu object to be modified. */
23 register int p_num
; /* Pane number to be modified. */
24 char *data
; /* Data value. */
25 char *label
; /* Selection label. */
26 int active
; /* Make selection active? */
28 register XMPane
*pane
; /* Pane containing the new selection. */
29 register XMSelect
*select
; /* Newly created selection. */
32 int label_length
; /* Label lenght in characters. */
33 int label_width
; /* Label width in pixels. */
36 * Check for NULL pointers!
39 _XMErrorCode
= XME_ARG_BOUNDS
;
43 * Find the right pane.
45 pane
= _XMGetPanePtr(menu
, p_num
);
46 if (pane
== NULL
) return(XM_FAILURE
);
49 * Calloc the XMSelect structure.
51 select
= (XMSelect
*)calloc(1, sizeof(XMSelect
));
53 _XMErrorCode
= XME_CALLOC
;
57 * Determine label size.
59 label_length
= strlen(label
);
60 label_width
= XTextWidth(menu
->s_fnt_info
, label
, label_length
);
63 * Fill the XMSelect structure.
65 if (!strcmp (label
, "--") || !strcmp (label
, "---"))
67 select
->type
= SEPARATOR
;
72 select
->type
= SELECTION
;
73 select
->active
= active
;
77 select
->label
= label
;
78 select
->label_width
= label_width
;
79 select
->label_length
= label_length
;
81 select
->parent_p
= pane
;
84 * Insert the selection at the end of the selection list.
86 emacs_insque(select
, pane
->s_list
->prev
);
89 * Update the selection count.
94 * Schedule a recompute.
99 * Return the selection number just added.
101 _XMErrorCode
= XME_NO_ERROR
;
102 return((pane
->s_count
- 1));