pineapple-pictures/navigatorview.h
2019-10-03 20:54:06 +08:00

17 lines
293 B
C++

#ifndef NAVIGATORVIEW_H
#define NAVIGATORVIEW_H
#include <QGraphicsView>
class NavigatorView : public QGraphicsView
{
Q_OBJECT
public:
NavigatorView(QWidget *parent = nullptr);
private:
void wheelEvent(QWheelEvent *event) override;
};
#endif // NAVIGATORVIEW_H