-rw-r--r-- | noncore/multimedia/opieplayer2/skin.cpp | 37 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/skin.h | 2 |
2 files changed, 18 insertions, 21 deletions
diff --git a/noncore/multimedia/opieplayer2/skin.cpp b/noncore/multimedia/opieplayer2/skin.cpp index d2e3b00..5013bb4 100644 --- a/noncore/multimedia/opieplayer2/skin.cpp +++ b/noncore/multimedia/opieplayer2/skin.cpp | |||
@@ -23,6 +23,9 @@ | |||
23 | #include "skin.h" | 23 | #include "skin.h" |
24 | #include "singleton.h" | 24 | #include "singleton.h" |
25 | 25 | ||
26 | #include <qcache.h> | ||
27 | #include <qmap.h> | ||
28 | |||
26 | #include <qpe/resource.h> | 29 | #include <qpe/resource.h> |
27 | #include <qpe/config.h> | 30 | #include <qpe/config.h> |
28 | 31 | ||
@@ -44,14 +47,16 @@ class SkinCache : public Singleton<SkinCache> | |||
44 | public: | 47 | public: |
45 | SkinCache(); | 48 | SkinCache(); |
46 | 49 | ||
47 | QImage loadImage( const QString &name ); | 50 | SkinData *lookupAndTake( const QString &skinPath, const QString &fileNameInfix ); |
48 | 51 | ||
49 | private: | 52 | void store( const QString &skinPath, const QString &fileNameInfix, SkinData *data ); |
50 | typedef QDict<QImage> ImageCache; | ||
51 | 53 | ||
52 | ImageCache m_cache; | 54 | private: |
55 | typedef QCache<SkinData> DataCache; | ||
56 | typedef QCache<QPixmap> BackgroundPixmapCache; | ||
53 | 57 | ||
54 | ThreadUtil::Mutex m_cacheGuard; | 58 | DataCache m_cache; |
59 | BackgroundPixmapCache m_backgroundPixmapCache; | ||
55 | }; | 60 | }; |
56 | 61 | ||
57 | Skin::Skin( const QString &name, const QString &fileNameInfix ) | 62 | Skin::Skin( const QString &name, const QString &fileNameInfix ) |
@@ -68,13 +73,13 @@ Skin::Skin( const QString &fileNameInfix ) | |||
68 | 73 | ||
69 | Skin::~Skin() | 74 | Skin::~Skin() |
70 | { | 75 | { |
71 | delete d; | 76 | SkinCache::self().store( m_skinPath, m_fileNameInfix, d ); |
72 | } | 77 | } |
73 | 78 | ||
74 | void Skin::init( const QString &name ) | 79 | void Skin::init( const QString &name ) |
75 | { | 80 | { |
76 | m_skinPath = "opieplayer2/skins/" + name; | 81 | m_skinPath = "opieplayer2/skins/" + name; |
77 | d = new SkinData; | 82 | d = SkinCache::self().lookupAndTake( m_skinPath, m_fileNameInfix ); |
78 | } | 83 | } |
79 | 84 | ||
80 | void Skin::preload( const MediaWidget::SkinButtonInfo *skinButtonInfo, uint buttonCount ) | 85 | void Skin::preload( const MediaWidget::SkinButtonInfo *skinButtonInfo, uint buttonCount ) |
@@ -161,22 +166,16 @@ QImage Skin::loadImage( const QString &fileName ) | |||
161 | 166 | ||
162 | SkinCache::SkinCache() | 167 | SkinCache::SkinCache() |
163 | { | 168 | { |
164 | m_cache.setAutoDelete( true ); | ||
165 | } | 169 | } |
166 | 170 | ||
167 | QImage SkinCache::loadImage( const QString &name ) | 171 | SkinData *SkinCache::lookupAndTake( const QString &skinPath, const QString &fileNameInfix ) |
168 | { | 172 | { |
169 | ThreadUtil::AutoLock lock( m_cacheGuard ); | 173 | return new SkinData; |
170 | 174 | } | |
171 | QImage *image = m_cache.find( name ); | ||
172 | if ( image ) { | ||
173 | qDebug( "cache hit for %s", name.ascii() ); | ||
174 | return *image; | ||
175 | } | ||
176 | 175 | ||
177 | image = new QImage( Resource::findPixmap( name ) ); | 176 | void SkinCache::store( const QString &skinPath, const QString &fileNameInfix, SkinData *data ) |
178 | m_cache.insert( name, image ); | 177 | { |
179 | return *image; | 178 | delete data; |
180 | } | 179 | } |
181 | 180 | ||
182 | SkinLoader::SkinLoader() | 181 | SkinLoader::SkinLoader() |
diff --git a/noncore/multimedia/opieplayer2/skin.h b/noncore/multimedia/opieplayer2/skin.h index e55832c..9180067 100644 --- a/noncore/multimedia/opieplayer2/skin.h +++ b/noncore/multimedia/opieplayer2/skin.h | |||
@@ -25,8 +25,6 @@ | |||
25 | 25 | ||
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | #include <qimage.h> | 27 | #include <qimage.h> |
28 | #include <qmap.h> | ||
29 | #include <qdict.h> | ||
30 | 28 | ||
31 | #include "mediawidget.h" | 29 | #include "mediawidget.h" |
32 | #include "threadutil.h" | 30 | #include "threadutil.h" |