]> git.sesse.net Git - kdenlive/blob - src/scopes/audioscopes/audiosignal.h
Fix forward declaration
[kdenlive] / src / scopes / audioscopes / audiosignal.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Marco Gittler (g.marco@freenet.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 #ifndef AUDIOSIGNAL_H
21 #define AUDIOSIGNAL_H
22
23 #include "scopes/audioscopes/abstractaudioscopewidget.h"
24
25 #include <QByteArray>
26 #include <QList>
27 #include <QColor>
28 #include <QTimer>
29
30 #include  <QWidget>
31
32 #include <stdint.h>
33
34 class AudioSignal : public AbstractAudioScopeWidget
35 {
36     Q_OBJECT
37 public:
38     AudioSignal(QWidget *parent = 0);
39     ~AudioSignal();
40     /** @brief Used for checking whether audio data needs to be delivered */
41     bool monitoringEnabled() const;
42
43     QRect scopeRect();
44     QImage renderHUD(uint accelerationFactor);
45     QImage renderBackground(uint accelerationFactor);
46     QImage renderAudioScope(uint accelerationFactor, const QVector<int16_t> audioFrame, const int, const int num_channels, const int samples, const int);
47
48     QString widgetName() const { return "audioSignal"; }
49     bool isHUDDependingOnInput() const { return false; }
50     bool isScopeDependingOnInput() const { return true; }
51     bool isBackgroundDependingOnInput() const { return false; }
52
53 private:
54     double valueToPixel(double in);
55     QTimer m_timer;
56     QByteArray channels,peeks,peekage;
57     QList<int> dbscale;
58
59 public slots:
60     void showAudio(const QByteArray);
61     void slotReceiveAudio(QVector<int16_t>,int,int,int);
62 private slots:
63      void slotNoAudioTimeout();
64
65 signals:
66     void updateAudioMonitoring();
67
68 };
69
70 #endif