KShare/src/cropeditor/cropview.hpp

18 lines
366 B
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#ifndef CROPVIEW_HPP
#define CROPVIEW_HPP
#include <QKeyEvent>
#include <QCoreApplication>
#include <screenoverlay/screenoverlayview.hpp>
2017-04-23 15:05:48 +02:00
2017-09-06 19:16:31 +02:00
class CropView : public ScreenOverlayView {
Q_DECLARE_TR_FUNCTIONS(CropScene)
2017-06-14 23:34:58 +02:00
public:
CropView(QGraphicsScene *scene);
2017-09-06 19:16:31 +02:00
~CropView();
protected:
void showEvent(QShowEvent *e) override;
2017-04-23 15:05:48 +02:00
};
#endif // CROPVIEW_HPP