2015-05-11 15:40:07 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-26 11:19:57 -04:00
|
|
|
#include "gui/VOIPNotify.h"
|
|
|
|
|
2014-07-13 09:57:25 -04:00
|
|
|
#include <QObject>
|
|
|
|
#include <QGraphicsEffect>
|
|
|
|
#include <gui/SpeexProcessor.h>
|
|
|
|
#include <gui/chat/ChatWidget.h>
|
2015-05-11 15:40:07 -04:00
|
|
|
#include <gui/common/RsButtonOnText.h>
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
class QToolButton;
|
|
|
|
class QAudioInput;
|
|
|
|
class QAudioOutput;
|
|
|
|
class QVideoInputDevice ;
|
|
|
|
class QVideoOutputDevice ;
|
2015-08-14 16:44:20 -04:00
|
|
|
class VideoProcessor ;
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
#define VOIP_SOUND_INCOMING_CALL "VOIP_incoming_call"
|
|
|
|
|
|
|
|
class VOIPChatWidgetHolder : public QObject, public ChatWidgetHolder
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-05-26 11:19:57 -04:00
|
|
|
VOIPChatWidgetHolder(ChatWidget *chatWidget, VOIPNotify *notify);
|
2014-07-13 09:57:25 -04:00
|
|
|
virtual ~VOIPChatWidgetHolder();
|
|
|
|
|
|
|
|
virtual void updateStatus(int status);
|
|
|
|
|
2015-05-26 11:19:57 -04:00
|
|
|
void addAudioData(const RsPeerId &peer_id, QByteArray* array) ;
|
|
|
|
void addVideoData(const RsPeerId &peer_id, QByteArray* array) ;
|
|
|
|
void setAcceptedBandwidth(uint32_t bytes_per_sec) ;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void sendAudioData();
|
|
|
|
void sendVideoData();
|
|
|
|
void startAudioCapture();
|
|
|
|
void startVideoCapture();
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void toggleAudioListen();
|
|
|
|
void toggleAudioCapture();
|
|
|
|
void toggleVideoCapture();
|
2015-10-01 17:41:34 -04:00
|
|
|
void toggleHideChatText();
|
2014-07-13 09:57:25 -04:00
|
|
|
void hangupCall() ;
|
2015-05-11 15:40:07 -04:00
|
|
|
void botMouseEnter();
|
|
|
|
void botMouseLeave();
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Audio input/output
|
|
|
|
QAudioInput* inputAudioDevice;
|
|
|
|
QAudioOutput* outputAudioDevice;
|
|
|
|
|
|
|
|
QtSpeex::SpeexInputProcessor* inputAudioProcessor;
|
|
|
|
QtSpeex::SpeexOutputProcessor* outputAudioProcessor;
|
|
|
|
|
|
|
|
// Video input/output
|
|
|
|
QVideoOutputDevice *outputVideoDevice;
|
|
|
|
QVideoOutputDevice *echoVideoDevice;
|
|
|
|
QVideoInputDevice *inputVideoDevice;
|
|
|
|
|
|
|
|
QWidget *videoWidget ; // pointer to call show/hide
|
|
|
|
|
2015-08-14 16:44:20 -04:00
|
|
|
VideoProcessor *videoProcessor;
|
2014-07-13 09:57:25 -04:00
|
|
|
|
|
|
|
// Additional buttons to the chat bar
|
|
|
|
QToolButton *audioListenToggleButton ;
|
|
|
|
QToolButton *audioCaptureToggleButton ;
|
|
|
|
QToolButton *videoCaptureToggleButton ;
|
2015-10-01 17:41:34 -04:00
|
|
|
QToolButton *hideChatTextToggleButton ;
|
2014-07-13 09:57:25 -04:00
|
|
|
QToolButton *hangupButton ;
|
2015-05-11 15:40:07 -04:00
|
|
|
|
|
|
|
typedef QMap<QString, RSButtonOnText*> button_map;
|
|
|
|
button_map buttonMapTakeVideo;
|
2015-05-26 11:19:57 -04:00
|
|
|
|
|
|
|
VOIPNotify *mVOIPNotify;
|
2014-07-13 09:57:25 -04:00
|
|
|
};
|
|
|
|
|