summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/bmp_slave.h
authoralwin <alwin>2004-04-15 14:04:01 (UTC)
committer alwin <alwin>2004-04-15 14:04:01 (UTC)
commitb07457bba11c6bc13d35c31c15353350a16ad3a4 (patch) (unidiff)
treec8d36a803eae123e75d45a904a5bfe5a93c8494b /noncore/graphics/opie-eye/slave/bmp_slave.h
parent41203805fb5e70df84cc2894dbd6e030c6355041 (diff)
downloadopie-b07457bba11c6bc13d35c31c15353350a16ad3a4.zip
opie-b07457bba11c6bc13d35c31c15353350a16ad3a4.tar.gz
opie-b07457bba11c6bc13d35c31c15353350a16ad3a4.tar.bz2
added bmp file support
Diffstat (limited to 'noncore/graphics/opie-eye/slave/bmp_slave.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/bmp_slave.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/slave/bmp_slave.h b/noncore/graphics/opie-eye/slave/bmp_slave.h
new file mode 100644
index 0000000..174a61b
--- a/dev/null
+++ b/noncore/graphics/opie-eye/slave/bmp_slave.h
@@ -0,0 +1,22 @@
1/*
2 * GPLv2 zecke@handhelds.org
3 */
4
5
6#ifndef SLAVE_BMP_IMPL_H
7#define SLAVE_BMP_IMPL_H
8
9#include "slaveiface.h"
10
11class BmpSlave : public SlaveInterface {
12public:
13 BmpSlave();
14 ~BmpSlave();
15
16 QString iconViewName( const QString& );
17 QString fullImageInfo( const QString& );
18 QPixmap pixmap( const QString&, int width, int height );
19};
20
21
22#endif