linphone-desktop/linphone-app/src/components/conference/ConferenceProxyModel.hpp
Julien Wadel a541df0cd4 Backup
2022-05-13 17:38:43 +02:00

71 lines
2 KiB
C++

/*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef CONFERENCE_PROXY_MODEL_H_
#define CONFERENCE_PROXY_MODEL_H_
#include "app/proxyModel/SortFilterProxyModel.hpp"
// =============================================================================
class CallModel;
class ConferenceProxyModel : public SortFilterProxyModel {
Q_OBJECT
Q_PROPERTY(bool microMuted READ getMicroMuted WRITE setMicroMuted NOTIFY microMutedChanged);
Q_PROPERTY(float microVu READ getMicroVu CONSTANT);
Q_PROPERTY(bool recording READ getRecording NOTIFY recordingChanged);
Q_PROPERTY(bool isInConf READ isInConference NOTIFY conferenceChanged);
public:
ConferenceProxyModel (QObject *parent = Q_NULLPTR);
protected:
bool filterAcceptsRow (int sourceRow, const QModelIndex &sourceParent) const override;
Q_INVOKABLE void terminate ();
Q_INVOKABLE void startRecording ();
Q_INVOKABLE void stopRecording ();
Q_INVOKABLE void join ();
Q_INVOKABLE void leave ();
signals:
void microMutedChanged (bool status);
void recordingChanged (bool status);
void conferenceChanged ();
private:
bool getMicroMuted () const;
void setMicroMuted (bool status);
float getMicroVu () const;
bool isInConference () const;
bool getRecording () const;
bool mRecording = false;
QString mLastRecordFile;
};
#endif // CONFERENCE_MODEL_H_