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

- 部分图片路径写错 - 资源图片直接加到qicon中,qicon.availableSizes[0]={0, 0} - 部分插件没有适配主题颜色 Issue: https://github.com/linuxdeepin/developer-center/issues/5682
190 lines
4.9 KiB
C++
190 lines
4.9 KiB
C++
// Copyright (C) 2019 ~ 2019 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "multitaskingplugin.h"
|
|
#include "../widgets/tipswidget.h"
|
|
|
|
#include <DWindowManagerHelper>
|
|
#include <DDBusSender>
|
|
#include <QPainter>
|
|
|
|
#include <QIcon>
|
|
|
|
DGUI_USE_NAMESPACE
|
|
|
|
using namespace Dock;
|
|
MultitaskingPlugin::MultitaskingPlugin(QObject *parent)
|
|
: QObject(parent)
|
|
, m_multitaskingWidget(nullptr)
|
|
, m_tipsLabel(new TipsWidget)
|
|
{
|
|
m_tipsLabel->setVisible(false);
|
|
m_tipsLabel->setObjectName("multitasking");
|
|
|
|
connect(DWindowManagerHelper::instance(), &DWindowManagerHelper::hasCompositeChanged, this, [ = ] {
|
|
if (!m_proxyInter)
|
|
return;
|
|
|
|
if (DWindowManagerHelper::instance()->hasComposite())
|
|
m_proxyInter->itemAdded(this, PLUGIN_KEY);
|
|
else
|
|
m_proxyInter->itemRemoved(this, PLUGIN_KEY);
|
|
});
|
|
}
|
|
|
|
const QString MultitaskingPlugin::pluginName() const
|
|
{
|
|
return "multitasking";
|
|
}
|
|
|
|
const QString MultitaskingPlugin::pluginDisplayName() const
|
|
{
|
|
return tr("Multitasking View");
|
|
}
|
|
|
|
QWidget *MultitaskingPlugin::itemWidget(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
return m_multitaskingWidget.data();
|
|
}
|
|
|
|
QWidget *MultitaskingPlugin::itemTipsWidget(const QString &itemKey)
|
|
{
|
|
m_tipsLabel->setObjectName(itemKey);
|
|
|
|
m_tipsLabel->setText(pluginDisplayName());
|
|
|
|
return m_tipsLabel.data();
|
|
}
|
|
|
|
void MultitaskingPlugin::init(PluginProxyInterface *proxyInter)
|
|
{
|
|
m_proxyInter = proxyInter;
|
|
m_multitaskingWidget.reset(new MultitaskingWidget);
|
|
|
|
if (DWindowManagerHelper::instance()->hasComposite()) {
|
|
m_proxyInter->itemAdded(this, pluginName());
|
|
}
|
|
}
|
|
|
|
const QString MultitaskingPlugin::itemCommand(const QString &itemKey)
|
|
{
|
|
if (itemKey == PLUGIN_KEY)
|
|
DDBusSender()
|
|
.service("com.deepin.wm")
|
|
.interface("com.deepin.wm")
|
|
.path("/com/deepin/wm")
|
|
.method(QString("PerformAction"))
|
|
.arg(1)
|
|
.call();
|
|
|
|
return "";
|
|
}
|
|
|
|
const QString MultitaskingPlugin::itemContextMenu(const QString &itemKey)
|
|
{
|
|
if (itemKey != PLUGIN_KEY) {
|
|
return QString();
|
|
}
|
|
|
|
QList<QVariant> items;
|
|
items.reserve(6);
|
|
|
|
QMap<QString, QVariant> desktop;
|
|
desktop["itemId"] = "multitasking";
|
|
desktop["itemText"] = tr("Multitasking View");
|
|
desktop["isActive"] = true;
|
|
items.push_back(desktop);
|
|
|
|
QMap<QString, QVariant> power;
|
|
power["itemId"] = "remove";
|
|
power["itemText"] = tr("Undock");
|
|
power["isActive"] = true;
|
|
items.push_back(power);
|
|
|
|
QMap<QString, QVariant> menu;
|
|
menu["items"] = items;
|
|
menu["checkableMenu"] = false;
|
|
menu["singleCheck"] = false;
|
|
|
|
return QJsonDocument::fromVariant(menu).toJson();
|
|
}
|
|
|
|
void MultitaskingPlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
|
|
{
|
|
Q_UNUSED(itemKey)
|
|
Q_UNUSED(checked)
|
|
|
|
if (menuId == "multitasking") {
|
|
DDBusSender()
|
|
.service("com.deepin.wm")
|
|
.interface("com.deepin.wm")
|
|
.path("/com/deepin/wm")
|
|
.method(QString("PerformAction"))
|
|
.arg(1)
|
|
.call();
|
|
} else if (menuId == "remove") {
|
|
// m_proxyInter->itemRemoved(this, PLUGIN_KEY);
|
|
DDBusSender()
|
|
.service("org.deepin.dde.Dock1")
|
|
.interface("org.deepin.dde.Dock1")
|
|
.path("/org/deepin/dde/Dock1")
|
|
.method(QString("setItemOnDock"))
|
|
.arg(QString("Dock_Quick_Plugins"))
|
|
.arg(QString("multitasking"))
|
|
.arg(false)
|
|
.call();
|
|
}
|
|
}
|
|
|
|
QIcon MultitaskingPlugin::icon(const DockPart &dockPart, DGuiApplicationHelper::ColorType themeType)
|
|
{
|
|
if (dockPart == DockPart::DCCSetting) {
|
|
auto icon = QIcon::fromTheme("dcc-multitasking-view", QIcon(":/icons/dcc-multitasking-view.svg"));
|
|
QPixmap pixmap = icon.pixmap(QSize(18, 18));
|
|
if (themeType == DGuiApplicationHelper::ColorType::LightType)
|
|
return pixmap;
|
|
|
|
QPainter pa(&pixmap);
|
|
pa.setCompositionMode(QPainter::CompositionMode_SourceIn);
|
|
pa.fillRect(pixmap.rect(), Qt::white);
|
|
return pixmap;
|
|
}
|
|
|
|
return QIcon();
|
|
}
|
|
|
|
void MultitaskingPlugin::refreshIcon(const QString &itemKey)
|
|
{
|
|
if (itemKey == PLUGIN_KEY) {
|
|
m_multitaskingWidget->refreshIcon();
|
|
}
|
|
}
|
|
|
|
int MultitaskingPlugin::itemSortKey(const QString &itemKey)
|
|
{
|
|
const QString key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
|
|
return m_proxyInter->getValue(this, key, 2).toInt();
|
|
}
|
|
|
|
void MultitaskingPlugin::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);
|
|
}
|
|
|
|
PluginsItemInterface::PluginType MultitaskingPlugin::type()
|
|
{
|
|
return PluginType::Fixed;
|
|
}
|
|
|
|
PluginFlags MultitaskingPlugin::flags() const
|
|
{
|
|
return PluginFlag::Type_Fixed | Attribute_CanSetting;
|
|
}
|