mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
97 lines
3.5 KiB
C++
97 lines
3.5 KiB
C++
/*
|
|
* Copyright (c) 2024 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone-desktop
|
|
* (see https://www.linphone.org).
|
|
*
|
|
* 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 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "ParticipantDeviceProxy.hpp"
|
|
#include "ParticipantDeviceList.hpp"
|
|
#include "core/App.hpp"
|
|
#include "tool/Utils.hpp"
|
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
// =============================================================================
|
|
|
|
DEFINE_ABSTRACT_OBJECT(ParticipantDeviceProxy)
|
|
DEFINE_GUI_OBJECT(ParticipantDeviceProxy)
|
|
|
|
ParticipantDeviceProxy::ParticipantDeviceProxy(QObject *parent) : LimitProxy(parent) {
|
|
mParticipants = ParticipantDeviceList::create();
|
|
connect(mParticipants.get(), &ParticipantDeviceList::countChanged, this, &ParticipantDeviceProxy::meChanged,
|
|
Qt::QueuedConnection);
|
|
|
|
setSourceModels(new SortFilterList(mParticipants.get(), Qt::AscendingOrder));
|
|
}
|
|
|
|
ParticipantDeviceProxy::~ParticipantDeviceProxy() {
|
|
}
|
|
|
|
CallGui *ParticipantDeviceProxy::getCurrentCall() const {
|
|
return mCurrentCall;
|
|
}
|
|
|
|
void ParticipantDeviceProxy::setCurrentCall(CallGui *call) {
|
|
lDebug() << log().arg("Set current call") << this << " => " << call;
|
|
if (mCurrentCall != call) {
|
|
CallCore *callCore = nullptr;
|
|
if (mCurrentCall) {
|
|
callCore = mCurrentCall->getCore();
|
|
if (call && callCore == call->getCore()) {
|
|
mCurrentCall = call;
|
|
lDebug() << log().arg("Same call core");
|
|
emit currentCallChanged();
|
|
return;
|
|
}
|
|
if (callCore) callCore->disconnect(mParticipants.get());
|
|
callCore = nullptr;
|
|
}
|
|
mCurrentCall = call;
|
|
if (mCurrentCall) callCore = mCurrentCall->getCore();
|
|
if (callCore) {
|
|
connect(callCore, &CallCore::conferenceChanged, mParticipants.get(), [this]() {
|
|
auto conference = mCurrentCall->getCore()->getConferenceCore();
|
|
lDebug() << log().arg("Set conference") << this << " => " << conference;
|
|
mParticipants->setConferenceModel(conference ? conference->getModel() : nullptr);
|
|
});
|
|
auto conference = callCore->getConferenceCore();
|
|
lDebug() << log().arg("Set conference") << this << " => " << conference;
|
|
mParticipants->setConferenceModel(conference ? conference->getModel() : nullptr);
|
|
}
|
|
emit currentCallChanged();
|
|
}
|
|
}
|
|
|
|
ParticipantDeviceGui *ParticipantDeviceProxy::getMe() const {
|
|
auto core = mParticipants->getMe();
|
|
if (!core) return nullptr;
|
|
else {
|
|
return new ParticipantDeviceGui(core);
|
|
}
|
|
}
|
|
|
|
bool ParticipantDeviceProxy::SortFilterList::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
|
|
return true;
|
|
}
|
|
|
|
bool ParticipantDeviceProxy::SortFilterList::lessThan(const QModelIndex &sourceLeft,
|
|
const QModelIndex &sourceRight) const {
|
|
auto l = getItemAtSource<ParticipantDeviceList, ParticipantDeviceCore>(sourceLeft.row());
|
|
auto r = getItemAtSource<ParticipantDeviceList, ParticipantDeviceCore>(sourceRight.row());
|
|
|
|
return r->isMe() || (!r->isMe() && sourceLeft.row() < sourceRight.row());
|
|
}
|