pineapple-pictures/app/graphicsscene.h

27 lines
554 B
C
Raw Normal View History

2019-09-29 15:52:35 +08:00
#ifndef GRAPHICSSCENE_H
#define GRAPHICSSCENE_H
#include <QGraphicsScene>
class GraphicsScene : public QGraphicsScene
{
Q_OBJECT
public:
GraphicsScene(QObject *parent = nullptr);
~GraphicsScene();
void showImage(const QPixmap &pixmap);
void showText(const QString &text);
2019-09-29 23:53:29 +08:00
void showSvg(const QString &filepath);
void showAnimated(const QString &filepath);
2019-09-29 15:52:35 +08:00
bool trySetTransformationMode(Qt::TransformationMode mode);
QPixmap renderToPixmap();
2019-09-29 15:52:35 +08:00
private:
QGraphicsItem * m_theThing;
};
#endif // GRAPHICSSCENE_H