mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00

飞行模式关闭直接移除插件,反之,显示插件。 Log: Bug: https://pms.uniontech.com/zentao/bug-view-110011.html Influence: 飞行模式关闭直接隐藏图标,反之,显示图标。 Change-Id: Ibcd4878308a954760ae686972de07228732a0067
152 lines
3.7 KiB
C++
152 lines
3.7 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::removeItem, this, &AirplaneModePlugin::removePlugin);
|
|
connect(m_item, &AirplaneModeItem::addItem, this, &AirplaneModePlugin::addPlugin);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
void AirplaneModePlugin::pluginStateSwitched()
|
|
{
|
|
m_proxyInter->saveValue(this, STATE_KEY, pluginIsDisable());
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
QWidget *AirplaneModePlugin::itemPopupApplet(const QString &itemKey)
|
|
{
|
|
return nullptr; // 禁用左键点击功能
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
return m_item->popupApplet();
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const QString AirplaneModePlugin::itemContextMenu(const QString &itemKey)
|
|
{
|
|
return QString(); // 禁用右键菜单
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
return m_item->contextMenu();
|
|
}
|
|
|
|
return QString();
|
|
}
|
|
|
|
void AirplaneModePlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
|
|
{
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
m_item->invokeMenuItem(menuId, checked);
|
|
}
|
|
}
|
|
|
|
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::removePlugin()
|
|
{
|
|
if (!m_proxyInter)
|
|
return;
|
|
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
m_proxyInter->saveValue(this, STATE_KEY, false);
|
|
}
|
|
|
|
void AirplaneModePlugin::addPlugin()
|
|
{
|
|
if (!m_proxyInter)
|
|
return;
|
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
m_proxyInter->saveValue(this, STATE_KEY, true);
|
|
}
|
|
|
|
|