aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp')
-rw-r--r--tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp b/tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp
new file mode 100644
index 0000000000..65c8a11a2e
--- /dev/null
+++ b/tests/auto/quick/qquickpixmapcache/deviceloadingimage.cpp
@@ -0,0 +1,43 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include "deviceloadingimage.h"
+
+#include <QtQuick/private/qquickimage_p_p.h>
+
+Q_DECLARE_LOGGING_CATEGORY(lcTests)
+
+void DeviceLoadingImage::load()
+{
+ auto *d = static_cast<QQuickImagePrivate *>(QQuickImagePrivate::get(this));
+ static int thisRequestFinished = -1;
+ if (thisRequestFinished == -1) {
+ thisRequestFinished =
+ QQuickImageBase::staticMetaObject.indexOfSlot("requestFinished()");
+ }
+ const QQmlContext *context = qmlContext(this);
+ Q_ASSERT(context);
+ QUrl resolved = context->resolvedUrl(d->url);
+ device = std::make_unique<QFile>(resolved.toLocalFile());
+ d->pix1.loadImageFromDevice(qmlEngine(this), device.get(), context->resolvedUrl(d->url),
+ d->sourceClipRect.toRect(), d->sourcesize * d->devicePixelRatio,
+ QQuickImageProviderOptions(), d->currentFrame, d->frameCount);
+
+ qCDebug(lcTests) << "loading page" << d->currentFrame << "of" << d->frameCount << "status" << d->pix1.status();
+
+ switch (d->pix1.status()) {
+ case QQuickPixmap::Ready:
+ pixmapChange();
+ break;
+ case QQuickPixmap::Loading:
+ d->pix1.connectFinished(this, thisRequestFinished);
+ if (d->status != Loading) {
+ d->status = Loading;
+ emit statusChanged(d->status);
+ }
+ break;
+ default:
+ qCWarning(lcTests) << "unexpected status" << d->pix1.status();
+ break;
+ }
+}