2019-08-31 11:40:43 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2019 Piyush Aggarwal <piyushaggarwal002@gmail.com>
|
2019-08-31 11:40:43 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2019-08-31 11:40:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "screensaverinhibitplugin-win.h"
|
|
|
|
|
|
|
|
#include <KPluginFactory>
|
|
|
|
#include <Windows.h>
|
2020-05-26 17:55:47 +01:00
|
|
|
#include "kdeconnect_screensaverinhibit_debug.h"
|
2019-08-31 11:40:43 +01:00
|
|
|
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(ScreensaverInhibitPlugin, "kdeconnect_screensaver_inhibit.json")
|
|
|
|
|
|
|
|
ScreensaverInhibitPlugin::ScreensaverInhibitPlugin(QObject* parent, const QVariantList& args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
{
|
|
|
|
SetThreadExecutionState(ES_CONTINUOUS | ES_DISPLAY_REQUIRED);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreensaverInhibitPlugin::~ScreensaverInhibitPlugin()
|
|
|
|
{
|
|
|
|
SetThreadExecutionState(ES_CONTINUOUS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ScreensaverInhibitPlugin::receivePacket(const NetworkPacket& np)
|
|
|
|
{
|
|
|
|
Q_UNUSED(np);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "screensaverinhibitplugin-win.moc"
|