3 /* Copyright Massachusetts Institute of Technology 1985 */
6 * XMenu: MIT Project Athena, X Window system menu package
8 * XMenuInsertSelection - Inserts a selection into an XMenu object
10 * Author: Tony Della Fera, DEC
19 XMenuInsertSelection(menu
, p_num
, s_num
, data
, label
, active
)
20 register XMenu
*menu
; /* Menu object to be modified. */
21 register int p_num
; /* Pane number to be modified. */
22 register int s_num
; /* Selection number of new selection. */
23 char *data
; /* Data value. */
24 char *label
; /* Selection label. */
25 int active
; /* Make selection active? */
27 register XMPane
*p_ptr
; /* XMPane pointer. */
28 register XMSelect
*s_ptr
; /* XMSelect pointer. */
30 XMSelect
*select
; /* 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 select
= (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 select
->type
= SEPARATOR
;
82 select
->type
= SELECTION
;
83 select
->active
= active
;
86 select
->active
= active
;
88 select
->label
= label
;
89 select
->label_width
= label_width
;
90 select
->label_length
= label_length
;
92 select
->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(select
, s_ptr
);
101 * Update the selection count.
106 * Schedule a recompute.
111 * Return the selection number just inserted.
113 _XMErrorCode
= XME_NO_ERROR
;
117 /* arch-tag: 8398626f-81cb-4e13-8ebc-aac1b9237663
118 (do not change this comment) */