]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorrectitem.h
Add OnMonitorRectItem to separate rect move and resize code from MonitorScene
[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 #include <QtCore>
25 #include <QGraphicsRectItem>
26
27 enum rectActions { Move, ResizeTopLeft, ResizeBottomLeft, ResizeTopRight, ResizeBottomRight, ResizeLeft, ResizeRight, ResizeTop, ResizeBottom, NoAction };
28
29 class OnMonitorRectItem : public QObject, public QGraphicsRectItem
30 {
31     Q_OBJECT
32 public:
33     OnMonitorRectItem(const QRectF &rect, QGraphicsItem *parent = 0);
34
35     /** @brief Enables/Disables the ability to modify the item.
36      * @param enabled (default = true) */
37     void setEnabled(bool enabled = true);
38
39     /** @brief Gets The action mode for the area @param pos +- 4.
40      * e.g. pos(0,0) returns ResizeTopLeft */
41     rectActions getMode(QPoint pos);
42     
43     enum { Type = UserType + 1};
44     /** @brief Reimplemented to make sure casting works. */
45     int type() const;
46
47     /** @brief Reimplemented to draw the handles. */
48     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
49
50 public slots:
51     /** @brief Saves current mouse position and mode. */
52     void slotMousePressed(QGraphicsSceneMouseEvent *event);
53     /** @brief emits actionFinished signal if item was modified. */
54     void slotMouseReleased(QGraphicsSceneMouseEvent *event);
55     /** @brief Modifies item according to mouse position and mode. */
56     void slotMouseMoved(QGraphicsSceneMouseEvent *event);
57
58 private:
59     rectActions m_mode;
60     QPointF m_clickPoint;
61     bool m_enabled;
62     bool m_modified;
63
64 signals:
65     void actionFinished();
66     void setCursor(const QCursor &);
67 };
68
69 #endif