///////////////////////////////////////////////////////////////////////////////
-// Name: src/mac/carbon/dnd.cpp
+// Name: src/osx/carbon/dnd.cpp
// Purpose: wxDropTarget, wxDropSource implementations
// Author: Stefan Csomor
// Modified by:
#include "wx/gdicmn.h"
#endif // WX_PRECOMP
-#include "wx/mac/private.h"
+#include "wx/osx/private.h"
// ----------------------------------------------------------------------------
// globals
}
}
+#if wxOSX_USE_CARBON
if ( !supported )
{
PasteboardRef pasteboard;
supported = m_dataObject->HasDataInPasteboard( pasteboard );
}
}
+#endif
return supported;
}
}
}
+#if wxOSX_USE_CARBON
if ( !transferred )
{
PasteboardRef pasteboard;
transferred = m_dataObject->GetFromPasteboard( pasteboard );
}
}
+#endif
return transferred;
}
if ((m_data == NULL) || (m_data->GetFormatCount() == 0))
return (wxDragResult)wxDragNone;
+#if wxOSX_USE_CARBON
DragReference theDrag;
RgnHandle dragRegion;
OSStatus err = noErr;
DisposeDrag( theDrag );
CFRelease( pasteboard );
gTrackingGlobals.m_currentSource = NULL;
+#endif
return gTrackingGlobals.m_result;
}
// passing the globals via refcon is not needed by the CFM and later architectures anymore
// but I'll leave it in there, just in case...
+#if wxOSX_USE_CARBON
pascal OSErr wxMacWindowDragTrackingHandler(
DragTrackingMessage theMessage, WindowPtr theWindow,
void *handlerRefCon, DragReference theDrag );
pascal OSErr wxMacWindowDragReceiveHandler(
WindowPtr theWindow, void *handlerRefCon,
DragReference theDrag );
+#endif
void wxMacEnsureTrackingHandlersInstalled()
{
+#if wxOSX_USE_CARBON
if ( !gTrackingGlobalsInstalled )
{
OSStatus err;
gTrackingGlobalsInstalled = true;
}
+#endif
}
+#if wxOSX_USE_CARBON
pascal OSErr wxMacWindowDragTrackingHandler(
DragTrackingMessage theMessage, WindowPtr theWindow,
void *handlerRefCon, DragReference theDrag )
GetDragAttributes( theDrag, &attributes );
- wxNonOwnedWindow* toplevel = wxFindWinFromMacWindow( theWindow );
+ wxNonOwnedWindow* toplevel = wxNonOwnedWindow::GetFromWXWindow( (WXWindow) theWindow );
bool optionDown = GetCurrentKeyModifiers() & optionKey;
wxDragResult result = optionDown ? wxDragCopy : wxDragMove;
break;
GetDragMouse( theDrag, &mouse, 0L );
- localMouse = mouse;
- wxMacGlobalToLocal( theWindow, &localMouse );
+ int x = mouse.h ;
+ int y = mouse.v ;
+ toplevel->GetNonOwnedPeer()->ScreenToWindow( &x, &y );
+ localMouse.h = x;
+ localMouse.v = y;
{
wxWindow *win = NULL;
ControlPartCode controlPart;
ControlRef control = FindControlUnderMouse( localMouse, theWindow, &controlPart );
if ( control )
- win = wxFindControlFromMacControl( control );
+ win = wxFindWindowFromWXWidget( (WXWidget) control );
else
win = toplevel;
{
if ( !trackingGlobals->m_currentSource->MacInstallDefaultCursor( result ) )
{
- int cursorID = wxCURSOR_NONE;
+ wxStockCursor cursorID = wxCURSOR_NONE;
switch (result)
{
trackingGlobals->m_currentTarget->SetCurrentDrag( theDrag );
GetDragMouse( theDrag, &mouse, 0L );
localMouse = mouse;
- wxMacGlobalToLocal( theWindow, &localMouse );
localx = localMouse.h;
localy = localMouse.v;
+ wxNonOwnedWindow* tlw = wxNonOwnedWindow::GetFromWXWindow((WXWindow) theWindow);
+ if ( tlw )
+ tlw->GetNonOwnedPeer()->ScreenToWindow( &localx, &localy );
// TODO : should we use client coordinates?
if ( trackingGlobals->m_currentTargetWindow )
return noErr;
}
+#endif
#endif // wxUSE_DRAG_AND_DROP