| 22 | } |
| 23 | |
| 24 | QRectF RemoteViewFrame::viewRect() const |
| 25 | { |
| 26 | if (m_viewRect.isValid()) |
| 27 | return m_viewRect; |
| 28 | qreal pxRatio = 1.0; |
| 29 | pxRatio = m_image.image().devicePixelRatio(); |
| 30 | return QRect(QPoint(), m_image.image().size() / pxRatio); |
| 31 | } |
| 32 | |
| 33 | void RemoteViewFrame::setViewRect(const QRectF &viewRect) |
| 34 | { |