]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorcornersitem.h
aaade57c3746002cac43078d4856efa3f4f603cf
[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 #include "abstractonmonitoritem.h"
25
26 #include <QtCore>
27 #include <QGraphicsPolygonItem>
28
29 class OnMonitorCornersItem : public AbstractOnMonitorItem, public QGraphicsPolygonItem
30 {
31     Q_OBJECT
32 public:
33     OnMonitorCornersItem(MonitorScene *scene, 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(QPointF pos, int *corner);
38
39     /** @brief Reimplemented to draw the handles. */
40     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
41
42 public slots:
43     /** @brief Saves current mouse position and mode. */
44     void slotMousePressed(QGraphicsSceneMouseEvent *event);
45     /** @brief Modifies item according to mouse position and mode. */
46     void slotMouseMoved(QGraphicsSceneMouseEvent *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     cornersActions m_mode;
56     /** Number of the selected corner or if in MoveSide mode number of the first corner on this side */
57     int m_selectedCorner;
58     QPointF m_lastPoint;
59 };
60
61 #endif