1
0

navigator view wip

This commit is contained in:
Gary Wang
2019-10-03 17:57:14 +08:00
parent 0ff1e80132
commit ca1b10dc28
7 changed files with 98 additions and 18 deletions

16
navigatorview.h Normal file
View File

@@ -0,0 +1,16 @@
#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