mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

原因:电源按钮只会加载一次,在时尚模式下已经加载过,导致在高效模式下没有加载到任务栏的controller中 解决方案:将加载电源按钮的controller用一个单例的代理类来实现,FixedPluginController和DockPluginsController同时引用这个类来加载同一个插件 Log: 解决时尚模式下无法显示电源按钮的问题 Influence: 任务栏-查看高效模式下电源插件是否加载 Bug: https://pms.uniontech.com/bug-view-132733.html Change-Id: I80d0cb9c87e6e1a478410f53a35ccfce344677ea
94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* 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 ABSTRACTPLUGINSCONTROLLER_H
|
|
#define ABSTRACTPLUGINSCONTROLLER_H
|
|
|
|
#include "pluginproxyinterface.h"
|
|
#include "pluginloader.h"
|
|
|
|
#include <com_deepin_dde_daemon_dock.h>
|
|
|
|
#include <QPluginLoader>
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QDBusConnectionInterface>
|
|
|
|
using DockDaemonInter = com::deepin::dde::daemon::Dock;
|
|
|
|
class PluginsItemInterface;
|
|
class AbstractPluginsController : public QObject, PluginProxyInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AbstractPluginsController(QObject *parent = 0);
|
|
~ AbstractPluginsController() override;
|
|
|
|
// implements PluginProxyInterface
|
|
void saveValue(PluginsItemInterface *const itemInter, const QString &key, const QVariant &value) override;
|
|
const QVariant getValue(PluginsItemInterface *const itemInter, const QString &key, const QVariant& fallback = QVariant()) override;
|
|
void removeValue(PluginsItemInterface * const itemInter, const QStringList &keyList) override;
|
|
|
|
void itemAdded(PluginsItemInterface * const, const QString &) override {}
|
|
void itemUpdate(PluginsItemInterface * const, const QString &) override {}
|
|
void itemRemoved(PluginsItemInterface * const, const QString &) override {}
|
|
|
|
signals:
|
|
void pluginLoaderFinished();
|
|
|
|
protected:
|
|
virtual bool needLoad(PluginsItemInterface *) { return true; }
|
|
|
|
protected:
|
|
QMap<PluginsItemInterface *, QMap<QString, QObject *>> &pluginsMap();
|
|
QObject *pluginItemAt(PluginsItemInterface * const itemInter, const QString &itemKey) const;
|
|
PluginsItemInterface *pluginInterAt(const QString &itemKey);
|
|
PluginsItemInterface *pluginInterAt(QObject *destItem);
|
|
|
|
protected Q_SLOTS:
|
|
void startLoader(PluginLoader *loader);
|
|
|
|
private slots:
|
|
void displayModeChanged();
|
|
void positionChanged();
|
|
void loadPlugin(const QString &pluginFile);
|
|
void initPlugin(PluginsItemInterface *interface);
|
|
void refreshPluginSettings();
|
|
|
|
private:
|
|
bool eventFilter(QObject *o, QEvent *e) override;
|
|
|
|
private:
|
|
QDBusConnectionInterface *m_dbusDaemonInterface;
|
|
DockDaemonInter *m_dockDaemonInter;
|
|
|
|
// interface, "pluginloader", PluginLoader指针对象
|
|
QMap<PluginsItemInterface *, QMap<QString, QObject *>> m_pluginsMap;
|
|
|
|
// filepath, interface, loaded
|
|
QMap<QPair<QString, PluginsItemInterface *>, bool> m_pluginLoadMap;
|
|
|
|
QJsonObject m_pluginSettingsObject;
|
|
};
|
|
|
|
#endif // ABSTRACTPLUGINSCONTROLLER_H
|