mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-01-28 22:01:50 +00:00
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#ifndef MEDIACONTROLLER_H
|
|
#define MEDIACONTROLLER_H
|
|
|
|
#include <QObject>
|
|
|
|
class QProcess;
|
|
class EarDetection;
|
|
class PlayerStatusWatcher;
|
|
class QDBusInterface;
|
|
|
|
class MediaController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum MediaState
|
|
{
|
|
Playing,
|
|
Paused,
|
|
Stopped
|
|
};
|
|
Q_ENUM(MediaState)
|
|
enum EarDetectionBehavior
|
|
{
|
|
PauseWhenOneRemoved,
|
|
PauseWhenBothRemoved,
|
|
Disabled
|
|
};
|
|
Q_ENUM(EarDetectionBehavior)
|
|
|
|
explicit MediaController(QObject *parent = nullptr);
|
|
~MediaController();
|
|
|
|
void handleEarDetection(EarDetection*);
|
|
void followMediaChanges();
|
|
bool isActiveOutputDeviceAirPods();
|
|
void handleConversationalAwareness(const QByteArray &data);
|
|
void activateA2dpProfile();
|
|
void removeAudioOutputDevice();
|
|
void setConnectedDeviceMacAddress(const QString &macAddress);
|
|
|
|
void setEarDetectionBehavior(EarDetectionBehavior behavior);
|
|
inline EarDetectionBehavior getEarDetectionBehavior() const { return earDetectionBehavior; }
|
|
|
|
void play();
|
|
void pause();
|
|
MediaState getCurrentMediaState() const { return m_mediaState; };
|
|
|
|
Q_SIGNALS:
|
|
void mediaStateChanged(MediaState state);
|
|
|
|
private:
|
|
MediaState mediaStateFromPlayerctlOutput(const QString &output);
|
|
QString getAudioDeviceName();
|
|
bool sendMediaPlayerCommand(const QString &method);
|
|
QDBusInterface *getMediaPlayerInterface();
|
|
|
|
bool wasPausedByApp = false;
|
|
int initialVolume = -1;
|
|
QString connectedDeviceMacAddress;
|
|
EarDetectionBehavior earDetectionBehavior = PauseWhenOneRemoved;
|
|
QString m_deviceOutputName;
|
|
PlayerStatusWatcher *playerStatusWatcher = nullptr;
|
|
MediaState m_mediaState = Stopped;
|
|
};
|
|
|
|
#endif // MEDIACONTROLLER_H
|