| 276 | } |
| 277 | |
| 278 | void ScreenshotsPage::ShowContextMenu(const QPoint& pos) |
| 279 | { |
| 280 | auto menu = ui->toolBar->createContextMenu(this, tr("Context menu")); |
| 281 | |
| 282 | if (ui->listView->selectionModel()->selectedRows().size() > 1) { |
| 283 | menu->removeAction( ui->actionCopy_Image ); |
| 284 | } |
| 285 | |
| 286 | menu->exec(ui->listView->mapToGlobal(pos)); |
| 287 | delete menu; |
| 288 | } |
| 289 | |
| 290 | QMenu * ScreenshotsPage::createPopupMenu() |
| 291 | { |
nothing calls this directly
no test coverage detected