author | zecke <zecke> | 2004-12-26 13:40:21 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-12-26 13:40:21 (UTC) |
commit | 99b055b572f64f180751b3a43440796d1bf9fc4f (patch) (unidiff) | |
tree | 2caf1b3d3e9ecec68d616880d4a354033574b8c0 | |
parent | d8f38f36ad533f93d46c8ff883c6b42f15c96c28 (diff) | |
download | opie-99b055b572f64f180751b3a43440796d1bf9fc4f.zip opie-99b055b572f64f180751b3a43440796d1bf9fc4f.tar.gz opie-99b055b572f64f180751b3a43440796d1bf9fc4f.tar.bz2 |
Merge the way we insert Images into the PixmapCache
-rw-r--r-- | library/resource.cpp | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/library/resource.cpp b/library/resource.cpp index cfa0d26..43fdc60 100644 --- a/library/resource.cpp +++ b/library/resource.cpp | |||
@@ -17,100 +17,125 @@ | |||
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #define QTOPIA_INTERNAL_MIMEEXT | 21 | #define QTOPIA_INTERNAL_MIMEEXT |
22 | #include <qpe/qpeapplication.h> | 22 | #include <qpe/qpeapplication.h> |
23 | #include "resource.h" | 23 | #include "resource.h" |
24 | #include "mimetype.h" | 24 | #include "mimetype.h" |
25 | #include <qdir.h> | 25 | #include <qdir.h> |
26 | #include <qpixmapcache.h> | 26 | #include <qpixmapcache.h> |
27 | 27 | ||
28 | // this namespace is just a workaround for a gcc bug | 28 | // this namespace is just a workaround for a gcc bug |
29 | // gcc exports inline functions in the generated file | 29 | // gcc exports inline functions in the generated file |
30 | // inlinepics_p.h | 30 | // inlinepics_p.h |
31 | 31 | ||
32 | namespace { | 32 | namespace { |
33 | #include "inlinepics_p.h" | 33 | #include "inlinepics_p.h" |
34 | } | 34 | } |
35 | 35 | ||
36 | static bool g_notUseSet = ::getenv("OVERWRITE_ICON_SET"); | 36 | static bool g_notUseSet = ::getenv("OVERWRITE_ICON_SET"); |
37 | 37 | ||
38 | /*! | 38 | /*! |
39 | \class Resource resource.h | 39 | \class Resource resource.h |
40 | \brief The Resource class provides access to named resources. | 40 | \brief The Resource class provides access to named resources. |
41 | 41 | ||
42 | The resources may be provided from files or other sources. | 42 | The resources may be provided from files or other sources. |
43 | 43 | ||
44 | The allSounds() function returns a list of all the sounds available. | 44 | The allSounds() function returns a list of all the sounds available. |
45 | A particular sound can be searched for using findSound(). | 45 | A particular sound can be searched for using findSound(). |
46 | 46 | ||
47 | Images can be loaded with loadImage(), loadPixmap(), loadBitmap() | 47 | Images can be loaded with loadImage(), loadPixmap(), loadBitmap() |
48 | and loadIconSet(). | 48 | and loadIconSet(). |
49 | 49 | ||
50 | \ingroup qtopiaemb | 50 | \ingroup qtopiaemb |
51 | */ | 51 | */ |
52 | 52 | ||
53 | /*! | 53 | /*! |
54 | \fn Resource::Resource() | 54 | \fn Resource::Resource() |
55 | \internal | 55 | \internal |
56 | */ | 56 | */ |
57 | 57 | ||
58 | /*! | 58 | /*! |
59 | Returns the QPixmap called \a pix. You should avoid including | 59 | Returns the QPixmap called \a pix. You should avoid including |
60 | any filename type extension (e.g. .png, .xpm). | 60 | any filename type extension (e.g. .png, .xpm). |
61 | */ | 61 | */ |
62 | QPixmap Resource::loadPixmap( const QString &pix ) | 62 | QPixmap Resource::loadPixmap( const QString &pix ) |
63 | { | 63 | { |
64 | QPixmap pm; | 64 | QPixmap pm; |
65 | QString key="QPE_"+pix; | 65 | |
66 | if ( !QPixmapCache::find(key,pm) ) { | 66 | // Give the pixmaps some kind of namespace in the pixmapcache |
67 | pm.convertFromImage(loadImage(pix)); | 67 | int index = pix.find('/'); |
68 | QPixmapCache::insert(key,pm); | 68 | QString appName1 = qApp->argv()[0]; |
69 | appName1 = appName1.replace(QRegExp(".*/"),""); | ||
70 | QString appName2 = pix.left(index); | ||
71 | |||
72 | if ( appName2 == "" || appName2 == pix || appName2 == "icons" ) | ||
73 | appName2 = "Global"; | ||
74 | |||
75 | QString appKey1 = "_QPE_" + appName1 + "_" + pix; | ||
76 | QString appKey2 = "_QPE_" + appName2 + "_" + pix.mid(index+1); | ||
77 | |||
78 | if ( !QPixmapCache::find(appKey1, pm) ) { | ||
79 | if ( !QPixmapCache::find(appKey2, pm) ) { | ||
80 | QImage img; | ||
81 | QString f = findPixmap( pix ); | ||
82 | if ( !f.isEmpty() ) { | ||
83 | img.load(f); | ||
84 | if ( !img.isNull() ) { | ||
85 | pm.convertFromImage(img); | ||
86 | if ( f.contains(appName1) ) { | ||
87 | QPixmapCache::insert( appKey1, pm); | ||
88 | } else { | ||
89 | QPixmapCache::insert( appKey2, pm); | ||
90 | } | ||
91 | } | ||
92 | } | ||
93 | } | ||
69 | } | 94 | } |
70 | return pm; | 95 | return pm; |
71 | } | 96 | } |
72 | 97 | ||
73 | /*! | 98 | /*! |
74 | Returns the QBitmap called \a pix. You should avoid including | 99 | Returns the QBitmap called \a pix. You should avoid including |
75 | any filename type extension (e.g. .png, .xpm). | 100 | any filename type extension (e.g. .png, .xpm). |
76 | */ | 101 | */ |
77 | QBitmap Resource::loadBitmap( const QString &pix ) | 102 | QBitmap Resource::loadBitmap( const QString &pix ) |
78 | { | 103 | { |
79 | QBitmap bm; | 104 | QBitmap bm; |
80 | bm = loadPixmap(pix); | 105 | bm = loadPixmap(pix); |
81 | return bm; | 106 | return bm; |
82 | } | 107 | } |
83 | 108 | ||
84 | /*! | 109 | /*! |
85 | Returns the filename of a pixmap called \a pix. You should avoid including | 110 | Returns the filename of a pixmap called \a pix. You should avoid including |
86 | any filename type extension (e.g. .png, .xpm). | 111 | any filename type extension (e.g. .png, .xpm). |
87 | 112 | ||
88 | Normally you will use loadPixmap() rather than this function. | 113 | Normally you will use loadPixmap() rather than this function. |
89 | */ | 114 | */ |
90 | QString Resource::findPixmap( const QString &pix ) | 115 | QString Resource::findPixmap( const QString &pix ) |
91 | { | 116 | { |
92 | QString picsPath = QPEApplication::qpeDir() + "pics/"; | 117 | QString picsPath = QPEApplication::qpeDir() + "pics/"; |
93 | 118 | ||
94 | QString f; | 119 | QString f; |
95 | 120 | ||
96 | // Common case optimizations... | 121 | // Common case optimizations... |
97 | f = picsPath + pix + ".png"; | 122 | f = picsPath + pix + ".png"; |
98 | if ( QFile( f ).exists() ) | 123 | if ( QFile( f ).exists() ) |
99 | return f; | 124 | return f; |
100 | f = picsPath + pix + ".xpm"; | 125 | f = picsPath + pix + ".xpm"; |
101 | if ( QFile( f ).exists() ) | 126 | if ( QFile( f ).exists() ) |
102 | return f; | 127 | return f; |
103 | 128 | ||
104 | 129 | ||
105 | // All formats... | 130 | // All formats... |
106 | QStrList fileFormats = QImageIO::inputFormats(); | 131 | QStrList fileFormats = QImageIO::inputFormats(); |
107 | QString ff = fileFormats.first(); | 132 | QString ff = fileFormats.first(); |
108 | while ( fileFormats.current() ) { | 133 | while ( fileFormats.current() ) { |
109 | QStringList exts = MimeType("image/"+ff.lower()).extensions(); | 134 | QStringList exts = MimeType("image/"+ff.lower()).extensions(); |
110 | for ( QStringList::ConstIterator it = exts.begin(); it!=exts.end(); ++it ) { | 135 | for ( QStringList::ConstIterator it = exts.begin(); it!=exts.end(); ++it ) { |
111 | QString f = picsPath + pix + "." + *it; | 136 | QString f = picsPath + pix + "." + *it; |
112 | if ( QFile(f).exists() ) | 137 | if ( QFile(f).exists() ) |
113 | return f; | 138 | return f; |
114 | } | 139 | } |
115 | ff = fileFormats.next(); | 140 | ff = fileFormats.next(); |
116 | } | 141 | } |