MCPcopy Create free account
hub / github.com/KDE/gwenview / LoadingDocumentImpl

Method LoadingDocumentImpl

lib/document/loadingdocumentimpl.cpp:364–377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362};
363
364LoadingDocumentImpl::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
379LoadingDocumentImpl::~LoadingDocumentImpl()
380{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected