1
我需要在doubleClick上用左鍵鼠標運行插槽,而不是兩者。Qt雙擊檢查左鍵鼠標
// this->myComponent is a QTableView
connect(this -> myComponent, SIGNAL (doubleClicked (const QModelIndex &)), this,
SLOT (performSomeAction(const QModelIndex &)));
有了這個事件,在這兩種情況下雙擊工作,但只有點擊左鍵時才需要。 我該怎麼做?
this -> myComponent => QTableView
不,它不適合我的工作。我從QTableView派生我的新類繼承,並實現那裏mouseDoubleClickEvent,但此方法不調用。 – 2010-04-18 18:38:11