| 291 | } |
| 292 | |
| 293 | void IPImageViewer::zoomReset() |
| 294 | { |
| 295 | _zoomFitMode = false; |
| 296 | |
| 297 | _scale = 1.0; |
| 298 | |
| 299 | QMatrix matrix; |
| 300 | matrix.scale(_scale, _scale); |
| 301 | _graphicsView->setMatrix(matrix); |
| 302 | } |
| 303 | |
| 304 | bool IPImageViewer::eventFilter(QObject *object, QEvent *event) |
| 305 | { |
no outgoing calls
no test coverage detected