]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/rotoscoping/bpointitem.h
First work on rotoscoping GUI
[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 "bpoint.h"
23
24 #include <QtCore>
25 #include <QAbstractGraphicsShapeItem>
26
27 class BPointItem : public QAbstractGraphicsShapeItem
28 {
29 public:
30     BPointItem(BPoint point, QGraphicsItem* parent = 0);
31
32     BPoint getPoint();
33
34     enum { Type = UserType + 11 };
35     virtual int type() const;
36
37     virtual QRectF boundingRect() const;
38     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
39
40 protected:
41     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
42     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
43     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
44     virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
45
46 private:
47     BPoint m_point;
48     int m_selection;
49
50     /** @brief Gets The action mode for the area @param pos +- 4. */
51     int getSelection(QPointF pos);
52 };
53
54 #endif