1 /* $Header: /gd/gnu/cvsroot/emacs/oldXMenu/Activate.c,v 1.2 2000/01/27 15:31:20 gerd 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
87 XMenuActivate(display
, menu
, p_num
, s_num
, x_pos
, y_pos
, event_mask
, data
,
89 register Display
*display
; /* Display to put menu on. */
90 register XMenu
*menu
; /* Menu to activate. */
91 int *p_num
; /* Pane number selected. */
92 int *s_num
; /* Selection number selected. */
93 int x_pos
; /* X coordinate of menu position. */
94 int y_pos
; /* Y coordinate of menu position. */
95 unsigned int event_mask
; /* Mouse button event mask. */
96 char **data
; /* Pointer to return data value. */
97 void (* help_callback
) (); /* Help callback. */
99 int status
; /* X routine call status. */
100 int orig_x
; /* Upper left menu origin X coord. */
101 int orig_y
; /* Upper left menu origin Y coord. */
102 int ret_val
; /* Return value. */
104 register XMPane
*p_ptr
; /* Current XMPane. */
105 register XMPane
*event_xmp
; /* Event XMPane pointer. */
106 register XMPane
*cur_p
; /* Current pane. */
107 register XMSelect
*cur_s
; /* Current selection. */
108 XMWindow
*event_xmw
; /* Event XMWindow pointer. */
109 XEvent event
; /* X input event. */
110 XEvent peek_event
; /* X input peek ahead event. */
112 Bool selection
= False
; /* Selection has been made. */
113 Bool forward
= True
; /* Moving forward in the pane list. */
116 int root_x
, root_y
, win_x
, win_y
;
120 * Define and allocate a foreign event queue to hold events
121 * that don't belong to XMenu. These events are later restored
122 * to the X event queue.
124 typedef struct _xmeventque
{
126 struct _xmeventque
*next
;
129 XMEventQue
*feq
= NULL
; /* Foreign event queue. */
130 XMEventQue
*feq_tmp
; /* Foreign event queue temporary. */
133 * If there are no panes in the menu then return failure
134 * because the menu is not initialized.
136 if (menu
->p_count
== 0) {
137 _XMErrorCode
= XME_NOT_INIT
;
142 * Find the desired current pane.
144 cur_p
= _XMGetPanePtr(menu
, *p_num
);
148 cur_p
->activated
= cur_p
->active
;
151 * Find the desired current selection.
152 * If the current selection index is out of range a null current selection
153 * will be assumed and the cursor will be placed in the current pane
156 cur_s
= _XMGetSelectionPtr(cur_p
, *s_num
);
159 * Compute origin of menu so that cursor is in
160 * Correct pane and selection.
162 _XMTransToOrigin(display
,
167 menu
->x_pos
= orig_x
; /* Store X and Y coords of menu. */
168 menu
->y_pos
= orig_y
;
170 if (XMenuRecompute(display
, menu
) == XM_FAILURE
) {
175 * Flush the window creation queue.
176 * This batches all window creates since lazy evaluation
177 * is more efficient than individual evaluation.
178 * This routine also does an XFlush().
180 if (_XMWinQueFlush(display
, menu
, cur_p
, cur_s
) == _FAILURE
) {
185 * Make sure windows are in correct order (in case we were passed
186 * an already created menu in incorrect order.)
188 for(p_ptr
= menu
->p_list
->next
; p_ptr
!= cur_p
; p_ptr
= p_ptr
->next
)
189 XRaiseWindow(display
, p_ptr
->window
);
190 for(p_ptr
= menu
->p_list
->prev
; p_ptr
!= cur_p
->prev
; p_ptr
= p_ptr
->prev
)
191 XRaiseWindow(display
, p_ptr
->window
);
194 * Make sure all selection windows are mapped.
197 p_ptr
= menu
->p_list
->next
;
198 p_ptr
!= menu
->p_list
;
201 XMapSubwindows(display
, p_ptr
->window
);
205 * Synchronize the X buffers and the event queue.
206 * From here on, all events in the queue that don't belong to
207 * XMenu are sent back to the application via an application
208 * provided event handler or discarded if the application has
209 * not provided an event handler.
214 * Grab the mouse for menu input.
217 status
= XGrabPointer(
228 if (status
== _X_FAILURE
) {
229 _XMErrorCode
= XME_GRAB_MOUSE
;
234 * Map the menu panes.
236 XMapWindow(display
, cur_p
->window
);
237 for (p_ptr
= menu
->p_list
->next
;
240 XMapWindow(display
, p_ptr
->window
);
241 for (p_ptr
= cur_p
->next
;
242 p_ptr
!= menu
->p_list
;
244 XMapWindow(display
, p_ptr
->window
);
246 XRaiseWindow(display
, cur_p
->window
); /* Make sure current */
247 /* pane is on top. */
249 cur_s
= NULL
; /* Clear current selection. */
252 * Begin event processing loop.
255 XNextEvent(display
, &event
); /* Get next event. */
256 switch (event
.type
) { /* Dispatch on the event type. */
258 event_xmp
= (XMPane
*)XLookUpAssoc(display
,
260 event
.xexpose
.window
);
261 if (event_xmp
== NULL
) {
263 * If AEQ mode is enabled then queue the event.
266 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
267 if (feq_tmp
== NULL
) {
268 _XMErrorCode
= XME_CALLOC
;
271 feq_tmp
->event
= event
;
275 else if (_XMEventHandler
) (*_XMEventHandler
)(&event
);
278 if (event_xmp
->activated
) {
279 XSetWindowBackground(display
,
284 XSetWindowBackgroundPixmap(display
,
288 _XMRefreshPane(display
, menu
, event_xmp
);
292 * First wait a small period of time, and see
293 * if another EnterNotify event follows hard on the
294 * heels of this one. i.e., the user is simply
295 * "passing through". If so, ignore this one.
298 event_xmw
= (XMWindow
*)XLookUpAssoc(display
,
300 event
.xcrossing
.window
);
301 if (event_xmw
== NULL
) break;
302 if (event_xmw
->type
== SELECTION
) {
304 * We have entered a selection.
306 /* if (XPending(display) == 0) usleep(150000); */
307 if (XPending(display
) != 0) {
308 XPeekEvent(display
, &peek_event
);
309 if(peek_event
.type
== LeaveNotify
) {
313 cur_s
= (XMSelect
*)event_xmw
;
314 help_callback (cur_s
->help_string
,
315 cur_p
->serial
, cur_s
->serial
);
318 * If the pane we are in is active and the
319 * selection entered is active then activate
322 if (cur_p
->active
&& cur_s
->active
> 0) {
323 cur_s
->activated
= 1;
324 _XMRefreshSelection(display
, menu
, cur_s
);
329 * We have entered a pane.
331 /* if (XPending(display) == 0) usleep(150000); */
332 if (XPending(display
) != 0) {
333 XPeekEvent(display
, &peek_event
);
334 if (peek_event
.type
== EnterNotify
) break;
336 XQueryPointer(display
,
342 event_xmp
= (XMPane
*)XLookUpAssoc(display
,
345 if (event_xmp
== NULL
) break;
346 if (event_xmp
== cur_p
) break;
347 if (event_xmp
->serial
> cur_p
->serial
) forward
= True
;
348 else forward
= False
;
350 while (p_ptr
!= event_xmp
) {
351 if (forward
) p_ptr
= p_ptr
->next
;
352 else p_ptr
= p_ptr
->prev
;
353 XRaiseWindow(display
, p_ptr
->window
);
355 if (cur_p
->activated
) {
356 cur_p
->activated
= False
;
357 XSetWindowBackgroundPixmap(display
,
360 _XMRefreshPane(display
, menu
, cur_p
);
362 if (event_xmp
->active
) event_xmp
->activated
= True
;
365 * i suspect the we don't get an EXPOSE event when backing
366 * store is enabled; the menu windows content is probably
367 * not drawn in when it should be in that case.
368 * in that case, this is probably an ugly fix!
369 * i hope someone more familiar with this code would
370 * take it from here. -- caveh@eng.sun.com.
372 XSetWindowBackground(display
,
375 _XMRefreshPane(display
, menu
, event_xmp
);
381 event_xmw
= (XMWindow
*)XLookUpAssoc(
384 event
.xcrossing
.window
386 if (event_xmw
== NULL
) break;
387 if(cur_s
== NULL
) break;
390 * If the current selection was activated then
393 if (cur_s
->activated
) {
394 cur_s
->activated
= False
;
395 _XMRefreshSelection(display
, menu
, cur_s
);
402 *p_num
= cur_p
->serial
;
404 * Check to see if there is a current selection.
408 * Set the selection number to the current selection.
410 *s_num
= cur_s
->serial
;
412 * If the current selection was activated then
413 * we have a valid selection otherwise we have
414 * an inactive selection.
416 if (cur_s
->activated
) {
418 ret_val
= XM_SUCCESS
;
421 ret_val
= XM_IA_SELECT
;
426 * No selection was current.
428 ret_val
= XM_NO_SELECT
;
434 * If AEQ mode is enabled then queue the event.
437 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
438 if (feq_tmp
== NULL
) {
439 _XMErrorCode
= XME_CALLOC
;
442 feq_tmp
->event
= event
;
446 else if (_XMEventHandler
) (*_XMEventHandler
)(&event
);
449 * If a selection has been made, break out of the event loop.
451 if (selection
== True
) break;
457 for ( p_ptr
= menu
->p_list
->next
;
458 p_ptr
!= menu
->p_list
;
461 XUnmapWindow(display
, p_ptr
->window
);
467 XUngrabPointer(display
, CurrentTime
);
470 * Restore bits under where the menu was if we managed
471 * to save them and free the pixmap.
475 * If there is a current selection deactivate it.
477 if (cur_s
!= NULL
) cur_s
->activated
= 0;
480 * Deactivate the current pane.
482 cur_p
->activated
= 0;
483 XSetWindowBackgroundPixmap(display
, cur_p
->window
, menu
->inact_pixmap
);
486 * Synchronize the X buffers and the X event queue.
491 * Dispatch any events remaining on the queue.
493 while (QLength(display
)) {
495 * Fetch the next event.
497 XNextEvent(display
, &event
);
500 * Discard any events left on the queue that belong to XMenu.
501 * All others are held and then returned to the event queue.
503 switch (event
.type
) {
510 * Does this event belong to one of XMenu's windows?
511 * If so, discard it and process the next event.
512 * If not fall through and treat it as a foreign event.
514 event_xmp
= (XMPane
*)XLookUpAssoc(
519 if (event_xmp
!= NULL
) continue;
522 * This is a foreign event.
523 * Queue it for later return to the X event queue.
525 feq_tmp
= (XMEventQue
*)malloc(sizeof(XMEventQue
));
526 if (feq_tmp
== NULL
) {
527 _XMErrorCode
= XME_CALLOC
;
530 feq_tmp
->event
= event
;
536 * Return any foreign events that were queued to the X event queue.
538 while (feq
!= NULL
) {
540 XPutBackEvent(display
, &feq_tmp
->event
);
542 free((char *)feq_tmp
);
546 * Return successfully.
548 _XMErrorCode
= XME_NO_ERROR
;