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