1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
/*
* tkPointer.c --
*
* This file contains functions for emulating the X server
* pointer and grab state machine. This file is used by the
* Mac and Windows platforms to generate appropriate enter/leave
* events, and to update the global grab window information.
*
* Copyright (c) 1996 by Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: tkPointer.c,v 1.7 2002/08/31 06:12:25 das Exp $
*/
#ifdef WIN32
#include "tkInt.h"
#ifdef __WIN32__
#include "tkWinInt.h"
#endif
#if defined(MAC_TCL)
#include "tkMacInt.h"
#define Cursor XCursor
#endif
#if defined(MAC_OSX_TK)
#include "tkMacOSXInt.h"
#define Cursor XCursor
#endif
/*
* Mask that selects any of the state bits corresponding to buttons,
* plus masks that select individual buttons' bits:
*/
#define ALL_BUTTONS \
(Button1Mask|Button2Mask|Button3Mask|Button4Mask|Button5Mask)
static unsigned int buttonMasks[] = {
Button1Mask, Button2Mask, Button3Mask, Button4Mask, Button5Mask
};
#define ButtonMask(b) (buttonMasks[(b)-Button1])
typedef struct ThreadSpecificData {
TkWindow *grabWinPtr; /* Window that defines the top of the
* grab tree in a global grab. */
int lastState; /* Last known state flags. */
XPoint lastPos; /* Last reported mouse position. */
TkWindow *lastWinPtr; /* Last reported mouse window. */
TkWindow *restrictWinPtr; /* Window to which all mouse events
* will be reported. */
TkWindow *cursorWinPtr; /* Window that is currently
* controlling the global cursor. */
} ThreadSpecificData;
static Tcl_ThreadDataKey dataKey;
/*
* Forward declarations of procedures used in this file.
*/
static int GenerateEnterLeave _ANSI_ARGS_((TkWindow *winPtr,
int x, int y, int state));
static void InitializeEvent _ANSI_ARGS_((XEvent* eventPtr,
TkWindow *winPtr, int type, int x, int y,
int state, int detail));
static void UpdateCursor _ANSI_ARGS_((TkWindow *winPtr));
/*
*----------------------------------------------------------------------
*
* InitializeEvent --
*
* Initializes the common fields for several X events.
*
* Results:
* None.
*
* Side effects:
* Fills in the specified event structure.
*
*----------------------------------------------------------------------
*/
static void
InitializeEvent(eventPtr, winPtr, type, x, y, state, detail)
XEvent* eventPtr; /* Event structure to initialize. */
TkWindow *winPtr; /* Window to make event relative to. */
int type; /* Message type. */
int x, y; /* Root coords of event. */
int state; /* State flags. */
int detail; /* Detail value. */
{
eventPtr->type = type;
eventPtr->xany.serial = LastKnownRequestProcessed(winPtr->display);
eventPtr->xany.send_event = False;
eventPtr->xany.display = winPtr->display;
eventPtr->xcrossing.root = RootWindow(winPtr->display, winPtr->screenNum);
eventPtr->xcrossing.time = TkpGetMS();
eventPtr->xcrossing.x_root = x;
eventPtr->xcrossing.y_root = y;
switch (type) {
case EnterNotify:
case LeaveNotify:
eventPtr->xcrossing.mode = NotifyNormal;
eventPtr->xcrossing.state = state;
eventPtr->xcrossing.detail = detail;
eventPtr->xcrossing.focus = False;
break;
case MotionNotify:
eventPtr->xmotion.state = state;
eventPtr->xmotion.is_hint = detail;
break;
case ButtonPress:
case ButtonRelease:
eventPtr->xbutton.state = state;
eventPtr->xbutton.button = detail;
break;
}
TkChangeEventWindow(eventPtr, winPtr);
}
/*
*----------------------------------------------------------------------
*
* GenerateEnterLeave --
*
* Update the current mouse window and position, and generate
* any enter/leave events that are needed.
*
* Results:
* Returns 1 if enter/leave events were generated.
*
* Side effects:
* May insert events into the Tk event queue.
*
*----------------------------------------------------------------------
*/
static int
GenerateEnterLeave(winPtr, x, y, state)
TkWindow *winPtr; /* Current Tk window (or NULL). */
int x,y; /* Current mouse position in root coords. */
int state; /* State flags. */
{
int crossed = 0; /* 1 if mouse crossed a window boundary */
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
TkWindow *restrictWinPtr = tsdPtr->restrictWinPtr;
TkWindow *lastWinPtr = tsdPtr->lastWinPtr;
if (winPtr != tsdPtr->lastWinPtr) {
if (restrictWinPtr) {
int newPos, oldPos;
newPos = TkPositionInTree(winPtr, restrictWinPtr);
oldPos = TkPositionInTree(lastWinPtr, restrictWinPtr);
/*
* Check if the mouse crossed into or out of the restrict
* window. If so, we need to generate an Enter or Leave event.
*/
if ((newPos != oldPos) && ((newPos == TK_GRAB_IN_TREE)
|| (oldPos == TK_GRAB_IN_TREE))) {
XEvent event;
int type, detail;
if (newPos == TK_GRAB_IN_TREE) {
type = EnterNotify;
} else {
type = LeaveNotify;
}
if ((oldPos == TK_GRAB_ANCESTOR)
|| (newPos == TK_GRAB_ANCESTOR)) {
detail = NotifyAncestor;
} else {
detail = NotifyVirtual;
}
InitializeEvent(&event, restrictWinPtr, type, x, y,
state, detail);
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
}
} else {
TkWindow *targetPtr;
if ((lastWinPtr == NULL)
|| (lastWinPtr->window == None)) {
targetPtr = winPtr;
} else {
targetPtr = lastWinPtr;
}
if (targetPtr && (targetPtr->window != None)) {
XEvent event;
/*
* Generate appropriate Enter/Leave events.
*/
InitializeEvent(&event, targetPtr, LeaveNotify, x, y, state,
NotifyNormal);
TkInOutEvents(&event, lastWinPtr, winPtr, LeaveNotify,
EnterNotify, TCL_QUEUE_TAIL);
crossed = 1;
}
}
tsdPtr->lastWinPtr = winPtr;
}
return crossed;
}
/*
*----------------------------------------------------------------------
*
* Tk_UpdatePointer --
*
* This function updates the pointer state machine given an
* the current window, position and modifier state.
*
* Results:
* None.
*
* Side effects:
* May queue new events and update the grab state.
*
*----------------------------------------------------------------------
*/
void
Tk_UpdatePointer(tkwin, x, y, state)
Tk_Window tkwin; /* Window to which pointer event
* is reported. May be NULL. */
int x, y; /* Pointer location in root coords. */
int state; /* Modifier state mask. */
{
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
TkWindow *winPtr = (TkWindow *)tkwin;
TkWindow *targetWinPtr;
XPoint pos;
XEvent event;
int changes = (state ^ tsdPtr->lastState) & ALL_BUTTONS;
int type, b, mask;
pos.x = x;
pos.y = y;
/*
* Use the current keyboard state, but the old mouse button
* state since we haven't generated the button events yet.
*/
tsdPtr->lastState = (state & ~ALL_BUTTONS) | (tsdPtr->lastState
& ALL_BUTTONS);
/*
* Generate Enter/Leave events. If the pointer has crossed window
* boundaries, update the current mouse position so we don't generate
* redundant motion events.
*/
if (GenerateEnterLeave(winPtr, x, y, tsdPtr->lastState)) {
tsdPtr->lastPos = pos;
}
/*
* Generate ButtonPress/ButtonRelease events based on the differences
* between the current button state and the last known button state.
*/
for (b = Button1; b <= Button3; b++) {
mask = ButtonMask(b);
if (changes & mask) {
if (state & mask) {
type = ButtonPress;
/*
* ButtonPress - Set restrict window if we aren't grabbed, or
* if this is the first button down.
*/
if (!tsdPtr->restrictWinPtr) {
if (!tsdPtr->grabWinPtr) {
/*
* Mouse is not grabbed, so set a button grab.
*/
tsdPtr->restrictWinPtr = winPtr;
TkpSetCapture(tsdPtr->restrictWinPtr);
} else if ((tsdPtr->lastState & ALL_BUTTONS) == 0) {
/*
* Mouse is in a non-button grab, so ensure
* the button grab is inside the grab tree.
*/
if (TkPositionInTree(winPtr, tsdPtr->grabWinPtr)
== TK_GRAB_IN_TREE) {
tsdPtr->restrictWinPtr = winPtr;
} else {
tsdPtr->restrictWinPtr = tsdPtr->grabWinPtr;
}
TkpSetCapture(tsdPtr->restrictWinPtr);
}
}
} else {
type = ButtonRelease;
/*
* ButtonRelease - Release the mouse capture and clear the
* restrict window when the last button is released and we
* aren't in a global grab.
*/
if ((tsdPtr->lastState & ALL_BUTTONS) == mask) {
if (!tsdPtr->grabWinPtr) {
TkpSetCapture(NULL);
}
}
/*
* If we are releasing a restrict window, then we need
* to send the button event followed by mouse motion from
* the restrict window to the current mouse position.
*/
if (tsdPtr->restrictWinPtr) {
InitializeEvent(&event, tsdPtr->restrictWinPtr, type, x, y,
tsdPtr->lastState, b);
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
tsdPtr->lastState &= ~mask;
tsdPtr->lastWinPtr = tsdPtr->restrictWinPtr;
tsdPtr->restrictWinPtr = NULL;
GenerateEnterLeave(winPtr, x, y, tsdPtr->lastState);
tsdPtr->lastPos = pos;
continue;
}
}
/*
* If a restrict window is set, make sure the pointer event
* is reported relative to that window. Otherwise, if a
* global grab is in effect then events outside of windows
* managed by Tk should be reported to the grab window.
*/
if (tsdPtr->restrictWinPtr) {
targetWinPtr = tsdPtr->restrictWinPtr;
} else if (tsdPtr->grabWinPtr && !winPtr) {
targetWinPtr = tsdPtr->grabWinPtr;
} else {
targetWinPtr = winPtr;
}
/*
* If we still have a target window, send the event.
*/
if (winPtr != NULL) {
InitializeEvent(&event, targetWinPtr, type, x, y,
tsdPtr->lastState, b);
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
}
/*
* Update the state for the next iteration.
*/
tsdPtr->lastState = (type == ButtonPress)
? (tsdPtr->lastState | mask) : (tsdPtr->lastState & ~mask);
tsdPtr->lastPos = pos;
}
}
/*
* Make sure the cursor window is up to date.
*/
if (tsdPtr->restrictWinPtr) {
targetWinPtr = tsdPtr->restrictWinPtr;
} else if (tsdPtr->grabWinPtr) {
targetWinPtr = (TkPositionInTree(winPtr, tsdPtr->grabWinPtr)
== TK_GRAB_IN_TREE) ? winPtr : tsdPtr->grabWinPtr;
} else {
targetWinPtr = winPtr;
}
UpdateCursor(targetWinPtr);
/*
* If no other events caused the position to be updated,
* generate a motion event.
*/
if (tsdPtr->lastPos.x != pos.x || tsdPtr->lastPos.y != pos.y) {
if (tsdPtr->restrictWinPtr) {
targetWinPtr = tsdPtr->restrictWinPtr;
} else if (tsdPtr->grabWinPtr && !winPtr) {
targetWinPtr = tsdPtr->grabWinPtr;
}
if (targetWinPtr != NULL) {
InitializeEvent(&event, targetWinPtr, MotionNotify, x, y,
tsdPtr->lastState, NotifyNormal);
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
}
tsdPtr->lastPos = pos;
}
}
/*
*----------------------------------------------------------------------
*
* XGrabPointer --
*
* Capture the mouse so event are reported outside of toplevels.
* Note that this is a very limited implementation that only
* supports GrabModeAsync and owner_events True.
*
* Results:
* Always returns GrabSuccess.
*
* Side effects:
* Turns on mouse capture, sets the global grab pointer, and
* clears any window restrictions.
*
*----------------------------------------------------------------------
*/
int
XGrabPointer(display, grab_window, owner_events, event_mask, pointer_mode,
keyboard_mode, confine_to, cursor, time)
Display* display;
Window grab_window;
Bool owner_events;
unsigned int event_mask;
int pointer_mode;
int keyboard_mode;
Window confine_to;
Cursor cursor;
Time time;
{
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
display->request++;
tsdPtr->grabWinPtr = (TkWindow *) Tk_IdToWindow(display, grab_window);
tsdPtr->restrictWinPtr = NULL;
TkpSetCapture(tsdPtr->grabWinPtr);
if (TkPositionInTree(tsdPtr->lastWinPtr, tsdPtr->grabWinPtr)
!= TK_GRAB_IN_TREE) {
UpdateCursor(tsdPtr->grabWinPtr);
}
return GrabSuccess;
}
/*
*----------------------------------------------------------------------
*
* XUngrabPointer --
*
* Release the current grab.
*
* Results:
* None.
*
* Side effects:
* Releases the mouse capture.
*
*----------------------------------------------------------------------
*/
void
XUngrabPointer(display, time)
Display* display;
Time time;
{
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
display->request++;
tsdPtr->grabWinPtr = NULL;
tsdPtr->restrictWinPtr = NULL;
TkpSetCapture(NULL);
UpdateCursor(tsdPtr->lastWinPtr);
}
/*
*----------------------------------------------------------------------
*
* TkPointerDeadWindow --
*
* Clean up pointer module state when a window is destroyed.
*
* Results:
* None.
*
* Side effects:
* May release the current capture window.
*
*----------------------------------------------------------------------
*/
void
TkPointerDeadWindow(winPtr)
TkWindow *winPtr;
{
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
if (winPtr == tsdPtr->lastWinPtr) {
tsdPtr->lastWinPtr = NULL;
}
if (winPtr == tsdPtr->grabWinPtr) {
tsdPtr->grabWinPtr = NULL;
}
if (winPtr == tsdPtr->restrictWinPtr) {
tsdPtr->restrictWinPtr = NULL;
}
if (!(tsdPtr->restrictWinPtr || tsdPtr->grabWinPtr)) {
TkpSetCapture(NULL);
}
}
/*
*----------------------------------------------------------------------
*
* UpdateCursor --
*
* Set the windows global cursor to the cursor associated with
* the given Tk window.
*
* Results:
* None.
*
* Side effects:
* Changes the mouse cursor.
*
*----------------------------------------------------------------------
*/
static void
UpdateCursor(winPtr)
TkWindow *winPtr;
{
Cursor cursor = None;
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
/*
* A window inherits its cursor from its parent if it doesn't
* have one of its own. Top level windows inherit the default
* cursor.
*/
tsdPtr->cursorWinPtr = winPtr;
while (winPtr != NULL) {
if (winPtr->atts.cursor != None) {
cursor = winPtr->atts.cursor;
break;
} else if (winPtr->flags & TK_TOP_HIERARCHY) {
break;
}
winPtr = winPtr->parentPtr;
}
TkpSetCursor((TkpCursor) cursor);
}
/*
*----------------------------------------------------------------------
*
* XDefineCursor --
*
* This function is called to update the cursor on a window.
* Since the mouse might be in the specified window, we need to
* check the specified window against the current mouse position
* and grab state.
*
* Results:
* None.
*
* Side effects:
* May update the cursor.
*
*----------------------------------------------------------------------
*/
void
XDefineCursor(display, w, cursor)
Display* display;
Window w;
Cursor cursor;
{
TkWindow *winPtr = (TkWindow *)Tk_IdToWindow(display, w);
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
if (tsdPtr->cursorWinPtr == winPtr) {
UpdateCursor(winPtr);
}
display->request++;
}
/*
*----------------------------------------------------------------------
*
* TkGenerateActivateEvents --
*
* This function is called by the Mac and Windows window manager
* routines when a toplevel window is activated or deactivated.
* Activate/Deactivate events will be sent to every subwindow of
* the toplevel followed by a FocusIn/FocusOut message.
*
* Results:
* None.
*
* Side effects:
* Generates X events.
*
*----------------------------------------------------------------------
*/
void
TkGenerateActivateEvents(winPtr, active)
TkWindow *winPtr; /* Toplevel to activate. */
int active; /* Non-zero if the window is being
* activated, else 0.*/
{
XEvent event;
/*
* Generate Activate and Deactivate events. This event
* is sent to every subwindow in a toplevel window.
*/
event.xany.serial = winPtr->display->request++;
event.xany.send_event = False;
event.xany.display = winPtr->display;
event.xany.window = winPtr->window;
event.xany.type = active ? ActivateNotify : DeactivateNotify;
TkQueueEventForAllChildren(winPtr, &event);
}
#endif /* WIN32 */
|