-rw-r--r-- | noncore/graphics/opie-eye/slave/slaveiface.h | 2 |
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 | |||
@@ -16,33 +16,33 @@ | |||
16 | class QPixmap; | 16 | class QPixmap; |
17 | class SlaveInterface { | 17 | class SlaveInterface { |
18 | public: | 18 | public: |
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; |
27 | private: | 27 | private: |
28 | QStringList m_list; | 28 | QStringList m_list; |
29 | }; | 29 | }; |
30 | 30 | ||
31 | inline bool SlaveInterface::supports( const QString& str)const { | 31 | inline 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 | ||
35 | typedef SlaveInterface* (*phunkSlaveCreateFunc )(); | 35 | typedef SlaveInterface* (*phunkSlaveCreateFunc )(); |
36 | typedef QMap<QString,phunkSlaveCreateFunc> SlaveMap; | 36 | typedef QMap<QString,phunkSlaveCreateFunc> SlaveMap; |
37 | 37 | ||
38 | typedef QMap<QString, SlaveInterface*> SlaveObjects; | 38 | typedef QMap<QString, SlaveInterface*> SlaveObjects; |
39 | 39 | ||
40 | SlaveMap* slaveMap(); | 40 | SlaveMap* slaveMap(); |
41 | SlaveObjects* slaveObjects(); | 41 | SlaveObjects* 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 | } \ |