]> git.sesse.net Git - kdenlive/blob - src/monitorscene.h
cleanup
[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
56 public slots:
57     /** @brief Sets the backgrounditem's pixmap to m_backgroundImage (only if a certain amount of time has passed since last update). */
58     void slotUpdateBackground();
59
60     /** @brief Sets the scene's zoom level.
61      * @param value zoom level with 100 = show frame at original size */
62     void slotZoom(int value);
63     /** @brief Makes the zoom level fit the viewport's size. */
64     void slotZoomFit();
65     /** @brief Shows the frame at it's original size and center. */
66     void slotZoomOriginal();
67     /** @brief Zooms in by 1%. */
68     void slotZoomIn();
69     /** @brief Zooms out by 1%. */
70     void slotZoomOut();
71
72 private slots:
73     /** @brief Sets m_backgroundImage to @param image and requests updating the background item. */
74     void slotSetBackgroundImage(const QImage &image);
75     /** @brief Sets the mouse curors to @param cursor for the scene. */
76     void slotSetCursor(const QCursor &cursor);
77
78 private:
79     Render *m_renderer;
80     QGraphicsPixmapItem *m_background;
81     QGraphicsRectItem *m_frameBorder;
82     QTime m_lastUpdate;
83     QGraphicsView *m_view;
84     QImage m_backgroundImage;
85     bool m_enabled;
86     qreal m_zoom;
87
88 signals:
89     void actionFinished();
90     void zoomChanged(int);
91     void addKeyframe();
92     void mouseMoved(QGraphicsSceneMouseEvent *event);
93     void mousePressed(QGraphicsSceneMouseEvent *event);
94     void mouseReleased(QGraphicsSceneMouseEvent *event);
95 };
96
97 #endif