#include <AppKit/AppKit.h>
#include "wx/osx/private.h"
+wxDropSource* gCurrentSource = NULL;
+
wxDragResult NSDragOperationToWxDragResult(NSDragOperation code)
{
switch (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
return resultCode;
}
+- (void)draggedImage:(NSImage *)anImage movedTo:(NSPoint)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)
+ {
+ wxCursor cursor( cursorID );
+ cursor.MacInstall();
+ }
+ }
+ }
+}
+
- (void)draggedImage:(NSImage *)anImage endedAt:(NSPoint)aPoint operation:(NSDragOperation)operation
{
resultCode = operation;
}
-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
//-------------------------------------------------------------------------
m_window = win;
}
+wxDropSource* wxDropSource::GetCurrentDropSource()
+{
+ return gCurrentSource;
+}
+
wxDragResult wxDropSource::DoDragDrop(int flags)
{
wxASSERT_MSG( m_data, wxT("Drop source: no data") );
NSEvent* theEvent = (NSEvent*)wxTheApp->MacGetCurrentEvent();
wxASSERT_MSG(theEvent, "DoDragDrop must be called in response to a mouse down or drag event.");
+ gCurrentSource = this;
NSImage* image = [[NSImage alloc] initWithSize: NSMakeSize(16,16)];
DropSourceDelegate* delegate = [[DropSourceDelegate alloc] init];
[delegate setImplementation: this];
result = NSDragOperationToWxDragResult([delegate code]);
[delegate release];
[image release];
+ gCurrentSource = NULL;
}