]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorcornersitem.h
Fix includes
[kdenlive] / src / onmonitoritems / onmonitorcornersitem.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 ONMONITORCORNERSITEM_H
22 #define ONMONITORCORNERSITEM_H
23
24
25 #include <QGraphicsPolygonItem>
26
27 class QGraphicsView;
28
29 class OnMonitorCornersItem : public QObject, public QGraphicsPolygonItem
30 {
31     Q_OBJECT
32 public:
33     OnMonitorCornersItem(QGraphicsItem *parent = 0);
34
35     enum cornersActions { Corner, Move, MoveSide, NoAction };
36     /** @brief Gets The action mode for the area @param pos +- 4. */
37     cornersActions getMode(const QPointF &pos, int *corner);
38
39     /** @brief Reimplemented to draw the handles. */
40     void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
41
42 protected:
43     void mousePressEvent(QGraphicsSceneMouseEvent *event);
44     void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
45     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
46     void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
47
48 private:
49     /** @brief Returns the centroid (= 'center of mass') of this polygon. */
50     QPointF getCentroid();
51
52     /** @brief Returns the points of this polygon but sorted clockwise. */
53     QList <QPointF> sortedClockwise();
54
55     /** @brief Tries to get the view of the scene. */
56     bool getView();
57
58     cornersActions m_mode;
59     /** Number of the selected corner or if in MoveSide mode number of the first corner on this side */
60     int m_selectedCorner;
61     QPointF m_lastPoint;
62     bool m_modified;
63
64     QGraphicsView *m_view;
65
66 signals:
67     void changed();
68 };
69
70 #endif