Lines Matching refs:dropActions
172 sal_Int8 DropTarget::determineDropAction(sal_Int8 dropActions, id sender) const in determineDropAction() argument
174 sal_Int8 dropAct = dropActions; in determineDropAction()
188 if( (dropActions == DNDConstants::ACTION_DEFAULT) in determineDropAction()
189 || ((dropActions == mDragSourceSupportedActions) in determineDropAction()
198 else if (dropActions != DNDConstants::ACTION_NONE && in determineDropAction()
199 dropActions != DNDConstants::ACTION_MOVE && in determineDropAction()
200 dropActions != DNDConstants::ACTION_COPY && in determineDropAction()
201 dropActions != DNDConstants::ACTION_LINK) in determineDropAction()
205 dropAct = dropActions; in determineDropAction()
209 if (dropActions & DNDConstants::ACTION_COPY) in determineDropAction()
211 else if (dropActions & DNDConstants::ACTION_MOVE) in determineDropAction()
213 else if (dropActions & DNDConstants::ACTION_LINK) in determineDropAction()