summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/slave/png_slave.h
blob: 408bfc4f771fc5a0d9c91a9e92992cc8976913a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * GPLv2 zecke@handhelds.org
 */
#ifndef PNG_SLAVE_IMPL_H
#define PNG_SLAVE_IMPL_H

#include "slaveiface.h"

class QString;
class QPixmap;
class PNGSlave : public SlaveInterface {
public:
    PNGSlave();
    ~PNGSlave();

    QString iconViewName( const QString& );
    QString fullImageInfo( const QString& );
    QPixmap pixmap( const QString&, int, int );
};

#endif