/* * 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 . */ #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 #include #include #include #include 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(QString uniqueAddress READ getUniqueAddress 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 create(std::shared_ptr device, const bool &isMe = false, QObject *parent = nullptr); ParticipantDeviceCore(const std::shared_ptr &device, const bool &isMe = false, QObject *parent = nullptr); virtual ~ParticipantDeviceCore(); void setSelf(QSharedPointer me); QString getName() const; QString getDisplayName() const; QString getAddress() const; QString getUniqueAddress() 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 getDevice(); std::shared_ptr 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 &participantDevice, bool isSpeaking); virtual void onIsMuted(const std::shared_ptr &participantDevice, bool isMuted); virtual void onStateChanged(LinphoneEnums::ParticipantDeviceState state); virtual void onStreamCapabilityChanged(const std::shared_ptr &participantDevice, linphone::MediaDirection direction, linphone::StreamType streamType); virtual void onStreamAvailabilityChanged(const std::shared_ptr &participantDevice, bool available, linphone::StreamType streamType); signals: void securityLevelChanged(); void videoEnabledChanged(); void isPausedChanged(); void isSpeakingChanged(); void isMutedChanged(); void isLocalChanged(); void stateChanged(); private: QString mName; QString mDisplayName; QString mUniqueAddress; 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 mParticipantDeviceModel; QSharedPointer> mParticipantDeviceModelConnection; DECLARE_ABSTRACT_OBJECT }; Q_DECLARE_METATYPE(QSharedPointer) #endif // PARTICIPANT_CORE_H_