1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDropTarget, wxDropSource, wxDataObject implementation
4 // Author: Stefan Csomor
8 // Copyright: (c) 1998 Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dnd.h"
18 #if wxUSE_DRAG_AND_DROP
21 #include "wx/window.h"
22 #include "wx/toplevel.h"
24 #include "wx/gdicmn.h"
25 #include "wx/mac/private.h"
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 void wxMacEnsureTrackingHandlersInstalled() ;
39 wxWindow
* m_currentTargetWindow
;
40 wxDropTarget
* m_currentTarget
;
41 wxDropSource
* m_currentSource
;
42 } MacTrackingGlobals
;
44 MacTrackingGlobals gTrackingGlobals
;
46 //----------------------------------------------------------------------------
48 //----------------------------------------------------------------------------
50 wxDropTarget::wxDropTarget( wxDataObject
*data
)
51 : wxDropTargetBase( data
)
53 wxMacEnsureTrackingHandlersInstalled() ;
56 wxDragResult
wxDropTarget::OnDragOver( wxCoord
WXUNUSED(x
),
61 return CurrentDragHasSupportedFormat() ? def
: wxDragNone
;
64 bool wxDropTarget::OnDrop( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
) )
69 return CurrentDragHasSupportedFormat() ;
72 wxDragResult
wxDropTarget::OnData( wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
),
78 if (!CurrentDragHasSupportedFormat())
81 return GetData() ? def
: wxDragNone
;
84 bool wxDropTarget::CurrentDragHasSupportedFormat()
86 bool supported
= false ;
87 if ( gTrackingGlobals
.m_currentSource
!= NULL
)
89 wxDataObject
* data
= gTrackingGlobals
.m_currentSource
->GetDataObject() ;
93 size_t formatcount
= data
->GetFormatCount() ;
94 wxDataFormat
*array
= new wxDataFormat
[ formatcount
];
95 data
->GetAllFormats( array
);
96 for (size_t i
= 0; !supported
&& i
< formatcount
; i
++)
98 wxDataFormat format
= array
[i
] ;
99 if ( m_dataObject
->IsSupported( format
) )
112 CountDragItems((DragReference
)m_currentDrag
, &items
);
113 for (UInt16 index
= 1; index
<= items
&& supported
== false ; ++index
)
115 ItemReference theItem
;
118 GetDragItemReferenceNumber((DragReference
)m_currentDrag
, index
, &theItem
);
119 CountDragItemFlavors( (DragReference
)m_currentDrag
, theItem
, &flavors
) ;
120 for ( UInt16 flavor
= 1 ; flavor
<= flavors
; ++flavor
)
122 result
= GetFlavorType((DragReference
)m_currentDrag
, theItem
, flavor
, &theType
);
123 if ( m_dataObject
->IsSupportedFormat( wxDataFormat( theType
) ) )
134 bool wxDropTarget::GetData()
139 if ( !CurrentDragHasSupportedFormat() )
142 bool transferred
= false ;
143 if ( gTrackingGlobals
.m_currentSource
!= NULL
)
145 wxDataObject
* data
= gTrackingGlobals
.m_currentSource
->GetDataObject() ;
149 size_t formatcount
= data
->GetFormatCount() ;
150 wxDataFormat
*array
= new wxDataFormat
[ formatcount
];
151 data
->GetAllFormats( array
);
152 for (size_t i
= 0; !transferred
&& i
< formatcount
; i
++)
154 wxDataFormat format
= array
[i
] ;
155 if ( m_dataObject
->IsSupported( format
) )
157 int size
= data
->GetDataSize( format
);
162 m_dataObject
->SetData(format
, 0 , 0 ) ;
166 char *d
= new char[size
];
167 data
->GetDataHere( format
, (void*) d
);
168 m_dataObject
->SetData( format
, size
, d
) ;
180 bool firstFileAdded
= false ;
181 CountDragItems((DragReference
)m_currentDrag
, &items
);
182 for (UInt16 index
= 1; index
<= items
; ++index
)
184 ItemReference theItem
;
187 GetDragItemReferenceNumber((DragReference
)m_currentDrag
, index
, &theItem
);
188 CountDragItemFlavors( (DragReference
)m_currentDrag
, theItem
, &flavors
) ;
189 for ( UInt16 flavor
= 1 ; flavor
<= flavors
; ++flavor
)
191 result
= GetFlavorType((DragReference
)m_currentDrag
, theItem
, flavor
, &theType
);
192 wxDataFormat
format(theType
) ;
193 if ( m_dataObject
->IsSupportedFormat( format
) )
195 FlavorFlags theFlags
;
196 result
= GetFlavorFlags((DragReference
)m_currentDrag
, theItem
, theType
, &theFlags
);
201 GetFlavorDataSize((DragReference
)m_currentDrag
, theItem
, theType
, &dataSize
);
202 if ( theType
== kScrapFlavorTypeText
)
204 // this increment is only valid for allocating, on the next GetFlavorData
205 // call it is reset again to the original value
208 else if ( theType
== kScrapFlavorTypeUnicode
)
210 // this increment is only valid for allocating, on the next GetFlavorData
211 // call it is reset again to the original value
215 theData
= new char[dataSize
];
216 GetFlavorData((DragReference
)m_currentDrag
, theItem
, theType
, (void*) theData
, &dataSize
, 0L);
217 if( theType
== kScrapFlavorTypeText
)
219 theData
[dataSize
]=0 ;
220 m_dataObject
->SetData( wxDataFormat(wxDF_TEXT
), dataSize
, theData
);
223 else if ( theType
== kScrapFlavorTypeUnicode
)
225 theData
[dataSize
]=0 ;
226 theData
[dataSize
+1]=0 ;
227 m_dataObject
->SetData( wxDataFormat(wxDF_UNICODETEXT
), dataSize
, theData
);
230 else if ( theType
== kDragFlavorTypeHFS
)
232 HFSFlavor
* theFile
= (HFSFlavor
*) theData
;
233 wxString name
= wxMacFSSpec2MacFilename( &theFile
->fileSpec
) ;
234 if ( !firstFileAdded
)
237 ((wxFileDataObject
*)m_dataObject
)->SetData( 0 , "" ) ;
238 firstFileAdded
= true ;
240 ((wxFileDataObject
*)m_dataObject
)->AddFile( name
) ;
244 m_dataObject
->SetData( format
, dataSize
, theData
);
256 //-------------------------------------------------------------------------
258 //-------------------------------------------------------------------------
260 //-----------------------------------------------------------------------------
263 wxDropSource::wxDropSource(wxWindow
*win
,
264 const wxCursor
&cursorCopy
,
265 const wxCursor
&cursorMove
,
266 const wxCursor
&cursorStop
)
267 : wxDropSourceBase(cursorCopy
, cursorMove
, cursorStop
)
269 wxMacEnsureTrackingHandlersInstalled() ;
273 wxDropSource::wxDropSource(wxDataObject
& data
,
275 const wxCursor
&cursorCopy
,
276 const wxCursor
&cursorMove
,
277 const wxCursor
&cursorStop
)
278 : wxDropSourceBase(cursorCopy
, cursorMove
, cursorStop
)
280 wxMacEnsureTrackingHandlersInstalled() ;
285 wxDropSource::~wxDropSource()
290 wxDragResult
wxDropSource::DoDragDrop(int WXUNUSED(flags
))
292 wxASSERT_MSG( m_data
, wxT("Drop source: no data") );
295 return (wxDragResult
) wxDragNone
;
297 if (m_data
->GetFormatCount() == 0)
298 return (wxDragResult
) wxDragNone
;
301 DragReference theDrag
;
302 RgnHandle dragRegion
;
303 if ((result
= NewDrag(&theDrag
)))
308 size_t formatCount
= m_data
->GetFormatCount() ;
309 wxDataFormat
*formats
= new wxDataFormat
[formatCount
] ;
310 m_data
->GetAllFormats( formats
) ;
311 ItemReference theItem
= 1 ;
312 for ( size_t i
= 0 ; i
< formatCount
; ++i
)
314 size_t dataSize
= m_data
->GetDataSize( formats
[i
] ) ;
315 Ptr dataPtr
= new char[dataSize
] ;
316 m_data
->GetDataHere( formats
[i
] , dataPtr
) ;
317 OSType type
= formats
[i
].GetFormatId() ;
318 if ( type
== 'TEXT' )
321 dataPtr
[ dataSize
] = 0 ;
322 wxString
st( (wxChar
*) dataPtr
) ;
323 wxCharBuffer buf
= st
.mb_str( wxConvLocal
) ;
324 AddDragItemFlavor(theDrag
, theItem
, type
, buf
.data(), strlen(buf
), 0);
326 else if (type
== kDragFlavorTypeHFS
)
328 HFSFlavor theFlavor
;
332 wxMacFilename2FSSpec( dataPtr
, &theFlavor
.fileSpec
) ;
334 cat
.hFileInfo
.ioNamePtr
= theFlavor
.fileSpec
.name
;
335 cat
.hFileInfo
.ioVRefNum
= theFlavor
.fileSpec
.vRefNum
;
336 cat
.hFileInfo
.ioDirID
= theFlavor
.fileSpec
.parID
;
337 cat
.hFileInfo
.ioFDirIndex
= 0;
338 err
= PBGetCatInfoSync(&cat
);
341 theFlavor
.fdFlags
= cat
.hFileInfo
.ioFlFndrInfo
.fdFlags
;
342 if (theFlavor
.fileSpec
.parID
== fsRtParID
) {
343 theFlavor
.fileCreator
= 'MACS';
344 theFlavor
.fileType
= 'disk';
345 } else if ((cat
.hFileInfo
.ioFlAttrib
& ioDirMask
) != 0) {
346 theFlavor
.fileCreator
= 'MACS';
347 theFlavor
.fileType
= 'fold';
349 theFlavor
.fileCreator
= cat
.hFileInfo
.ioFlFndrInfo
.fdCreator
;
350 theFlavor
.fileType
= cat
.hFileInfo
.ioFlFndrInfo
.fdType
;
352 AddDragItemFlavor(theDrag
, theItem
, type
, &theFlavor
, sizeof(theFlavor
), 0);
357 AddDragItemFlavor(theDrag
, theItem
, type
, dataPtr
, dataSize
, 0);
363 dragRegion
= NewRgn();
364 RgnHandle tempRgn
= NewRgn() ;
366 EventRecord
* ev
= NULL
;
367 #if !TARGET_CARBON // TODO
368 ev
= (EventRecord
*) wxTheApp
->MacGetCurrentEvent() ;
372 wxMacConvertEventToRecord( (EventRef
) wxTheApp
->MacGetCurrentEvent() , &rec
) ;
374 const short dragRegionOuterBoundary
= 10 ;
375 const short dragRegionInnerBoundary
= 9 ;
377 SetRectRgn( dragRegion
, ev
->where
.h
- dragRegionOuterBoundary
,
378 ev
->where
.v
- dragRegionOuterBoundary
,
379 ev
->where
.h
+ dragRegionOuterBoundary
,
380 ev
->where
.v
+ dragRegionOuterBoundary
) ;
382 SetRectRgn( tempRgn
, ev
->where
.h
- dragRegionInnerBoundary
,
383 ev
->where
.v
- dragRegionInnerBoundary
,
384 ev
->where
.h
+ dragRegionInnerBoundary
,
385 ev
->where
.v
+ dragRegionInnerBoundary
) ;
387 DiffRgn( dragRegion
, tempRgn
, dragRegion
) ;
388 DisposeRgn( tempRgn
) ;
390 // TODO:work with promises in order to return data only when drag
391 // was successfully completed
393 gTrackingGlobals
.m_currentSource
= this ;
394 result
= TrackDrag(theDrag
, ev
, dragRegion
);
395 DisposeRgn(dragRegion
);
396 DisposeDrag(theDrag
);
397 gTrackingGlobals
.m_currentSource
= NULL
;
401 bool optionDown
= keymap
[1] & 4;
402 wxDragResult dndresult
= optionDown
? wxDragCopy
: wxDragMove
;
406 bool wxDropSource::MacInstallDefaultCursor(wxDragResult effect
)
408 const wxCursor
& cursor
= GetCursor(effect
);
411 cursor
.MacInstall() ;
421 bool gTrackingGlobalsInstalled
= false ;
423 // passing the globals via refcon is not needed by the CFM and later architectures anymore
424 // but I'll leave it in there, just in case...
426 pascal OSErr
wxMacWindowDragTrackingHandler(DragTrackingMessage theMessage
, WindowPtr theWindow
,
427 void *handlerRefCon
, DragReference theDrag
) ;
428 pascal OSErr
wxMacWindowDragReceiveHandler(WindowPtr theWindow
, void *handlerRefCon
,
429 DragReference theDrag
) ;
431 void wxMacEnsureTrackingHandlersInstalled()
433 if( !gTrackingGlobalsInstalled
)
437 result
= InstallTrackingHandler(NewDragTrackingHandlerUPP(wxMacWindowDragTrackingHandler
), 0L,&gTrackingGlobals
);
438 wxASSERT( result
== noErr
) ;
439 result
= InstallReceiveHandler(NewDragReceiveHandlerUPP(wxMacWindowDragReceiveHandler
), 0L, &gTrackingGlobals
);
440 wxASSERT( result
== noErr
) ;
442 gTrackingGlobalsInstalled
= true ;
446 pascal OSErr
wxMacWindowDragTrackingHandler(DragTrackingMessage theMessage
, WindowPtr theWindow
,
447 void *handlerRefCon
, DragReference theDrag
)
449 MacTrackingGlobals
* trackingGlobals
= (MacTrackingGlobals
*) handlerRefCon
;
450 Point mouse
, localMouse
;
451 DragAttributes attributes
;
452 GetDragAttributes(theDrag
, &attributes
);
453 wxTopLevelWindowMac
* toplevel
= wxFindWinFromMacWindow( theWindow
) ;
457 bool optionDown
= keymap
[1] & 4;
458 wxDragResult result
= optionDown
? wxDragCopy
: wxDragMove
;
462 case kDragTrackingEnterHandler
:
464 case kDragTrackingLeaveHandler
:
466 case kDragTrackingEnterWindow
:
467 trackingGlobals
->m_currentTargetWindow
= NULL
;
468 trackingGlobals
->m_currentTarget
= NULL
;
470 case kDragTrackingInWindow
:
471 if (toplevel
== NULL
)
474 GetDragMouse(theDrag
, &mouse
, 0L);
476 GlobalToLocal(&localMouse
);
480 // if (attributes & kDragHasLeftSenderWindow)
482 wxPoint
point(localMouse
.h
, localMouse
.v
) ;
483 wxWindow
*win
= NULL
;
484 ControlPartCode controlPart
;
485 ControlRef control
= wxMacFindControlUnderMouse( localMouse
,
486 theWindow
, &controlPart
) ;
488 win
= wxFindControlFromMacControl( control
) ;
489 // TODO toplevel->MacGetWindowFromPointSub( point , &win ) ;
490 int localx
, localy
;
491 localx
= localMouse
.h
;
492 localy
= localMouse
.v
;
493 //TODO : should we use client coordinates
495 win
->MacRootWindowToWindow( &localx
, &localy
) ;
496 if ( win
!= trackingGlobals
->m_currentTargetWindow
)
498 if ( trackingGlobals
->m_currentTargetWindow
)
500 // this window is left
501 if ( trackingGlobals
->m_currentTarget
)
503 HideDragHilite(theDrag
);
504 trackingGlobals
->m_currentTarget
->SetCurrentDrag( theDrag
) ;
505 trackingGlobals
->m_currentTarget
->OnLeave() ;
506 trackingGlobals
->m_currentTarget
= NULL
;
507 trackingGlobals
->m_currentTargetWindow
= NULL
;
512 // this window is entered
513 trackingGlobals
->m_currentTargetWindow
= win
;
514 trackingGlobals
->m_currentTarget
= win
->GetDropTarget() ;
517 if ( trackingGlobals
->m_currentTarget
)
519 trackingGlobals
->m_currentTarget
->SetCurrentDrag( theDrag
) ;
520 result
= trackingGlobals
->m_currentTarget
->OnEnter(
521 localx
, localy
, result
) ;
525 if ( result
!= wxDragNone
)
529 win
->MacWindowToRootWindow( &x
, &y
) ;
530 RgnHandle hiliteRgn
= NewRgn() ;
531 Rect r
= { y
, x
, y
+win
->GetSize().y
, x
+win
->GetSize().x
} ;
532 RectRgn( hiliteRgn
, &r
) ;
533 ShowDragHilite(theDrag
, hiliteRgn
, true);
534 DisposeRgn( hiliteRgn
) ;
541 if( trackingGlobals
->m_currentTarget
)
543 trackingGlobals
->m_currentTarget
->SetCurrentDrag( theDrag
) ;
544 trackingGlobals
->m_currentTarget
->OnDragOver(
545 localx
, localy
, result
) ;
549 // set cursor for OnEnter and OnDragOver
550 if ( trackingGlobals
->m_currentSource
&& trackingGlobals
->m_currentSource
->GiveFeedback( result
) == FALSE
)
552 if ( trackingGlobals
->m_currentSource
->MacInstallDefaultCursor( result
) == FALSE
)
558 wxCursor
cursor(wxCURSOR_COPY_ARROW
) ;
559 cursor
.MacInstall() ;
564 wxCursor
cursor(wxCURSOR_ARROW
) ;
565 cursor
.MacInstall() ;
570 wxCursor
cursor(wxCURSOR_NO_ENTRY
) ;
571 cursor
.MacInstall() ;
578 // put these here to make gcc happy
585 // MyTrackItemUnderMouse(localMouse, theWindow);
587 case kDragTrackingLeaveWindow
:
588 if (trackingGlobals
->m_currentTarget
)
590 trackingGlobals
->m_currentTarget
->SetCurrentDrag( theDrag
) ;
591 trackingGlobals
->m_currentTarget
->OnLeave() ;
592 HideDragHilite(theDrag
);
593 trackingGlobals
->m_currentTarget
= NULL
;
595 trackingGlobals
->m_currentTargetWindow
= NULL
;
601 pascal OSErr
wxMacWindowDragReceiveHandler(WindowPtr theWindow
,
603 DragReference theDrag
)
605 MacTrackingGlobals
* trackingGlobals
= (MacTrackingGlobals
*) handlerRefCon
;
606 if ( trackingGlobals
->m_currentTarget
)
608 Point mouse
,localMouse
;
611 trackingGlobals
->m_currentTarget
->SetCurrentDrag( theDrag
) ;
612 GetDragMouse(theDrag
, &mouse
, 0L);
614 GlobalToLocal(&localMouse
);
615 localx
= localMouse
.h
;
616 localy
= localMouse
.v
;
617 //TODO : should we use client coordinates
618 if ( trackingGlobals
->m_currentTargetWindow
)
619 trackingGlobals
->m_currentTargetWindow
->MacRootWindowToWindow( &localx
, &localy
) ;
620 if ( trackingGlobals
->m_currentTarget
->OnDrop( localx
, localy
) )
624 bool optionDown
= keymap
[1] & 4;
625 wxDragResult result
= optionDown
? wxDragCopy
: wxDragMove
;
626 trackingGlobals
->m_currentTarget
->OnData( localx
, localy
, result
) ;