Fix hang with large yanks
[emacs.git] / oldXMenu / InsSel.c
blob66f4968197df95bfd9929e093ce81dc7b75a3489
1 /* Copyright Massachusetts Institute of Technology 1985 */
3 #include "copyright.h"
6 /*
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuInsertSelection - Inserts a selection into an XMenu object
11 * Author: Tony Della Fera, DEC
12 * 20-Nov-85
16 #include "XMenuInt.h"
18 int
19 XMenuInsertSelection(register XMenu *menu, register int p_num, register int s_num, char *data, char *label, int active)
20 /* Menu object to be modified. */
21 /* Pane number to be modified. */
22 /* Selection number of new selection. */
23 /* Data value. */
24 /* Selection label. */
25 /* Make selection active? */
27 register XMPane *p_ptr; /* XMPane pointer. */
28 register XMSelect *s_ptr; /* XMSelect pointer. */
30 XMSelect *sel; /* Newly created selection. */
32 int label_length; /* Label length in characters. */
33 int label_width; /* Label width in pixels. */
36 * Check for NULL pointers!
38 if (label == NULL) {
39 _XMErrorCode = XME_ARG_BOUNDS;
40 return(XM_FAILURE);
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 sel = (XMSelect *)calloc(1, sizeof(XMSelect));
60 if (sel == NULL) {
61 _XMErrorCode = XME_CALLOC;
62 return(XM_FAILURE);
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 sel->type = SEPARATOR;
78 sel->active = 0;
80 else
82 sel->type = SELECTION;
83 sel->active = active;
86 sel->active = active;
87 sel->serial = -1;
88 sel->label = label;
89 sel->label_width = label_width;
90 sel->label_length = label_length;
91 sel->data = data;
92 sel->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(sel, s_ptr);
101 * Update the selection count.
103 p_ptr->s_count++;
106 * Schedule a recompute.
108 menu->recompute = 1;
111 * Return the selection number just inserted.
113 _XMErrorCode = XME_NO_ERROR;
114 return(s_num);