]> git.sesse.net Git - kdenlive/blob - src/abstractmonitor.h
Cleanup: remove duplicate monitor code, allow fullscreen for record monitor
[kdenlive] / src / abstractmonitor.h
1 /***************************************************************************
2  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
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 #ifndef ABSTRACTMONITOR_H
21 #define ABSTRACTMONITOR_H
22
23 #include "definitions.h"
24
25 #include <QObject>
26 #include <QVector>
27 #include <QWidget>
28 #include <QImage>
29 #include <QPainter>
30 #include <QFrame>
31 #include <QTimer>
32
33 #include <stdint.h>
34
35 class MonitorManager;
36
37
38 class AbstractRender: public QObject
39 {
40 Q_OBJECT public:
41
42     /** @brief Build an abstract MLT Renderer
43      *  @param name A unique identifier for this renderer
44      *  @param winid The parent widget identifier (required for SDL display). Set to 0 for OpenGL rendering
45      *  @param profile The MLT profile used for the renderer (default one will be used if empty). */
46     AbstractRender(Kdenlive::MONITORID name, QWidget *parent = 0):QObject(parent), sendFrameForAnalysis(false), m_name(name) {};
47
48     /** @brief Destroy the MLT Renderer. */
49     virtual ~AbstractRender() {};
50
51     /** @brief This property is used to decide if the renderer should convert it's frames to QImage for use in other Kdenlive widgets. */
52     bool sendFrameForAnalysis;
53     
54     /** @brief This property is used to decide if the renderer should send audio data for monitoring. */
55     bool analyseAudio;
56     
57     const QString &name() const {return m_name;};
58
59     /** @brief Someone needs us to send again a frame. */
60     virtual void sendFrameUpdate() = 0;
61
62 private:
63     QString m_name;
64     
65 signals:
66     /** @brief The renderer refreshed the current frame. */
67     void frameUpdated(QImage);
68
69     /** @brief This signal contains the audio of the current frame. */
70     void audioSamplesSignal(QVector<int16_t>,int,int,int);
71 };
72
73 class AbstractMonitor : public QWidget
74 {
75     Q_OBJECT
76 public:
77     AbstractMonitor(Kdenlive::MONITORID id, MonitorManager *manager, QWidget *parent = 0);
78     Kdenlive::MONITORID id() {return m_id;};
79     virtual ~AbstractMonitor() {};
80     virtual AbstractRender *abstractRender() = 0;
81     virtual void pause() = 0;
82     virtual void unpause() = 0;
83     bool isActive() const;
84     
85 public slots:
86     virtual void stop() = 0;
87     virtual void start() = 0;
88     virtual void slotPlay() = 0;
89     virtual void slotMouseSeek(int eventDelta, bool fast) = 0;
90     bool slotActivateMonitor();
91     virtual void slotSwitchFullScreen() = 0;
92
93 protected:
94     Kdenlive::MONITORID m_id;
95     MonitorManager *m_monitorManager;
96 };
97
98 class VideoContainer : public QFrame
99 {
100     Q_OBJECT
101 public:
102     VideoContainer(AbstractMonitor *monitor, QWidget *parent = 0);
103     void switchFullScreen();
104
105 protected:
106     virtual void mouseDoubleClickEvent(QMouseEvent * event);
107     virtual void mouseReleaseEvent(QMouseEvent *event);
108     void keyPressEvent(QKeyEvent *event);
109     virtual void wheelEvent(QWheelEvent * event);
110
111 private:
112     Qt::WindowFlags m_baseFlags;
113     AbstractMonitor *m_monitor;
114 };
115
116
117 #endif