• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/tcl-105/tk84/tk/macosx/

Lines Matching refs:event

362 	 * Create an event handler to clean up the Container structure when
543 XEvent event;
557 event.xfocus.type = FocusIn;
558 event.xfocus.serial = LastKnownRequestProcessed(topLevelPtr->display);
559 event.xfocus.send_event = 1;
560 event.xfocus.display = topLevelPtr->display;
561 event.xfocus.window = containerPtr->parent;
562 event.xfocus.mode = EMBEDDED_APP_WANTS_FOCUS;
563 event.xfocus.detail = force;
564 Tk_QueueWindowEvent(&event,TCL_QUEUE_TAIL);
651 * This procedure is invoked when a key press or release event
654 * X can send an event to an embedded application when the real
656 * of the container. This procedure's job is to forward the event
663 * The event may get sent to a different application.
670 TkWindow *winPtr, /* Window to which the event was originally
672 XEvent *eventPtr) /* X event to redirect (should be KeyPress
730 * This procedure is invoked by the Tk event dispatcher when various
747 XEvent *eventPtr) /* ResizeRequest event. */
762 * This procedure is invoked by the Tk event dispatcher when various
774 * Depends on the event. For example, when ConfigureRequest events
783 XEvent *eventPtr) /* ResizeRequest event. */
825 * moved, but we need to send it a ConfigureNotify event to
830 * generate a synthetic event.
867 * This procedure is invoked by the Tk event dispatcher when
885 XEvent *eventPtr) /* ResizeRequest event. */
917 * This procedure is invoked by the Tk event dispatcher when
920 * event down into the embedded toplevel.
934 XEvent *eventPtr) /* ResizeRequest event. */
953 * This procedure is invoked by the Tk event dispatcher when
971 XEvent *eventPtr) /* ResizeRequest event. */
975 XEvent event;
979 event.xfocus.serial = LastKnownRequestProcessed(display);
980 event.xfocus.send_event = false;
981 event.xfocus.display = display;
982 event.xfocus.mode = NotifyNormal;
983 event.xfocus.window = containerPtr->embedded;
993 event.xfocus.detail = NotifyNonlinear;
994 event.xfocus.type = FocusIn;
997 /* When the container gets a FocusOut event, it has to tell the embedded app
1001 event.xfocus.type = FocusOut;
1002 event.xfocus.detail = NotifyNonlinear;
1005 Tk_QueueWindowEvent(&event, TCL_QUEUE_MARK);
1027 * If we deny the child's size change request, a Configure event
1044 * via the container window. We need to send a Configure event back
1046 * request; to make this happen, process all idle event handlers
1049 * didn't change then generate a configure event.
1130 * Fabricate an event to do this.
1135 XEvent event;
1137 event.xany.serial =
1139 event.xany.send_event = False;
1140 event.xany.display = Tk_Display(containerPtr->parentPtr);
1142 event.xany.type = DestroyNotify;
1143 event.xany.window = containerPtr->parent;
1144 event.xdestroywindow.event = containerPtr->parent;
1145 Tk_QueueWindowEvent(&event, TCL_QUEUE_HEAD);