2023-02-16 13:51:55 +08:00
|
|
|
// Copyright (C) 2020 ~ 2022 Deepin Technology Co., Ltd.
|
|
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
2022-09-06 11:36:55 +08:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
2021-11-06 16:30:46 +08:00
|
|
|
|
|
|
|
#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)
|
|
|
|
{
|
2022-02-15 10:19:12 +08:00
|
|
|
connect(m_item, &AirplaneModeItem::airplaneEnableChanged, this, &AirplaneModePlugin::onAirplaneEnableChanged);
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString AirplaneModePlugin::pluginName() const
|
|
|
|
{
|
|
|
|
return "airplane-mode";
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString AirplaneModePlugin::pluginDisplayName() const
|
|
|
|
{
|
|
|
|
return tr("Airplane Mode");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::init(PluginProxyInterface *proxyInter)
|
|
|
|
{
|
2022-12-01 19:36:53 +08:00
|
|
|
if (m_proxyInter == proxyInter)
|
|
|
|
return;
|
2022-07-18 13:44:09 +08:00
|
|
|
|
2021-11-06 16:30:46 +08:00
|
|
|
m_proxyInter = proxyInter;
|
2022-07-10 15:44:44 +08:00
|
|
|
|
2022-12-01 19:36:53 +08:00
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
2022-07-14 15:56:51 +08:00
|
|
|
|
2022-07-26 09:51:17 +08:00
|
|
|
refreshAirplaneEnableState();
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AirplaneModePlugin::pluginStateSwitched()
|
|
|
|
{
|
2022-02-15 10:19:12 +08:00
|
|
|
refreshAirplaneEnableState();
|
2021-11-06 16:30:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
void AirplaneModePlugin::refreshAirplaneEnableState()
|
2022-01-05 11:13:49 +08:00
|
|
|
{
|
2022-02-15 10:19:12 +08:00
|
|
|
onAirplaneEnableChanged(m_item->airplaneEnable());
|
2022-01-05 11:13:49 +08:00
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
void AirplaneModePlugin::onAirplaneEnableChanged(bool enable)
|
2022-01-05 11:13:49 +08:00
|
|
|
{
|
|
|
|
if (!m_proxyInter)
|
|
|
|
return;
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
if (enable) {
|
2022-07-26 09:51:17 +08:00
|
|
|
m_proxyInter->itemAdded(this, AIRPLANEMODE_KEY);
|
2022-02-15 10:19:12 +08:00
|
|
|
m_proxyInter->saveValue(this, STATE_KEY, true);
|
|
|
|
}
|
|
|
|
else {
|
2022-07-18 13:44:09 +08:00
|
|
|
m_proxyInter->itemRemoved(this, AIRPLANEMODE_KEY);
|
2022-02-15 10:19:12 +08:00
|
|
|
m_proxyInter->saveValue(this, STATE_KEY, false);
|
2022-08-25 16:55:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-15 10:19:12 +08:00
|
|
|
|