dde-dock/plugins/onboard/onboardplugin.cpp
donghualin 29647bf7a1 fix: 修改v20的接口为v23的接口
将所有用到的com.deepin相关的接口改成org.deepin相关的接口

Log:
Influence: 打开控制中心,鼠标移动唤醒任务栏等操作
Task: https://pms.uniontech.com/task-view-182009.html
Change-Id: I3c56dfaa0e95d03fc75468e0a7a5d2ce217a6e63
2022-08-26 13:55:14 +00:00

225 lines
5.9 KiB
C++

/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: listenerri <listenerri@gmail.com>
*
* Maintainer: listenerri <listenerri@gmail.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 "onboardplugin.h"
#include "../widgets/tipswidget.h"
#ifdef USE_AM
#include "dockinterface.h"
#include "entryinterface.h"
#else
#include <com_deepin_dde_daemon_dock.h>
#include <com_deepin_dde_daemon_dock_entry.h>
#endif
#include <QIcon>
#include <QSettings>
#define PLUGIN_STATE_KEY "enable"
#ifdef USE_AM
using DBusDock = org::deepin::dde::daemon::DdeDock;
using DockEntryInter = org::deepin::dde::daemon::dock::DockEntry;
static const QString serviceName = QString("org.deepin.dde.daemon.Dock1");
static const QString servicePath = QString("/org/deepin/dde/daemon/Dock1");
#else
using DBusDock = com::deepin::dde::daemon::Dock;
using DockEntryInter = com::deepin::dde::daemon::dock::Entry;
static const QString serviceName = QString("com.deepin.dde.daemon.Dock");
static const QString servicePath = QString("/com/deepin/dde/daemon/Dock");
#endif
using namespace Dock;
OnboardPlugin::OnboardPlugin(QObject *parent)
: QObject(parent)
, m_pluginLoaded(false)
, m_startupState(false)
, m_onboardItem(nullptr)
, m_tipsLabel(new TipsWidget)
{
m_tipsLabel->setText(tr("Onboard"));
m_tipsLabel->setVisible(false);
m_tipsLabel->setAccessibleName("Onboard");
}
const QString OnboardPlugin::pluginName() const
{
return "onboard";
}
const QString OnboardPlugin::pluginDisplayName() const
{
return tr("Onboard");
}
QWidget *OnboardPlugin::itemWidget(const QString &itemKey)
{
Q_UNUSED(itemKey);
return m_onboardItem.data();
}
QWidget *OnboardPlugin::itemTipsWidget(const QString &itemKey)
{
Q_UNUSED(itemKey);
return m_tipsLabel.data();
}
void OnboardPlugin::init(PluginProxyInterface *proxyInter)
{
m_proxyInter = proxyInter;
if (!pluginIsDisable()) {
loadPlugin();
}
}
void OnboardPlugin::pluginStateSwitched()
{
m_proxyInter->saveValue(this, PLUGIN_STATE_KEY, pluginIsDisable());
refreshPluginItemsVisible();
}
bool OnboardPlugin::pluginIsDisable()
{
return !(m_proxyInter->getValue(this, PLUGIN_STATE_KEY, true).toBool());
}
const QString OnboardPlugin::itemCommand(const QString &itemKey)
{
Q_UNUSED(itemKey);
return QString("dbus-send --print-reply --dest=org.onboard.Onboard /org/onboard/Onboard/Keyboard org.onboard.Onboard.Keyboard.ToggleVisible");
}
const QString OnboardPlugin::itemContextMenu(const QString &itemKey)
{
Q_UNUSED(itemKey);
QList<QVariant> items;
QMap<QString, QVariant> onboardSettings;
onboardSettings["itemId"] = "onboard-settings";
onboardSettings["itemText"] = tr("Settings");
onboardSettings["isActive"] = true;
items.push_back(onboardSettings);
QMap<QString, QVariant> menu;
menu["items"] = items;
menu["checkableMenu"] = false;
menu["singleCheck"] = false;
return QJsonDocument::fromVariant(menu).toJson();
}
void OnboardPlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
{
Q_UNUSED(itemKey)
Q_UNUSED(checked)
if (menuId != "onboard-settings") return;
if(!m_startupState) {
QProcess *process = new QProcess;
connect(process,&QProcess::started, this, [ = ] {
m_startupState = true;
});
connect(process, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished),
[ = ](int exitCode, QProcess::ExitStatus exitStatus){
Q_UNUSED(exitCode)
Q_UNUSED(exitStatus)
m_startupState = false;
process->close();
process->deleteLater();
});
process->start("onboard-settings");
}
DBusDock DockInter(serviceName, servicePath, QDBusConnection::sessionBus(), this);
for (auto entry : DockInter.entries()) {
DockEntryInter AppInter(serviceName, entry.path(), QDBusConnection::sessionBus(), this);
if(AppInter.name() == "Onboard-Settings" && !AppInter.isActive()) {
AppInter.Activate(0);
break;
}
}
}
void OnboardPlugin::displayModeChanged(const Dock::DisplayMode displayMode)
{
Q_UNUSED(displayMode);
if (!pluginIsDisable()) {
m_onboardItem->update();
}
}
int OnboardPlugin::itemSortKey(const QString &itemKey)
{
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
return m_proxyInter->getValue(this, key, 3).toInt();
}
void OnboardPlugin::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 OnboardPlugin::pluginSettingsChanged()
{
refreshPluginItemsVisible();
}
void OnboardPlugin::loadPlugin()
{
if (m_pluginLoaded) {
qDebug() << "onboard plugin has been loaded! return";
return;
}
m_pluginLoaded = true;
m_onboardItem.reset(new OnboardItem);
m_proxyInter->itemAdded(this, pluginName());
displayModeChanged(displayMode());
}
void OnboardPlugin::refreshPluginItemsVisible()
{
if (pluginIsDisable())
{
m_proxyInter->itemRemoved(this, pluginName());
} else {
if (!m_pluginLoaded) {
loadPlugin();
return;
}
m_proxyInter->itemAdded(this, pluginName());
}
}