3 /* Copyright Massachusetts Institute of Technology 1985 */
4 /* Copyright (C) 2002, 2003, 2004, 2005,
5 2006 Free Software Foundation, Inc. */
8 * XMenu: MIT Project Athena, X Window system menu package
10 * XMenuInsertSelection - Inserts a selection into an XMenu object
12 * Author: Tony Della Fera, DEC
21 XMenuInsertSelection(menu
, p_num
, s_num
, data
, label
, active
)
22 register XMenu
*menu
; /* Menu object to be modified. */
23 register int p_num
; /* Pane number to be modified. */
24 register int s_num
; /* Selection number of new selection. */
25 char *data
; /* Data value. */
26 char *label
; /* Selection label. */
27 int active
; /* Make selection active? */
29 register XMPane
*p_ptr
; /* XMPane pointer. */
30 register XMSelect
*s_ptr
; /* XMSelect pointer. */
32 XMSelect
*select
; /* Newly created selection. */
34 int label_length
; /* Label length in characters. */
35 int label_width
; /* Label width in pixels. */
38 * Check for NULL pointers!
41 _XMErrorCode
= XME_ARG_BOUNDS
;
46 * Find the right pane.
48 p_ptr
= _XMGetPanePtr(menu
, p_num
);
49 if (p_ptr
== NULL
) return(XM_FAILURE
);
52 * Find the selection number one less than the one specified since that
53 * is the selection after which the insertion will occur.
55 s_ptr
= _XMGetSelectionPtr(p_ptr
, (s_num
- 1));
56 if (s_ptr
== NULL
) return(XM_FAILURE
);
59 * Calloc the XMSelect structure.
61 select
= (XMSelect
*)calloc(1, sizeof(XMSelect
));
63 _XMErrorCode
= XME_CALLOC
;
68 * Determine label size.
70 label_length
= strlen(label
);
71 label_width
= XTextWidth(menu
->s_fnt_info
, label
, label_length
);
75 * Fill the XMSelect structure.
77 if (!strcmp (label
, "--") || !strcmp (label
, "---"))
79 select
->type
= SEPARATOR
;
84 select
->type
= SELECTION
;
85 select
->active
= active
;
88 select
->active
= active
;
90 select
->label
= label
;
91 select
->label_width
= label_width
;
92 select
->label_length
= label_length
;
94 select
->parent_p
= p_ptr
;
97 * Insert the selection after the selection with the selection
98 * number one less than the desired number for the new selection.
100 emacs_insque(select
, s_ptr
);
103 * Update the selection count.
108 * Schedule a recompute.
113 * Return the selection number just inserted.
115 _XMErrorCode
= XME_NO_ERROR
;
119 /* arch-tag: 8398626f-81cb-4e13-8ebc-aac1b9237663
120 (do not change this comment) */