Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-updates > by-pkgid > 6e2327ca1c896c6d674ae53117299f21 > files > 169

qtdeclarative5-doc-5.12.6-1.mga7.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qqmlengine.cpp -->
  <title>QQmlImageProviderBase Class | Qt QML 5.12.6</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.12</td><td ><a href="qtqml-index.html">Qt QML</a></td><td ><a href="qtqml-module.html">C++ Classes</a></td><td >QQmlImageProviderBase</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right"><a href="qtqml-index.html">Qt 5.12.6 Reference Documentation</a></td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-types">Public Types</a></li>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">QQmlImageProviderBase Class</h1>
<!-- $$$QQmlImageProviderBase-brief -->
<p>The <a href="qqmlimageproviderbase.html">QQmlImageProviderBase</a> class is used to register image providers in the QML engine. <a href="#details">More...</a></p>
<!-- @@@QQmlImageProviderBase -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign">   <span class="preprocessor">#include &lt;QQmlImageProviderBase&gt;</span>
</td></tr><tr><td class="memItemLeft rightAlign topAlign"> qmake:</td><td class="memItemRight bottomAlign"> QT += qml</td></tr></table></div><ul>
<li><a href="qqmlimageproviderbase-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-types"></a>
<h2 id="public-types">Public Types</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qqmlimageproviderbase.html#Flag-enum">Flag</a></b> { ForceAsynchronousImageLoading }</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> flags </td><td class="memItemRight bottomAlign"><b><a href="qqmlimageproviderbase.html#Flag-enum">Flags</a></b></td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qqmlimageproviderbase.html#ImageType-enum">ImageType</a></b> { Image, Pixmap, Texture, ImageResponse }</td></tr>
</table></div>
<a name="public-functions"></a>
<h2 id="public-functions">Public Functions</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> virtual QQmlImageProviderBase::Flags </td><td class="memItemRight bottomAlign"><b><a href="qqmlimageproviderbase.html#flags">flags</a></b>() const = 0</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> virtual QQmlImageProviderBase::ImageType </td><td class="memItemRight bottomAlign"><b><a href="qqmlimageproviderbase.html#imageType">imageType</a></b>() const = 0</td></tr>
</table></div>
<a name="details"></a>
<!-- $$$QQmlImageProviderBase-description -->
<div class="descr">
<h2 id="details">Detailed Description</h2>
<p>The <a href="qqmlimageproviderbase.html">QQmlImageProviderBase</a> class is used to register image providers in the QML engine.</p>
<p>Image providers must be registered with the QML engine. The only information the QML engine knows about image providers is the type of image data they provide. To use an image provider to acquire image data, you must cast the <a href="qqmlimageproviderbase.html">QQmlImageProviderBase</a> pointer to a QQuickImageProvider pointer.</p>
</div>
<p><b>See also </b>QQuickImageProvider and QQuickTextureFactory.</p>
<!-- @@@QQmlImageProviderBase -->
<div class="types">
<h2>Member Type Documentation</h2>
<!-- $$$Flag$$$ForceAsynchronousImageLoading -->
<h3 class="flags" id="Flag-enum"><a name="Flag-enum"></a>enum QQmlImageProviderBase::<span class="name">Flag</span><br/>flags QQmlImageProviderBase::<span class="name">Flags</span></h3>
<p>Defines specific requirements or features of this image provider.</p>
<div class="table"><table class="valuelist"><tr valign="top" class="odd"><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr>
<tr><td class="topAlign"><code>QQmlImageProviderBase::ForceAsynchronousImageLoading</code></td><td class="topAlign tblval"><code>0x01</code></td><td class="topAlign">Ensures that image requests to the provider are run in a separate thread, which allows the provider to spend as much time as needed on producing the image without blocking the main thread.</td></tr>
</table></div>
<p>The Flags type is a typedef for <a href="">QFlags</a>&lt;Flag&gt;. It stores an OR combination of Flag values.</p>
<!-- @@@Flag -->
<!-- $$$ImageType$$$Image$$$Pixmap$$$Texture$$$Invalid$$$ImageResponse -->
<h3 class="fn" id="ImageType-enum"><a name="ImageType-enum"></a>enum QQmlImageProviderBase::<span class="name">ImageType</span></h3>
<p>Defines the type of image supported by this image provider.</p>
<div class="table"><table class="valuelist"><tr valign="top" class="odd"><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr>
<tr><td class="topAlign"><code>QQmlImageProviderBase::Image</code></td><td class="topAlign tblval"><code>0</code></td><td class="topAlign">The Image Provider provides QImage images. The QQuickImageProvider::requestImage() method will be called for all image requests.</td></tr>
<tr><td class="topAlign"><code>QQmlImageProviderBase::Pixmap</code></td><td class="topAlign tblval"><code>1</code></td><td class="topAlign">The Image Provider provides QPixmap images. The QQuickImageProvider::requestPixmap() method will be called for all image requests.</td></tr>
<tr><td class="topAlign"><code>QQmlImageProviderBase::Texture</code></td><td class="topAlign tblval"><code>2</code></td><td class="topAlign">The Image Provider provides QSGTextureProvider based images. The QQuickImageProvider::requestTexture() method will be called for all image requests.</td></tr>
<tr><td class="topAlign"><code>QQmlImageProviderBase::ImageResponse</code></td><td class="topAlign tblval"><code>4</code></td><td class="topAlign">The Image provider provides QQuickTextureFactory based images. Should only be used in QQuickAsyncImageProvider or its subclasses. The QQuickAsyncImageProvider::requestImageResponse() method will be called for all image requests. Since Qt 5.6</td></tr>
</table></div>
<!-- @@@ImageType -->
</div>
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$flags[overload1]$$$flags -->
<h3 class="fn" id="flags"><a name="flags"></a><code>[pure virtual] </code><span class="type"><a href="qqmlimageproviderbase.html#Flag-enum">QQmlImageProviderBase::Flags</a></span> QQmlImageProviderBase::<span class="name">flags</span>() const</h3>
<p>Implement this to return the properties of this image provider.</p>
<!-- @@@flags -->
<!-- $$$imageType[overload1]$$$imageType -->
<h3 class="fn" id="imageType"><a name="imageType"></a><code>[pure virtual] </code><span class="type"><a href="qqmlimageproviderbase.html#ImageType-enum">QQmlImageProviderBase::ImageType</a></span> QQmlImageProviderBase::<span class="name">imageType</span>() const</h3>
<p>Implement this method to return the image type supported by this image provider.</p>
<!-- @@@imageType -->
</div>
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2019 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br/>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br/>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>