dde-dock/frame/item/pluginsitem.cpp
donghualin 301e515319 feat: 增加工具区域的使用
时尚模式下,在最近使用区域右侧增加工具区域的功能,时尚模式切换到高效模式后,高效模式依然显示原来的区域

Log: 时尚模式下增加工具区域
Influence: 时尚模式下,查看最近打开区域右侧是否显示回收站,来回切换时尚模式与高效模式,查看回收站位置是否发生变化
Task: https://pms.uniontech.com/task-view-152867.html
Change-Id: Icaf77f09b737ca9473767fa876883ac0fdddb1ad
2022-07-11 03:18:34 +00:00

338 lines
8.1 KiB
C++

/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <sbw@sbw.so>
*
* Maintainer: sbw <sbw@sbw.so>
*
* 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 "constants.h"
#include "pluginsitem.h"
#include "pluginsiteminterface.h"
#include "utils.h"
#include <DFontSizeManager>
#include <QPainter>
#include <QBoxLayout>
#include <QMouseEvent>
#include <QDrag>
#include <QMimeData>
#include <QGSettings>
#define PLUGIN_ITEM_DRAG_THRESHOLD 20
QPoint PluginsItem::MousePressPoint = QPoint();
PluginsItem::PluginsItem(PluginsItemInterface *const pluginInter, const QString &itemKey, const QJsonObject &jsonData, QWidget *parent)
: DockItem(parent)
, m_pluginInter(pluginInter)
, m_centralWidget(m_pluginInter->itemWidget(itemKey))
, m_jsonData(jsonData)
, m_itemKey(itemKey)
, m_dragging(false)
, m_gsettings(Utils::ModuleSettingsPtr(pluginInter->pluginName(), QByteArray(), this))
{
qDebug() << "load plugins item: " << pluginInter->pluginName() << itemKey << m_centralWidget;
m_centralWidget->setParent(this);
m_centralWidget->setVisible(true);
m_centralWidget->setObjectName(pluginInter->pluginName() + "-centralwidget");
m_centralWidget->installEventFilter(this);
QBoxLayout *hLayout = new QHBoxLayout;
hLayout->addWidget(m_centralWidget);
hLayout->setSpacing(0);
hLayout->setMargin(0);
setLayout(hLayout);
setAccessibleName(pluginInter->pluginName());
setAttribute(Qt::WA_TranslucentBackground);
if (m_gsettings)
connect(m_gsettings, &QGSettings::changed, this, &PluginsItem::onGSettingsChanged);
}
PluginsItem::~PluginsItem()
{
}
int PluginsItem::itemSortKey() const
{
return m_pluginInter->itemSortKey(m_itemKey);
}
void PluginsItem::setItemSortKey(const int order) const
{
m_pluginInter->setSortKey(m_itemKey, order);
}
void PluginsItem::detachPluginWidget()
{
QWidget *widget = m_pluginInter->itemWidget(m_itemKey);
if (widget)
widget->setParent(nullptr);
}
QString PluginsItem::pluginName() const
{
return m_pluginInter->pluginName();
}
PluginsItemInterface::PluginSizePolicy PluginsItem::pluginSizePolicy() const
{
// 插件版本大于 1.2.2 才能使用 PluginsItemInterface::pluginSizePolicy 函数
if (Utils::comparePluginApi(pluginApi(), "1.2.2") > 0) {
return m_pluginInter->pluginSizePolicy();
} else {
return PluginsItemInterface::System;
}
}
DockItem::ItemType PluginsItem::itemType() const
{
if (m_pluginInter->type() == PluginsItemInterface::Normal) {
return Plugins;
} else {
return FixedPlugin;
}
}
QSize PluginsItem::sizeHint() const
{
return m_centralWidget->sizeHint();
}
void PluginsItem::refreshIcon()
{
m_pluginInter->refreshIcon(m_itemKey);
}
void PluginsItem::onGSettingsChanged(const QString &key)
{
if (key != "enable") {
return;
}
if (m_gsettings && m_gsettings->keys().contains("enable")) {
setVisible(m_gsettings->get("enable").toBool());
}
}
QWidget *PluginsItem::centralWidget() const
{
return m_centralWidget;
}
void PluginsItem::mousePressEvent(QMouseEvent *e)
{
if (checkGSettingsControl()) {
return;
}
m_hover = false;
update();
if (PopupWindow->isVisible())
hideNonModel();
if (e->button() == Qt::LeftButton)
MousePressPoint = e->pos();
//handle context menu
m_popupTipsDelayTimer->stop();
hideNonModel();
if (e->button() == Qt::RightButton) {
if (perfectIconRect().contains(e->pos())) {
return (m_gsettings && (!m_gsettings->keys().contains("menuEnable") || m_gsettings->get("menuEnable").toBool())) ? showContextMenu() : void();
}
}
// same as e->ignore above
QWidget::mousePressEvent(e);
}
void PluginsItem::mouseMoveEvent(QMouseEvent *e)
{
if (checkGSettingsControl()) {
return;
}
if (e->buttons() != Qt::LeftButton)
return DockItem::mouseMoveEvent(e);
e->accept();
const QPoint distance = e->pos() - MousePressPoint;
if (distance.manhattanLength() > PLUGIN_ITEM_DRAG_THRESHOLD)
startDrag();
}
void PluginsItem::mouseReleaseEvent(QMouseEvent *e)
{
if (checkGSettingsControl()) {
return;
}
DockItem::mouseReleaseEvent(e);
if (e->button() != Qt::LeftButton)
return;
if (checkAndResetTapHoldGestureState() && e->source() == Qt::MouseEventSynthesizedByQt) {
qDebug() << "tap and hold gesture detected, ignore the synthesized mouse release event";
return;
}
e->accept();
const QPoint distance = e->pos() - MousePressPoint;
if (distance.manhattanLength() < PLUGIN_ITEM_DRAG_THRESHOLD)
mouseClicked();
}
void PluginsItem::enterEvent(QEvent *event)
{
if (checkGSettingsControl()) {
return;
}
m_hover = true;
update();
DockItem::enterEvent(event);
}
void PluginsItem::leaveEvent(QEvent *event)
{
// Note:
// here we should check the mouse position to ensure the mouse is really leaved
// because this leaveEvent will also be called if setX11PassMouseEvent(false) is invoked
// in XWindowTrayWidget::sendHoverEvent()
m_hover = false;
update();
DockItem::leaveEvent(event);
}
void PluginsItem::showEvent(QShowEvent *event)
{
QTimer::singleShot(0, this, [ = ] {
onGSettingsChanged("enable");
});
return DockItem::showEvent(event);
}
bool PluginsItem::eventFilter(QObject *watched, QEvent *event)
{
if (watched == m_centralWidget) {
if (event->type() == QEvent::MouseButtonPress ||
event->type() == QEvent::MouseButtonRelease) {
if (checkGSettingsControl()) {
return true;
}
}
if (event->type() == QEvent::MouseButtonRelease) {
m_hover = false;
update();
}
}
return false;
}
void PluginsItem::invokedMenuItem(const QString &itemId, const bool checked)
{
m_pluginInter->invokedMenuItem(m_itemKey, itemId, checked);
}
void PluginsItem::showPopupWindow(QWidget *const content, const bool model)
{
DockItem::showPopupWindow(content, model);
}
const QString PluginsItem::contextMenu() const
{
return m_pluginInter->itemContextMenu(m_itemKey);
}
QWidget *PluginsItem::popupTips()
{
if (checkGSettingsControl()) {
return nullptr;
}
return m_pluginInter->itemTipsWidget(m_itemKey);
}
void PluginsItem::startDrag()
{
// 拖拽已放到MainPanelControl处理
return;
}
void PluginsItem::mouseClicked()
{
const QString command = m_pluginInter->itemCommand(m_itemKey);
if (!command.isEmpty()) {
QProcess *proc = new QProcess(this);
connect(proc, static_cast<void (QProcess::*)(int)>(&QProcess::finished), proc, &QProcess::deleteLater);
proc->startDetached(command);
return;
}
// request popup applet
if (QWidget *w = m_pluginInter->itemPopupApplet(m_itemKey))
showPopupApplet(w);
}
bool PluginsItem::checkGSettingsControl() const
{
return m_gsettings ? m_gsettings->keys().contains("control") && m_gsettings->get("control").toBool() : false;
}
QString PluginsItem::pluginApi() const
{
return m_jsonData.value("api").toString();
}
void PluginsItem::resizeEvent(QResizeEvent *event)
{
setMaximumSize(m_centralWidget->maximumSize());
return DockItem::resizeEvent(event);
}
void PluginsItem::setDraging(bool bDrag)
{
DockItem::setDraging(bDrag);
m_centralWidget->setVisible(!bDrag);
}
PluginsItemInterface *PluginsItem::pluginItem() const
{
return m_pluginInter;
}
QJsonObject PluginsItem::metaData() const
{
return m_jsonData;
}