]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/rotoscoping/bpointitem.h
Fix includes
[kdenlive] / src / onmonitoritems / rotoscoping / bpointitem.h
1 /***************************************************************************
2  *   Copyright (C) 2011 by Till Theato (root@ttill.de)                     *
3  *   This file is part of Kdenlive (www.kdenlive.org).                     *
4  *                                                                         *
5  *   Kdenlive is free software: you can redistribute it and/or modify      *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation, either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   Kdenlive is distributed in the hope that it will be useful,           *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with Kdenlive.  If not, see <http://www.gnu.org/licenses/>.     *
17  ***************************************************************************/
18
19 #ifndef BPOINTITEM_H
20 #define BPOINTITEM_H
21
22 #include "beziercurve/bpoint.h"
23
24 #include <QAbstractGraphicsShapeItem>
25
26 class QGraphicsView;
27
28 class BPointItem : public QAbstractGraphicsShapeItem
29 {
30 public:
31     explicit BPointItem(const BPoint &point, QGraphicsItem* parent = 0);
32
33     BPoint getPoint() const;
34     void setPoint(const BPoint &point);
35
36     enum { Type = UserType + 11 };
37     virtual int type() const;
38
39     QRectF boundingRect() const;
40     void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
41
42     /** @brief Gets The action mode for the area @param pos +- 4. */
43     int getSelection(const QPointF &pos);
44
45 protected:
46     void mousePressEvent(QGraphicsSceneMouseEvent *event);
47     void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
48     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
49     void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
50
51 private:
52     BPoint m_point;
53     int m_selection;
54     QGraphicsView *m_view;
55 };
56
57 #endif