]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorrectitem.h
6666d679770fba74854ba6d72887a7ba99e86d67
[kdenlive] / src / onmonitoritems / onmonitorrectitem.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 ONMONITORRECTITEM_H
22 #define ONMONITORRECTITEM_H
23
24
25 #include <QtCore>
26 #include <QGraphicsRectItem>
27
28 class QGraphicsView;
29
30 enum rectActions { Move, ResizeTopLeft, ResizeBottomLeft, ResizeTopRight, ResizeBottomRight, ResizeLeft, ResizeRight, ResizeTop, ResizeBottom, NoAction };
31
32
33 class OnMonitorRectItem : public QObject, public QGraphicsRectItem
34 {
35     Q_OBJECT
36 public:
37     OnMonitorRectItem(const QRectF &rect, double dar, QGraphicsItem *parent = 0);
38
39     /** @brief Gets The action mode for the area @param pos +- 4.
40      * e.g. pos(0,0) returns ResizeTopLeft */
41     rectActions getMode(const QPointF &pos);
42
43     /** @brief Reimplemented to draw the handles. */
44     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
45
46 protected:
47     void mousePressEvent(QGraphicsSceneMouseEvent *event);
48     void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
49     void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
50     void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
51
52 private:
53     double m_dar;
54     rectActions m_mode;
55     QRectF m_oldRect;
56     QPointF m_lastPoint;
57     bool m_modified;
58
59     QGraphicsView *m_view;
60
61     /** @brief Tries to get the view of the scene. */
62     bool getView();
63
64 signals:
65     void changed();
66 };
67
68 #endif