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

需求:在新的需求中,通过从控制中心中勾选或者取消勾选插件的显示功能,不再从系统中移除插件,插件中无需通过配置的功能来决定是否加载插件,而变成在插件内部根据当前插件是否需要加载来决定是否加载,例如蓝牙,只要系统中存在蓝牙,就始终加载蓝牙插件 Log: 插件始终都要加载 Influence: 插入蓝牙观察是否有蓝牙图标 Bug: https://pms.uniontech.com/bug-view-175085.html Change-Id: I1a07ce0d6bd658a03e349e94283768082794684d
123 lines
3.0 KiB
C++
123 lines
3.0 KiB
C++
/*
|
|
* Copyright (C) 2020 ~ 2022 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: weizhixiang <weizhixiang@uniontech.com>
|
|
*
|
|
* Maintainer: weizhixiang <weizhixiang@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/>.
|
|
*/
|
|
|
|
#include "airplanemodeplugin.h"
|
|
#include "airplanemodeitem.h"
|
|
|
|
#define AIRPLANEMODE_KEY "airplane-mode-key"
|
|
#define STATE_KEY "enable"
|
|
|
|
AirplaneModePlugin::AirplaneModePlugin(QObject *parent)
|
|
: QObject(parent)
|
|
, m_item(new AirplaneModeItem)
|
|
{
|
|
connect(m_item, &AirplaneModeItem::airplaneEnableChanged, this, &AirplaneModePlugin::onAirplaneEnableChanged);
|
|
}
|
|
|
|
const QString AirplaneModePlugin::pluginName() const
|
|
{
|
|
return "airplane-mode";
|
|
}
|
|
|
|
const QString AirplaneModePlugin::pluginDisplayName() const
|
|
{
|
|
return tr("Airplane Mode");
|
|
}
|
|
|
|
void AirplaneModePlugin::init(PluginProxyInterface *proxyInter)
|
|
{
|
|
if (m_proxyInter == proxyInter)
|
|
return;
|
|
|
|
m_proxyInter = proxyInter;
|
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
refreshAirplaneEnableState();
|
|
}
|
|
|
|
void AirplaneModePlugin::pluginStateSwitched()
|
|
{
|
|
refreshAirplaneEnableState();
|
|
}
|
|
|
|
QWidget *AirplaneModePlugin::itemWidget(const QString &itemKey)
|
|
{
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
return m_item;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
QWidget *AirplaneModePlugin::itemTipsWidget(const QString &itemKey)
|
|
{
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
return m_item->tipsWidget();
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
int AirplaneModePlugin::itemSortKey(const QString &itemKey)
|
|
{
|
|
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
|
|
return m_proxyInter->getValue(this, key, 4).toInt();
|
|
}
|
|
|
|
void AirplaneModePlugin::setSortKey(const QString &itemKey, const int order)
|
|
{
|
|
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
|
|
m_proxyInter->saveValue(this, key, order);
|
|
}
|
|
|
|
void AirplaneModePlugin::refreshIcon(const QString &itemKey)
|
|
{
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
m_item->refreshIcon();
|
|
}
|
|
}
|
|
|
|
void AirplaneModePlugin::refreshAirplaneEnableState()
|
|
{
|
|
onAirplaneEnableChanged(m_item->airplaneEnable());
|
|
}
|
|
|
|
void AirplaneModePlugin::onAirplaneEnableChanged(bool enable)
|
|
{
|
|
if (!m_proxyInter)
|
|
return;
|
|
|
|
if (enable) {
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
m_proxyInter->saveValue(this, STATE_KEY, true);
|
|
}
|
|
else {
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
m_proxyInter->saveValue(this, STATE_KEY, false);
|
|
}
|
|
}
|
|
|
|
|