| 306 | } |
| 307 | |
| 308 | void ScreenshotsPage::ShowContextMenu(const QPoint& pos) |
| 309 | { |
| 310 | auto menu = ui->toolBar->createContextMenu(this, tr("Context menu")); |
| 311 | |
| 312 | if (ui->listView->selectionModel()->selectedRows().size() > 1) { |
| 313 | menu->removeAction(ui->actionCopy_Image); |
| 314 | } |
| 315 | |
| 316 | menu->exec(ui->listView->mapToGlobal(pos)); |
| 317 | delete menu; |
| 318 | } |
| 319 | |
| 320 | QMenu* ScreenshotsPage::createPopupMenu() |
| 321 | { |
nothing calls this directly
no test coverage detected