1 /* Copyright Massachusetts Institute of Technology 1985 */
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuInsertPane - Inserts a pane into an XMenu object in
10 * a particular position.
12 * Author: Tony Della Fera, DEC
21 XMenuInsertPane(register XMenu
*menu
, register int p_num
, char *label
, int active
)
22 /* Menu object to be modified. */
23 /* Pane number of new pane. */
24 /* Selection label. */
25 /* Make selection active? */
27 register XMPane
*p_ptr
; /* XMPane pointer. */
28 register XMPane
*pane
; /* Newly created pane. */
29 register XMSelect
*sel
; /* Initial selection for the new pane. */
31 int label_length
; /* Label length in characters. */
32 int label_width
; /* Label width in pixels. */
35 * Check for NULL pointers!
38 _XMErrorCode
= XME_ARG_BOUNDS
;
43 * Find the pane number one less than the one specified since that
44 * is the pane after which the insertion will occur.
46 p_ptr
= _XMGetPanePtr(menu
, (p_num
- 1));
47 if (p_ptr
== NULL
) return(XM_FAILURE
);
50 * Calloc the XMPane structure and the initial XMSelect.
52 pane
= (XMPane
*)calloc(1, sizeof(XMPane
));
54 _XMErrorCode
= XME_CALLOC
;
57 sel
= (XMSelect
*)calloc(1, sizeof(XMSelect
));
59 _XMErrorCode
= XME_CALLOC
;
64 * Determine label size.
66 label_length
= strlen(label
);
67 label_width
= XTextWidth(menu
->p_fnt_info
, label
, label_length
);
70 * Set up the initial selection.
71 * Values not explicitly set are zeroed by calloc.
75 sel
->type
= SL_HEADER
;
80 * Fill the XMPane structure.
83 pane
->active
= active
;
86 pane
->label_width
= label_width
;
87 pane
->label_length
= label_length
;
91 * Insert the pane after the pane with the pane
92 * number one less than the desired number for the
95 emacs_insque(pane
, p_ptr
);
98 * Update the pane count.
103 * Schedule a recompute.
108 * Return the number of the pane just added.
110 _XMErrorCode
= XME_NO_ERROR
;