summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/thumbnailtool.h
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/slave/thumbnailtool.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/slave/thumbnailtool.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/slave/thumbnailtool.h b/noncore/graphics/opie-eye/slave/thumbnailtool.h
new file mode 100644
index 0000000..4d0a30f
--- a/dev/null
+++ b/noncore/graphics/opie-eye/slave/thumbnailtool.h
@@ -0,0 +1,19 @@
1/*
2 * GPLv2
3 */
4
5#ifndef THUMB_NAIL_TOOL_H
6#define THUMB_NAIL_TOOL_H
7class QString;
8class QPixmap;
9class QImage;
10
11struct ThumbNailTool {
12 static QPixmap scaleImage( QImage&, int width, int height );
13/* get one isInvalid() if non found */
14 static QPixmap getThumb( const QString&, int width, int height );
15/* put one */
16 static void putThumb( const QString&, const QPixmap&, int width, int heigh );
17};
18
19#endif