mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 23:37:48 -05:00
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
/*---------------------------------------------------------*\
|
|
| SuspendResume_Windows.cpp |
|
|
| |
|
|
| Suspend/resume Windows implementation |
|
|
| |
|
|
| Zach Deibert (zachdeibert) 12 Nov 2024 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include <QByteArray>
|
|
#include <QCoreApplication>
|
|
#include "SuspendResume.h"
|
|
#include "windows.h"
|
|
|
|
SuspendResumeListener::SuspendResumeListener()
|
|
{
|
|
QCoreApplication::instance()->installNativeEventFilter(this);
|
|
}
|
|
|
|
SuspendResumeListener::~SuspendResumeListener()
|
|
{
|
|
QCoreApplication::instance()->removeNativeEventFilter(this);
|
|
}
|
|
|
|
bool SuspendResumeListener::nativeEventFilter(const QByteArray &event_type, void *message, NEFResultType *result)
|
|
{
|
|
(void)result;
|
|
if(event_type == "windows_generic_MSG")
|
|
{
|
|
switch(((MSG *)message)->message)
|
|
{
|
|
case WM_POWERBROADCAST:
|
|
switch(((MSG *)message)->wParam)
|
|
{
|
|
case PBT_APMSUSPEND:
|
|
OnSuspend();
|
|
break;
|
|
case PBT_APMRESUMEAUTOMATIC:
|
|
OnResume();
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|