mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-05-30 22:01:41 +00:00

V23接口改造适配 Log: V23接口改造适配 Influence: 无 Task: https://pms.uniontech.com/task-view-207483.html Change-Id: Ide530c023ea41f86fad2e8001ec67f1afaa897ab
104 lines
3.1 KiB
C++
104 lines
3.1 KiB
C++
/*
|
|
* Copyright (C) 2019 ~ 2019 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: wangshaojun <wangshaojun_cm@deepin.com>
|
|
*
|
|
* Maintainer: wangshaojun <wangshaojun_cm@deepin.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 DOCKITEMMANAGER_H
|
|
#define DOCKITEMMANAGER_H
|
|
|
|
#include "pluginsiteminterface.h"
|
|
#include "dockitem.h"
|
|
#include "appitem.h"
|
|
#include "placeholderitem.h"
|
|
#include "dbusutil.h"
|
|
|
|
#include <QObject>
|
|
|
|
class AppMultiItem;
|
|
class PluginsItem;
|
|
|
|
/**
|
|
* @brief The DockItemManager class
|
|
* 管理类,管理所有的应用数据,插件数据
|
|
*/
|
|
class DockItemManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static DockItemManager *instance(QObject *parent = nullptr);
|
|
|
|
const QList<QPointer<DockItem> > itemList() const;
|
|
bool appIsOnDock(const QString &appDesktop) const;
|
|
|
|
signals:
|
|
void itemInserted(const int index, DockItem *item) const;
|
|
void itemRemoved(DockItem *item) const;
|
|
void itemUpdated(DockItem *item) const;
|
|
void trayVisableCountChanged(const int &count) const;
|
|
void requestWindowAutoHide(const bool autoHide) const;
|
|
void requestRefershWindowVisible() const;
|
|
|
|
void requestUpdateDockItem() const;
|
|
|
|
public slots:
|
|
void refreshItemsIcon();
|
|
void itemMoved(DockItem *const sourceItem, DockItem *const targetItem);
|
|
void itemAdded(const QString &appDesktop, int idx);
|
|
|
|
private Q_SLOTS:
|
|
void onPluginLoadFinished();
|
|
void onPluginItemRemoved(PluginsItemInterface *itemInter);
|
|
void onPluginUpdate(PluginsItemInterface *itemInter);
|
|
|
|
void onAppWindowCountChanged();
|
|
void onShowMultiWindowChanged();
|
|
|
|
private:
|
|
explicit DockItemManager(QObject *parent = nullptr);
|
|
void appItemAdded(const QDBusObjectPath &path, const int index);
|
|
void appItemRemoved(const QString &appId);
|
|
void appItemRemoved(AppItem *appItem);
|
|
void updatePluginsItemOrderKey();
|
|
void reloadAppItems();
|
|
void manageItem(DockItem *item);
|
|
void pluginItemInserted(PluginsItem *item);
|
|
|
|
void updateMultiItems(AppItem *appItem, bool emitSignal = false);
|
|
bool multiWindowExist(quint32 winId) const;
|
|
bool needRemoveMultiWindow(AppMultiItem *multiItem) const;
|
|
|
|
private:
|
|
DockInter *m_appInter;
|
|
|
|
static DockItemManager *INSTANCE;
|
|
|
|
QList<QPointer<DockItem>> m_itemList;
|
|
QList<QString> m_appIDist;
|
|
QList<PluginsItemInterface *> m_pluginItems;
|
|
|
|
bool m_loadFinished; // 记录所有插件是否加载完成
|
|
|
|
static const QGSettings *m_appSettings;
|
|
static const QGSettings *m_activeSettings;
|
|
static const QGSettings *m_dockedSettings;
|
|
};
|
|
|
|
#endif // DOCKITEMMANAGER_H
|