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>
|
|
|
|
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(ScreensaverInhibitPlugin, "kdeconnect_screensaver_inhibit.json")
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
ScreensaverInhibitPlugin::ScreensaverInhibitPlugin(QObject *parent, const QVariantList &args)
|
2019-08-31 11:40:43 +01:00
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
{
|
|
|
|
SetThreadExecutionState(ES_CONTINUOUS | ES_DISPLAY_REQUIRED);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreensaverInhibitPlugin::~ScreensaverInhibitPlugin()
|
|
|
|
{
|
|
|
|
SetThreadExecutionState(ES_CONTINUOUS);
|
|
|
|
}
|
|
|
|
|
2023-07-26 09:15:11 +01:00
|
|
|
#include "moc_screensaverinhibitplugin-win.cpp"
|
2019-08-31 11:40:43 +01:00
|
|
|
#include "screensaverinhibitplugin-win.moc"
|