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

1.gsettings不存在的情况下,或者值为true的情况下,飞行模式表现和需求一致。 2.如果gsettings值存在且为false,那么飞行模式始终不显示。 3.gsettings的值除手动修改外,不应有其他修改方式 Log: 修复飞行模式显示问题 Bug: https://pms.uniontech.com/zentao/bug-view-112804.html Influence: 任务栏-飞行模式插件-显示效果与需求保持一致 Change-Id: Iec07689cc77db8b80e6974d6171511a97e22671d
128 lines
3.2 KiB
C++
128 lines
3.2 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)
|
|
{
|
|
m_proxyInter = proxyInter;
|
|
|
|
if (!pluginIsDisable())
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
|
|
refreshAirplaneEnableState();
|
|
}
|
|
|
|
void AirplaneModePlugin::pluginStateSwitched()
|
|
{
|
|
m_proxyInter->saveValue(this, STATE_KEY, pluginIsDisable());
|
|
|
|
refreshAirplaneEnableState();
|
|
}
|
|
|
|
bool AirplaneModePlugin::pluginIsDisable()
|
|
{
|
|
return !m_proxyInter->getValue(this, STATE_KEY, true).toBool();
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
|