kdeconnect-kde/plugins/pausemusic/pausemusicplugin-win.h

52 lines
1.3 KiB
C
Raw Normal View History

2019-08-21 03:38:35 +01:00
/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
* SPDX-FileCopyrightText: 2019 Piyush Aggarwal <piyushaggarwal002@gmail.com>
2019-08-21 03:38:35 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2019-08-21 03:38:35 +01:00
*/
#pragma once
2019-08-21 03:38:35 +01:00
#include <QHash>
2019-08-21 03:38:35 +01:00
#include <QObject>
#include <QSet>
#include <QString>
2021-06-22 08:27:13 +01:00
#include <winrt/Windows.ApplicationModel.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Windows.Media.Control.h>
2019-08-21 03:38:35 +01:00
#include <core/kdeconnectplugin.h>
#include <endpointvolume.h>
#include <mmdeviceapi.h>
2019-08-21 03:38:35 +01:00
2021-06-22 08:27:13 +01:00
using namespace winrt;
using namespace Windows::Media::Control;
using namespace Windows::ApplicationModel;
class PauseMusicPlugin : public KdeConnectPlugin
2019-08-21 03:38:35 +01:00
{
Q_OBJECT
public:
explicit PauseMusicPlugin(QObject *parent, const QVariantList &args);
2019-08-21 03:38:35 +01:00
~PauseMusicPlugin();
bool receivePacket(const NetworkPacket &np) override;
2019-08-21 03:38:35 +01:00
private:
2021-06-22 08:27:13 +01:00
void updatePlayersList();
bool updateSinksList();
bool valid;
2019-08-21 03:38:35 +01:00
IMMDeviceEnumerator *deviceEnumerator;
2021-06-22 08:27:13 +01:00
QHash<QString, IAudioEndpointVolume *> sinksList;
std::optional<GlobalSystemMediaTransportControlsSessionManager> sessionManager;
QHash<QString, GlobalSystemMediaTransportControlsSession> playersList;
2019-08-21 03:38:35 +01:00
2021-06-22 08:27:13 +01:00
QSet<QString> pausedSources;
QSet<QString> mutedSinks;
2019-08-21 03:38:35 +01:00
};