blob: e319caa63397050966473c169da42ee07422a174 (
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
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef REMOTESELECTOR_H
#define REMOTESELECTOR_H
#include <QtWidgets/qdialog.h>
#include <QtBluetooth/qbluetoothserviceinfo.h>
QT_BEGIN_NAMESPACE
class QBluetoothAddress;
class QBluetoothServiceDiscoveryAgent;
class QBluetoothUuid;
class QListWidgetItem;
namespace Ui {
class RemoteSelector;
}
QT_END_NAMESPACE
class RemoteSelector : public QDialog
{
Q_OBJECT
public:
explicit RemoteSelector(const QBluetoothAddress &localAdapter, QWidget *parent = nullptr);
~RemoteSelector();
void startDiscovery(const QBluetoothUuid &uuid);
void stopDiscovery();
QBluetoothServiceInfo service() const;
private:
Ui::RemoteSelector *ui;
QBluetoothServiceDiscoveryAgent *m_discoveryAgent;
QBluetoothServiceInfo m_service;
QMap<QListWidgetItem *, QBluetoothServiceInfo> m_discoveredServices;
private slots:
void serviceDiscovered(const QBluetoothServiceInfo &serviceInfo);
void discoveryFinished();
void on_remoteDevices_itemActivated(QListWidgetItem *item);
void on_remoteDevices_itemClicked(QListWidgetItem *item);
void on_cancelButton_clicked();
void on_connectButton_clicked();
};
#endif // REMOTESELECTOR_H
|