| 20 | #include "IPZoomWidget.h" |
| 21 | |
| 22 | IPZoomWidget::IPZoomWidget(QWidget *parent) : |
| 23 | QWidget(parent) |
| 24 | { |
| 25 | _x = 0; |
| 26 | _y = 0; |
| 27 | _columnOffset = 1; |
| 28 | _positionLocked = false; |
| 29 | _image = NULL; |
| 30 | |
| 31 | _zoomUpdateMutex = new QMutex; |
| 32 | } |
| 33 | |
| 34 | void IPZoomWidget::setImage(IPLData *data) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected