mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
528e822d8e
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4991 b45a01b8-16f6-495d-af2f-9b41ad6348cc
42 lines
896 B
C++
42 lines
896 B
C++
#include <QObject>
|
|
#include <QGraphicsEffect>
|
|
#include <gui/SpeexProcessor.h>
|
|
#include <gui/chat/PopupChatDialog.h>
|
|
#include <gui/audiodevicehelper.h>
|
|
|
|
class QPushButton;
|
|
|
|
class AudioPopupChatDialog: public PopupChatDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AudioPopupChatDialog(QWidget *parent = NULL);
|
|
|
|
virtual ~AudioPopupChatDialog()
|
|
{
|
|
if(inputDevice != NULL)
|
|
inputDevice->stop() ;
|
|
}
|
|
|
|
void addAudioData(const QString name, QByteArray* array) ;
|
|
private slots:
|
|
void toggleAudioListen();
|
|
void toggleAudioMuteCapture();
|
|
|
|
public slots:
|
|
void sendAudioData();
|
|
|
|
protected:
|
|
QAudioInput* inputDevice;
|
|
QAudioOutput* outputDevice;
|
|
QtSpeex::SpeexInputProcessor* inputProcessor;
|
|
QtSpeex::SpeexOutputProcessor* outputProcessor;
|
|
|
|
virtual void updateStatus(const QString& peer_id,int status) ;
|
|
|
|
QPushButton *audioListenToggleButton ;
|
|
QPushButton *audioMuteCaptureToggleButton ;
|
|
};
|
|
|