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
209 lines
4.8 KiB
C++
209 lines
4.8 KiB
C++
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "trashplugin.h"
|
|
#include "../../widgets/tipswidget.h"
|
|
#include "imageutil.h"
|
|
|
|
#include <DApplication>
|
|
#include <DDesktopServices>
|
|
#include <DGuiApplicationHelper>
|
|
|
|
#include <QPainter>
|
|
|
|
#define PLUGIN_STATE_KEY "enable"
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
DGUI_USE_NAMESPACE
|
|
|
|
using namespace Dock;
|
|
|
|
TrashPlugin::TrashPlugin(QObject *parent)
|
|
: QObject(parent)
|
|
, m_trashWidget(nullptr)
|
|
, m_tipsLabel(new TipsWidget)
|
|
{
|
|
m_tipsLabel->setObjectName("trash");
|
|
}
|
|
|
|
const QString TrashPlugin::pluginName() const
|
|
{
|
|
return "trash";
|
|
}
|
|
|
|
const QString TrashPlugin::pluginDisplayName() const
|
|
{
|
|
return tr("Trash");
|
|
}
|
|
|
|
void TrashPlugin::init(PluginProxyInterface *proxyInter)
|
|
{
|
|
// transfex config
|
|
QSettings settings("deepin", "dde-dock-trash");
|
|
if (QFile::exists(settings.fileName())) {
|
|
const QString &key = QString("pos_%1_%2").arg(pluginName()).arg(displayMode());
|
|
proxyInter->saveValue(this, key, settings.value(key));
|
|
|
|
QFile::remove(settings.fileName());
|
|
}
|
|
|
|
// blumia: we are using i10n translation from DFM so...
|
|
QString applicationName = qApp->applicationName();
|
|
qApp->setApplicationName("dde-file-manager");
|
|
qDebug() << qApp->loadTranslator();
|
|
qApp->setApplicationName(applicationName);
|
|
|
|
m_proxyInter = proxyInter;
|
|
|
|
if (m_trashWidget.isNull())
|
|
m_trashWidget.reset(new TrashWidget);
|
|
|
|
displayModeChanged(displayMode());
|
|
}
|
|
|
|
QWidget *TrashPlugin::itemWidget(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
return m_trashWidget.data();
|
|
}
|
|
|
|
QWidget *TrashPlugin::itemTipsWidget(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
if (m_trashWidget->getDragging()) {
|
|
m_tipsLabel->setText(tr("Move to Trash"));
|
|
return m_tipsLabel.data();
|
|
}
|
|
|
|
const int count = m_trashWidget->trashItemCount();
|
|
if (count < 2)
|
|
m_tipsLabel->setText(tr("Trash - %1 file").arg(count));
|
|
else
|
|
m_tipsLabel->setText(tr("Trash - %1 files").arg(count));
|
|
|
|
return m_tipsLabel.data();
|
|
}
|
|
|
|
QWidget *TrashPlugin::itemPopupApplet(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const QString TrashPlugin::itemCommand(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
DDesktopServices::showFolder(QUrl("trash:///"));
|
|
|
|
return QString();
|
|
// return "gio open trash:///";
|
|
}
|
|
|
|
const QString TrashPlugin::itemContextMenu(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
return m_trashWidget->contextMenu();
|
|
}
|
|
|
|
void TrashPlugin::refreshIcon(const QString &itemKey)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
m_trashWidget->updateIcon();
|
|
}
|
|
|
|
void TrashPlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
|
|
{
|
|
Q_UNUSED(itemKey);
|
|
|
|
m_trashWidget->invokeMenuItem(menuId, checked);
|
|
}
|
|
|
|
bool TrashPlugin::pluginIsDisable()
|
|
{
|
|
return !m_proxyInter->getValue(this, PLUGIN_STATE_KEY, true).toBool();
|
|
}
|
|
|
|
void TrashPlugin::pluginStateSwitched()
|
|
{
|
|
m_proxyInter->saveValue(this, PLUGIN_STATE_KEY, pluginIsDisable());
|
|
|
|
if (pluginIsDisable()) {
|
|
m_proxyInter->itemRemoved(this, pluginName());
|
|
return;
|
|
}
|
|
|
|
if (m_trashWidget) {
|
|
m_proxyInter->itemAdded(this, pluginName());
|
|
}
|
|
}
|
|
|
|
int TrashPlugin::itemSortKey(const QString &itemKey)
|
|
{
|
|
const QString &key = QString("pos_%1_%2").arg(itemKey).arg(Dock::Efficient);
|
|
return m_proxyInter->getValue(this, key, 7).toInt();
|
|
}
|
|
|
|
void TrashPlugin::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 TrashPlugin::displayModeChanged(const Dock::DisplayMode displayMode)
|
|
{
|
|
Q_UNUSED(displayMode);
|
|
|
|
if (pluginIsDisable()) {
|
|
return;
|
|
}
|
|
|
|
m_proxyInter->itemAdded(this, pluginName());
|
|
}
|
|
|
|
void TrashPlugin::pluginSettingsChanged()
|
|
{
|
|
refreshPluginItemsVisible();
|
|
}
|
|
|
|
QIcon TrashPlugin::icon(const DockPart &dockPart, DGuiApplicationHelper::ColorType themeType)
|
|
{
|
|
if (dockPart == DockPart::DCCSetting) {
|
|
auto pixmap = ImageUtil::loadSvg(":/icons/dcc_trash.svg", 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();
|
|
}
|
|
|
|
PluginFlags TrashPlugin::flags() const
|
|
{
|
|
return PluginFlag::Type_Tool
|
|
| PluginFlag::Attribute_CanSetting;
|
|
}
|
|
|
|
void TrashPlugin::refreshPluginItemsVisible()
|
|
{
|
|
if (pluginIsDisable()) {
|
|
m_proxyInter->itemRemoved(this, pluginName());
|
|
return;
|
|
}
|
|
|
|
if (m_trashWidget) {
|
|
m_proxyInter->itemAdded(this, pluginName());
|
|
}
|
|
}
|
|
|