| 295 | } |
| 296 | |
| 297 | void FlowViewWindow::contextMenuRequestGraph(QPoint pos) |
| 298 | { |
| 299 | QMenu *menu = new QMenu(this); |
| 300 | menu->setAttribute(Qt::WA_DeleteOnClose); |
| 301 | |
| 302 | menu->addAction(tr("Save image to file"), this, SLOT(saveFileGraph())); |
| 303 | |
| 304 | menu->popup(ui->graphView->mapToGlobal(pos)); |
| 305 | } |
| 306 | |
| 307 | void FlowViewWindow::saveFileGraph() |
| 308 | { |
nothing calls this directly
no outgoing calls
no test coverage detected