mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
131 lines
5.2 KiB
C++
131 lines
5.2 KiB
C++
/*
|
|
* Copyright (c) 2021 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/>.
|
|
*/
|
|
|
|
#ifndef PARTICIPANT_DEVICE_CORE_H_
|
|
#define PARTICIPANT_DEVICE_CORE_H_
|
|
|
|
#include "model/participant/ParticipantDeviceModel.hpp"
|
|
#include "tool/LinphoneEnums.hpp"
|
|
#include "tool/thread/SafeConnection.hpp"
|
|
#include <linphone++/linphone.hh>
|
|
|
|
#include <QDateTime>
|
|
#include <QObject>
|
|
#include <QSharedPointer>
|
|
#include <QString>
|
|
|
|
class ParticipantDeviceCore : public QObject, public AbstractObject {
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString displayName READ getDisplayName CONSTANT)
|
|
Q_PROPERTY(QString name READ getName CONSTANT)
|
|
Q_PROPERTY(QString address READ getAddress CONSTANT)
|
|
Q_PROPERTY(int securityLevel READ getSecurityLevel NOTIFY securityLevelChanged)
|
|
Q_PROPERTY(time_t timeOfJoining READ getTimeOfJoining CONSTANT)
|
|
Q_PROPERTY(bool videoEnabled READ isVideoEnabled NOTIFY videoEnabledChanged)
|
|
Q_PROPERTY(bool isMe READ isMe CONSTANT)
|
|
Q_PROPERTY(bool isLocal READ isLocal WRITE setIsLocal NOTIFY
|
|
isLocalChanged) // Can change on call update. Not really used but it just in case as Object can be
|
|
// initialized with empty call/device.
|
|
Q_PROPERTY(bool isPaused READ getPaused WRITE setPaused NOTIFY isPausedChanged)
|
|
Q_PROPERTY(bool isSpeaking READ getIsSpeaking WRITE setIsSpeaking NOTIFY isSpeakingChanged)
|
|
Q_PROPERTY(bool isMuted READ getIsMuted NOTIFY isMutedChanged)
|
|
Q_PROPERTY(LinphoneEnums::ParticipantDeviceState state READ getState WRITE setState NOTIFY stateChanged)
|
|
|
|
public:
|
|
// static QSharedPointer<ParticipantDeviceCore> create(const std::shared_ptr<linphone::ParticipantDevice> &device);
|
|
static QSharedPointer<ParticipantDeviceCore>
|
|
create(std::shared_ptr<linphone::ParticipantDevice> device, const bool &isMe = false, QObject *parent = nullptr);
|
|
|
|
ParticipantDeviceCore(const std::shared_ptr<linphone::ParticipantDevice> &device,
|
|
const bool &isMe = false,
|
|
QObject *parent = nullptr);
|
|
virtual ~ParticipantDeviceCore();
|
|
void setSelf(QSharedPointer<ParticipantDeviceCore> me);
|
|
|
|
QString getName() const;
|
|
QString getDisplayName() const;
|
|
QString getAddress() const;
|
|
int getSecurityLevel() const;
|
|
time_t getTimeOfJoining() const;
|
|
bool isVideoEnabled() const;
|
|
bool isMe() const;
|
|
bool isLocal() const;
|
|
bool getPaused() const;
|
|
bool getIsSpeaking() const;
|
|
bool getIsMuted() const;
|
|
LinphoneEnums::ParticipantDeviceState getState() const;
|
|
|
|
std::shared_ptr<linphone::ParticipantDevice> getDevice();
|
|
std::shared_ptr<ParticipantDeviceModel> getModel() const;
|
|
|
|
void setPaused(bool paused);
|
|
void setIsSpeaking(bool speaking);
|
|
void setIsMuted(bool muted);
|
|
void setIsLocal(bool local);
|
|
void setIsVideoEnabled(bool enabled);
|
|
void setState(LinphoneEnums::ParticipantDeviceState state);
|
|
|
|
virtual void onIsSpeakingChanged(const std::shared_ptr<linphone::ParticipantDevice> &participantDevice,
|
|
bool isSpeaking);
|
|
virtual void onIsMuted(const std::shared_ptr<linphone::ParticipantDevice> &participantDevice, bool isMuted);
|
|
virtual void onStateChanged(const std::shared_ptr<linphone::ParticipantDevice> &participantDevice,
|
|
linphone::ParticipantDevice::State state);
|
|
virtual void onStreamCapabilityChanged(const std::shared_ptr<linphone::ParticipantDevice> &participantDevice,
|
|
linphone::MediaDirection direction,
|
|
linphone::StreamType streamType);
|
|
virtual void onStreamAvailabilityChanged(const std::shared_ptr<linphone::ParticipantDevice> &participantDevice,
|
|
bool available,
|
|
linphone::StreamType streamType);
|
|
|
|
// void updateIsLocal();
|
|
|
|
// public slots:
|
|
// void onSecurityLevelChanged(std::shared_ptr<const linphone::Address> device);
|
|
// void onCallStatusChanged();
|
|
signals:
|
|
void securityLevelChanged();
|
|
void videoEnabledChanged();
|
|
void isPausedChanged();
|
|
void isSpeakingChanged();
|
|
void isMutedChanged();
|
|
void isLocalChanged();
|
|
void stateChanged();
|
|
|
|
private:
|
|
QString mName;
|
|
QString mDisplayName;
|
|
QString mAddress;
|
|
bool mIsMe = false;
|
|
bool mIsLocal = false;
|
|
bool mIsVideoEnabled;
|
|
bool mIsMuted = false;
|
|
bool mIsPaused = false;
|
|
bool mIsSpeaking = false;
|
|
LinphoneEnums::ParticipantDeviceState mState;
|
|
|
|
std::shared_ptr<ParticipantDeviceModel> mParticipantDeviceModel;
|
|
QSharedPointer<SafeConnection<ParticipantDeviceCore, ParticipantDeviceModel>> mParticipantDeviceModelConnection;
|
|
|
|
DECLARE_ABSTRACT_OBJECT
|
|
};
|
|
Q_DECLARE_METATYPE(QSharedPointer<ParticipantDeviceCore>)
|
|
|
|
#endif // PARTICIPANT_CORE_H_
|