mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00
1576 lines
42 KiB
C++
1576 lines
42 KiB
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
||
//
|
||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
||
#include "entry.h"
|
||
#include "common.h"
|
||
#include "appinfo.h"
|
||
#include "xcbutils.h"
|
||
#include "constants.h"
|
||
#include "x11manager.h"
|
||
#include "taskmanager.h"
|
||
#include "windowinfok.h"
|
||
#include "dbushandler.h"
|
||
#include "docksettings.h"
|
||
#include "windowinfomap.h"
|
||
#include "windowidentify.h"
|
||
#include "waylandmanager.h"
|
||
#include "windowinfobase.h"
|
||
#include "dbusutil.h"
|
||
|
||
#include "org_deepin_dde_kwayland_plasmawindow.h"
|
||
|
||
#include <QDir>
|
||
#include <QMap>
|
||
#include <QTimer>
|
||
#include <QList>
|
||
#include <QPixmap>
|
||
|
||
#include <cstdint>
|
||
#include <iterator>
|
||
#include <memory>
|
||
#include <algorithm>
|
||
|
||
#define SETTING DockSettings::instance()
|
||
#define XCB XCBUtils::instance()
|
||
bool shouldShowEntry(Entry *entry)
|
||
{
|
||
auto appInfo = entry->getAppInfo();
|
||
if (appInfo && appInfo->isValidApp()) {
|
||
QString path = entry->getAppInfo()->getFileName();
|
||
DesktopInfo desktopInfo(path);
|
||
return desktopInfo.shouldShow();
|
||
}
|
||
return false;
|
||
}
|
||
|
||
TaskManager::TaskManager(QObject *parent)
|
||
: m_showRecent(DockSettings::instance()->showRecent())
|
||
, m_entriesSum(0)
|
||
, m_hideState(HideState::Unknown)
|
||
, m_ddeLauncherVisible(false)
|
||
, m_trayGridWidgetVisible(false)
|
||
, m_entries(new Entries(this))
|
||
, m_windowIdentify(new WindowIdentify(this))
|
||
, m_dbusHandler(new DBusHandler(this))
|
||
, m_activeWindow(nullptr)
|
||
, m_activeWindowOld(nullptr)
|
||
{
|
||
qRegisterMetaType<WindowInfoMap>("WindowInfoMap");
|
||
qRegisterMetaType<uint32_t>("uint32_t");
|
||
if (isWaylandSession()) {
|
||
m_isWayland = true;
|
||
m_waylandManager = new WaylandManager(this);
|
||
m_dbusHandler->listenWaylandWMSignals();
|
||
} else if (isX11Session()) {
|
||
m_isWayland = false;
|
||
m_x11Manager = new X11Manager(this);
|
||
} else {
|
||
qFatal("Unknown XDG_SESSION_TYPE '%s'", sessionType().constData());
|
||
}
|
||
|
||
initSettings();
|
||
initEntries();
|
||
|
||
// 初始化智能隐藏定时器
|
||
m_smartHideTimer = new QTimer(this);
|
||
m_smartHideTimer->setSingleShot(true);
|
||
connect(m_smartHideTimer, &QTimer::timeout, this, &TaskManager::smartHideModeTimerExpired);
|
||
|
||
if (!m_isWayland) {
|
||
std::thread thread([&] {
|
||
// Xlib方式
|
||
m_x11Manager->listenXEventUseXlib();
|
||
// XCB方式
|
||
//listenXEventUseXCB();
|
||
});
|
||
thread.detach();
|
||
m_x11Manager->listenRootWindowXEvent();
|
||
connect(m_x11Manager, &X11Manager::requestUpdateHideState, this, &TaskManager::updateHideState);
|
||
connect(m_x11Manager, &X11Manager::requestHandleActiveWindowChange, this, &TaskManager::handleActiveWindowChanged);
|
||
connect(m_x11Manager, &X11Manager::requestAttachOrDetachWindow, this, &TaskManager::attachOrDetachWindow);
|
||
}
|
||
}
|
||
|
||
TaskManager::~TaskManager()
|
||
{
|
||
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::dockEntry 驻留应用
|
||
* @param entry 应用实例
|
||
* @return
|
||
*/
|
||
bool TaskManager::dockEntry(Entry *entry, bool moveToEnd)
|
||
{
|
||
if (entry->getIsDocked())
|
||
return false;
|
||
|
||
AppInfo *appInfo = entry->getAppInfo();
|
||
auto needScratchDesktop = [&]{
|
||
if (!appInfo) {
|
||
qInfo() << "needScratchDesktop: yes, appInfo is nil";
|
||
return true;
|
||
}
|
||
|
||
if (appInfo->isInstalled()) {
|
||
qInfo() << "needScratchDesktop: no, desktop is installed";
|
||
return false;
|
||
}
|
||
|
||
return true;
|
||
};
|
||
|
||
|
||
if (needScratchDesktop()) {
|
||
m_dbusHandler->sendFailedDockNotification(entry->getName());
|
||
return false;
|
||
}
|
||
|
||
// 如果是最近打开应用,通过右键菜单的方式驻留,且当前是时尚模式,那么就让entry驻留到末尾
|
||
if (moveToEnd && SETTING->getDisplayMode() == DisplayMode::Fashion)
|
||
m_entries->moveEntryToLast(entry);
|
||
|
||
entry->setIsDocked(true);
|
||
entry->updateMenu();
|
||
entry->updateMode();
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::undockEntry 取消驻留
|
||
* @param entry 应用实例
|
||
*/
|
||
void TaskManager::undockEntry(Entry *entry, bool moveToEnd)
|
||
{
|
||
if (!entry->getIsDocked()) {
|
||
qInfo() << "undockEntry: " << entry->getId() << " is not docked";
|
||
// 当应用图标在最近打开区域的时候,此时该应用是未驻留的应用,如果该最近打开应用没有打开窗口,将这个图标
|
||
// 拖动到回收站了,此时调用的是undock方法,根据需求,需要将该图标删除
|
||
if (!entry->hasWindow()) {
|
||
// 没有子窗口的情况下,从列表中移除
|
||
removeAppEntry(entry);
|
||
saveDockedApps();
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (!entry->getAppInfo()) {
|
||
qInfo() << "undockEntry: entry appInfo is nullptr";
|
||
return;
|
||
}
|
||
|
||
// 移除scratchDir目录下相关文件
|
||
QString desktopFile = entry->getFileName();
|
||
QString filebase(desktopFile.data(), desktopFile.size() - 9);
|
||
if (desktopFile.contains(scratchDir)) {
|
||
QStringList suffixs {".desktop", ".sh", ".png"};
|
||
for (auto &ext : suffixs) {
|
||
QFile file(filebase + ext);
|
||
if (file.exists()) file.remove();
|
||
}
|
||
}
|
||
|
||
if (entry->hasWindow()) {
|
||
// 移除驻留后,如果当前应用存在子窗口,那么会将移除最近使用应用中最后一个没有子窗口的窗口
|
||
m_entries->removeLastRecent();
|
||
if (desktopFile.contains(scratchDir) && entry->getCurrentWindowInfo()) {
|
||
QFileInfo info(desktopFile);
|
||
QString baseName = info.completeBaseName();
|
||
if (baseName.startsWith(windowHashPrefix)) {
|
||
// desktop base starts with w:
|
||
// 由于有 Pid 识别方法在,在这里不能用 m.identifyWindow 再次识别
|
||
entry->setInnerId(entry->getCurrentWindowInfo()->getInnerId());
|
||
entry->setAppInfo(nullptr); // 此处设置Entry的app为空, 在Entry中调用app相关信息前判断指针是否为空
|
||
} else {
|
||
// desktop base starts with d:
|
||
QString innerId;
|
||
AppInfo *app = m_windowIdentify->identifyWindow(entry->getCurrentWindowInfo(), innerId);
|
||
// TODO update entry's innerId
|
||
entry->setAppInfo(app);
|
||
entry->setInnerId(innerId);
|
||
}
|
||
}
|
||
// 如果存在窗口,在时尚模式下,就会移动到最近打开区域,此时让它移动到最后
|
||
if (moveToEnd && SETTING->getDisplayMode() == DisplayMode::Fashion)
|
||
m_entries->moveEntryToLast(entry);
|
||
|
||
entry->updateIcon();
|
||
entry->setIsDocked(false);
|
||
entry->updateName();
|
||
entry->updateMenu();
|
||
// 更新模式, 是在应用区域还是在最近打开区域
|
||
entry->updateMode();
|
||
} else {
|
||
// 直接移除
|
||
removeAppEntry(entry);
|
||
}
|
||
|
||
saveDockedApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::allocEntryId 分配应用实例id
|
||
* @return
|
||
*/
|
||
QString TaskManager::allocEntryId()
|
||
{
|
||
return QString("e%1T%2").arg(++m_entriesSum).arg(QString::number(QDateTime::currentSecsSinceEpoch(), 16));
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::shouldShowOnDock 判断是否应该显示到任务栏
|
||
* @param info
|
||
* @return
|
||
*/
|
||
bool TaskManager::shouldShowOnDock(WindowInfoBase *info)
|
||
{
|
||
if (info->getWindowType() == "X11") {
|
||
XWindow winId = info->getXid();
|
||
bool isReg = m_x11Manager->findWindowByXid(winId);
|
||
bool isContainedInClientList = m_clientList.indexOf(winId) != -1;
|
||
bool shouldSkip = info->shouldSkip();
|
||
bool isGood = XCB->isGoodWindow(winId);
|
||
qInfo() << "shouldShowOnDock X11: isReg:" << isReg << " isContainedInClientList:" << isContainedInClientList << " shouldSkip:" << shouldSkip << " isGood:" << isGood;
|
||
|
||
return isReg && isContainedInClientList && isGood && !shouldSkip;
|
||
} else if (info->getWindowType() == "Wayland") {
|
||
return !info->shouldSkip();
|
||
}
|
||
|
||
return false;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setDdeLauncherVisible 记录当前启动器是否可见
|
||
* @param visible
|
||
*/
|
||
void TaskManager::setDdeLauncherVisible(bool visible)
|
||
{
|
||
m_trayGridWidgetVisible = visible;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setTrayGridWidgetVisible 记录当前扩展托盘是否可见
|
||
* @param visible
|
||
*/
|
||
void TaskManager::setTrayGridWidgetVisible(bool visible)
|
||
{
|
||
m_ddeLauncherVisible = visible;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getWMName 获取窗管名称
|
||
* @return
|
||
*/
|
||
QString TaskManager::getWMName()
|
||
{
|
||
return m_wmName;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setWMName 设置窗管名称
|
||
* @param name 窗管名称
|
||
*/
|
||
void TaskManager::setWMName(QString name)
|
||
{
|
||
m_wmName = name;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::createPlasmaWindow 创建wayland下窗口
|
||
* @param objPath
|
||
* @return
|
||
*/
|
||
PlasmaWindow *TaskManager::createPlasmaWindow(QString objPath)
|
||
{
|
||
return m_dbusHandler->createPlasmaWindow(objPath);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::listenKWindowSignals
|
||
* @param windowInfo
|
||
*/
|
||
void TaskManager::listenKWindowSignals(WindowInfoK *windowInfo)
|
||
{
|
||
m_dbusHandler->listenKWindowSignals(windowInfo);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::removePlasmaWindowHandler 关闭窗口后需求对应的connect
|
||
* @param window
|
||
*/
|
||
void TaskManager::removePlasmaWindowHandler(PlasmaWindow *window)
|
||
{
|
||
m_dbusHandler->removePlasmaWindowHandler(window);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::presentWindows 显示窗口
|
||
* @param windows 窗口id
|
||
*/
|
||
void TaskManager::presentWindows(QList<uint> windows)
|
||
{
|
||
m_dbusHandler->presentWindows(windows);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDockHideMode 获取任务栏隐藏模式 一直显示/一直隐藏/智能隐藏
|
||
* @return
|
||
*/
|
||
HideMode TaskManager::getDockHideMode()
|
||
{
|
||
return SETTING->getHideMode();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isActiveWindow 判断是否为活动窗口
|
||
* @param win
|
||
* @return
|
||
*/
|
||
bool TaskManager::isActiveWindow(const WindowInfoBase *win)
|
||
{
|
||
if (!win)
|
||
return false;
|
||
|
||
return win == getActiveWindow();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getActiveWindow 获取当前活跃窗口
|
||
* @return
|
||
*/
|
||
WindowInfoBase *TaskManager::getActiveWindow()
|
||
{
|
||
if (!m_activeWindow)
|
||
return m_activeWindowOld;
|
||
|
||
return m_activeWindow;
|
||
|
||
}
|
||
|
||
void TaskManager::doActiveWindow(XWindow xid)
|
||
{
|
||
// 修改当前工作区为指定窗口的工作区
|
||
XWindow winWorkspace = XCB->getWMDesktop(xid);
|
||
XWindow currentWorkspace = XCB->getCurrentWMDesktop();
|
||
if (winWorkspace != currentWorkspace) {
|
||
qInfo() << "doActiveWindow: change currentWorkspace " << currentWorkspace << " to winWorkspace " << winWorkspace;
|
||
|
||
// 获取窗口时间
|
||
uint32_t timestamp = XCB->getWMUserTime(xid);
|
||
// 修改当前桌面工作区
|
||
XCB->changeCurrentDesktop(winWorkspace, timestamp);
|
||
}
|
||
|
||
XCB->changeActiveWindow(xid);
|
||
QTimer::singleShot(50, [xid] {
|
||
XCB->restackWindow(xid);
|
||
});
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getClientList 获取窗口client列表
|
||
* @return
|
||
*/
|
||
QList<XWindow> TaskManager::getClientList()
|
||
{
|
||
return QList<XWindow>(m_clientList);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setClientList 设置窗口client列表
|
||
*/
|
||
void TaskManager::setClientList(QList<XWindow> value)
|
||
{
|
||
m_clientList = value;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::closeWindow 关闭窗口
|
||
* @param windowId 窗口id
|
||
*/
|
||
void TaskManager::closeWindow(uint32_t windowId)
|
||
{
|
||
qInfo() << "Close Window " << windowId;
|
||
if (m_isWayland) {
|
||
WindowInfoK *info = m_waylandManager->findWindowByXid(windowId);
|
||
if (info)
|
||
info->close(0);
|
||
} else {
|
||
XCB->requestCloseWindow(windowId, 0);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::MinimizeWindow 最小化窗口
|
||
* @param windowId 窗口id
|
||
*/
|
||
void TaskManager::MinimizeWindow(XWindow windowId)
|
||
{
|
||
qInfo() << "Minimize Window " << windowId;
|
||
if (m_isWayland) {
|
||
WindowInfoK *info = m_waylandManager->findWindowByXid(windowId);
|
||
if (info)
|
||
info->minimize();
|
||
} else {
|
||
XCB->minimizeWindow(windowId);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getEntryIDs 获取所有应用Id
|
||
* @return
|
||
*/
|
||
QStringList TaskManager::getEntryIDs()
|
||
{
|
||
return m_entries->getEntryIDs();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setFrontendWindowRect 设置任务栏Rect
|
||
* @param x
|
||
* @param y
|
||
* @param width
|
||
* @param height
|
||
*/
|
||
void TaskManager::setFrontendWindowRect(int32_t x, int32_t y, uint width, uint height)
|
||
{
|
||
if (m_frontendWindowRect == QRect(x, y, width, height)) {
|
||
qInfo() << "SetFrontendWindowRect: no changed";
|
||
return;
|
||
}
|
||
|
||
m_frontendWindowRect.setX(x);
|
||
m_frontendWindowRect.setY(y);
|
||
m_frontendWindowRect.setWidth(width);
|
||
m_frontendWindowRect.setHeight(height);
|
||
updateHideState(false);
|
||
|
||
Q_EMIT frontendWindowRectChanged(m_frontendWindowRect);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isDocked 应用是否驻留
|
||
* @param desktopFile
|
||
* @return
|
||
*/
|
||
bool TaskManager::isDocked(const QString desktopFile)
|
||
{
|
||
auto entry = getDockedEntryByDesktopFile(desktopFile);
|
||
return !!entry;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::requestDock 驻留应用
|
||
* @param desktopFile desktopFile全路径
|
||
* @param index
|
||
* @return
|
||
*/
|
||
bool TaskManager::requestDock(QString desktopFile, int index)
|
||
{
|
||
qInfo() << "RequestDock: " << desktopFile;
|
||
AppInfo *app = new AppInfo(desktopFile);
|
||
if (!app || !app->isValidApp()) {
|
||
qInfo() << "RequestDock: invalid desktopFile";
|
||
return false;
|
||
}
|
||
|
||
if (m_dbusHandler->newStartManagerAvaliable() && !app->isInstalled()) {
|
||
m_dbusHandler->sendFailedDockNotification(app->getName());
|
||
return false;
|
||
}
|
||
|
||
Entry *entry = m_entries->getByInnerId(app->getInnerId());
|
||
if (!entry)
|
||
entry = new Entry(this, app, app->getInnerId());
|
||
|
||
if (!dockEntry(entry))
|
||
return false;
|
||
|
||
m_entries->insert(entry, index);
|
||
|
||
saveDockedApps();
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::requestUndock 取消驻留应用
|
||
* @param desktopFile desktopFile文件全路径
|
||
* @return
|
||
*/
|
||
bool TaskManager::requestUndock(QString desktopFile)
|
||
{
|
||
auto entry = getDockedEntryByDesktopFile(desktopFile);
|
||
if (!entry)
|
||
return false;
|
||
|
||
undockEntry(entry);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::moveEntry 移动驻留程序顺序
|
||
* @param oldIndex
|
||
* @param newIndex
|
||
*/
|
||
void TaskManager::moveEntry(int oldIndex, int newIndex)
|
||
{
|
||
m_entries->move(oldIndex, newIndex);
|
||
saveDockedApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isOnDock 是否在任务栏
|
||
* @param desktopFile desktopFile文件全路径
|
||
* @return
|
||
*/
|
||
bool TaskManager::isOnDock(QString desktopFile)
|
||
{
|
||
return m_entries->getByDesktopFilePath(desktopFile);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::queryWindowIdentifyMethod 查询窗口识别方式
|
||
* @param windowId 窗口id
|
||
* @return
|
||
*/
|
||
QString TaskManager::queryWindowIdentifyMethod(XWindow windowId)
|
||
{
|
||
return m_entries->queryWindowIdentifyMethod(windowId);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDockedAppsDesktopFiles 获取驻留应用desktop文件
|
||
* @return
|
||
*/
|
||
QStringList TaskManager::getDockedAppsDesktopFiles()
|
||
{
|
||
QStringList ret;
|
||
for (auto entry: m_entries->filterDockedEntries()) {
|
||
ret << entry->getFileName();
|
||
}
|
||
|
||
return ret;
|
||
}
|
||
|
||
void TaskManager::setShowMultiWindow(bool visible)
|
||
{
|
||
if (m_showMultiWindow == visible)
|
||
return;
|
||
|
||
SETTING->setShowMultiWindow(visible);
|
||
onShowMultiWindowChanged(visible);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getPluginSettings 获取任务栏插件配置
|
||
* @return
|
||
*/
|
||
QString TaskManager::getPluginSettings()
|
||
{
|
||
return SETTING->getPluginSettings();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setPluginSettings 设置任务栏插件配置
|
||
* @param jsonStr
|
||
*/
|
||
void TaskManager::setPluginSettings(QString jsonStr)
|
||
{
|
||
SETTING->setPluginSettings(jsonStr);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::mergePluginSettings 合并任务栏插件配置
|
||
* @param jsonStr
|
||
*/
|
||
void TaskManager::mergePluginSettings(QString jsonStr)
|
||
{
|
||
SETTING->mergePluginSettings(jsonStr);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::removePluginSettings 移除任务栏插件配置
|
||
* @param pluginName
|
||
* @param settingkeys
|
||
*/
|
||
void TaskManager::removePluginSettings(QString pluginName, QStringList settingkeys)
|
||
{
|
||
SETTING->removePluginSettings(pluginName, settingkeys);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::smartHideModeTimerExpired 设置智能隐藏
|
||
*/
|
||
void TaskManager::smartHideModeTimerExpired()
|
||
{
|
||
HideState state = shouldHideOnSmartHideMode() ? HideState::Hide : HideState::Show;
|
||
qInfo() << "smartHideModeTimerExpired, should hide ? " << int(state);
|
||
setPropHideState(state);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::initSettings 初始化配置
|
||
*/
|
||
void TaskManager::initSettings()
|
||
{
|
||
qInfo() << "init dock settings";
|
||
m_forceQuitAppStatus = SETTING->getForceQuitAppMode();
|
||
connect(SETTING, &DockSettings::hideModeChanged, this, [ this ](HideMode mode) {
|
||
this->updateHideState(false);
|
||
});
|
||
connect(SETTING, &DockSettings::forceQuitAppChanged, this, [ this ](ForceQuitAppMode mode) {
|
||
qInfo() << "forceQuitApp change to " << int(mode);
|
||
m_forceQuitAppStatus = mode;
|
||
m_entries->updateEntriesMenu();
|
||
});
|
||
connect(SETTING, &DockSettings::showRecentChanged, this, &TaskManager::onShowRecentChanged);
|
||
connect(SETTING, &DockSettings::showMultiWindowChanged, this, &TaskManager::onShowMultiWindowChanged);
|
||
connect(SETTING, &DockSettings::displayModeChanged, this, &TaskManager::setDisplayMode);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::initEntries 初始化应用
|
||
*/
|
||
void TaskManager::initEntries()
|
||
{
|
||
loadAppInfos();
|
||
initClientList();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::loadAppInfos 加载本地驻留和最近使用的应用信息
|
||
*/
|
||
void TaskManager::loadAppInfos()
|
||
{
|
||
// 初始化驻留应用信息和最近使用的应用的信息
|
||
auto loadApps = [ this ](const QStringList &apps, bool isDocked) {
|
||
for (const QString &app : apps) {
|
||
QString path = app;
|
||
DesktopInfo info(path);
|
||
if (!info.isValidDesktop())
|
||
continue;
|
||
|
||
// 新AM接口导致用户自定义的desktopfile不再加载
|
||
if (m_dbusHandler->newStartManagerAvaliable() && !info.isInstalled())
|
||
continue;
|
||
|
||
AppInfo *appInfo = new AppInfo(info);
|
||
Entry *entryObj = new Entry(this, appInfo, appInfo->getInnerId());
|
||
entryObj->setIsDocked(isDocked);
|
||
entryObj->updateMode();
|
||
entryObj->updateMenu();
|
||
m_entries->append(entryObj);
|
||
}
|
||
};
|
||
|
||
loadApps(SETTING->getDockedApps(), true);
|
||
QStringList recentApps = SETTING->getRecentApps();
|
||
if (recentApps.size() > MAX_UNOPEN_RECENT_COUNT) {
|
||
QStringList tempApps = recentApps;
|
||
recentApps.clear();
|
||
for (int i = 0; i < MAX_UNOPEN_RECENT_COUNT; i++)
|
||
recentApps << tempApps[i];
|
||
}
|
||
loadApps(recentApps, false);
|
||
saveDockedApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::initClientList 初始化窗口列表,关联到对应应用
|
||
*/
|
||
void TaskManager::initClientList()
|
||
{
|
||
if (m_isWayland) {
|
||
m_dbusHandler->loadClientList();
|
||
} else {
|
||
QList<XWindow> clients;
|
||
for (auto c : XCB->instance()->getClientList())
|
||
clients.push_back(c);
|
||
|
||
// 依次注册窗口
|
||
std::sort(clients.begin(), clients.end());
|
||
m_clientList = clients;
|
||
for (auto winId : m_clientList) {
|
||
WindowInfoX *winInfo = m_x11Manager->registerWindow(winId);
|
||
attachOrDetachWindow(static_cast<WindowInfoBase *>(winInfo));
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::findWindowByXidX 通过id获取窗口信息
|
||
* @param xid
|
||
* @return
|
||
*/
|
||
WindowInfoX *TaskManager::findWindowByXidX(XWindow xid)
|
||
{
|
||
return m_x11Manager->findWindowByXid(xid);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::findWindowByXidK 通过xid获取窗口 TODO wayland和x11下窗口尽量完全剥离, 不应该存在通过xid查询wayland窗口的情况
|
||
* @param xid
|
||
* @return
|
||
*/
|
||
WindowInfoK *TaskManager::findWindowByXidK(XWindow xid)
|
||
{
|
||
return m_waylandManager->findWindowByXid(xid);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isWindowDockOverlapX 判断X环境下窗口和任务栏是否重叠
|
||
* @param xid
|
||
* @return
|
||
* 计算重叠条件:
|
||
* 1 窗口类型非桌面desktop
|
||
* 2 窗口透明度非0
|
||
* 3 窗口显示在当前工作区域
|
||
* 4 窗口和任务栏rect存在重叠区域
|
||
*/
|
||
bool TaskManager::isWindowDockOverlapX(XWindow xid)
|
||
{
|
||
// 检查窗口类型
|
||
auto desktopType = XCB->getAtom("_NET_WM_WINDOW_TYPE_DESKTOP");
|
||
for (auto ty : XCB->getWMWindoType(xid)) {
|
||
if (ty == desktopType) {
|
||
// 不处理桌面窗口属性
|
||
return false;
|
||
}
|
||
}
|
||
|
||
// TODO 检查窗口透明度
|
||
// 检查窗口是否显示
|
||
auto wmHiddenType = XCB->getAtom("_NET_WM_STATE_HIDDEN");
|
||
for (auto ty : XCB->getWMState(xid)) {
|
||
if (ty == wmHiddenType) {
|
||
// 不处理隐藏的窗口属性
|
||
return false;
|
||
}
|
||
}
|
||
|
||
// 检查窗口是否在当前工作区
|
||
uint32_t wmDesktop = XCB->getWMDesktop(xid);
|
||
uint32_t currentDesktop = XCB->getCurrentWMDesktop();
|
||
if (wmDesktop != currentDesktop) {
|
||
qInfo() << "isWindowDockOverlapX: wmDesktop:" << wmDesktop << " is not equal to currentDesktop:" << currentDesktop;
|
||
return false;
|
||
}
|
||
|
||
// 检查窗口和任务栏窗口是否存在重叠
|
||
auto winRect = XCB->getWindowGeometry(xid);
|
||
return hasInterSectionX(winRect, m_frontendWindowRect);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::hasInterSectionX 检查窗口重叠区域
|
||
* @param windowRect 活动窗口
|
||
* @param dockRect 任务栏窗口
|
||
* @return
|
||
*/
|
||
bool TaskManager::hasInterSectionX(const Geometry &windowRect, QRect dockRect)
|
||
{
|
||
int ltX = std::max(int(windowRect.x), dockRect.x());
|
||
int ltY = std::max(int(windowRect.y), dockRect.y());
|
||
int rbX = std::min(windowRect.x + windowRect.width, dockRect.x() + dockRect.width());
|
||
int rbY = std::min(windowRect.y + windowRect.height, dockRect.y() + dockRect.height());
|
||
|
||
return (ltX < rbX) && (ltY < rbY);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isWindowDockOverlapK 判断Wayland环境下窗口和任务栏是否重叠
|
||
* @param info
|
||
* @return
|
||
*/
|
||
bool TaskManager::isWindowDockOverlapK(WindowInfoBase *info)
|
||
{
|
||
WindowInfoK *infoK = static_cast<WindowInfoK *>(info);
|
||
if (!infoK) {
|
||
qInfo() << "isWindowDockOverlapK: infoK is nullptr";
|
||
return false;
|
||
}
|
||
|
||
DockRect rect = infoK->getGeometry();
|
||
bool isActiveWin = infoK->getPlasmaWindow()->IsActive();
|
||
QString appId = infoK->getAppId();
|
||
if (!isActiveWin) {
|
||
qInfo() << "isWindowDockOverlapK: check window " << appId << " is not active";
|
||
return false;
|
||
}
|
||
|
||
QStringList appList = {"dde-desktop", "dde-lock", "dde-shutdown"};
|
||
if (appList.contains(appId)) {
|
||
qInfo() << "isWindowDockOverlapK: appId in white list";
|
||
return false;
|
||
}
|
||
|
||
return hasInterSectionK(rect, m_frontendWindowRect);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::hasInterSectionK Wayland环境下判断活动窗口和任务栏区域是否重叠
|
||
* @param windowRect 活动窗口
|
||
* @param dockRect 任务栏窗口
|
||
* @return
|
||
*/
|
||
bool TaskManager::hasInterSectionK(const DockRect &windowRect, QRect dockRect)
|
||
{
|
||
int position = getPosition();
|
||
int ltX = std::max(windowRect.x, dockRect.x());
|
||
int ltY = std::max(windowRect.y, dockRect.y());
|
||
int rbX = std::min(int(windowRect.x + windowRect.w), dockRect.x() + dockRect.width());
|
||
int rbY = std::min(int(windowRect.y + windowRect.h), dockRect.y() + dockRect.height());
|
||
|
||
if (position == int(Position::Left) || position == int(Position::Right))
|
||
return ltX <= rbX && ltY < rbY;
|
||
|
||
if (position == int(Position::Top) || position == int(Position::Bottom))
|
||
return ltX < rbX && ltY <= rbY;
|
||
|
||
return ltX < rbX && ltY < rbY;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDockedEntryByDesktopFile 获取应用实例
|
||
* @param desktopFile desktopFile文件全路径
|
||
* @return
|
||
*/
|
||
Entry *TaskManager::getDockedEntryByDesktopFile(const QString &desktopFile)
|
||
{
|
||
return m_entries->getDockedEntryByDesktopFile(desktopFile);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::shouldHideOnSmartHideMode 判断智能隐藏模式下当前任务栏是否应该隐藏
|
||
* @return
|
||
*/
|
||
bool TaskManager::shouldHideOnSmartHideMode()
|
||
{
|
||
if (!m_activeWindow || m_ddeLauncherVisible || m_trayGridWidgetVisible)
|
||
return false;
|
||
|
||
if (!m_isWayland) {
|
||
XWindow activeWinId = m_activeWindow->getXid();
|
||
|
||
// dde launcher is invisible, but it is still active window
|
||
WMClass winClass = XCB->getWMClass(activeWinId);
|
||
if (winClass.instanceName.size() > 0 && winClass.instanceName.c_str() == ddeLauncherWMClass) {
|
||
qInfo() << "shouldHideOnSmartHideMode: active window is dde launcher";
|
||
return false;
|
||
}
|
||
|
||
QVector<XWindow> list = getActiveWinGroup(activeWinId);
|
||
for (XWindow xid : list) {
|
||
if (isWindowDockOverlapX(xid)) {
|
||
qInfo() << "shouldHideOnSmartHideMode: window has overlap";
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
return isWindowDockOverlapK(m_activeWindow);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getActiveWinGroup
|
||
* @param xid
|
||
* @return
|
||
*/
|
||
QVector<XWindow> TaskManager::getActiveWinGroup(XWindow xid)
|
||
{
|
||
QVector<XWindow> ret;
|
||
ret.push_back(xid);
|
||
|
||
std::list<XWindow> winList = XCB->getClientListStacking();
|
||
if (winList.empty()
|
||
|| !std::any_of(winList.begin(), winList.end(), [&](XWindow id) { return id == xid;}) // not found active window in clientListStacking"
|
||
|| *winList.begin() == 0) // root window
|
||
return ret;
|
||
|
||
uint32_t apid = XCB->getWMPid(xid);
|
||
XWindow aleaderWin = XCB->getWMClientLeader(xid);
|
||
for (auto winId : winList) {
|
||
if (winId == xid)
|
||
break;
|
||
|
||
uint32_t pid = XCB->getWMPid(winId);
|
||
// same pid
|
||
if (apid != 0 && pid == apid) {
|
||
// ok
|
||
ret.push_back(winId);
|
||
continue;
|
||
}
|
||
|
||
WMClass wmClass = XCB->getWMClass(winId);
|
||
// same wmclass
|
||
if (wmClass.className.size() > 0 && wmClass.className.c_str() == frontendWindowWmClass) {
|
||
// skip over fronted window
|
||
continue;
|
||
}
|
||
|
||
uint32_t leaderWin = XCB->getWMClientLeader(winId);
|
||
// same leaderWin
|
||
if (aleaderWin != 0 && aleaderWin == leaderWin) {
|
||
// ok
|
||
ret.push_back(winId);
|
||
continue;
|
||
}
|
||
|
||
// above window
|
||
XWindow aboveWinId = 0;
|
||
for (auto iter = winList.begin(); iter != winList.end(); iter++) {
|
||
if (*iter == winId) {
|
||
aboveWinId = *++iter;
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (aboveWinId == 0)
|
||
continue;
|
||
|
||
XWindow aboveWinTransientFor = XCB->getWMTransientFor(aboveWinId);
|
||
if (aboveWinTransientFor != 0 && aboveWinTransientFor == winId) {
|
||
// ok
|
||
ret.push_back(winId);
|
||
continue;
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::updateHideState 更新任务栏隐藏状态
|
||
* @param delay
|
||
*/
|
||
void TaskManager::updateHideState(bool delay)
|
||
{
|
||
if (m_ddeLauncherVisible || m_trayGridWidgetVisible) {
|
||
setPropHideState(HideState::Show);
|
||
return;
|
||
}
|
||
|
||
HideMode mode = SETTING->getHideMode();
|
||
switch (mode) {
|
||
case HideMode::KeepShowing:
|
||
setPropHideState(HideState::Show);
|
||
break;
|
||
case HideMode::KeepHidden:
|
||
setPropHideState(HideState::Hide);
|
||
break;
|
||
case HideMode::SmartHide:
|
||
qInfo() << "reset smart hide mode timer " << delay;
|
||
m_smartHideTimer->start(delay ? smartHideTimerDelay : 0);
|
||
break;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setPropHideMode 设置隐藏属性
|
||
* @param state
|
||
*/
|
||
void TaskManager::setPropHideState(HideState state)
|
||
{
|
||
if (state == HideState::Unknown) {
|
||
qInfo() << "setPropHideState: unknown mode";
|
||
return;
|
||
}
|
||
|
||
if (state != m_hideState) {
|
||
qDebug() << "current hide state: " << m_hideState;
|
||
m_hideState = state;
|
||
Q_EMIT hideStateChanged(m_hideState);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::attachOrDetachWindow 关联或分离窗口
|
||
* @param info
|
||
*/
|
||
void TaskManager::attachOrDetachWindow(WindowInfoBase *info)
|
||
{
|
||
if (!info)
|
||
return;
|
||
|
||
XWindow winId = info->getXid();
|
||
bool shouldDock = shouldShowOnDock(info);
|
||
qInfo() << "attachOrDetachWindow: shouldDock " << shouldDock;
|
||
|
||
// 顺序解析窗口合并或分离操作
|
||
Entry *entry = info->getEntry();
|
||
if (entry) {
|
||
// detach
|
||
if (!shouldDock)
|
||
detachWindow(info);
|
||
else
|
||
qInfo() << "detach operate: window " << winId << "don't need to detach";
|
||
} else {
|
||
// attach
|
||
if (info->getEntryInnerId().isEmpty()) {
|
||
// 窗口entryInnerId为空表示未识别,需要识别窗口并创建entryInnerId
|
||
qInfo() << "attach operate: window " << winId << " entryInnerId is empty, now call IdentifyWindow";
|
||
QString innerId;
|
||
AppInfo *appInfo = m_windowIdentify->identifyWindow(info, innerId);
|
||
// 窗口entryInnerId即AppInfo的innerId, 用来将窗口和应用绑定关系
|
||
info->setEntryInnerId(innerId);
|
||
info->setAppInfo(appInfo);
|
||
markAppLaunched(appInfo);
|
||
} else {
|
||
qInfo() << "attach operate: window " << winId << "has been identified";
|
||
}
|
||
|
||
// winInfo初始化后影响判断是否在任务栏显示图标,需判断
|
||
if (shouldShowOnDock(info))
|
||
attachWindow(info);
|
||
}
|
||
|
||
// 在新增窗口后,同步最近打开应用到com.deepin.dde.dock.json的DConfig配置文件中
|
||
updateRecentApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::attachWindow 关联窗口
|
||
* @param info 窗口信息
|
||
*/
|
||
void TaskManager::attachWindow(WindowInfoBase *info)
|
||
{
|
||
// TODO: entries中存在innerid为空的entry, 导致后续新应用通过innerid获取应用一直能获取到
|
||
Entry *entry = m_entries->getByInnerId(info->getEntryInnerId());
|
||
if (entry) {
|
||
// entry existed
|
||
entry->attachWindow(info);
|
||
} else {
|
||
m_entries->removeLastRecent();
|
||
entry = new Entry(this, info->getAppInfo(), info->getEntryInnerId());
|
||
if (entry->attachWindow(info)) {
|
||
m_entries->append(entry);
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::detachWindow 分离窗口
|
||
* @param info 窗口信息
|
||
*/
|
||
void TaskManager::detachWindow(WindowInfoBase *info)
|
||
{
|
||
Entry *entry = m_entries->getByWindowId(info->getXid());
|
||
if (!entry)
|
||
return;
|
||
|
||
if (entry->detachWindow(info))
|
||
removeEntryFromDock(entry);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::launchApp 启动应用
|
||
* @param timestamp 时间
|
||
* @param files 应用打开文件
|
||
*/
|
||
void TaskManager::launchApp(const QString desktopFile, uint32_t timestamp, QStringList files)
|
||
{
|
||
m_dbusHandler->launchApp(desktopFile, timestamp, files);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::launchAppAction 启动应用响应
|
||
* @param timestamp
|
||
* @param file
|
||
* @param section
|
||
*/
|
||
void TaskManager::launchAppAction(const QString desktopFile, QString action, uint32_t timestamp)
|
||
{
|
||
m_dbusHandler->launchAppAction(desktopFile, action, timestamp);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::is3DWM 当前窗口模式 2D/3D
|
||
* @return
|
||
*/
|
||
bool TaskManager::is3DWM()
|
||
{
|
||
bool ret = false;
|
||
if (m_wmName.isEmpty())
|
||
m_wmName = m_dbusHandler->getCurrentWM();
|
||
|
||
if (m_wmName == "deepin wm")
|
||
ret = true;
|
||
|
||
return ret;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isWaylandEnv 当前环境
|
||
* @return
|
||
*/
|
||
bool TaskManager::isWaylandEnv()
|
||
{
|
||
return m_isWayland;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::handleActiveWindowChangedK 处理活动窗口改变事件 wayland环境
|
||
* @param activeWin
|
||
* @return
|
||
*/
|
||
WindowInfoK *TaskManager::handleActiveWindowChangedK(uint activeWin)
|
||
{
|
||
return m_waylandManager->findWindowById(activeWin);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::handleActiveWindowChanged 处理活动窗口改变事件 X11环境
|
||
* @param info
|
||
*/
|
||
void TaskManager::handleActiveWindowChanged(WindowInfoBase *info)
|
||
{
|
||
qInfo() << "handleActiveWindowChanged";
|
||
if (!info) {
|
||
m_activeWindowOld = info;
|
||
m_activeWindow = nullptr;
|
||
return;
|
||
}
|
||
|
||
m_activeWindow = info;
|
||
XWindow winId = m_activeWindow->getXid();
|
||
m_entries->handleActiveWindowChanged(winId);
|
||
updateHideState(true);
|
||
}
|
||
|
||
/**
|
||
* @brief Dock::saveDockedApps 保存驻留应用信息
|
||
*/
|
||
void TaskManager::saveDockedApps()
|
||
{
|
||
QStringList dockedApps;
|
||
for (auto entry : m_entries->filterDockedEntries()) {
|
||
QString path = entry->getAppInfo()->getFileName();
|
||
dockedApps << path;
|
||
}
|
||
|
||
SETTING->setDockedApps(dockedApps);
|
||
|
||
// 在驻留任务栏的时候,同时更新最近打开应用的信息
|
||
updateRecentApps();
|
||
}
|
||
|
||
void TaskManager::updateRecentApps()
|
||
{
|
||
QStringList unDockedApps;
|
||
QList<Entry *> recentEntrys = m_entries->unDockedEntries();
|
||
for (Entry *entry : recentEntrys) {
|
||
if (shouldShowEntry(entry)) {
|
||
unDockedApps << entry->getAppInfo()->getFileName();
|
||
}
|
||
}
|
||
|
||
// 保存未驻留的应用作为最近打开的应用
|
||
SETTING->setRecentApps(unDockedApps);
|
||
}
|
||
|
||
void TaskManager::removeEntryFromDock(Entry *entry)
|
||
{
|
||
// 如果是最近打开应用
|
||
if (m_entries->shouldInRecent()) {
|
||
// 更新entry的导出窗口信息
|
||
entry->updateExportWindowInfos();
|
||
// 更新entry的右键菜单的信息
|
||
entry->updateMenu();
|
||
// 更新entry的当前窗口的信息
|
||
entry->setCurrentWindowInfo(nullptr);
|
||
updateRecentApps();
|
||
// 如果是高效模式,则发送消息或者关闭了显示最近应用的功能,则从任务栏移除
|
||
// 或者时尚模式显示最近应用时,当前应用不应该驻留最近应用时,需要移除
|
||
if ((SETTING->getDisplayMode() == DisplayMode::Efficient
|
||
|| !m_showRecent) && !entry->getIsDocked()) {
|
||
Q_EMIT entryRemoved(entry->getId());
|
||
} else if (SETTING->getDisplayMode() == DisplayMode::Fashion && m_showRecent && !entry->getIsDocked()) {
|
||
if (shouldShowEntry(entry)) {
|
||
return;
|
||
}
|
||
removeAppEntry(entry);
|
||
updateRecentApps();
|
||
}
|
||
} else {
|
||
removeAppEntry(entry);
|
||
updateRecentApps();
|
||
}
|
||
}
|
||
|
||
void TaskManager::onShowRecentChanged(bool visible)
|
||
{
|
||
if (m_showRecent == visible)
|
||
return;
|
||
|
||
m_showRecent = visible;
|
||
m_entries->updateShowRecent();
|
||
Q_EMIT showRecentChanged(visible);
|
||
}
|
||
|
||
void TaskManager::onShowMultiWindowChanged(bool visible)
|
||
{
|
||
if (m_showMultiWindow == visible)
|
||
return;
|
||
|
||
m_showMultiWindow = visible;
|
||
Q_EMIT showMultiWindowChanged(visible);
|
||
}
|
||
|
||
/** 移除应用实例
|
||
* @brief TaskManager::removeAppEntry
|
||
* @param entry
|
||
*/
|
||
void TaskManager::removeAppEntry(Entry *entry)
|
||
{
|
||
if (entry) {
|
||
m_entries->remove(entry);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::handleWindowGeometryChanged 智能隐藏模式下窗口矩形变化,同步更新任务栏隐藏状态
|
||
*/
|
||
void TaskManager::handleWindowGeometryChanged()
|
||
{
|
||
if (SETTING->getHideMode() == HideMode::SmartHide)
|
||
return;
|
||
|
||
updateHideState(false);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getEntryByWindowId 根据窗口id获取应用实例
|
||
* @param windowId
|
||
* @return
|
||
*/
|
||
Entry *TaskManager::getEntryByWindowId(XWindow windowId)
|
||
{
|
||
return m_entries->getByWindowId(windowId);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDesktopFromWindowByBamf 通过bamf软件服务获取指定窗口的desktop文件
|
||
* @param windowId
|
||
* @return
|
||
*/
|
||
QString TaskManager::getDesktopFromWindowByBamf(XWindow windowId)
|
||
{
|
||
return m_dbusHandler->getDesktopFromWindowByBamf(windowId);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::registerWindowWayland 注册wayland窗口
|
||
* @param objPath
|
||
*/
|
||
void TaskManager::registerWindowWayland(const QString &objPath)
|
||
{
|
||
return m_waylandManager->registerWindow(objPath);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::unRegisterWindowWayland 取消注册wayland窗口
|
||
* @param objPath
|
||
*/
|
||
void TaskManager::unRegisterWindowWayland(const QString &objPath)
|
||
{
|
||
return m_waylandManager->unRegisterWindow(objPath);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::isShowingDesktop
|
||
* @return
|
||
*/
|
||
bool TaskManager::isShowingDesktop()
|
||
{
|
||
return m_dbusHandler->wlShowingDesktop();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::identifyWindow 识别窗口
|
||
* @param winInfo
|
||
* @param innerId
|
||
* @return
|
||
*/
|
||
AppInfo *TaskManager::identifyWindow(WindowInfoBase *winInfo, QString &innerId)
|
||
{
|
||
return m_windowIdentify->identifyWindow(winInfo, innerId);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::markAppLaunched 标识应用已启动
|
||
* @param appInfo
|
||
*/
|
||
void TaskManager::markAppLaunched(AppInfo *appInfo)
|
||
{
|
||
if (!appInfo || !appInfo->isValidApp())
|
||
return;
|
||
|
||
QString desktopFile = appInfo->getFileName();
|
||
qInfo() << "markAppLaunched: desktopFile is " << desktopFile;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getForceQuitAppStatus 获取强制关闭应用状态
|
||
* @return
|
||
*/
|
||
ForceQuitAppMode TaskManager::getForceQuitAppStatus()
|
||
{
|
||
return m_forceQuitAppStatus;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getWinIconPreferredApps 获取推荐的应用窗口图标
|
||
* @return
|
||
*/
|
||
QVector<QString> TaskManager::getWinIconPreferredApps()
|
||
{
|
||
return SETTING->getWinIconPreferredApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::handleLauncherItemDeleted 处理launcher item被删除信号
|
||
* @param itemPath
|
||
*/
|
||
void TaskManager::handleLauncherItemDeleted(QString itemPath)
|
||
{
|
||
for (auto entry : m_entries->filterDockedEntries()) {
|
||
if (entry->getFileName() == itemPath) {
|
||
undockEntry(entry);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::handleLauncherItemUpdated 在收到 launcher item 更新的信号后,需要更新相关信息,包括 appInfo、innerId、名称、图标、菜单。
|
||
* @param itemPath
|
||
*/
|
||
void TaskManager::handleLauncherItemUpdated(QString itemPath)
|
||
{
|
||
Entry *entry = m_entries->getByDesktopFilePath(itemPath);
|
||
if (!entry)
|
||
return;
|
||
|
||
AppInfo *app = new AppInfo(itemPath);
|
||
entry->setAppInfo(app);
|
||
entry->setInnerId(app->getInnerId());
|
||
entry->updateName();
|
||
entry->updateMenu();
|
||
entry->forceUpdateIcon(); // 可能存在Icon图片改变,但Icon名称未改变的情况,因此强制发Icon的属性改变信号
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getFrontendWindowRect 获取任务栏rect
|
||
* @return
|
||
*/
|
||
QRect TaskManager::getFrontendWindowRect()
|
||
{
|
||
return m_frontendWindowRect;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDisplayMode 获取显示模式
|
||
* @return
|
||
*/
|
||
DisplayMode TaskManager::getDisplayMode()
|
||
{
|
||
return SETTING->getDisplayMode();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setDisplayMode 设置显示模式
|
||
* @param mode
|
||
*/
|
||
void TaskManager::setDisplayMode(int mode)
|
||
{
|
||
DisplayMode displayMode = static_cast<DisplayMode>(mode);
|
||
SETTING->setDisplayMode(displayMode);
|
||
m_entries->setDisplayMode(displayMode);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getDockedApps 获取驻留应用
|
||
* @return
|
||
*/
|
||
QStringList TaskManager::getDockedApps()
|
||
{
|
||
return SETTING->getDockedApps();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getEntries 获取驻留应用
|
||
* @return
|
||
*/
|
||
QList<Entry*> TaskManager::getEntries()
|
||
{
|
||
QList<Entry*> ret;
|
||
bool showRecent = getDisplayMode() == DisplayMode::Fashion && DockSettings::instance()->showRecent();
|
||
for (auto entry : m_entries->getEntries()) {
|
||
if (showRecent || entry->getIsDocked() || entry->hasWindow()) ret << entry;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getHideMode 获取隐藏模式
|
||
* @return
|
||
*/
|
||
HideMode TaskManager::getHideMode()
|
||
{
|
||
return SETTING->getHideMode();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setHideMode 设置隐藏模式
|
||
* @param mode
|
||
*/
|
||
void TaskManager::setHideMode(HideMode mode)
|
||
{
|
||
SETTING->setHideMode(mode);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getHideState 获取隐藏状态
|
||
* @return
|
||
*/
|
||
HideState TaskManager::getHideState()
|
||
{
|
||
return m_hideState;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setHideState 设置任务栏隐藏状态
|
||
* @param state
|
||
*/
|
||
void TaskManager::setHideState(HideState state)
|
||
{
|
||
m_hideState = state;
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getHideTimeout 获取执行隐藏动作超时时间
|
||
* @return
|
||
*/
|
||
uint TaskManager::getHideTimeout()
|
||
{
|
||
return SETTING->getHideTimeout();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setHideTimeout 设置执行隐藏动作超时时间
|
||
* @param timeout
|
||
*/
|
||
void TaskManager::setHideTimeout(uint timeout)
|
||
{
|
||
SETTING->setHideTimeout(timeout);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getIconSize 获取应用图标大小
|
||
* @return
|
||
*/
|
||
uint TaskManager::getIconSize()
|
||
{
|
||
return SETTING->getIconSize();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setIconSize 设置应用图标大小
|
||
* @param size
|
||
*/
|
||
void TaskManager::setIconSize(uint size)
|
||
{
|
||
SETTING->setIconSize(size);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getPosition 获取当前任务栏位置
|
||
* @return
|
||
*/
|
||
int TaskManager::getPosition()
|
||
{
|
||
return int(SETTING->getPositionMode());
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setPosition 设置任务栏位置
|
||
* @param position
|
||
*/
|
||
void TaskManager::setPosition(int position)
|
||
{
|
||
SETTING->setPositionMode(Position(position));
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getShowTimeout 获取显示超时接口
|
||
* @return
|
||
*/
|
||
uint TaskManager::getShowTimeout()
|
||
{
|
||
return SETTING->getShowTimeout();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setShowTimeout 设置显示超时
|
||
* @param timeout
|
||
*/
|
||
void TaskManager::setShowTimeout(uint timeout)
|
||
{
|
||
return SETTING->setShowTimeout(timeout);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getWindowSizeEfficient 获取任务栏高效模式大小
|
||
* @return
|
||
*/
|
||
uint TaskManager::getWindowSizeEfficient()
|
||
{
|
||
return SETTING->getWindowSizeEfficient();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setWindowSizeEfficient 设置任务栏高效模式大小
|
||
* @param size
|
||
*/
|
||
void TaskManager::setWindowSizeEfficient(uint size)
|
||
{
|
||
SETTING->setWindowSizeEfficient(size);
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::getWindowSizeFashion 获取任务栏时尚模式大小
|
||
* @return
|
||
*/
|
||
uint TaskManager::getWindowSizeFashion()
|
||
{
|
||
return SETTING->getWindowSizeFashion();
|
||
}
|
||
|
||
/**
|
||
* @brief TaskManager::setWindowSizeFashion 设置任务栏时尚模式大小
|
||
* @param size
|
||
*/
|
||
void TaskManager::setWindowSizeFashion(uint size)
|
||
{
|
||
SETTING->setWindowSizeFashion(size);
|
||
}
|
||
|
||
void TaskManager::previewWindow(uint xid)
|
||
{
|
||
m_dbusHandler->previewWindow(xid);
|
||
}
|
||
|
||
void TaskManager::cancelPreviewWindow()
|
||
{
|
||
m_dbusHandler->cancelPreviewWindow();
|
||
}
|
||
|
||
bool TaskManager::showMultiWindow() const
|
||
{
|
||
return m_showMultiWindow;
|
||
}
|