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.
|
#ifndef CROPVIEW_HPP |
|
#define CROPVIEW_HPP |
|
|
|
#include <QGraphicsView> |
|
#include <QKeyEvent> |
|
|
|
class CropView : public QGraphicsView { |
|
public: |
|
CropView(QGraphicsScene *scene); |
|
|
|
protected: |
|
void keyPressEvent(QKeyEvent *e) override; |
|
}; |
|
|
|
#endif // CROPVIEW_HPP
|
|
|