| 362 | }; |
| 363 | |
| 364 | LoadingDocumentImpl::LoadingDocumentImpl(Document *document) |
| 365 | : AbstractDocumentImpl(document) |
| 366 | , d(new LoadingDocumentImplPrivate) |
| 367 | { |
| 368 | d->q = this; |
| 369 | d->mMetaInfoLoaded = false; |
| 370 | d->mAnimated = false; |
| 371 | d->mDownSampledImageLoaded = false; |
| 372 | d->mImageDataInvertedZoom = 0; |
| 373 | |
| 374 | connect(&d->mMetaInfoFutureWatcher, &QFutureWatcherBase::finished, this, &LoadingDocumentImpl::slotMetaInfoLoaded); |
| 375 | |
| 376 | connect(&d->mImageDataFutureWatcher, &QFutureWatcherBase::finished, this, &LoadingDocumentImpl::slotImageLoaded); |
| 377 | } |
| 378 | |
| 379 | LoadingDocumentImpl::~LoadingDocumentImpl() |
| 380 | { |
nothing calls this directly
no outgoing calls
no test coverage detected