Lines Matching refs:event
297 * event - the X event that caused this redisplay.
304 Redisplay(w, event, region)
306 XEvent * event;
600 * event - the event that caused this action.
608 PositionMenuAction(w, event, params, num_params)
610 XEvent * event;
646 switch (event->type) {
649 loc.x = event->xbutton.x_root;
650 loc.y = event->xbutton.y_root;
655 loc.x = event->xcrossing.x_root;
656 loc.y = event->xcrossing.y_root;
660 loc.x = event->xmotion.x_root;
661 loc.y = event->xmotion.y_root;
679 * event - the event that caused this action.
686 Unhighlight(w, event, params, num_params)
688 XEvent * event;
706 * event - the event that caused this action.
713 Highlight(w, event, params, num_params)
715 XEvent * event;
725 entry = GetEventEntry(w, event);
729 Unhighlight(w, event, params, num_params);
747 * event - the event that caused this action.
754 Notify(w, event, params, num_params)
756 XEvent * event;
1126 * The event mask here is what is currently in the MIT implementation.
1237 * Description: Gets an entry given an event that has X and Y coords.
1239 * event - the event.
1244 GetEventEntry(w, event)
1246 XEvent * event;
1252 switch (event->type) {
1254 x_loc = event->xmotion.x;
1255 y_loc = event->xmotion.y;
1259 x_loc = event->xcrossing.x;
1260 y_loc = event->xcrossing.y;
1264 x_loc = event->xbutton.x;
1265 y_loc = event->xbutton.y;
1269 "Unknown event type in GetEventEntry().");