2019-12-30 22:39:22 +13:00
|
|
|
// Copyright (c) 2014-2019 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-04-10 08:19:58 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <qt/winshutdownmonitor.h>
|
2014-04-10 08:19:58 +02:00
|
|
|
|
2018-06-13 16:02:39 +02:00
|
|
|
#if defined(Q_OS_WIN)
|
2018-05-16 19:17:40 +00:00
|
|
|
#include <shutdown.h>
|
2014-04-10 08:19:58 +02:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
// If we don't want a message to be processed by Qt, return true and set result to
|
|
|
|
// the value that the window procedure should return. Otherwise return false.
|
|
|
|
bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pMessage, long *pnResult)
|
|
|
|
{
|
|
|
|
Q_UNUSED(eventType);
|
|
|
|
|
|
|
|
MSG *pMsg = static_cast<MSG *>(pMessage);
|
|
|
|
|
|
|
|
switch(pMsg->message)
|
|
|
|
{
|
|
|
|
case WM_QUERYENDSESSION:
|
|
|
|
{
|
|
|
|
// Initiate a client shutdown after receiving a WM_QUERYENDSESSION and block
|
|
|
|
// Windows session end until we have finished client shutdown.
|
|
|
|
StartShutdown();
|
|
|
|
*pnResult = FALSE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_ENDSESSION:
|
|
|
|
{
|
|
|
|
*pnResult = FALSE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WinShutdownMonitor::registerShutdownBlockReason(const QString& strReason, const HWND& mainWinId)
|
|
|
|
{
|
|
|
|
typedef BOOL (WINAPI *PSHUTDOWNBRCREATE)(HWND, LPCWSTR);
|
2018-02-12 15:48:37 +01:00
|
|
|
PSHUTDOWNBRCREATE shutdownBRCreate = (PSHUTDOWNBRCREATE)GetProcAddress(GetModuleHandleA("User32.dll"), "ShutdownBlockReasonCreate");
|
2017-08-07 07:36:37 +02:00
|
|
|
if (shutdownBRCreate == nullptr) {
|
2014-06-24 14:33:38 +02:00
|
|
|
qWarning() << "registerShutdownBlockReason: GetProcAddress for ShutdownBlockReasonCreate failed";
|
2014-04-10 08:19:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shutdownBRCreate(mainWinId, strReason.toStdWString().c_str()))
|
2019-06-21 20:22:13 +03:00
|
|
|
qInfo() << "registerShutdownBlockReason: Successfully registered: " + strReason;
|
2014-04-10 08:19:58 +02:00
|
|
|
else
|
2014-06-24 14:33:38 +02:00
|
|
|
qWarning() << "registerShutdownBlockReason: Failed to register: " + strReason;
|
2014-04-10 08:19:58 +02:00
|
|
|
}
|
|
|
|
#endif
|