/* * Copyright (C) 2021 ~ 2022 Deepin Technology Co., Ltd. * * Author: weizhixiang * * Maintainer: weizhixiang * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "dbushandler.h" #include "dock.h" #include "windowinfok.h" #include "dbusbamfapplication.h" DBusHandler::DBusHandler(Dock *_dock, QObject *parent) : QObject(parent) , dock(_dock) , session(QDBusConnection::sessionBus()) , launcherEnd(new LauncherBackEnd("org.deepin.dde.daemon.Launcher1", "/org/deepin/dde/daemon/Launcher1", session, this)) , launcherFront(new LauncherFront("org.deepin.dde.Launcher1", "/org/deepin/dde/Launcher1", session, this)) , wm(new com::deepin::WM("com.deepin.wm", "/com/deepin/wm", session, this)) , wmSwitcher(new com::deepin::WMSwitcher("com.deepin.wmWMSwitcher", "/com/deepin/WMSwitcher", session, this)) , kwaylandManager(nullptr) , bamfMatcher(new org::ayatana::bamf::BamfMatcher("org.ayatana.bamf.matcher", "/org/ayatana/bamf/matcher", session, this)) { // 关联org.deepin.dde.daemon.Launcher1事件 ItemChanged connect(launcherEnd, &LauncherBackEnd::ItemChanged, this, &DBusHandler::handleLauncherItemChanged); // 关联org.deepin.dde.Launcher1事件 VisibleChanged connect(launcherFront, &LauncherFront::VisibleChanged, this, [&](bool visible) { dock->setDdeLauncherVisible(visible); dock->updateHideState(false); }); // 关联com.deepin.WMSwitcher事件 WMChanged connect(wmSwitcher, &__WMSwitcher::WMChanged, this, [&](QString name) {dock->setWMName(name);}); } // 关联com.deepin.daemon.KWayland.WindowManager事件 void DBusHandler::listenWaylandWMSignals() { kwaylandManager = new com::deepin::daemon::kwayland::WindowManager("com.deepin.daemon.KWayland", "/com/deepin/daemon/KWayland/WindowManager", session, this); // ActiveWindowchanged connect(kwaylandManager, &__KwaylandManager::ActiveWindowChanged, this, &DBusHandler::handleWlActiveWindowchange); // WindowCreated connect(kwaylandManager, &__KwaylandManager::WindowCreated, this, [&] (const QString &ObjPath) { dock->registerWindowWayland(ObjPath); }); // WindowRemove connect(kwaylandManager, &__KwaylandManager::WindowRemove, this, [&] (const QString &ObjPath) { dock->unRegisterWindowWayland(ObjPath); }); } void DBusHandler::handleLauncherItemChanged(const QString &status, LauncherItemInfo itemInfo, qlonglong categoryID) { qInfo() << "handleLauncherItemChanged status:" << status << " Name:" << itemInfo.name << " ID:" << itemInfo.id; if (status == "deleted") { dock->handleLauncherItemDeleted(itemInfo.path); } else if (status == "created") { // don't need to download to dock when app reinstall } else if (status == "updated") { dock->handleLauncherItemUpdated(itemInfo.path); } } QString DBusHandler::getCurrentWM() { return wmSwitcher->CurrentWM().value(); } // TODO 扩展ApplicationManager Launch接口,允许带参数启动应用,暂时调用StartManager接口 void DBusHandler::launchApp(QString desktopFile, uint32_t timestamp, QStringList files) { QDBusInterface interface = QDBusInterface("com.deepin.daemon.Display", "/com/deepin/StartManager", "com.deepin.StartManager"); interface.call("LaunchApp", desktopFile, timestamp, files); } void DBusHandler::launchAppAction(QString desktopFile, QString action, uint32_t timestamp) { QDBusInterface interface = QDBusInterface("com.deepin.daemon.Display", "/com/deepin/StartManager", "com.deepin.StartManager"); interface.call("LaunchAppAction", desktopFile, action, timestamp); } void DBusHandler::markAppLaunched(const QString &filePath) { QDBusInterface interface = QDBusInterface("org.deepin.daemon.AlRecorder1", "/org/deepin/daemon/AlRecorder1", "org.deepin.daemon.AlRecorder1"); interface.call("MarkLaunched", filePath); } bool DBusHandler::wlShowingDesktop() { bool ret = false; if (kwaylandManager) ret = kwaylandManager->IsShowingDesktop().value(); return ret; } uint DBusHandler::wlActiveWindow() { uint ret = 0; if (kwaylandManager) ret = kwaylandManager->ActiveWindow().value(); return ret; } void DBusHandler::handleWlActiveWindowchange() { uint activeWinInternalId = wlActiveWindow(); if (activeWinInternalId == 0) return; WindowInfoK *info = dock->handleActiveWindowChangedK(activeWinInternalId); if (info->getXid() != 0) { dock->handleActiveWindowChanged(info); } else { dock->updateHideState(false); } } void DBusHandler::listenKWindowSignals(WindowInfoK *windowInfo) { PlasmaWindow *window = windowInfo->getPlasmaWindow(); if (!window) return; // Title changed connect(window, &PlasmaWindow::TitleChanged, this, [&] { windowInfo->updateTitle(); auto entry = dock->getEntryByWindowId(windowInfo->getXid()); if (!entry) return; if (entry->getCurrentWindowInfo() == windowInfo) entry->updateName(); entry->updateExportWindowInfos(); }); // Icon changed connect(window, &PlasmaWindow::IconChanged, this, [&] { windowInfo->updateIcon(); auto entry = dock->getEntryByWindowId(windowInfo->getXid()); if (!entry) return; entry->updateIcon(); }); // DemandingAttention changed connect(window, &PlasmaWindow::DemandsAttentionChanged, this, [&] { windowInfo->updateDemandingAttention(); auto entry = dock->getEntryByWindowId(windowInfo->getXid()); if (!entry) return; entry->updateExportWindowInfos(); }); // Geometry changed connect(window, &PlasmaWindow::GeometryChanged, this, [&] { if (!windowInfo->updateGeometry()) return; dock->handleWindowGeometryChanged(); }); } PlasmaWindow *DBusHandler::createPlasmaWindow(QString objPath) { return new PlasmaWindow("com.deepin.daemon.KWayland.PlasmaWindow", objPath, session, this); } /** * @brief DBusHandler::removePlasmaWindowHandler 取消关联信号 TODO * @param window */ void DBusHandler::removePlasmaWindowHandler(PlasmaWindow *window) { } void DBusHandler::presentWindows(QList windows) { wm->PresentWindows(windows); } QString DBusHandler::getDesktopFromWindowByBamf(XWindow windowId) { QDBusPendingReply reply = bamfMatcher->ApplicationForXid(windowId); if (!reply.isValid()) return ""; QString appObjPath = reply.value(); org::ayatana::bamf::BamfApplication bamfApp("org.ayatana.bamf.application", appObjPath, session, this); if (bamfApp.isValid()) return bamfApp.DesktopFile(); return ""; }