Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QGlobalPixmapCache Class Reference
[QtBaseModule]

The QGlobalPixmapCache class provides a system-wide cache for pixmaps. More...

    #include <QGlobalPixmapCache>

Static Public Members

  • bool find ( const QString & key, QPixmap & pixmap )
  • bool insert ( const QString & key, const QPixmap & pixmap )
  • void remove ( const QString & key )

Detailed Description

The QGlobalPixmapCache class provides a system-wide cache for pixmaps.

This class is a tool for caching of pixmaps which are likely to be used by multiple processes, or are expensive to generate and may benefit from caching between application executions. For an application-wide QPixmap cache use QPixmapCache.

Use insert() to insert pixmaps, find() to find them, and remove() to remove them from the global cache.

QGlobalPixmapCache contains no member data, only static functions to access the global pixmap cache.

The global cache associates a pixmap with a string (key). If two pixmaps are inserted into the global cache using equal keys, then the last pixmap will hide the first pixmap.

When the global cache becomes full, insert() will fail until adequate space is made available by removing unneeded pixmaps from the global cache, or by deleting all references to the global pixmap's data.

See also QPixmapCache, QPixmap, and QGLOBAL_PIXMAP_CACHE_LIMIT.


Member Function Documentation

bool QGlobalPixmapCache::find ( const QString & key, QPixmap & pixmap )   [static]

Looks for a cached pixmap associated with the key in the global cache. If the pixmap is found, the function sets pixmap to that pixmap and returns true; otherwise it leaves pixmap alone and returns false.

Internally the global cache ensures that the pixmap is not removed until the pixmap is destroyed, therefore pixmap is directly associated with the QPixmap in the global cache and should not be reused.

Example of correct use:

    {
        QPixmap pm;
        if (!QGlobalPixmapCache::find("background_image", pm)) {
            pm.load("backgroundimage.png");
            QGlobalPixmapCache::insert("background_image", pm);
        }
        painter->drawPixmap(0, 0, pm);
    }

    {
        QPixmap pm;
        if (!QGlobalPixmapCache::find("wallpaper_image", pm)) {
            pm.load("wallpaper.png");
            QGlobalPixmapCache::insert("wallpaper_image", pm);
        }
        painter->drawPixmap(0, 0, pm);
    }

Example of incorrect use:

    QPixmap pm;
    if (!QGlobalPixmapCache::find("background_image", pm)) {
        pm.load("backgroundimage.png");
        QGlobalPixmapCache::insert("background_image", pm);
    }
    painter->drawPixmap(0, 0, pm);

    if (!QGlobalPixmapCache::find("wallpaper_image", pm)) {
        pm.load("wallpaper.png");
        QGlobalPixmapCache::insert("wallpaper_image", pm);
    }
    painter->drawPixmap(0, 0, pm);

bool QGlobalPixmapCache::insert ( const QString & key, const QPixmap & pixmap )   [static]

Inserts the pixmap pixmap associated with the key into the global cache.

All pixmaps inserted by Qt Extended have a key starting with "_$QTOPIA", so your own pixmap keys should never begin with "_$QTOPIA".

The function returns true if the object was inserted into the global cache; otherwise it returns false.

When the pixmap is no longer required in the global cache, remove() may be called to free space in the global cache.

If two pixmaps are inserted into the global cache using equal keys, then the last pixmap will hide the first pixmap.

void QGlobalPixmapCache::remove ( const QString & key )   [static]

Removes the pixmap associated with the key from the global cache.

Space in the global cache will not be reclaimed unless remove() is called on pixmaps that are not required or all pixmaps referencing the global pixmap data are deleted.

Note that calling remove marks the image for removal, but may not necessarily remove it until some time later. Other callers are permitted to re-reference the pixmap until that time. Consequently, the mere presence of an image in the global pixmap cache should not be used to indicate application state.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 44
  2. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt qtextended4.4
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web