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