tabViewController:acceptDrop:itemIndex:dropOperation: |
- ( BOOL ) tabViewController: (MOTabViewController *) tabViewController acceptDrop: (id ) info itemIndex: (int ) itemIndex dropOperation: (MOTabViewDropOperation ) op;
Performs the drop. !!!:mferris:20030505 needs more detail
- tabViewController
- The sender.
- info
- The NSDraggingInfo for the in-progress drag operation.
- itemIndex
- The drop index.
- op
- The drop operation.
tabViewController:menuForItemAtIndex:event: |
- ( NSMenu *) tabViewController: (MOTabViewController *) tabViewController menuForItemAtIndex : (int ) itemIndex event: (NSEvent *) event;
Message sent to delegate when the tab view controller needs a context menu. This message is sent when the user right-clicks or control-clicks in the tab bar of a tab view. The delegate can return a menu to use as the context menu. This method covers the similar method from MOTabView exposing the ability to supply the context menu to the delegate of the controller.
- tabViewController
- The sender.
- itemIndex
- The index of the tab that the mouse is over, or -1 if the mouse is over the tab bar but not an actual tab.
- event
- The event.
tabViewController:validateDrop:proposedItemIndex:proposedDropOperation: |
- ( NSDragOperation ) tabViewController: (MOTabViewController *) tabViewController validateDrop: (id ) info proposedItemIndex: (int ) itemIndex proposedDropOperation: (MOTabViewDropOperation ) op;
Validates a proposed drop operation. !!!:mferris:20030505 needs more detail
- tabViewController
- The sender.
- info
- The NSDraggingInfo for the in-progress drag operation.
- itemIndex
- The proposed drop index.
- op
- The proposed drop operation.
(Last Updated 3/20/2005)