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) (side-by-side diff)
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 @@
+/*
+ * GPLv2 zecke@handhelds.org
+ */
+
+
+#ifndef SLAVE_BMP_IMPL_H
+#define SLAVE_BMP_IMPL_H
+
+#include "slaveiface.h"
+
+class BmpSlave : public SlaveInterface {
+public:
+ BmpSlave();
+ ~BmpSlave();
+
+ QString iconViewName( const QString& );
+ QString fullImageInfo( const QString& );
+ QPixmap pixmap( const QString&, int width, int height );
+};
+
+
+#endif