linphone-desktop/linphone-app/src/components/camera/Camera.hpp
2023-03-29 17:28:06 +02:00

128 lines
3.8 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 CAMERA_H_
#define CAMERA_H_
#include <memory>
#include <QQuickFramebufferObject>
#include <QMutex>
#include <QTimer>
#include "components/sound-player/SoundPlayer.hpp"
// =============================================================================
namespace linphone {
class Call;
}
class CallModel;
class ParticipantDeviceModel;
// -----------------------------------------------------------------------------
class Camera : public QQuickFramebufferObject {
Q_OBJECT
Q_PROPERTY(CallModel * call READ getCallModel WRITE setCallModel NOTIFY callChanged);
Q_PROPERTY(ParticipantDeviceModel * participantDeviceModel READ getParticipantDeviceModel WRITE setParticipantDeviceModel NOTIFY participantDeviceModelChanged)
Q_PROPERTY(bool isPreview READ getIsPreview WRITE setIsPreview NOTIFY isPreviewChanged);
Q_PROPERTY(bool isReady READ getIsReady WRITE setIsReady NOTIFY isReadyChanged);
Q_PROPERTY(SoundPlayer * linphonePlayer READ getLinphonePlayer WRITE setLinphonePlayer NOTIFY linphonePlayerChanged)
Q_PROPERTY(QString qmlName READ getQmlName WRITE setQmlName NOTIFY qmlNameChanged)
typedef enum{
None = -1,
CorePreview = 0,
Call,
Device,
Player,
Core
}WindowIdLocation;
public:
Camera (QQuickItem *parent = Q_NULLPTR);
virtual ~Camera();
QQuickFramebufferObject::Renderer *createRenderer () const override;
Q_INVOKABLE void resetWindowId() const; // const to be used from createRenderer()
void checkVideoDefinition();
static QMutex mPreviewCounterMutex;
static int mPreviewCounter;
void isReady();
void isNotReady();
public slots:
void onCallStateChanged();
signals:
void callChanged (CallModel *callModel);
void isPreviewChanged (bool isPreview);
void isReadyChanged();
void participantDeviceModelChanged(ParticipantDeviceModel *participantDeviceModel);
void requestNewRenderer();
void videoDefinitionChanged();
void linphonePlayerChanged(SoundPlayer * linphonePlayer);
void qmlNameChanged();
private:
CallModel *getCallModel () const;
bool getIsPreview () const;
bool getIsReady () const;
ParticipantDeviceModel * getParticipantDeviceModel() const;
SoundPlayer * getLinphonePlayer() const;
QString getQmlName() const;
void setCallModel (CallModel *callModel);
void setIsPreview (bool status);
void setIsReady(bool status);
void setParticipantDeviceModel(ParticipantDeviceModel * participantDeviceModel);
void setLinphonePlayer(SoundPlayer *player);
void setWindowIdLocation(const WindowIdLocation& location);
void setQmlName(const QString& name);
void activatePreview();
void deactivatePreview();
void updateWindowIdLocation();
void removeParticipantDeviceModel();
void removeCallModel();
void removeLinphonePlayer();
QVariantMap mLastVideoDefinition;
QTimer mLastVideoDefinitionChecker;
bool mIsPreview = false;
bool mIsReady = false;
CallModel *mCallModel = nullptr;
ParticipantDeviceModel *mParticipantDeviceModel = nullptr;
SoundPlayer * mLinphonePlayer = nullptr;
QString mQmlName;
WindowIdLocation mWindowIdLocation = None;
mutable bool mIsWindowIdSet = false;
QTimer *mRefreshTimer = nullptr;
};
#endif // CAMERA_H_