Functions


viewListViewController:validateDrop:proposedItemIndex:proposedDropOperation:
Validates a proposed drop operation.
viewListViewController:acceptDrop:itemIndex:dropOperation:
Performs the drop.

viewListViewController:acceptDrop:itemIndex:dropOperation:

Performs the drop.
- ( BOOL ) viewListViewController:
        (MOViewListViewController *) viewListViewController 
        acceptDrop:
        (id ) info itemIndex:
        (int ) itemIndex dropOperation:
        (MOViewListViewDropOperation ) op;

Performs the drop. !!!:mferris:20030603 needs more detail

Parameter Descriptions
viewListViewController
The sender.
info
The NSDraggingInfo for the in-progress drag operation.
itemIndex
The drop index.
op
The drop operation.
function result
Whether the drop was completed successfully.

viewListViewController:validateDrop:proposedItemIndex:proposedDropOperation:

Validates a proposed drop operation.
- ( NSDragOperation ) viewListViewController:
        (MOViewListViewController *) viewListViewController 
        validateDrop:
        (id ) info proposedItemIndex:
        (int ) itemIndex proposedDropOperation:
        (MOViewListViewDropOperation ) op;

Validates a proposed drop operation. !!!:mferris:20030603 needs more detail

Parameter Descriptions
viewListViewController
The sender.
info
The NSDraggingInfo for the in-progress drag operation.
itemIndex
The proposed drop index.
op
The proposed drop operation.
function result
The drag operation that would occur if the drop happened at the current point.

(Last Updated 3/20/2005)