Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a QTableView in the main UI of my program. I'd like to show popup menu when user right clicks on the cells of the table and take appropriate action when an option is selected from the menu. I am using Qt Creator 1 (Qt version 4.5). How can I do that?

Thanks for your time.

share|improve this question

1 Answer

up vote 10 down vote accepted

Check out the customContextMenuRequested signal to get the event, and use a QMenu for the menu itself. Use QTableView::indexAt to find out what, if any, cell was clicked based on the coordinates given to the signal and take the appropriate action when a menu item is clicked.

share|improve this answer
You will need to call menu.exec(const QPoint&) to display it. Make sure you translate it to the appropriate coordinates: menu.exec(mapToGlobal(point), 0) – David Souther Mar 4 '10 at 0:11
3  
Or just use menu.exec(QCursor::pos()) doc.trolltech.com/latest/qmenu.html#exec – amree Aug 10 '10 at 5:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.