! This function is used to decide whether a click hits a layerable object or not. \a pos is a point in pixel coordinates on the QCustomPlot surface. This function returns the shortest pixel distance of this point to the object. If the object is either invisible or the distance couldn't be determined, -1.0 is returned. Further, if \a onlySelectable is true and the object is not selectabl
| 1501 | QCPAbstractPlottable1D::selectTestRect |
| 1502 | */ |
| 1503 | double QCPLayerable::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const |
| 1504 | { |
| 1505 | Q_UNUSED(pos) |
| 1506 | Q_UNUSED(onlySelectable) |
| 1507 | Q_UNUSED(details) |
| 1508 | return -1.0; |
| 1509 | } |
| 1510 | |
| 1511 | /*! \internal |
| 1512 |
no test coverage detected