/* * Copyright (c) 2010-2020 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_LIST_H_ #define PARTICIPANT_LIST_H_ #include "../proxy/ListProxy.hpp" #include "core/participant/ParticipantCore.hpp" #include "model/conference/ConferenceModel.hpp" class ConferenceModel; // ============================================================================= class ParticipantList : public ListProxy, public AbstractObject { Q_OBJECT public: static QSharedPointer create(); // ParticipantList(ChatRoomModel *chatRoomModel, QObject *parent = Q_NULLPTR); // ParticipantList(ConferenceModel *conferenceModel, QObject *parent = Q_NULLPTR); ParticipantList(QObject *parent = Q_NULLPTR); virtual ~ParticipantList(); void setSelf(QSharedPointer me); // Q_PROPERTY(ChatRoomModel *chatRoomModel READ getChatRoomModel CONSTANT) Q_PROPERTY(QString addressesToString READ addressesToString NOTIFY participantsChanged) Q_PROPERTY(QString displayNamesToString READ displayNamesToString NOTIFY participantsChanged) Q_PROPERTY(QString usernamesToString READ usernamesToString NOTIFY participantsChanged) void reset(); // void updateParticipants(); // Update list from Chat Room // const QSharedPointer // getParticipant(const std::shared_ptr &address) const; // const QSharedPointer const QSharedPointer // getParticipant(const std::shared_ptr &participant) const; Q_INVOKABLE void remove(ParticipantCore *participant); std::list> getParticipants() const; Q_INVOKABLE QString addressesToString() const; Q_INVOKABLE QString displayNamesToString() const; Q_INVOKABLE QString usernamesToString() const; bool contains(const QString &address) const; virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; public slots: void setAdminStatus(const std::shared_ptr participant, const bool &isAdmin); void onSecurityEvent(const std::shared_ptr &eventLog); void onConferenceJoined(); void onParticipantAdded(const std::shared_ptr &participant); void onParticipantAdded(const std::shared_ptr &eventLog); void onParticipantAdded(const std::shared_ptr &address); void onParticipantRemoved(const std::shared_ptr &participant); void onParticipantRemoved(const std::shared_ptr &eventLog); void onParticipantRemoved(const std::shared_ptr &address); void onParticipantAdminStatusChanged(const std::shared_ptr &participant); void onParticipantAdminStatusChanged(const std::shared_ptr &eventLog); void onParticipantAdminStatusChanged(const std::shared_ptr &address); void onParticipantDeviceAdded(const std::shared_ptr &eventLog); void onParticipantDeviceRemoved(const std::shared_ptr &eventLog); void onParticipantRegistrationSubscriptionRequested(const std::shared_ptr &participantAddress); void onParticipantRegistrationUnsubscriptionRequested( const std::shared_ptr &participantAddress); void onStateChanged(); signals: void securityLevelChanged(); void deviceSecurityLevelChanged(std::shared_ptr device); void participantsChanged(); void lUpdateParticipants(); private: std::shared_ptr mConferenceModel; QSharedPointer> mModelConnection; // ChatRoomModel *mChatRoomModel = nullptr; // ConferenceCore *mConferenceCore = nullptr; DECLARE_ABSTRACT_OBJECT }; Q_DECLARE_METATYPE(QSharedPointer); #endif // PARTICIPANT_LIST_H_