X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7dab9892b3ad296d3d3664576f1d590f5fddf6bc..bbfd45484113ff0bafcd0007a4b6faecc7909561:/src/osx/cocoa/dnd.mm diff --git a/src/osx/cocoa/dnd.mm b/src/osx/cocoa/dnd.mm index 4429d80708..ca4aa44c5d 100644 --- a/src/osx/cocoa/dnd.mm +++ b/src/osx/cocoa/dnd.mm @@ -4,7 +4,7 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id: dnd.cpp 61724 2009-08-21 10:41:26Z VZ $ +// RCS-ID: $Id$ // Copyright: (c) 1998 Stefan Csomor // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -17,15 +17,17 @@ #ifndef WX_PRECOMP #include "wx/app.h" - #include "wx/evtloop.h" #include "wx/toplevel.h" #include "wx/gdicmn.h" #include "wx/wx.h" #endif // WX_PRECOMP -#include +#include "wx/evtloop.h" + #include "wx/osx/private.h" +wxDropSource* gCurrentSource = NULL; + wxDragResult NSDragOperationToWxDragResult(NSDragOperation code) { switch (code) @@ -41,6 +43,7 @@ wxDragResult NSDragOperationToWxDragResult(NSDragOperation code) default: wxFAIL_MSG("Unexpected result code"); } + return wxDragNone; } @interface DropSourceDelegate : NSObject @@ -53,6 +56,7 @@ wxDragResult NSDragOperationToWxDragResult(NSDragOperation code) - (void)setImplementation: (wxDropSource *)dropSource; - (BOOL)finished; - (NSDragOperation)code; +- (void)draggedImage:(NSImage *)anImage movedTo:(NSPoint)aPoint; - (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation; @end @@ -82,8 +86,60 @@ wxDragResult NSDragOperationToWxDragResult(NSDragOperation code) return resultCode; } +- (void)draggedImage:(NSImage *)anImage movedTo:(NSPoint)aPoint +{ + wxUnusedVar( anImage ); + wxUnusedVar( aPoint ); + + bool optionDown = GetCurrentKeyModifiers() & optionKey; + wxDragResult result = optionDown ? wxDragCopy : wxDragMove; + + if (wxDropSource* source = impl) + { + if (!source->GiveFeedback(result)) + { + wxStockCursor cursorID = wxCURSOR_NONE; + + switch (result) + { + case wxDragCopy: + cursorID = wxCURSOR_COPY_ARROW; + break; + + case wxDragMove: + cursorID = wxCURSOR_ARROW; + break; + + case wxDragNone: + cursorID = wxCURSOR_NO_ENTRY; + break; + + case wxDragError: + case wxDragLink: + case wxDragCancel: + default: + // put these here to make gcc happy + ; + } + + if (cursorID != wxCURSOR_NONE) + { + // TODO under 10.6 the os itself deals with the cursor, remove if things + // work properly everywhere +#if 0 + wxCursor cursor( cursorID ); + cursor.MacInstall(); +#endif + } + } + } +} + - (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation { + wxUnusedVar( anImage ); + wxUnusedVar( aPoint ); + resultCode = operation; dragFinished = YES; } @@ -96,25 +152,6 @@ wxDropTarget::wxDropTarget( wxDataObject *data ) } -bool wxDropTarget::CurrentDragHasSupportedFormat() -{ - if (m_dataObject == NULL) - return false; - - return m_dataObject->HasDataInPasteboard( m_currentDragPasteboard ); -} - -bool wxDropTarget::GetData() -{ - if (m_dataObject == NULL) - return false; - - if ( !CurrentDragHasSupportedFormat() ) - return false; - - return m_dataObject->GetFromPasteboard( m_currentDragPasteboard ); -} - //------------------------------------------------------------------------- // wxDropSource //------------------------------------------------------------------------- @@ -139,7 +176,12 @@ wxDropSource::wxDropSource(wxDataObject& data, m_window = win; } -wxDragResult wxDropSource::DoDragDrop(int flags) +wxDropSource* wxDropSource::GetCurrentDropSource() +{ + return gCurrentSource; +} + +wxDragResult wxDropSource::DoDragDrop(int WXUNUSED(flags)) { wxASSERT_MSG( m_data, wxT("Drop source: no data") ); @@ -170,11 +212,31 @@ wxDragResult wxDropSource::DoDragDrop(int flags) NSEvent* theEvent = (NSEvent*)wxTheApp->MacGetCurrentEvent(); wxASSERT_MSG(theEvent, "DoDragDrop must be called in response to a mouse down or drag event."); + + NSPoint down = [theEvent locationInWindow]; + NSPoint p = [view convertPoint:down toView:nil]; + + gCurrentSource = this; + + // add a dummy square as dragged image for the moment, + // TODO: proper drag image for data + NSSize sz = NSMakeSize(16,16); + NSRect fillRect = NSMakeRect(0, 0, 16, 16); + NSImage* image = [[NSImage alloc] initWithSize: sz]; + + [image lockFocus]; + + [[[NSColor whiteColor] colorWithAlphaComponent:0.8] set]; + NSRectFill(fillRect); + [[NSColor blackColor] set]; + NSFrameRectWithWidthUsingOperation(fillRect,1.0f,NSCompositeDestinationOver); + + [image unlockFocus]; + - NSImage* image = [[NSImage alloc] initWithSize: NSMakeSize(16,16)]; DropSourceDelegate* delegate = [[DropSourceDelegate alloc] init]; [delegate setImplementation: this]; - [view dragImage:image at:NSMakePoint(0.0, 16.0) offset:NSMakeSize(0.0,0.0) + [view dragImage:image at:p offset:NSMakeSize(0.0,0.0) event: theEvent pasteboard: pboard source:delegate slideBack: NO]; wxEventLoopBase * const loop = wxEventLoop::GetActive(); @@ -184,6 +246,7 @@ wxDragResult wxDropSource::DoDragDrop(int flags) result = NSDragOperationToWxDragResult([delegate code]); [delegate release]; [image release]; + gCurrentSource = NULL; }