draws current image to buffer (scaled, panned)
| 1427 | |
| 1428 | // draws current image to buffer (scaled, panned) |
| 1429 | bool DocViewNative::drawImage(LVDrawBuf * buf, int x, int y, int dx, int dy) |
| 1430 | { |
| 1431 | if (_currentImage.isNull()) |
| 1432 | return false; |
| 1433 | return _docview->drawImage(buf, _currentImage, x, y, dx, dy); |
| 1434 | } |
| 1435 | |
| 1436 | // draws icon to buffer |
| 1437 | bool DocViewNative::drawIcon(LVDrawBuf * buf, lvRect & rc, int type) { |
no test coverage detected