Lines Matching refs:sender

110 -(NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
112 return mDropTarget->draggingEntered(sender);
116 -(NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
118 return mDropTarget->draggingUpdated(sender);
122 -(void)draggingExited:(id <NSDraggingInfo>)sender
124 mDropTarget->draggingExited(sender);
128 -(BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
130 return mDropTarget->prepareForDragOperation(sender);
134 -(BOOL)performDragOperation:(id <NSDraggingInfo>)sender
136 (void) sender;
141 -(void)concludeDragOperation:(id <NSDraggingInfo>)sender
143 mDropTarget->concludeDragOperation(sender);
172 sal_Int8 DropTarget::determineDropAction(sal_Int8 dropActions, id sender) const in determineDropAction()
177 if ([sender draggingSource] != nil) in determineDropAction()
180 NSView* destView = [[sender draggingDestinationWindow] contentView]; in determineDropAction()
224 NSDragOperation DropTarget::draggingEntered(id sender) in draggingEntered() argument
230 mDragSourceSupportedActions = SystemToOfficeDragActions([sender draggingSourceOperationMask]); in draggingEntered()
236 sal_Int8 currentAction = determineDropAction(mDragSourceSupportedActions, sender); in draggingEntered()
249 NSPasteboard* dragPboard = [sender draggingPasteboard]; in draggingEntered()
271 NSDragOperation DropTarget::draggingUpdated(id sender) in draggingUpdated() argument
274 SystemToOfficeDragActions([sender draggingSourceOperationMask]); in draggingUpdated()
279 sal_Int8 currentAction = determineDropAction(currentDragSourceActions, sender); in draggingUpdated()