在某些业务需求下,Qt的程序需要感知到windows睡眠和亮屏时状态
以便程序做对应的处理动作。好在Qt为我们提供了QAbstractNativeEventFilter类
来捕获对应的windows事件。
一、步骤如下:
1、主界面MyMainWindow类继承QAbstractNativeEventFilter
2、重载virtual bool nativeEventFilter(const QByteArray &eventType, void *message, long *result);
3、在main函数中通过installNativeEventFilter注册:
QApplication a(argc, argv);
MyMainWindow w;
w.show();
a.installNativeEventFilter(&w);
a.exec();
二、实现如下:
bool MyMainWindow::nativeEventFilter(const QByteArray &eventType, void *message, long *result)
{
if (eventType == "windows_generic_MSG" || eventType == "windows_dispatcher_MSG")
{
QDateTime current_date_time = QDateTime::currentDateTime();
MSG *pMsg = reinterpret_cast<MSG*>(message);
if (pMsg->message == WM_POWERBROADCAST) //屏幕唤醒
{
if (pMsg->wParam == PBT_APMSUSPEND) {
qDebug() << "shui mian";
//处理睡眠后操作
//...
}
else if (pMsg->wParam == PBT_APMRESUMEAUTOMATIC)
{
qDebug() << "liang ping";
//处理亮屏后操作
//...
}
QString current_date = current_date_time.toString("yyyy-MM-dd hh:mm::ss.zzz");
qDebug() << "current_date=" << current_date;
}
}
return false;
}
其中MSG结构体如下:
typedef struct tagMSG {
HWND hwnd; // handle to window
UINT message; // msg
WPARAM wParam; // power-management event
LPARAM lParam; // function-specific data
DWORD time;
POINT pt;
#ifdef _MAC
DWORD lPrivate;
#endif
} MSG, *PMSG, NEAR *NPMSG, FAR *LPMSG;
我们通过wParam来区分是睡眠还是亮屏。
msdn的解释: