Disable NSTableCellView single click edit

947 Views Asked by At

When you have a row highlighted, and left OR right click on the highlighted cell, it goes in edit mode (even after X seconds of no activity, so it's not a double click action).

I would like to disable this and make it so that it only works if you double click, even if you have already selected the cell.

If that is not possible, I would at least like to disable the right click to edit functionality, as I have my own context menu that I want to show, but right clicking on the text triggers the edit with it's own context menu, instead of the context menu I receive when I click outside the text but in the cell.

Any methods that I can use for this?

Note: I still want to allow editing via the enter key.

1

There are 1 best solutions below

4
On BEST ANSWER

Did not check it, but perhaps you can implement -control:textShouldBeginEditing: in the delegate and read the current event inside:

- (BOOL)control:(NSControl *)control textShouldBeginEditing:(NSText *)fieldEditor
{
  NSEvent *currentEvent = [NSApp currentEvent];
  switch (currentEvent.type)
  {
    case NSLeftMouseUp:
      if (currentEvent.clickCount<2)
      {
        return NO;
      }
      return YES;
    case NSRightMouseUp:
      return NO;
    default:
      return YES;
  }

Just an idea. Go ahead!