]> git.sesse.net Git - kdenlive/blob - src/monitorscene.h
Allow zooming the effect scene using ctrl + mouse wheel
[kdenlive] / src / monitorscene.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 MONITORSCENE_H
22 #define MONITORSCENE_H
23
24 #include <QtCore>
25 #include <QGraphicsScene>
26
27 class Render;
28
29
30 class MonitorScene : public QGraphicsScene
31 {
32     Q_OBJECT
33 public:
34     MonitorScene(Render *renderer, QObject* parent = 0);
35
36     /** @brief Sets m_view to this scenes view. */
37     void setUp();
38
39     /** @brief Enables/Disables the scene for usage (background still updated).
40      * @param enabled (default = true) */
41     void setEnabled(bool enabled = true);
42
43     /** @brief Makes the background frame fit again after the profile changed (and therefore the resolution might have changed). */
44     void resetProfile();
45
46 protected:
47     /** @brief Emits signal mousePressed to be used in onmonitor items. */
48     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
49     /** @brief Emits signal mouseMoveEvent to be used in onmonitor items. */
50     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
51     /** @brief Emits signal mouseReleaseEvent to be used in onmonitor items. */
52     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
53     /** @brief Adds a keyframe if scene is disabled. */
54     virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
55     virtual void wheelEvent(QGraphicsSceneWheelEvent *event);
56
57 public slots:
58     /** @brief Sets the backgrounditem's pixmap to m_backgroundImage (only if a certain amount of time has passed since last update). */
59     void slotUpdateBackground();
60
61     /** @brief Sets the scene's zoom level.
62      * @param value zoom level with 100 = show frame at original size */
63     void slotZoom(int value);
64     /** @brief Makes the zoom level fit the viewport's size. */
65     void slotZoomFit();
66     /** @brief Shows the frame at it's original size and center. */
67     void slotZoomOriginal();
68     /** @brief Zooms in by @param by%. */
69     void slotZoomIn(int by = 1);
70     /** @brief Zooms out by @param by%. */
71     void slotZoomOut(int by = 1);
72
73 private slots:
74     /** @brief Sets m_backgroundImage to @param image and requests updating the background item. */
75     void slotSetBackgroundImage(const QImage &image);
76     /** @brief Sets the mouse curors to @param cursor for the scene. */
77     void slotSetCursor(const QCursor &cursor);
78
79 private:
80     Render *m_renderer;
81     QGraphicsPixmapItem *m_background;
82     QGraphicsRectItem *m_frameBorder;
83     QTime m_lastUpdate;
84     QGraphicsView *m_view;
85     QImage m_backgroundImage;
86     bool m_enabled;
87     qreal m_zoom;
88
89 signals:
90     void actionFinished();
91     void zoomChanged(int);
92     void addKeyframe();
93     void mouseMoved(QGraphicsSceneMouseEvent *event);
94     void mousePressed(QGraphicsSceneMouseEvent *event);
95     void mouseReleased(QGraphicsSceneMouseEvent *event);
96 };
97
98 #endif