d44aae4f43
I did not properly handle deleting the editor so it would stay in memory permanently.
13 lines
202 B
C++
13 lines
202 B
C++
#ifndef CROPVIEW_HPP
|
|
#define CROPVIEW_HPP
|
|
|
|
#include <QGraphicsView>
|
|
#include <QKeyEvent>
|
|
|
|
class CropView : public QGraphicsView {
|
|
public:
|
|
CropView(QGraphicsScene *scene);
|
|
};
|
|
|
|
#endif // CROPVIEW_HPP
|