| 318 | } |
| 319 | |
| 320 | void ScreenshotsPage::ShowContextMenu(const QPoint& pos) |
| 321 | { |
| 322 | auto menu = ui->toolBar->createContextMenu(this, tr("Context menu")); |
| 323 | |
| 324 | if (ui->listView->selectionModel()->selectedRows().size() > 1) { |
| 325 | menu->removeAction( ui->actionCopy_Image ); |
| 326 | } |
| 327 | |
| 328 | menu->exec(ui->listView->mapToGlobal(pos)); |
| 329 | delete menu; |
| 330 | } |
| 331 | |
| 332 | QMenu * ScreenshotsPage::createPopupMenu() |
| 333 | { |
nothing calls this directly
no test coverage detected