mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

需要关联设备信号,刷新飞行模式 Log: 飞行模式热插拔显示和隐藏 Influence: 飞行模式 Task: https://pms.uniontech.com/bug-view-155145.html
253 lines
7.5 KiB
C++
253 lines
7.5 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"
|
|
#include <DConfig>
|
|
|
|
#define AIRPLANEMODE_KEY "airplane-mode-key"
|
|
#define STATE_KEY "enable"
|
|
DCORE_USE_NAMESPACE
|
|
|
|
AirplaneModePlugin::AirplaneModePlugin(QObject *parent)
|
|
: QObject(parent)
|
|
, m_item(new AirplaneModeItem)
|
|
, m_dconfig(DConfig::create("org.deepin.dde.network", "org.deepin.dde.network", QString(), this))
|
|
{
|
|
connect(m_item, &AirplaneModeItem::airplaneEnableChanged, this, &AirplaneModePlugin::onAirplaneEnableChanged);
|
|
connect(m_dconfig, &DConfig::valueChanged, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
}
|
|
|
|
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 (getAirplaneDconfig()) {
|
|
m_networkInter = new NetworkInter("com.deepin.daemon.Network", "/com/deepin/daemon/Network", QDBusConnection::sessionBus(), this);
|
|
connect(m_networkInter, &NetworkInter::WirelessAccessPointsChanged, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
|
|
m_bluetoothInter = new BluetoothInter("com.deepin.daemon.Bluetooth", "/com/deepin/daemon/Bluetooth", QDBusConnection::sessionBus(), this);
|
|
connect(m_bluetoothInter, &BluetoothInter::AdapterAdded, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
connect(m_bluetoothInter, &BluetoothInter::AdapterRemoved, this, &AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange);
|
|
}
|
|
|
|
if (!pluginIsDisable()) {
|
|
if (supportAirplaneMode()) {
|
|
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;
|
|
}
|
|
|
|
QWidget *AirplaneModePlugin::itemPopupApplet(const QString &itemKey)
|
|
{
|
|
if (!supportAirplaneMode()) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (itemKey == AIRPLANEMODE_KEY) {
|
|
return m_item->popupApplet();
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const QString AirplaneModePlugin::itemContextMenu(const QString &itemKey)
|
|
{
|
|
if (!supportAirplaneMode()) {
|
|
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::refreshAirplaneEnableState()
|
|
{
|
|
onAirplaneEnableChanged(m_item->airplaneEnable());
|
|
}
|
|
|
|
void AirplaneModePlugin::onAirplaneEnableChanged(bool enable)
|
|
{
|
|
if (!m_proxyInter)
|
|
return;
|
|
|
|
if (supportAirplaneMode()) {
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
if (enable) {
|
|
m_proxyInter->saveValue(this, STATE_KEY, true);
|
|
}
|
|
else {
|
|
m_proxyInter->saveValue(this, STATE_KEY, false);
|
|
}
|
|
} else {
|
|
if (enable) {
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
} else {
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
}
|
|
}
|
|
}
|
|
|
|
void AirplaneModePlugin::onWirelessAccessPointsOrAdapterChange()
|
|
{
|
|
if (!supportAirplaneMode()) {
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
|
} else {
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
|
}
|
|
}
|
|
|
|
bool AirplaneModePlugin::supportAirplaneMode() const
|
|
{
|
|
// dde-dconfig配置优先级高于设备优先级
|
|
bool bAirplane = false;
|
|
if (m_dconfig && m_dconfig->isValid()) {
|
|
bAirplane = m_dconfig->value("networkAirplaneMode", false).toBool();
|
|
}
|
|
if (!bAirplane) {
|
|
return bAirplane;
|
|
}
|
|
|
|
// 蓝牙和无线网络,只要有其中一个就允许显示飞行模式
|
|
QDBusInterface inter("com.deepin.system.Bluetooth",
|
|
"/com/deepin/system/Bluetooth",
|
|
"com.deepin.system.Bluetooth",
|
|
QDBusConnection::systemBus());
|
|
if (inter.isValid()) {
|
|
QDBusReply<QString> reply = inter.call("GetAdapters");
|
|
QString replyStr = reply.value();
|
|
QJsonDocument json = QJsonDocument::fromJson(replyStr.toUtf8());
|
|
QJsonArray array = json.array();
|
|
if (array.size() > 0 && !array[0].toObject()["Path"].toString().isEmpty()) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
QDBusInterface networkInter("org.freedesktop.NetworkManager",
|
|
"/org/freedesktop/NetworkManager",
|
|
"org.freedesktop.NetworkManager",
|
|
QDBusConnection::systemBus());
|
|
if (networkInter.isValid()) {
|
|
QDBusReply<QList<QDBusObjectPath>> reply = networkInter.call("GetAllDevices");
|
|
QList<QDBusObjectPath> replyStrList = reply.value();
|
|
for (QDBusObjectPath objPath : replyStrList) {
|
|
QDBusInterface deviceInter("org.freedesktop.NetworkManager",
|
|
objPath.path(),
|
|
"org.freedesktop.NetworkManager.Device",
|
|
QDBusConnection::systemBus());
|
|
if (deviceInter.isValid()) {
|
|
QVariant reply = deviceInter.property("DeviceType");
|
|
// 2 NM_DEVICE_TYPE_WIFI
|
|
if (2 == reply.toUInt()) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool AirplaneModePlugin::getAirplaneDconfig() const
|
|
{
|
|
bool airplane = false;
|
|
if (m_dconfig && m_dconfig->isValid()) {
|
|
airplane = m_dconfig->value("networkAirplaneMode", false).toBool();
|
|
}
|
|
return airplane;
|
|
}
|
|
|
|
|