2018-11-04 10:19:17 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* plugins/VOIP/gui/VOIPNotify.cpp *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2015 by Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2015-05-11 15:40:07 -04:00
|
|
|
|
|
|
|
#include "VOIPNotify.h"
|
|
|
|
|
2015-05-26 11:19:57 -04:00
|
|
|
//Call qRegisterMetaType<RsPeerId>("RsPeerId"); to enable these SIGNALs
|
|
|
|
|
2015-10-10 09:21:59 -04:00
|
|
|
void VOIPNotify::notifyReceivedVoipAccept(const RsPeerId& peer_id, const uint32_t flags)
|
2015-05-11 15:40:07 -04:00
|
|
|
{
|
2015-10-10 09:21:59 -04:00
|
|
|
emit voipAcceptReceived(peer_id, flags) ;
|
2015-05-11 15:40:07 -04:00
|
|
|
}
|
2015-05-26 11:19:57 -04:00
|
|
|
void VOIPNotify::notifyReceivedVoipBandwidth(const RsPeerId &peer_id,uint32_t bytes_per_sec)
|
2015-05-11 15:40:07 -04:00
|
|
|
{
|
2015-05-26 11:19:57 -04:00
|
|
|
emit voipBandwidthInfoReceived(peer_id, bytes_per_sec) ;
|
2015-05-11 15:40:07 -04:00
|
|
|
}
|
2015-05-26 11:19:57 -04:00
|
|
|
void VOIPNotify::notifyReceivedVoipData(const RsPeerId &peer_id)
|
2015-05-11 15:40:07 -04:00
|
|
|
{
|
2015-05-26 11:19:57 -04:00
|
|
|
emit voipDataReceived(peer_id) ;
|
2015-05-11 15:40:07 -04:00
|
|
|
}
|
2015-10-10 09:21:59 -04:00
|
|
|
void VOIPNotify::notifyReceivedVoipHangUp(const RsPeerId &peer_id, const uint32_t flags)
|
2015-05-11 15:40:07 -04:00
|
|
|
{
|
2015-10-10 09:21:59 -04:00
|
|
|
emit voipHangUpReceived(peer_id, flags) ;
|
2015-05-11 15:40:07 -04:00
|
|
|
}
|
2015-10-10 09:21:59 -04:00
|
|
|
void VOIPNotify::notifyReceivedVoipInvite(const RsPeerId& peer_id, const uint32_t flags)
|
2015-05-26 11:19:57 -04:00
|
|
|
{
|
2015-10-10 09:21:59 -04:00
|
|
|
emit voipInvitationReceived(peer_id, flags) ;
|
2015-05-26 11:19:57 -04:00
|
|
|
}
|
|
|
|
void VOIPNotify::notifyReceivedVoipAudioCall(const RsPeerId &peer_id)
|
|
|
|
{
|
|
|
|
emit voipAudioCallReceived(peer_id) ;
|
|
|
|
}
|
|
|
|
void VOIPNotify::notifyReceivedVoipVideoCall(const RsPeerId &peer_id)
|
2015-05-11 15:40:07 -04:00
|
|
|
{
|
2015-05-26 11:19:57 -04:00
|
|
|
emit voipVideoCallReceived(peer_id) ;
|
2015-05-11 15:40:07 -04:00
|
|
|
}
|