remove ignored pt.2

This commit is contained in:
2024-11-22 23:26:42 +03:00
parent 63e4c1382f
commit 9ba8a513e5
58 changed files with 5609 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#ifndef IMAGEREDACTOR_H
#define IMAGEREDACTOR_H
#include <QGraphicsView>
#include <QGraphicsScene>
#include <QGraphicsPixmapItem>
#include <QWheelEvent>
#include <QMouseEvent>
class ImageRedactor : public QGraphicsView
{
Q_OBJECT
public:
ImageRedactor(QWidget *parent = nullptr);
protected:
void wheelEvent(QWheelEvent *event);
void mousePressEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
private:
QGraphicsScene *scene;
QGraphicsPixmapItem *item;
};
#endif // IMAGEREDACTOR_H