summaryrefslogtreecommitdiff
authorzecke <zecke>2004-04-02 13:34:03 (UTC)
committer zecke <zecke>2004-04-02 13:34:03 (UTC)
commit02696a8b22d86f74a4f123edcd24bfa32dd00441 (patch) (unidiff)
tree63ddfd0c8c93648612ab3bb9b0a5df8299d32f6f
parentd3962d575f3fea442f9fb3e603f0a5f627ab4188 (diff)
downloadopie-02696a8b22d86f74a4f123edcd24bfa32dd00441.zip
opie-02696a8b22d86f74a4f123edcd24bfa32dd00441.tar.gz
opie-02696a8b22d86f74a4f123edcd24bfa32dd00441.tar.bz2
ignore case of the extension
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/slaveiface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/slave/slaveiface.h b/noncore/graphics/opie-eye/slave/slaveiface.h
index 18656c5..e0ca7f3 100644
--- a/noncore/graphics/opie-eye/slave/slaveiface.h
+++ b/noncore/graphics/opie-eye/slave/slaveiface.h
@@ -8,46 +8,46 @@
8#include <qfileinfo.h> 8#include <qfileinfo.h>
9#include <qstringlist.h> 9#include <qstringlist.h>
10#include <qmap.h> 10#include <qmap.h>
11 11
12/** 12/**
13 * @short The slave worker Interface for generating Preview + Image Info + Full 13 * @short The slave worker Interface for generating Preview + Image Info + Full
14 * IMage Info 14 * IMage Info
15 */ 15 */
16class QPixmap; 16class QPixmap;
17class SlaveInterface { 17class SlaveInterface {
18public: 18public:
19 SlaveInterface(const QStringList& imageformats); 19 SlaveInterface(const QStringList& imageformats);
20 virtual ~SlaveInterface(); 20 virtual ~SlaveInterface();
21 21
22 QStringList imageFormats()const; 22 QStringList imageFormats()const;
23 bool supports( const QString& )const; 23 bool supports( const QString& )const;
24 virtual QString iconViewName(const QString&) = 0; 24 virtual QString iconViewName(const QString&) = 0;
25 virtual QString fullImageInfo(const QString& )= 0; 25 virtual QString fullImageInfo(const QString& )= 0;
26 virtual QPixmap pixmap( const QString&, int width, int height ) = 0; 26 virtual QPixmap pixmap( const QString&, int width, int height ) = 0;
27private: 27private:
28 QStringList m_list; 28 QStringList m_list;
29}; 29};
30 30
31inline bool SlaveInterface::supports( const QString& str)const { 31inline bool SlaveInterface::supports( const QString& str)const {
32 return m_list.contains( QFileInfo( str ).extension(false) ); 32 return m_list.contains( QFileInfo( str ).extension(false).lower() );
33} 33}
34 34
35typedef SlaveInterface* (*phunkSlaveCreateFunc )(); 35typedef SlaveInterface* (*phunkSlaveCreateFunc )();
36typedef QMap<QString,phunkSlaveCreateFunc> SlaveMap; 36typedef QMap<QString,phunkSlaveCreateFunc> SlaveMap;
37 37
38typedef QMap<QString, SlaveInterface*> SlaveObjects; 38typedef QMap<QString, SlaveInterface*> SlaveObjects;
39 39
40SlaveMap* slaveMap(); 40SlaveMap* slaveMap();
41SlaveObjects* slaveObjects(); 41SlaveObjects* slaveObjects();
42 42
43 43
44 44
45#define PHUNK_VIEW_INTERFACE( NAME, IMPL ) \ 45#define PHUNK_VIEW_INTERFACE( NAME, IMPL ) \
46 static SlaveInterface *create_ ## IMPL() { \ 46 static SlaveInterface *create_ ## IMPL() { \
47 return new IMPL(); \ 47 return new IMPL(); \
48 } \ 48 } \
49 static SlaveMap::Iterator dummy_ ## IMPL = slaveMap()->insert( NAME, create_ ## IMPL ); 49 static SlaveMap::Iterator dummy_ ## IMPL = slaveMap()->insert( NAME, create_ ## IMPL );
50 50
51 51
52 52
53#endif 53#endif