1 /* Copyright Massachusetts Institute of Technology 1985 */
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuInsertSelection - Inserts a selection into an XMenu object
11 * Author: Tony Della Fera, DEC
19 XMenuInsertSelection(register XMenu
*menu
, register int p_num
, register int s_num
, char *data
, char *label
, int active
)
20 /* Menu object to be modified. */
21 /* Pane number to be modified. */
22 /* Selection number of new selection. */
24 /* Selection label. */
25 /* Make selection active? */
27 register XMPane
*p_ptr
; /* XMPane pointer. */
28 register XMSelect
*s_ptr
; /* XMSelect pointer. */
30 XMSelect
*sel
; /* Newly created selection. */
32 int label_length
; /* Label length in characters. */
33 int label_width
; /* Label width in pixels. */
36 * Check for NULL pointers!
39 _XMErrorCode
= XME_ARG_BOUNDS
;
44 * Find the right pane.
46 p_ptr
= _XMGetPanePtr(menu
, p_num
);
47 if (p_ptr
== NULL
) return(XM_FAILURE
);
50 * Find the selection number one less than the one specified since that
51 * is the selection after which the insertion will occur.
53 s_ptr
= _XMGetSelectionPtr(p_ptr
, (s_num
- 1));
54 if (s_ptr
== NULL
) return(XM_FAILURE
);
57 * Calloc the XMSelect structure.
59 sel
= (XMSelect
*)calloc(1, sizeof(XMSelect
));
61 _XMErrorCode
= XME_CALLOC
;
66 * Determine label size.
68 label_length
= strlen(label
);
69 label_width
= XTextWidth(menu
->s_fnt_info
, label
, label_length
);
73 * Fill the XMSelect structure.
75 if (!strcmp (label
, "--") || !strcmp (label
, "---"))
77 sel
->type
= SEPARATOR
;
82 sel
->type
= SELECTION
;
89 sel
->label_width
= label_width
;
90 sel
->label_length
= label_length
;
92 sel
->parent_p
= p_ptr
;
95 * Insert the selection after the selection with the selection
96 * number one less than the desired number for the new selection.
98 emacs_insque(sel
, s_ptr
);
101 * Update the selection count.
106 * Schedule a recompute.
111 * Return the selection number just inserted.
113 _XMErrorCode
= XME_NO_ERROR
;