/* SPDX-FileCopyrightText: 2000 Matthias Ettrich SPDX-FileCopyrightText: 2007 Urs Wolfer SPDX-License-Identifier: MIT */ #include "shutdowndlg.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static const QString s_login1Service = QStringLiteral("org.freedesktop.login1"); static const QString s_login1Path = QStringLiteral("/org/freedesktop/login1"); static const QString s_dbusPropertiesInterface = QStringLiteral("org.freedesktop.DBus.Properties"); static const QString s_login1ManagerInterface = QStringLiteral("org.freedesktop.login1.Manager"); static const QString s_login1RebootToFirmwareSetup = QStringLiteral("RebootToFirmwareSetup"); KSMShutdownDlg::KSMShutdownDlg(QWindow *parent, KWorkSpace::ShutdownType sdtype, QScreen *screen) : QuickViewSharedEngine(parent) , m_result(false) // this is a WType_Popup on purpose. Do not change that! Not // having a popup here has severe side effects. { // window stuff setClearBeforeRendering(true); setColor(QColor(Qt::transparent)); setScreen(screen); if (KWindowSystem::isPlatformWayland()) { if (auto w = LayerShellQt::Window::get(this)) { w->setKeyboardInteractivity(LayerShellQt::Window::KeyboardInteractivityExclusive); w->setExclusiveZone(-1); w->setLayer(LayerShellQt::Window::LayerOverlay); w->setDesiredOutput(screen); } } setResizeMode(KQuickAddons::QuickViewSharedEngine::SizeRootObjectToView); // Qt doesn't set this on unmanaged windows // FIXME: or does it? if (KWindowSystem::isPlatformX11()) { XChangeProperty(QX11Info::display(), winId(), XInternAtom(QX11Info::display(), "WM_WINDOW_ROLE", False), XA_STRING, 8, PropModeReplace, (unsigned char *)"logoutdialog", strlen("logoutdialog")); XClassHint classHint; classHint.res_name = const_cast("ksmserver-logout-greeter"); classHint.res_class = const_cast("ksmserver-logout-greeter"); XSetClassHint(QX11Info::display(), winId(), &classHint); } // QQuickView *windowContainer = QQuickView::createWindowContainer(m_view, this); // windowContainer->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QQmlContext *context = rootContext(); context->setContextProperty(QStringLiteral("maysd"), m_session.canShutdown()); context->setContextProperty(QStringLiteral("sdtype"), sdtype); QQmlPropertyMap *mapShutdownType = new QQmlPropertyMap(this); mapShutdownType->insert(QStringLiteral("ShutdownTypeDefault"), QVariant::fromValue(KWorkSpace::ShutdownTypeDefault)); mapShutdownType->insert(QStringLiteral("ShutdownTypeNone"), QVariant::fromValue(KWorkSpace::ShutdownTypeNone)); mapShutdownType->insert(QStringLiteral("ShutdownTypeReboot"), QVariant::fromValue(KWorkSpace::ShutdownTypeReboot)); mapShutdownType->insert(QStringLiteral("ShutdownTypeHalt"), QVariant::fromValue(KWorkSpace::ShutdownTypeHalt)); mapShutdownType->insert(QStringLiteral("ShutdownTypeLogout"), QVariant::fromValue(KWorkSpace::ShutdownTypeLogout)); context->setContextProperty(QStringLiteral("ShutdownType"), mapShutdownType); QQmlPropertyMap *mapSpdMethods = new QQmlPropertyMap(this); mapSpdMethods->insert(QStringLiteral("StandbyState"), m_session.canSuspend()); mapSpdMethods->insert(QStringLiteral("SuspendState"), m_session.canSuspend()); mapSpdMethods->insert(QStringLiteral("HibernateState"), m_session.canHibernate()); context->setContextProperty(QStringLiteral("spdMethods"), mapSpdMethods); context->setContextProperty(QStringLiteral("canLogout"), m_session.canLogout()); // Trying to access a non-existent context property throws an error, always create the property and then update it later context->setContextProperty("rebootToFirmwareSetup", false); QDBusMessage message = QDBusMessage::createMethodCall(s_login1Service, s_login1Path, s_dbusPropertiesInterface, QStringLiteral("Get")); message.setArguments({s_login1ManagerInterface, s_login1RebootToFirmwareSetup}); QDBusPendingReply call = QDBusConnection::systemBus().asyncCall(message); QDBusPendingCallWatcher *callWatcher = new QDBusPendingCallWatcher(call, this); connect(callWatcher, &QDBusPendingCallWatcher::finished, context, [context](QDBusPendingCallWatcher *watcher) { QDBusPendingReply reply = *watcher; watcher->deleteLater(); if (reply.value().toBool()) { context->setContextProperty("rebootToFirmwareSetup", true); } }); // TODO KF6 remove, used to read "BootManager" from kdmrc context->setContextProperty(QStringLiteral("bootManager"), QStringLiteral("None")); // TODO KF6 remove. Unused context->setContextProperty(QStringLiteral("choose"), false); // TODO KF6 remove, used to call KDisplayManager::bootOptions QStringList rebootOptions; int def = 0; QQmlPropertyMap *rebootOptionsMap = new QQmlPropertyMap(this); rebootOptionsMap->insert(QStringLiteral("options"), QVariant::fromValue(rebootOptions)); rebootOptionsMap->insert(QStringLiteral("default"), QVariant::fromValue(def)); context->setContextProperty(QStringLiteral("rebootOptions"), rebootOptionsMap); // engine stuff engine()->rootContext()->setContextObject(new KLocalizedContext(engine())); } void KSMShutdownDlg::init() { rootContext()->setContextProperty(QStringLiteral("screenGeometry"), screen()->geometry()); QString fileName; KPackage::Package package = KPackage::PackageLoader::self()->loadPackage(QStringLiteral("Plasma/LookAndFeel")); KConfigGroup cg(KSharedConfig::openConfig(QStringLiteral("kdeglobals")), "KDE"); const QString packageName = cg.readEntry("LookAndFeelPackage", QString()); if (!packageName.isEmpty()) { package.setPath(packageName); } fileName = package.filePath("logoutmainscript"); if (QFile::exists(fileName)) { setSource(package.fileUrl("logoutmainscript")); } else { qCWarning(LOGOUT_GREETER) << "Couldn't find a theme for the Shutdown dialog" << fileName; return; } if (!errors().isEmpty()) { qCWarning(LOGOUT_GREETER) << errors(); } connect(rootObject(), SIGNAL(logoutRequested()), SLOT(slotLogout())); connect(rootObject(), SIGNAL(haltRequested()), SLOT(slotHalt())); connect(rootObject(), SIGNAL(suspendRequested(int)), SLOT(slotSuspend(int))); connect(rootObject(), SIGNAL(rebootRequested()), SLOT(slotReboot())); connect(rootObject(), SIGNAL(rebootRequested2(int)), SLOT(slotReboot(int))); connect(rootObject(), SIGNAL(cancelRequested()), SLOT(reject())); connect(rootObject(), SIGNAL(lockScreenRequested()), SLOT(slotLockScreen())); connect(screen(), &QScreen::geometryChanged, this, [this] { setGeometry(screen()->geometry()); }); // decide in backgroundcontrast whether doing things darker or lighter // set backgroundcontrast here, because in QEvent::PlatformSurface // is too early and we don't have the root object yet const QColor backgroundColor = rootObject() ? rootObject()->property("backgroundColor").value() : QColor(); KWindowEffects::enableBackgroundContrast(this, true, 0.4, (backgroundColor.value() > 128 ? 1.6 : 0.3), 1.7); KQuickAddons::QuickViewSharedEngine::showFullScreen(); setFlag(Qt::FramelessWindowHint); requestActivate(); KWindowSystem::setState(winId(), NET::SkipTaskbar | NET::SkipPager); setKeyboardGrabEnabled(true); KWindowEffects::enableBlurBehind(this, true); } void KSMShutdownDlg::resizeEvent(QResizeEvent *e) { KQuickAddons::QuickViewSharedEngine::resizeEvent(e); if (KWindowSystem::compositingActive()) { // TODO: reenable window mask when we are without composite? // clearMask(); } else { // setMask(m_view->mask()); } } void KSMShutdownDlg::slotLogout() { m_session.requestLogout(SessionManagement::ConfirmationMode::Skip); accept(); } void KSMShutdownDlg::slotReboot() { // no boot option selected -> current m_bootOption.clear(); m_session.requestReboot(SessionManagement::ConfirmationMode::Skip); accept(); } void KSMShutdownDlg::slotReboot(int opt) { if (int(rebootOptions.size()) > opt) m_bootOption = rebootOptions[opt]; m_session.requestReboot(SessionManagement::ConfirmationMode::Skip); accept(); } void KSMShutdownDlg::slotLockScreen() { m_bootOption.clear(); m_session.lock(); reject(); } void KSMShutdownDlg::slotHalt() { m_bootOption.clear(); m_session.requestShutdown(SessionManagement::ConfirmationMode::Skip); accept(); } void KSMShutdownDlg::slotSuspend(int spdMethod) { m_bootOption.clear(); switch (spdMethod) { case 1: // Solid::PowerManagement::StandbyState: case 2: // Solid::PowerManagement::SuspendState: m_session.suspend(); break; case 4: // Solid::PowerManagement::HibernateState: m_session.hibernate(); break; } reject(); } void KSMShutdownDlg::accept() { Q_EMIT accepted(); } void KSMShutdownDlg::reject() { Q_EMIT rejected(); }