| 328 | } |
| 329 | |
| 330 | void resizeAdapterWidget() |
| 331 | { |
| 332 | QRectF rect = QRectF(QPointF(0, 0), q->boundingRect().size()); |
| 333 | if (mCompareMode) { |
| 334 | rect.adjust(COMPARE_MARGIN, COMPARE_MARGIN, -COMPARE_MARGIN, -COMPARE_MARGIN); |
| 335 | } |
| 336 | mAdapter->widget()->setGeometry(rect); |
| 337 | } |
| 338 | |
| 339 | void fadeTo(qreal value) |
| 340 | { |
no test coverage detected