mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
80 lines
1.6 KiB
C++
80 lines
1.6 KiB
C++
#ifndef TOXCALL_H
|
|
#define TOXCALL_H
|
|
|
|
#include <cstdint>
|
|
#include <QtGlobal>
|
|
#include <QMetaObject>
|
|
|
|
#include "src/core/indexedlist.h"
|
|
|
|
#include <tox/toxav.h>
|
|
|
|
class QTimer;
|
|
class AudioFilterer;
|
|
class CoreVideoSource;
|
|
class CoreAV;
|
|
|
|
struct ToxCall
|
|
{
|
|
protected:
|
|
ToxCall() = default;
|
|
explicit ToxCall(uint32_t CallId);
|
|
~ToxCall();
|
|
public:
|
|
ToxCall(const ToxCall& other) = delete;
|
|
ToxCall(ToxCall&& other) noexcept;
|
|
|
|
inline operator int() {return callId;}
|
|
ToxCall& operator=(const ToxCall& other) = delete;
|
|
ToxCall& operator=(ToxCall&& other) noexcept;
|
|
|
|
protected:
|
|
QMetaObject::Connection audioInConn;
|
|
|
|
public:
|
|
uint32_t callId;
|
|
quint32 alSource;
|
|
bool inactive;
|
|
bool muteMic;
|
|
bool muteVol;
|
|
};
|
|
|
|
struct ToxFriendCall : public ToxCall
|
|
{
|
|
ToxFriendCall() = default;
|
|
ToxFriendCall(uint32_t FriendNum, bool VideoEnabled, CoreAV& av);
|
|
ToxFriendCall(ToxFriendCall&& other) noexcept;
|
|
~ToxFriendCall();
|
|
|
|
ToxFriendCall& operator=(ToxFriendCall&& other) noexcept;
|
|
|
|
bool videoEnabled;
|
|
bool nullVideoBitrate;
|
|
CoreVideoSource* videoSource;
|
|
TOXAV_FRIEND_CALL_STATE state;
|
|
|
|
void startTimeout();
|
|
void stopTimeout();
|
|
|
|
protected:
|
|
CoreAV* av;
|
|
QTimer* timeoutTimer;
|
|
|
|
private:
|
|
static constexpr int CALL_TIMEOUT = 45000;
|
|
};
|
|
|
|
struct ToxGroupCall : public ToxCall
|
|
{
|
|
ToxGroupCall() = default;
|
|
ToxGroupCall(int GroupNum, CoreAV& av);
|
|
ToxGroupCall(ToxGroupCall&& other) noexcept;
|
|
|
|
ToxGroupCall& operator=(ToxGroupCall&& other) noexcept;
|
|
|
|
// If you add something here, don't forget to override the ctors and move operators!
|
|
};
|
|
|
|
#endif // TOXCALL_H
|
|
|