]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorpathitem.h
Fix includes
[kdenlive] / src / onmonitoritems / onmonitorpathitem.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef ONMONITORPATHITEM_H
22 #define ONMONITORPATHITEM_H
23
24
25 #include <QGraphicsPathItem>
26
27 class QGraphicsView;
28
29 namespace Mlt {
30 class Geometry;
31 }
32
33
34 class OnMonitorPathItem : public QObject, public QGraphicsPathItem
35 {
36     Q_OBJECT
37 public:
38     OnMonitorPathItem(double dar, QGraphicsItem *parent = 0);
39     void setPoints(Mlt::Geometry *geometry);
40     void getMode(const QPointF &pos);
41     void rebuildShape();
42     QList <QPointF> points() const;
43     virtual QPainterPath shape () const;
44
45     /** @brief Reimplemented to draw the handles. */
46     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
47     virtual QRectF boundingRect () const;
48
49 protected:
50     //virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
51     void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
52     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
53     void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
54     void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
55     void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
56
57 private:
58     double m_dar;
59     QList <QPointF> m_points;
60     QPointF m_lastPoint;
61     bool m_modified;
62     QGraphicsView *m_view;
63     int m_activePoint;
64     QPainterPath m_shape;
65
66     /** @brief Tries to get the view of the scene. */
67     bool getView();
68
69 signals:
70     void changed();
71 };
72
73 #endif