blob: f8e5749ae6ffb68e333fd38f0d0bd38535ade3e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef BLUEZCLIENT_H
#define BLUEZCLIENT_H
#include <QList>
#include <QBluetoothAddress>
#include <QBluetoothLocalDevice>
#include "bluez_helper.h"
#include "freedesktop_objectmanager.h"
#include "freedesktop_properties.h"
#include "bluez_adapter1.h"
#include "bluez_agentmanager1.h"
class Device {
public:
QBluetoothAddress address;
QString name;
QString path;
};
class BluezClient: public QObject
{
Q_OBJECT
public:
BluezClient(QObject *parent = 0);
QList<Device> pairedPebbles() const;
private slots:
void addDevice(const QDBusObjectPath &path, const QVariantMap &properties);
void slotInterfacesAdded(const QDBusObjectPath&path, InterfaceList ifaces);
void slotInterfacesRemoved(const QDBusObjectPath&path, const QStringList &ifaces);
signals:
void devicesChanged();
private:
QDBusConnection m_dbus;
DBusObjectManagerInterface m_bluezManager;
BluezAgentManager1 m_bluezAgentManager;
BluezAdapter1 *m_bluezAdapter = nullptr;
FreeDesktopProperties *m_bluezAdapterProperties = nullptr;
QHash<QString, Device> m_devices;
};
#endif // BLUEZCLIENT_H
|