3 /* Copyright Massachusetts Institute of Technology 1985 */
6 * XMenu: MIT Project Athena, X Window system menu package
8 * XMenuInsertPane - Inserts a pane into an XMenu object in
9 * a particular position.
11 * Author: Tony Della Fera, DEC
20 XMenuInsertPane(menu
, p_num
, label
, active
)
21 register XMenu
*menu
; /* Menu object to be modified. */
22 register int p_num
; /* Pane number of new pane. */
23 char *label
; /* Selection label. */
24 int active
; /* Make selection active? */
26 register XMPane
*p_ptr
; /* XMPane pointer. */
27 register XMPane
*pane
; /* Newly created pane. */
28 register XMSelect
*select
; /* Initial selection for the new pane. */
30 int label_length
; /* Label length in characters. */
31 int label_width
; /* Label width in pixels. */
34 * Check for NULL pointers!
37 _XMErrorCode
= XME_ARG_BOUNDS
;
42 * Find the pane number one less than the one specified since that
43 * is the pane after which the insertion will occur.
45 p_ptr
= _XMGetPanePtr(menu
, (p_num
- 1));
46 if (p_ptr
== NULL
) return(XM_FAILURE
);
49 * Calloc the XMPane structure and the initial XMSelect.
51 pane
= (XMPane
*)calloc(1, sizeof(XMPane
));
53 _XMErrorCode
= XME_CALLOC
;
56 select
= (XMSelect
*)calloc(1, sizeof(XMSelect
));
58 _XMErrorCode
= XME_CALLOC
;
63 * Determine label size.
65 label_length
= strlen(label
);
66 label_width
= XTextWidth(menu
->p_fnt_info
, label
, label_length
);
69 * Set up the initial selection.
70 * Values not explicitly set are zeroed by calloc.
72 select
->next
= select
;
73 select
->prev
= select
;
74 select
->type
= SL_HEADER
;
76 select
->parent_p
= pane
;
79 * Fill the XMPane structure.
82 pane
->active
= active
;
85 pane
->label_width
= label_width
;
86 pane
->label_length
= label_length
;
87 pane
->s_list
= select
;
90 * Insert the pane after the pane with the pane
91 * number one less than the desired number for the
94 emacs_insque(pane
, p_ptr
);
97 * Update the pane count.
102 * Schedule a recompute.
107 * Return the number of the pane just added.
109 _XMErrorCode
= XME_NO_ERROR
;
113 /* arch-tag: ab94d53d-f05b-4273-82d3-f1b01eb9dc9e
114 (do not change this comment) */