![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qquickpixmap_p.h>
Public Types | |
enum | Status { Null , Ready , Error , Loading } |
enum | Option { Asynchronous = 0x00000001 , Cache = 0x00000002 } |
Static Public Member Functions | |
static void | purgeCache () |
static bool | isCached (const QUrl &url, const QRect &requestRegion, const QSize &requestSize, const int frame, const QQuickImageProviderOptions &options) |
static bool | isScalableImageFormat (const QUrl &url) |
Static Public Attributes | |
static const QLatin1String | itemGrabberScheme = QLatin1String("itemgrabber") |
Friends | |
class | QQuickPixmapData |
A class that encapsulates the action of fetching a pixmap, as well as the pixmap itself (indirectly via QQuickPixmapData::textureFactory) and the responsibility of canceling outstanding requests. Rather than relying on QPixmapCache which doesn't cache all the information Qt Quick needs, QQuickPixmap implements its own cache, that correctly degrades over time. (QQuickPixmapData::release() marks it as being not-currently-used, and QQuickPixmapCache::shrinkCache() sweeps away the least-recently-released instances until the remaining bytes are less than cache_limit.)
Definition at line 104 of file qquickpixmap_p.h.
enum QQuickPixmap::Option |
Enumerator | |
---|---|
Asynchronous | |
Cache |
Definition at line 110 of file qquickpixmap_p.h.
enum QQuickPixmap::Status |
Enumerator | |
---|---|
Null | |
Ready | |
Error | |
Loading |
Definition at line 108 of file qquickpixmap_p.h.
QQuickPixmap::QQuickPixmap | ( | ) |
Definition at line 1676 of file qquickpixmapcache.cpp.
QQuickPixmap::QQuickPixmap | ( | QQmlEngine * | engine, |
const QUrl & | url ) |
Definition at line 1681 of file qquickpixmapcache.cpp.
QQuickPixmap::QQuickPixmap | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
Options | options ) |
Definition at line 1687 of file qquickpixmapcache.cpp.
QQuickPixmap::QQuickPixmap | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
const QRect & | region, | ||
const QSize & | size ) |
Definition at line 1693 of file qquickpixmapcache.cpp.
Definition at line 1699 of file qquickpixmapcache.cpp.
QQuickPixmap::~QQuickPixmap | ( | ) |
Definition at line 1706 of file qquickpixmapcache.cpp.
QQuickImageProviderOptions::AutoTransform QQuickPixmap::autoTransform | ( | ) | const |
Definition at line 1782 of file qquickpixmapcache.cpp.
void QQuickPixmap::clear | ( | ) |
Definition at line 2022 of file qquickpixmapcache.cpp.
Definition at line 2030 of file qquickpixmapcache.cpp.
QColorSpace QQuickPixmap::colorSpace | ( | ) | const |
Definition at line 2102 of file qquickpixmapcache.cpp.
bool QQuickPixmap::connectDownloadProgress | ( | QObject * | object, |
const char * | method ) |
Definition at line 2080 of file qquickpixmapcache.cpp.
bool QQuickPixmap::connectDownloadProgress | ( | QObject * | object, |
int | method ) |
Definition at line 2091 of file qquickpixmapcache.cpp.
bool QQuickPixmap::connectFinished | ( | QObject * | object, |
const char * | method ) |
Definition at line 2060 of file qquickpixmapcache.cpp.
bool QQuickPixmap::connectFinished | ( | QObject * | object, |
int | method ) |
Definition at line 2070 of file qquickpixmapcache.cpp.
QString QQuickPixmap::error | ( | ) | const |
Definition at line 1734 of file qquickpixmapcache.cpp.
int QQuickPixmap::frameCount | ( | ) | const |
Definition at line 1790 of file qquickpixmapcache.cpp.
int QQuickPixmap::height | ( | ) | const |
Definition at line 1845 of file qquickpixmapcache.cpp.
QImage QQuickPixmap::image | ( | ) | const |
Definition at line 1805 of file qquickpixmapcache.cpp.
const QSize & QQuickPixmap::implicitSize | ( | ) | const |
Definition at line 1758 of file qquickpixmapcache.cpp.
|
static |
Definition at line 2040 of file qquickpixmapcache.cpp.
bool QQuickPixmap::isError | ( | ) | const |
Definition at line 1724 of file qquickpixmapcache.cpp.
bool QQuickPixmap::isLoading | ( | ) | const |
Definition at line 1729 of file qquickpixmapcache.cpp.
bool QQuickPixmap::isNull | ( | ) | const |
Definition at line 1714 of file qquickpixmapcache.cpp.
bool QQuickPixmap::isReady | ( | ) | const |
Definition at line 1719 of file qquickpixmapcache.cpp.
|
static |
Definition at line 2049 of file qquickpixmapcache.cpp.
void QQuickPixmap::load | ( | QQmlEngine * | engine, |
const QUrl & | url ) |
Definition at line 1861 of file qquickpixmapcache.cpp.
void QQuickPixmap::load | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
const QRect & | requestRegion, | ||
const QSize & | requestSize ) |
Definition at line 1871 of file qquickpixmapcache.cpp.
void QQuickPixmap::load | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
const QRect & | requestRegion, | ||
const QSize & | requestSize, | ||
QQuickPixmap::Options | options ) |
Definition at line 1876 of file qquickpixmapcache.cpp.
void QQuickPixmap::load | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
const QRect & | requestRegion, | ||
const QSize & | requestSize, | ||
QQuickPixmap::Options | options, | ||
const QQuickImageProviderOptions & | providerOptions, | ||
int | frame = 0, | ||
int | frameCount = 1, | ||
qreal | devicePixelRatio = 1.0 ) |
Definition at line 1881 of file qquickpixmapcache.cpp.
void QQuickPixmap::load | ( | QQmlEngine * | engine, |
const QUrl & | url, | ||
QQuickPixmap::Options | options ) |
Definition at line 1866 of file qquickpixmapcache.cpp.
void QQuickPixmap::loadImageFromDevice | ( | QQmlEngine * | engine, |
QIODevice * | device, | ||
const QUrl & | url, | ||
const QRect & | requestRegion, | ||
const QSize & | requestSize, | ||
const QQuickImageProviderOptions & | providerOptions, | ||
int | frame = 0, | ||
int | frameCount = 1 ) |
Attempts to load an image from the given url via the given device. This is for special cases when the QImageIOHandler can benefit from reusing the I/O device, or from something extra that a subclass of QIODevice carries with it. So far, this code doesn't support loading anything other than a QImage, for example compressed textures. It can be added if needed.
Definition at line 1981 of file qquickpixmapcache.cpp.
|
static |
Definition at line 1410 of file qquickpixmapcache.cpp.
QRect QQuickPixmap::rect | ( | ) | const |
Definition at line 1853 of file qquickpixmapcache.cpp.
const QRect & QQuickPixmap::requestRegion | ( | ) | const |
Definition at line 1774 of file qquickpixmapcache.cpp.
const QSize & QQuickPixmap::requestSize | ( | ) | const |
Definition at line 1766 of file qquickpixmapcache.cpp.
Definition at line 1812 of file qquickpixmapcache.cpp.
void QQuickPixmap::setPixmap | ( | const QQuickPixmap & | other | ) |
Definition at line 1823 of file qquickpixmapcache.cpp.
QQuickPixmap::Status QQuickPixmap::status | ( | ) | const |
Definition at line 1742 of file qquickpixmapcache.cpp.
QQuickTextureFactory * QQuickPixmap::textureFactory | ( | ) | const |
Definition at line 1797 of file qquickpixmapcache.cpp.
const QUrl & QQuickPixmap::url | ( | ) | const |
Definition at line 1750 of file qquickpixmapcache.cpp.
int QQuickPixmap::width | ( | ) | const |
Definition at line 1837 of file qquickpixmapcache.cpp.
|
friend |
Definition at line 177 of file qquickpixmap_p.h.
|
static |
Definition at line 172 of file qquickpixmap_p.h.