1 /* $Header: /cvs/emacs/oldXMenu/Activate.c,v 1.4 2002/04/22 18:27:03 jhd Exp $ */
2 /* Copyright Massachusetts Institute of Technology 1985 */
7 * XMenu: MIT Project Athena, X Window system menu package
9 * XMenuActivate - Maps a given menu to the display and activates
10 * the menu for user selection. The user is allowed to
11 * specify which pane and selection will be current,
12 * the X and Y location of the menu (relative to the
13 * parent window) and the mouse button event mask that
14 * will be used to identify a selection request.
16 * A menu selection is shown to be current by placing
17 * a highlight box around the selection as the mouse
18 * cursor enters its active region. Inactive selections
19 * will not be highlighted. As the mouse cursor moved
20 * from one menu pane to another menu pane the pane being
21 * entered is raised and made current and the pane being
24 * Anytime XMenuActivate returns, the p_num and
25 * s_num are left at their last known values (i.e.,
26 * the last known current pane and selection indices).
27 * The following are the defined return states:
29 * 1) If at any time an error occurs the data
30 * pointer is left untouched and XM_FAILURE
33 * 2) When a selection request is received (i.e.,
34 * when the specified mouse event occurs) the
35 * data pointer will be set to the data
36 * associated with the particular selection
37 * current at the time of the selection request
38 * and XM_SUCCESS is returned.
40 * 3) If no selection was current at the time a
41 * selection request is made the data pointer
42 * will be left untouched and XM_NO_SELECT will
45 * 4) If the selection that was current at the time
46 * a selection request is made is not an active
47 * selection the data pointer will be left
48 * untouched and XM_IA_SELECT will be returned.
50 * Since X processes events in an asynchronous manner
51 * it is likely that XMenuActivate will encounter
52 * a "foreign event" while it is executing. Foreign
53 * events are handled in one of three ways:
55 * 1) The event is discarded. This is the default
56 * mode and requires no action on the part of the
59 * 2) The application has identified an asynchronous
60 * event handler that will be called and the
61 * foreign event handed off to it. Note:
62 * AEQ mode disables this mode temporarily.
64 * 3) The application has enabled asynchronous event
65 * queuing mode. In this mode all foreign events
66 * will be queued up untill XMenuActivate
67 * terminates; at which time they will be
68 * returned to the X event queue. As long as
69 * AEQ mode is enabled any asynchronous event
70 * handler as temporarily disabled.
72 * Any events encountered while taking down the menu
73 * (i.e., exposure events from occluded windows) will
74 * automatically be returned to the X event queue after
75 * XMenuActivate has cleaned the queue of any of its own
76 * events that are no longer needed.
78 * Author: Tony Della Fera, DEC
86 /* For debug, set this to 0 to not grab the keyboard on menu popup */
87 int x_menu_grab_keyboard
= 1;
90 XMenuActivate(display
, menu
, p_num
, s_num
, x_pos
, y_pos
, event_mask
, data
,
92 register Display
*display
; /* Display to put menu on. */
93 register XMenu
*menu
; /* Menu to activate. */
94 int *p_num
; /* Pane number selected. */
95 int *s_num
; /* Selection number selected. */
96 int x_pos
; /* X coordinate of menu position. */
97 int y_pos
; /* Y coordinate of menu position. */
98 unsigned int event_mask
; /* Mouse button event mask. */
99 char **data
; /* Pointer to return data value. */
100 void (* help_callback
) (); /* Help callback. */
102 int status
; /* X routine call status. */
103 int orig_x
; /* Upper left menu origin X coord. */
104 int orig_y
; /* Upper left menu origin Y coord. */
105 int ret_val
; /* Return value. */
107 register XMPane
*p_ptr
; /* Current XMPane. */
108 register XMPane
*event_xmp
; /* Event XMPane pointer. */
109 register XMPane
*cur_p
; /* Current pane. */
110 register XMSelect
*cur_s
; /* Current selection. */
111 XMWindow
*event_xmw
; /* Event XMWindow pointer. */
112 XEvent event
; /* X input event. */
113 XEvent peek_event
; /* X input peek ahead event. */
115 Bool selection
= False
; /* Selection has been made. */
116 Bool forward
= True
; /* Moving forward in the pane list. */
119 int root_x
, root_y
, win_x
, win_y
;
123 * Define and allocate a foreign event queue to hold events
124 * that don't belong to XMenu. These events are later restored
125 * to the X event queue.
127 typedef struct _xmeventque
{
129 struct _xmeventque
*next
;
132 XMEventQue
*feq
= NULL
; /* Foreign event queue. */
133 XMEventQue
*feq_tmp
; /* Foreign event queue temporary. */
136 * If there are no panes in the menu then return failure
137 * because the menu is not initialized.
139 if (menu
->p_count
== 0) {
140 _XMErrorCode
= XME_NOT_INIT
;
145 * Find the desired current pane.
147 cur_p
= _XMGetPanePtr(menu
, *p_num
);
151 cur_p
->activated
= cur_p
->active
;
154 * Find the desired current selection.
155 * If the current selection index is out of range a null current selection
156 * will be assumed and the cursor will be placed in the current pane
159 cur_s
= _XMGetSelectionPtr(cur_p
, *s_num
);
162 * Compute origin of menu so that cursor is in
163 * Correct pane and selection.
165 _XMTransToOrigin(display
,
170 menu
->x_pos
= orig_x
; /* Store X and Y coords of menu. */
171 menu
->y_pos
= orig_y
;
173 if (XMenuRecompute(display
, menu
) == XM_FAILURE
) {
178 * Flush the window creation queue.
179 * This batches all window creates since lazy evaluation
180 * is more efficient than individual evaluation.
181 * This routine also does an XFlush().
183 if (_XMWinQueFlush(display
, menu
, cur_p
, cur_s
) == _FAILURE
) {
188 * Make sure windows are in correct order (in case we were passed
189 * an already created menu in incorrect order.)
191 for(p_ptr
= menu
->p_list
->next
; p_ptr
!= cur_p
; p_ptr
= p_ptr
->next
)
192 XRaiseWindow(display
, p_ptr
->window
);
193 for(p_ptr
= menu
->p_list
->prev
; p_ptr
!= cur_p
->prev
; p_ptr
= p_ptr
->prev
)
194 XRaiseWindow(display
, p_ptr
->window
);
197 * Make sure all selection windows are mapped.
200 p_ptr
= menu
->p_list
->next
;
201 p_ptr
!= menu
->p_list
;
204 XMapSubwindows(display
, p_ptr
->window
);
208 * Synchronize the X buffers and the event queue.
209 * From here on, all events in the queue that don't belong to
210 * XMenu are sent back to the application via an application
211 * provided event handler or discarded if the application has
212 * not provided an event handler.
217 * Grab the mouse for menu input.
220 status
= XGrabPointer(
231 if (status
== Success
&& x_menu_grab_keyboard
)
233 status
= XGrabKeyboard (display
,
239 if (status
!= Success
)
240 XUngrabPointer(display
, CurrentTime
);
243 if (status
== _X_FAILURE
) {
244 _XMErrorCode
= XME_GRAB_MOUSE
;
249 * Map the menu panes.
251 XMapWindow(display
, cur_p
->window
);
252 for (p_ptr
= menu
->p_list
->next
;
255 XMapWindow(display
, p_ptr
->window
);
256 for (p_ptr
= cur_p
->next
;
257 p_ptr
!= menu
->p_list
;
259 XMapWindow(display
, p_ptr
->window
);
261 XRaiseWindow(display
, cur_p
->window
); /* Make sure current */
262 /* pane is on top. */
264 cur_s
= NULL
; /* Clear current selection. */
267 * Begin event processing loop.
270 XNextEvent(display
, &event
); /* Get next event. */
271 switch (event
.type
) { /* Dispatch on the event type. */
273 event_xmp
= (XMPane
*)XLookUpAssoc(display
,
275 event
.xexpose
.window
);
276 if (event_xmp
== NULL
) {
278 * If AEQ mode is enabled then queue the event.
281 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
282 if (feq_tmp
== NULL
) {
283 _XMErrorCode
= XME_CALLOC
;
286 feq_tmp
->event
= event
;
290 else if (_XMEventHandler
) (*_XMEventHandler
)(&event
);
293 if (event_xmp
->activated
) {
294 XSetWindowBackground(display
,
299 XSetWindowBackgroundPixmap(display
,
303 _XMRefreshPane(display
, menu
, event_xmp
);
307 * First wait a small period of time, and see
308 * if another EnterNotify event follows hard on the
309 * heels of this one. i.e., the user is simply
310 * "passing through". If so, ignore this one.
313 event_xmw
= (XMWindow
*)XLookUpAssoc(display
,
315 event
.xcrossing
.window
);
316 if (event_xmw
== NULL
) break;
317 if (event_xmw
->type
== SELECTION
) {
319 * We have entered a selection.
321 /* if (XPending(display) == 0) usleep(150000); */
322 if (XPending(display
) != 0) {
323 XPeekEvent(display
, &peek_event
);
324 if(peek_event
.type
== LeaveNotify
) {
328 cur_s
= (XMSelect
*)event_xmw
;
329 help_callback (cur_s
->help_string
,
330 cur_p
->serial
, cur_s
->serial
);
333 * If the pane we are in is active and the
334 * selection entered is active then activate
337 if (cur_p
->active
&& cur_s
->active
> 0) {
338 cur_s
->activated
= 1;
339 _XMRefreshSelection(display
, menu
, cur_s
);
344 * We have entered a pane.
346 /* if (XPending(display) == 0) usleep(150000); */
347 if (XPending(display
) != 0) {
348 XPeekEvent(display
, &peek_event
);
349 if (peek_event
.type
== EnterNotify
) break;
351 XQueryPointer(display
,
357 event_xmp
= (XMPane
*)XLookUpAssoc(display
,
360 if (event_xmp
== NULL
) break;
361 if (event_xmp
== cur_p
) break;
362 if (event_xmp
->serial
> cur_p
->serial
) forward
= True
;
363 else forward
= False
;
365 while (p_ptr
!= event_xmp
) {
366 if (forward
) p_ptr
= p_ptr
->next
;
367 else p_ptr
= p_ptr
->prev
;
368 XRaiseWindow(display
, p_ptr
->window
);
370 if (cur_p
->activated
) {
371 cur_p
->activated
= False
;
372 XSetWindowBackgroundPixmap(display
,
375 _XMRefreshPane(display
, menu
, cur_p
);
377 if (event_xmp
->active
) event_xmp
->activated
= True
;
380 * i suspect the we don't get an EXPOSE event when backing
381 * store is enabled; the menu windows content is probably
382 * not drawn in when it should be in that case.
383 * in that case, this is probably an ugly fix!
384 * i hope someone more familiar with this code would
385 * take it from here. -- caveh@eng.sun.com.
387 XSetWindowBackground(display
,
390 _XMRefreshPane(display
, menu
, event_xmp
);
396 event_xmw
= (XMWindow
*)XLookUpAssoc(
399 event
.xcrossing
.window
401 if (event_xmw
== NULL
) break;
402 if(cur_s
== NULL
) break;
405 * If the current selection was activated then
408 if (cur_s
->activated
) {
409 cur_s
->activated
= False
;
410 _XMRefreshSelection(display
, menu
, cur_s
);
417 *p_num
= cur_p
->serial
;
419 * Check to see if there is a current selection.
423 * Set the selection number to the current selection.
425 *s_num
= cur_s
->serial
;
427 * If the current selection was activated then
428 * we have a valid selection otherwise we have
429 * an inactive selection.
431 if (cur_s
->activated
) {
433 ret_val
= XM_SUCCESS
;
436 ret_val
= XM_IA_SELECT
;
441 * No selection was current.
443 ret_val
= XM_NO_SELECT
;
449 * If AEQ mode is enabled then queue the event.
452 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
453 if (feq_tmp
== NULL
) {
454 _XMErrorCode
= XME_CALLOC
;
457 feq_tmp
->event
= event
;
461 else if (_XMEventHandler
) (*_XMEventHandler
)(&event
);
464 * If a selection has been made, break out of the event loop.
466 if (selection
== True
) break;
472 for ( p_ptr
= menu
->p_list
->next
;
473 p_ptr
!= menu
->p_list
;
476 XUnmapWindow(display
, p_ptr
->window
);
482 XUngrabPointer(display
, CurrentTime
);
483 XUngrabKeyboard(display
, CurrentTime
);
486 * Restore bits under where the menu was if we managed
487 * to save them and free the pixmap.
491 * If there is a current selection deactivate it.
493 if (cur_s
!= NULL
) cur_s
->activated
= 0;
496 * Deactivate the current pane.
498 cur_p
->activated
= 0;
499 XSetWindowBackgroundPixmap(display
, cur_p
->window
, menu
->inact_pixmap
);
502 * Synchronize the X buffers and the X event queue.
507 * Dispatch any events remaining on the queue.
509 while (QLength(display
)) {
511 * Fetch the next event.
513 XNextEvent(display
, &event
);
516 * Discard any events left on the queue that belong to XMenu.
517 * All others are held and then returned to the event queue.
519 switch (event
.type
) {
526 * Does this event belong to one of XMenu's windows?
527 * If so, discard it and process the next event.
528 * If not fall through and treat it as a foreign event.
530 event_xmp
= (XMPane
*)XLookUpAssoc(
535 if (event_xmp
!= NULL
) continue;
538 * This is a foreign event.
539 * Queue it for later return to the X event queue.
541 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
542 if (feq_tmp
== NULL
) {
543 _XMErrorCode
= XME_CALLOC
;
546 feq_tmp
->event
= event
;
552 * Return any foreign events that were queued to the X event queue.
554 while (feq
!= NULL
) {
556 XPutBackEvent(display
, &feq_tmp
->event
);
558 free((char *)feq_tmp
);
562 * Return successfully.
564 _XMErrorCode
= XME_NO_ERROR
;