mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
b49ba8b98f
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6798 b45a01b8-16f6-495d-af2f-9b41ad6348cc
44 lines
928 B
C++
44 lines
928 B
C++
#include <QObject>
|
|
#include <QGraphicsEffect>
|
|
#include <gui/SpeexProcessor.h>
|
|
#include <gui/chat/PopupChatDialog.h>
|
|
#include <gui/audiodevicehelper.h>
|
|
|
|
class QToolButton;
|
|
|
|
#define VOIP_SOUND_INCOMING_CALL "VOIP_incoming_call"
|
|
|
|
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(int status) ;
|
|
|
|
QToolButton *audioListenToggleButton ;
|
|
QToolButton *audioMuteCaptureToggleButton ;
|
|
};
|
|
|