summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/thumbnailtool.h
blob: 4d0a30fd6a114f95c7dfa1874ab7725de5bb7bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *  GPLv2
 */

#ifndef THUMB_NAIL_TOOL_H
#define THUMB_NAIL_TOOL_H
class QString;
class QPixmap;
class QImage;

struct ThumbNailTool {
    static QPixmap scaleImage( QImage&, int width, int height );
/* get one isInvalid() if non found */
    static QPixmap getThumb( const QString&, int width, int height );
/* put one */
    static void putThumb( const QString&, const QPixmap&, int width, int heigh );
};

#endif