You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
538 B
26 lines
538 B
#ifndef CROPEDITOR_HPP |
|
#define CROPEDITOR_HPP |
|
|
|
#include "cropscene.hpp" |
|
#include "cropview.hpp" |
|
#include <QGraphicsScene> |
|
#include <QGraphicsView> |
|
#include <QObject> |
|
#include <QPixmap> |
|
|
|
class CropEditor : public QObject { |
|
Q_OBJECT |
|
public: |
|
CropEditor(QPixmap *image, QObject *parent = 0); |
|
~CropEditor(); |
|
signals: |
|
QPixmap *cropped(QPixmap *pixmap); |
|
|
|
private: |
|
void crop(QRect rect); |
|
CropScene *scene = nullptr; |
|
CropView *view = nullptr; |
|
QGraphicsPixmapItem *pixmapItem = nullptr; |
|
}; |
|
|
|
#endif // CROPEDITOR_HPP
|
|
|