shift-shell/quicksettings/powermenu/powermenuutil.h
2025-04-20 18:02:19 +02:00

22 lines
369 B
C++

/*
* SPDX-FileCopyrightText: 2022 by Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
#include <qqmlregistration.h>
class PowerMenuUtil : public QObject
{
Q_OBJECT
QML_ELEMENT
QML_SINGLETON
public:
PowerMenuUtil(QObject *parent = nullptr);
Q_INVOKABLE void openShutdownScreen();
};