| 277 | |
| 278 | |
| 279 | void |
| 280 | FlowView:: |
| 281 | keyPressEvent(QKeyEvent *event) |
| 282 | { |
| 283 | switch (event->key()) |
| 284 | { |
| 285 | case Qt::Key_Shift: |
| 286 | setDragMode(QGraphicsView::RubberBandDrag); |
| 287 | break; |
| 288 | |
| 289 | default: |
| 290 | break; |
| 291 | } |
| 292 | |
| 293 | QGraphicsView::keyPressEvent(event); |
| 294 | } |
| 295 | |
| 296 | |
| 297 | void |
nothing calls this directly
no outgoing calls
no test coverage detected