/* ksmserver - the KDE session management server SPDX-FileCopyrightText: 2000 Matthias Ettrich SPDX-License-Identifier: MIT */ #pragma once #ifdef PACKAGEKIT_OFFLINE_UPDATES #include #endif #include #include #include #include // The confirmation dialog class KSMShutdownDlg : public PlasmaQuick::QuickViewSharedEngine { Q_OBJECT public: KSMShutdownDlg(QWindow *parent, KWorkSpace::ShutdownType sdtype, QScreen *screen); void setWindowed(bool windowed) { m_windowed = windowed; } void init(const KPackage::Package &package); bool result() const; public Q_SLOTS: void accept(); void reject(); void slotLogout(); void slotHalt(); void slotHaltUpdate(); void slotReboot(); void slotReboot(int); void slotRebootUpdate(); void slotSuspend(int); void slotLockScreen(); void slotCancelSoftwareUpdate(); Q_SIGNALS: void accepted(); void rejected(); protected: void resizeEvent(QResizeEvent *e) override; private: #ifdef PACKAGEKIT_OFFLINE_UPDATES void setTriggerAction(PackageKit::Offline::Action action); #endif void cancelSoftwareUpdate(); bool updateTriggered() const; bool upgradeTriggered() const; bool m_windowed = false; QString m_bootOption; QStringList rebootOptions; bool m_result : 1; SessionManagement m_session; };