| 1321 | } |
| 1322 | |
| 1323 | inline bool polygonContains(const QPolygonF & poly, const QRectF & rect) |
| 1324 | { |
| 1325 | QRectF r = poly.intersected(rect).boundingRect(); |
| 1326 | |
| 1327 | return (qAbs(r.width() * r.height() - rect.width() * rect.height()) < 1e-6); |
| 1328 | } |
| 1329 | |
| 1330 | QString Page::selectedText(const QList<QPolygonF> & selection, QMap<int, QRectF> * wordBoxes /* = NULL */, QMap<int, QRectF> * charBoxes /* = NULL */, const bool onlyFullyEnclosed) |
| 1331 | { |