mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00

在AM端处理移除驻留的时候,将需要移除的应用放到列表的最后面,前端在处理应用app发生变化的时候,从后端获取应用的排序,并按照正确的顺序进行排序 Log: 修复驻留最近使用图标无法添加到末尾的问题 Influence: 任务栏时尚模式下,在最近使用区域移除驻留,观察移除的驻留是否在区域的末尾 Bug: https://pms.uniontech.com/bug-view-147643.html Change-Id: I127aea93d9ff5718aa6bd1989a328b11dbd95a2f
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
/*
|
|
* Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: donghualin <donghualin@uniontech.com>
|
|
*
|
|
* Maintainer: donghualin <donghualin@uniontech.com>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef RECENTAPPHELPER_H
|
|
#define RECENTAPPHELPER_H
|
|
|
|
#include "constants.h"
|
|
|
|
#include <QObject>
|
|
|
|
class DockItem;
|
|
class QWidget;
|
|
|
|
/** 用来管理最近打开区域和APP应用区域交互的类
|
|
* @brief The RecentAppManager class
|
|
*/
|
|
|
|
class RecentAppHelper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RecentAppHelper(QWidget *appWidget, QWidget *recentWidget, QObject *parent = nullptr);
|
|
void setDisplayMode(Dock::DisplayMode displayMode);
|
|
void resetAppInfo();
|
|
void addAppItem(int index, DockItem *appItem);
|
|
void removeAppItem(DockItem *dockItem);
|
|
bool recentIsVisible() const;
|
|
bool dockAppIsVisible() const;
|
|
|
|
Q_SIGNALS:
|
|
void requestUpdate();
|
|
void recentVisibleChanged(bool); // 最近区域是否可见发生变化的信号
|
|
void dockAppVisibleChanged(bool); // 驻留应用区域是否可见发生变化的信号
|
|
|
|
protected:
|
|
bool eventFilter(QObject *watched, QEvent *event) override;
|
|
|
|
private:
|
|
bool appInRecent(DockItem *item) const;
|
|
void addAppAreaItem(int index, DockItem *wdg);
|
|
void addRecentAreaItem(int index, DockItem *wdg);
|
|
void updateRecentVisible();
|
|
void updateDockAppVisible(bool lastVisible);
|
|
|
|
void removeRecentAreaItem(DockItem *wdg);
|
|
void removeAppAreaItem(DockItem *wdg);
|
|
|
|
QList<DockItem *> dockItemToAppArea() const;
|
|
void resetDockItems();
|
|
int getDockItemIndex(DockItem *dockItem, bool isRecent) const;
|
|
|
|
QList<DockItem *> dockItems(bool isRecent) const;
|
|
|
|
private Q_SLOTS:
|
|
void onIsDockChanged();
|
|
|
|
private:
|
|
QWidget *m_appWidget;
|
|
QWidget *m_recentWidget;
|
|
|
|
QList<DockItem *> m_sequentDockItems;
|
|
|
|
Dock::DisplayMode m_displayMode;
|
|
};
|
|
|
|
#endif // RECENTAPPHELPER_H
|