-
Notifications
You must be signed in to change notification settings - Fork 364
/
DeviceHotplug.h
43 lines (38 loc) · 1.15 KB
/
DeviceHotplug.h
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
#pragma once
#include <QObject>
#include <QUuid>
#include <QSharedPointer>
#include <Windows.h>
class DeviceHotplugPrivate;
/**
* @brief 设备插拔事件监听
* @author 龚建波
* @date 2022-12-24
* @details
* 设备类文档,可以在设备管理器找自己的设备 GUID
* https://learn.microsoft.com/zh-cn/windows-hardware/drivers/install/overview-of-device-setup-classes
* @history
* 2023-03-20
* 参考 https://github.com/wang-bin/qdevicewatcher
* 由 QAbstractNativeEventFilter 过滤事件改为了创建一个 win32 窗口来接收事件
*/
class DeviceHotplug : public QObject
{
Q_OBJECT
public:
explicit DeviceHotplug(QObject *parent = nullptr);
~DeviceHotplug();
// RegisterDeviceNotification 注册对应的 GUID 消息通知
// 暂未考虑重复注册和注册失败的处理
void init(const QVector<QUuid> &uuids);
// UnregisterDeviceNotification
// 会在析构中自动调用一次
void free();
signals:
// 设备插入
void deviceAttached(quint16 vid, quint16 pid);
// 设备拔出
void deviceDetached(quint16 vid, quint16 pid);
private:
QSharedPointer<DeviceHotplugPrivate> dptr;
};