Quote Originally Posted by mchara View Post
By defalut editing is not on double click but on click selected - those two are different actions that can be used together.
To be exact, any QAbstractItemView uses edit triggers
Qt Code:
  1. QAbstractItemView::DoubleClicked|QAbstractItemView::EditKeyPressed
To copy to clipboard, switch view to plain text mode 
by default, and QTableView adds
Qt Code:
  1. editTriggers|QAbstractItemView::AnyKeyPressed
To copy to clipboard, switch view to plain text mode 
to that.