How do I get the target of Control Click in NSOutlineView

342 Views Asked by At

I have a NSOutlineView controlled by a NSTreeController. NSOutlineView is connected to a Contextual Menu in Interface Builder.

Control Click brings up my Menu, and the row clicked on is "selected" with a pale highlight with a border.

I can't seem to find any way to find which row is "selected". selectionIndexPath and selectedObjects are nil.

1

There are 1 best solutions below

1
On

You want to use clickedRow. Note that this becomes a bit more complicated if you support multiple selection, because the selection gets targeted by the shortcut menu if the clicked row is within it, whereas if you click elsewhere, the (single) clicked row is the target and the selection is ignored.

Here's an example of some code I wrote to handle this:

- (NSArray *)selectedURLs;
{
    NSInteger clickedRow = [outlineView clickedRow];
    NSArray *selectedObjects;

    if (clickedRow == -1 || [[outlineView selectedRowIndexes] containsIndex:clickedRow])
        selectedObjects = [treeController selectedObjects];
    else
        selectedObjects = [NSArray arrayWithObject:[[outlineView itemAtRow:clickedRow] representedObject]];

    return [selectedObjects valueForKey:SSTreeNodeAttributes.fileReferenceURL];
}