*** empty log message ***
[emacs.git] / oldXMenu / Activate.c
blob2c36cc850337731cfbd36a5f52b8f3bd5435c652
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 */
4 #include "copyright.h"
6 /*
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
22 * left is lowered.
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
31 * is returned.
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
43 * be returned.
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
57 * application.
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
79 * March 12, 1986
83 #include <config.h>
84 #include "XMenuInt.h"
86 int
87 XMenuActivate(display, menu, p_num, s_num, x_pos, y_pos, event_mask, data,
88 help_callback)
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. */
115 Window root, child;
116 int root_x, root_y, win_x, win_y;
117 unsigned int mask;
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 {
125 XEvent event;
126 struct _xmeventque *next;
127 } XMEventQue;
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;
138 return(XM_FAILURE);
142 * Find the desired current pane.
144 cur_p = _XMGetPanePtr(menu, *p_num);
145 if (cur_p == NULL) {
146 return(XM_FAILURE);
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
154 * header.
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,
163 menu,
164 cur_p, cur_s,
165 x_pos, y_pos,
166 &orig_x, &orig_y);
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) {
171 return(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) {
181 return(XM_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.
196 for (
197 p_ptr = menu->p_list->next;
198 p_ptr != menu->p_list;
199 p_ptr = p_ptr->next
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.
211 XSync(display, 0);
214 * Grab the mouse for menu input.
217 status = XGrabPointer(
218 display,
219 menu->parent,
220 True,
221 event_mask,
222 GrabModeAsync,
223 GrabModeAsync,
224 None,
225 menu->mouse_cursor,
226 CurrentTime
228 if (status == _X_FAILURE) {
229 _XMErrorCode = XME_GRAB_MOUSE;
230 return(XM_FAILURE);
234 * Map the menu panes.
236 XMapWindow(display, cur_p->window);
237 for (p_ptr = menu->p_list->next;
238 p_ptr != cur_p;
239 p_ptr = p_ptr->next)
240 XMapWindow(display, p_ptr->window);
241 for (p_ptr = cur_p->next;
242 p_ptr != menu->p_list;
243 p_ptr = p_ptr->next)
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.
254 while (1) {
255 XNextEvent(display, &event); /* Get next event. */
256 switch (event.type) { /* Dispatch on the event type. */
257 case Expose:
258 event_xmp = (XMPane *)XLookUpAssoc(display,
259 menu->assoc_tab,
260 event.xexpose.window);
261 if (event_xmp == NULL) {
263 * If AEQ mode is enabled then queue the event.
265 if (menu->aeq) {
266 feq_tmp = (XMEventQue *)malloc(sizeof(XMEventQue));
267 if (feq_tmp == NULL) {
268 _XMErrorCode = XME_CALLOC;
269 return(XM_FAILURE);
271 feq_tmp->event = event;
272 feq_tmp->next = feq;
273 feq = feq_tmp;
275 else if (_XMEventHandler) (*_XMEventHandler)(&event);
276 break;
278 if (event_xmp->activated) {
279 XSetWindowBackground(display,
280 event_xmp->window,
281 menu->bkgnd_color);
283 else {
284 XSetWindowBackgroundPixmap(display,
285 event_xmp->window,
286 menu->inact_pixmap);
288 _XMRefreshPane(display, menu, event_xmp);
289 break;
290 case EnterNotify:
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,
299 menu->assoc_tab,
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) {
310 break;
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
320 * the selection.
322 if (cur_p->active && cur_s->active > 0) {
323 cur_s->activated = 1;
324 _XMRefreshSelection(display, menu, cur_s);
327 else {
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,
337 menu->parent,
338 &root, &child,
339 &root_x, &root_y,
340 &win_x, &win_y,
341 &mask);
342 event_xmp = (XMPane *)XLookUpAssoc(display,
343 menu->assoc_tab,
344 child);
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;
349 p_ptr = cur_p;
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,
358 cur_p->window,
359 menu->inact_pixmap);
360 _XMRefreshPane(display, menu, cur_p);
362 if (event_xmp->active) event_xmp->activated = True;
363 #if 1
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,
373 event_xmp->window,
374 menu->bkgnd_color);
375 _XMRefreshPane(display, menu, event_xmp);
376 #endif
377 cur_p = event_xmp;
379 break;
380 case LeaveNotify:
381 event_xmw = (XMWindow *)XLookUpAssoc(
382 display,
383 menu->assoc_tab,
384 event.xcrossing.window
386 if (event_xmw == NULL) break;
387 if(cur_s == NULL) break;
390 * If the current selection was activated then
391 * deactivate it.
393 if (cur_s->activated) {
394 cur_s->activated = False;
395 _XMRefreshSelection(display, menu, cur_s);
397 cur_s = NULL;
398 break;
400 case ButtonPress:
401 case ButtonRelease:
402 *p_num = cur_p->serial;
404 * Check to see if there is a current selection.
406 if (cur_s != NULL) {
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) {
417 *data = cur_s->data;
418 ret_val = XM_SUCCESS;
420 else {
421 ret_val = XM_IA_SELECT;
424 else {
426 * No selection was current.
428 ret_val = XM_NO_SELECT;
430 selection = True;
431 break;
432 default:
434 * If AEQ mode is enabled then queue the event.
436 if (menu->aeq) {
437 feq_tmp = (XMEventQue *)malloc(sizeof(XMEventQue));
438 if (feq_tmp == NULL) {
439 _XMErrorCode = XME_CALLOC;
440 return(XM_FAILURE);
442 feq_tmp->event = event;
443 feq_tmp->next = feq;
444 feq = feq_tmp;
446 else if (_XMEventHandler) (*_XMEventHandler)(&event);
449 * If a selection has been made, break out of the event loop.
451 if (selection == True) break;
455 * Unmap the menu.
457 for ( p_ptr = menu->p_list->next;
458 p_ptr != menu->p_list;
459 p_ptr = p_ptr->next)
461 XUnmapWindow(display, p_ptr->window);
465 * Ungrab the mouse.
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.
488 XSync(display, 0);
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) {
504 case Expose:
505 case EnterNotify:
506 case LeaveNotify:
507 case ButtonPress:
508 case ButtonRelease:
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(
515 display,
516 menu->assoc_tab,
517 event.xbutton.window
519 if (event_xmp != NULL) continue;
520 default:
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;
528 return(XM_FAILURE);
530 feq_tmp->event = event;
531 feq_tmp->next = feq;
532 feq = feq_tmp;
536 * Return any foreign events that were queued to the X event queue.
538 while (feq != NULL) {
539 feq_tmp = feq;
540 XPutBackEvent(display, &feq_tmp->event);
541 feq = feq_tmp->next;
542 free((char *)feq_tmp);
546 * Return successfully.
548 _XMErrorCode = XME_NO_ERROR;
549 return(ret_val);