]> git.sesse.net Git - kdenlive/blob - src/onmonitoritems/onmonitorrectitem.h
acdee10cacc25e09edfb30e0d201d24906a2f3e4
[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 "abstractonmonitoritem.h"
25
26 #include <QtCore>
27 #include <QGraphicsRectItem>
28
29 enum rectActions { Move, ResizeTopLeft, ResizeBottomLeft, ResizeTopRight, ResizeBottomRight, ResizeLeft, ResizeRight, ResizeTop, ResizeBottom, NoAction };
30
31 class OnMonitorRectItem : public AbstractOnMonitorItem, public QGraphicsRectItem
32 {
33     Q_OBJECT
34 public:
35     OnMonitorRectItem(const QRectF &rect, double dar, MonitorScene *scene, QGraphicsItem *parent = 0);
36
37     /** @brief Gets The action mode for the area @param pos +- 4.
38      * e.g. pos(0,0) returns ResizeTopLeft */
39     rectActions getMode(QPoint pos);
40     
41     /*enum { Type = UserType + 1};
42     / ** @brief Reimplemented to make sure casting works. * /
43     int type() const;*/
44
45     /** @brief Reimplemented to draw the handles. */
46     virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
47
48 public slots:
49     /** @brief Saves current mouse position and mode. */
50     void slotMousePressed(QGraphicsSceneMouseEvent *event);
51     /** @brief Modifies item according to mouse position and mode. */
52     void slotMouseMoved(QGraphicsSceneMouseEvent *event);
53
54 private:
55     double m_dar;
56     rectActions m_mode;
57     QRectF m_oldRect;
58     QPointF m_lastPoint;
59 };
60
61 #endif