mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
23 lines
317 B
C++
23 lines
317 B
C++
#ifndef IMAGE_H
|
|
#define IMAGE_H
|
|
|
|
#include <QImage>
|
|
#include "map.h"
|
|
|
|
class QPainter;
|
|
|
|
class Image
|
|
{
|
|
public:
|
|
Image(const QString &fileName);
|
|
|
|
void draw(QPainter *painter, const QRectF &rect, Map::Flags flags);
|
|
void setDevicePixelRatio(qreal ratio);
|
|
|
|
private:
|
|
QImage _img;
|
|
QString _fileName;
|
|
};
|
|
|
|
#endif // IMAGE_H
|