3 /* Copyright Massachusetts Institute of Technology 1985 */
6 * XMenu: MIT Project Athena, X Window system menu package
8 * XMenuChangePane - Change the label of a menu pane.
10 * Author: Tony Della Fera, DEC
18 XMenuChangePane(menu
, p_num
, label
)
19 register XMenu
*menu
; /* Menu object to be modified. */
20 register int p_num
; /* Pane number to be modified. */
21 char *label
; /* Selection label. */
23 register XMPane
*p_ptr
; /* XMPane pointer. */
25 int label_length
; /* Label length in characters. */
26 int label_width
; /* Label width in pixels. */
29 * Check for NULL pointers!
32 _XMErrorCode
= XME_ARG_BOUNDS
;
37 * Find the right pane.
39 p_ptr
= _XMGetPanePtr(menu
, p_num
);
40 if (p_ptr
== NULL
) return(XM_FAILURE
);
43 * Determine label size.
45 label_length
= strlen(label
);
46 label_width
= XTextWidth(menu
->p_fnt_info
, label
, label_length
);
49 * Change the pane data.
52 p_ptr
->label_width
= label_width
;
53 p_ptr
->label_length
= label_length
;
56 * Schedule a recompute.
61 * Return the pane number just changed.
63 _XMErrorCode
= XME_NO_ERROR
;
67 /* arch-tag: e267e9de-a3f0-4a0d-8c45-413afa176fd8
68 (do not change this comment) */