]> git.sesse.net Git - kdenlive/blob - src/abstractmonitor.h
- Fix build on FreeBSD.
[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 <QObject>
24 #include <QVector>
25 #include <QWidget>
26 #include <QImage>
27 #include <QPainter>
28 #include <QFrame>
29 #include <QTimer>
30
31 #include <stdint.h>
32
33 class VideoPreviewContainer : public QFrame
34 {
35     Q_OBJECT
36 public:
37     VideoPreviewContainer(QWidget *parent = 0);
38     ~VideoPreviewContainer();
39     void setImage(QImage img);
40     void start();
41     void stop();
42
43 protected:
44     virtual void paintEvent(QPaintEvent */*event*/);
45
46 private:
47     QList <QImage *> m_imageQueue;
48     QTimer m_refreshTimer;
49 };
50
51
52
53 class AbstractRender: public QObject
54 {
55 Q_OBJECT public:
56
57     /** @brief Build an abstract MLT Renderer
58      *  @param name A unique identifier for this renderer
59      *  @param winid The parent widget identifier (required for SDL display). Set to 0 for OpenGL rendering
60      *  @param profile The MLT profile used for the renderer (default one will be used if empty). */
61     AbstractRender(const QString &name, QWidget *parent = 0):QObject(parent), m_name(name), sendFrameForAnalysis(false) {};
62
63     /** @brief Destroy the MLT Renderer. */
64     virtual ~AbstractRender() {};
65
66     /** @brief This property is used to decide if the renderer should convert it's frames to QImage for use in other Kdenlive widgets. */
67     bool sendFrameForAnalysis;
68     
69     const QString &name() const {return m_name;};
70
71     /** @brief Someone needs us to send again a frame. */
72     virtual void sendFrameUpdate() = 0;
73
74 private:
75     QString m_name;
76     
77 signals:
78     /** @brief The renderer refreshed the current frame. */
79     void frameUpdated(QImage);
80
81     /** @brief This signal contains the audio of the current frame. */
82     void audioSamplesSignal(QVector<int16_t>, int, int, int);
83 };
84
85 class AbstractMonitor : public QWidget
86 {
87     Q_OBJECT
88 public:
89     AbstractMonitor(QWidget *parent = 0): QWidget(parent) {};
90     virtual ~AbstractMonitor() {};
91     virtual AbstractRender *abstractRender() = 0;
92     virtual const QString name() const = 0;
93
94 public slots:
95     virtual void stop() = 0;
96     virtual void start() = 0;
97 };
98
99 #endif