From 64d087fdcde6b6c0f03c065fb33006319d314766 Mon Sep 17 00:00:00 2001 From: wolfsuit Date: Thu, 10 Mar 2005 07:36:23 +0000 Subject: Fix for 1160025 --- ChangeLog | 6 ++++++ macosx/tkMacOSXMouseEvent.c | 36 ++++++++++++++++++++++++------------ 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index ba768bd..10549a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-03-10 Jim Ingham + + * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): In + the inDrag section, set the GrafPort to the drag window's GrafPort + before doing LocalToGlobal. [Bug 1160025] + 2005-03-09 Jim Ingham * macosx/tkMacOSXInit.c (TkpInit): Check to see if the environment diff --git a/macosx/tkMacOSXMouseEvent.c b/macosx/tkMacOSXMouseEvent.c index 168ef73..69a322b 100644 --- a/macosx/tkMacOSXMouseEvent.c +++ b/macosx/tkMacOSXMouseEvent.c @@ -334,19 +334,31 @@ TkMacOSXProcessMouseEvent(TkMacOSXEvent *eventPtr, MacEventStatus * statusPtr) switch (medPtr->windowPart) { case inDrag: - DragWindow(medPtr->whichWin, where, NULL); - where2.h = where2.v = 0; - LocalToGlobal(&where2); - if (EqualPt(where, where2)) { - return false; + { + CGrafPtr saveWorld; + GDHandle saveDevice; + GWorldPtr dstPort; + + GetGWorld(&saveWorld, &saveDevice); + dstPort = TkMacOSXGetDrawablePort(Tk_WindowId(tkwin)); + SetGWorld(dstPort, NULL); + + DragWindow(medPtr->whichWin, where, NULL); + where2.h = where2.v = 0; + LocalToGlobal(&where2); + if (EqualPt(where, where2)) { + SetGWorld (saveWorld, saveDevice); + return false; + } + TkMacOSXWindowOffset(medPtr->whichWin, &xOffset, &yOffset); + where2.h -= xOffset; + where2.v -= yOffset; + TkGenWMConfigureEvent(tkwin, where2.h, where2.v, + -1, -1, TK_LOCATION_CHANGED); + SetGWorld(saveWorld, saveDevice); + return true; + break; } - TkMacOSXWindowOffset(medPtr->whichWin, &xOffset, &yOffset); - where2.h -= xOffset; - where2.v -= yOffset; - TkGenWMConfigureEvent(tkwin, where2.h, where2.v, - -1, -1, TK_LOCATION_CHANGED); - return true; - break; case inContent: return TkGenerateButtonEvent(where.h, where.v, window, medPtr->state); -- cgit v0.12