]> git.sesse.net Git - kdenlive/blob - src/graphicsscenerectmove.h
Reindent all source files
[kdenlive] / src / graphicsscenerectmove.h
1 #ifndef GRAPHICSVIEWRECTMOVE_H
2 #define GRAPHICSVIEWRECTMOVE_H
3
4 #include <QGraphicsScene>
5
6 class GraphicsSceneRectMove: public QGraphicsScene {
7 public:
8     GraphicsSceneRectMove(QObject* parent = 0);
9     void mouseMoveEvent(QGraphicsSceneMouseEvent*);
10     void wheelEvent(QGraphicsSceneWheelEvent * wheelEvent);
11 private:
12     void setCursor(QCursor);
13     double zoom;
14 };
15
16 #endif