2022-05-26 18:07:43 +08:00
|
|
|
|
/*
|
2022-05-17 20:57:09 +08:00
|
|
|
|
* Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
|
|
|
*
|
|
|
|
|
* Author: donghualin <donghualin@uniontech.com>
|
|
|
|
|
*
|
|
|
|
|
* Maintainer: donghualin <donghualin@uniontech.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/>.
|
|
|
|
|
*/
|
2022-05-12 17:09:10 +08:00
|
|
|
|
#include "systempluginwindow.h"
|
|
|
|
|
#include "systemplugincontroller.h"
|
|
|
|
|
#include "systempluginitem.h"
|
2022-05-27 15:09:15 +08:00
|
|
|
|
#include "fixedplugincontroller.h"
|
2022-05-12 17:09:10 +08:00
|
|
|
|
|
|
|
|
|
#include <DListView>
|
|
|
|
|
#include <QBoxLayout>
|
2022-05-26 18:07:43 +08:00
|
|
|
|
#include <QDir>
|
2022-05-12 17:09:10 +08:00
|
|
|
|
#include <QMetaObject>
|
2022-06-15 13:35:50 +00:00
|
|
|
|
#include <QGuiApplication>
|
2022-05-12 17:09:10 +08:00
|
|
|
|
|
|
|
|
|
#define MAXICONSIZE 48
|
|
|
|
|
#define MINICONSIZE 24
|
|
|
|
|
#define ICONMARGIN 8
|
|
|
|
|
|
|
|
|
|
SystemPluginWindow::SystemPluginWindow(QWidget *parent)
|
2022-05-25 09:42:01 +08:00
|
|
|
|
: QWidget(parent)
|
2022-05-12 17:09:10 +08:00
|
|
|
|
, m_pluginController(new FixedPluginController(this))
|
|
|
|
|
, m_listView(new DListView(this))
|
|
|
|
|
, m_position(Dock::Position::Bottom)
|
|
|
|
|
, m_mainLayout(new QBoxLayout(QBoxLayout::Direction::LeftToRight, this))
|
|
|
|
|
{
|
|
|
|
|
initUi();
|
2022-05-26 18:07:43 +08:00
|
|
|
|
connect(m_pluginController, &FixedPluginController::pluginItemInserted, this, &SystemPluginWindow::onPluginItemAdded);
|
|
|
|
|
connect(m_pluginController, &FixedPluginController::pluginItemRemoved, this, &SystemPluginWindow::onPluginItemRemoved);
|
|
|
|
|
connect(m_pluginController, &FixedPluginController::pluginItemUpdated, this, &SystemPluginWindow::onPluginItemUpdated);
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SystemPluginWindow::~SystemPluginWindow()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SystemPluginWindow::setPositon(Position position)
|
|
|
|
|
{
|
|
|
|
|
if (m_position == position)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_position = position;
|
|
|
|
|
|
|
|
|
|
if (m_position == Dock::Position::Top || m_position == Dock::Position::Bottom)
|
|
|
|
|
m_mainLayout->setDirection(QBoxLayout::Direction::LeftToRight);
|
|
|
|
|
else
|
|
|
|
|
m_mainLayout->setDirection(QBoxLayout::Direction::TopToBottom);
|
2022-05-26 18:07:43 +08:00
|
|
|
|
|
|
|
|
|
QObjectList childObjects = children();
|
|
|
|
|
for (QObject *childObject : childObjects) {
|
|
|
|
|
StretchPluginsItem *item = qobject_cast<StretchPluginsItem *>(childObject);
|
|
|
|
|
if (!item)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
item->setPosition(m_position);
|
|
|
|
|
}
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
QSize SystemPluginWindow::suitableSize() const
|
|
|
|
|
{
|
|
|
|
|
return suitableSize(m_position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSize SystemPluginWindow::suitableSize(const Position &position) const
|
2022-05-12 17:09:10 +08:00
|
|
|
|
{
|
2022-05-26 18:07:43 +08:00
|
|
|
|
QObjectList childs = children();
|
2022-08-25 19:31:31 +00:00
|
|
|
|
if (position == Dock::Position::Top || position == Dock::Position::Bottom) {
|
2022-05-26 18:07:43 +08:00
|
|
|
|
int itemWidth = 0;
|
|
|
|
|
for (QObject *childObject : childs) {
|
|
|
|
|
StretchPluginsItem *childItem = qobject_cast<StretchPluginsItem *>(childObject);
|
|
|
|
|
if (!childItem)
|
2022-05-12 17:09:10 +08:00
|
|
|
|
continue;
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
itemWidth += childItem->suitableSize(position).width();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
return QSize(itemWidth, QWIDGETSIZE_MAX);
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
int itemHeight = 0;
|
|
|
|
|
for (QObject *childObject : childs) {
|
|
|
|
|
StretchPluginsItem *item = qobject_cast<StretchPluginsItem *>(childObject);
|
2022-05-12 17:09:10 +08:00
|
|
|
|
if (!item)
|
|
|
|
|
continue;
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
itemHeight += item->suitableSize(position).height();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
return QSize(QWIDGETSIZE_MAX, itemHeight);
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SystemPluginWindow::initUi()
|
|
|
|
|
{
|
2022-05-26 18:07:43 +08:00
|
|
|
|
m_mainLayout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
m_mainLayout->setSpacing(0);
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-17 10:54:29 +08:00
|
|
|
|
bool SystemPluginWindow::pluginExist(StretchPluginsItem *pluginItem)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < m_mainLayout->count(); i++) {
|
|
|
|
|
QLayoutItem *layoutItem = m_mainLayout->itemAt(i);
|
|
|
|
|
if (!layoutItem)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (layoutItem->widget() == pluginItem)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
void SystemPluginWindow::onPluginItemAdded(StretchPluginsItem *pluginItem)
|
2022-05-12 17:09:10 +08:00
|
|
|
|
{
|
2022-06-17 10:54:29 +08:00
|
|
|
|
if (pluginExist(pluginItem))
|
2022-05-12 17:09:10 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
pluginItem->setPosition(m_position);
|
|
|
|
|
pluginItem->setParent(this);
|
|
|
|
|
pluginItem->show();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
m_mainLayout->addWidget(pluginItem);
|
2022-06-20 15:03:35 +08:00
|
|
|
|
Q_EMIT itemChanged();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
void SystemPluginWindow::onPluginItemRemoved(StretchPluginsItem *pluginItem)
|
2022-05-12 17:09:10 +08:00
|
|
|
|
{
|
2022-06-17 10:54:29 +08:00
|
|
|
|
if (!pluginExist(pluginItem))
|
2022-05-12 17:09:10 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
pluginItem->setParent(nullptr);
|
|
|
|
|
pluginItem->hide();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
m_mainLayout->removeWidget(pluginItem);
|
2022-06-20 15:03:35 +08:00
|
|
|
|
Q_EMIT itemChanged();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
void SystemPluginWindow::onPluginItemUpdated(StretchPluginsItem *pluginItem)
|
2022-05-12 17:09:10 +08:00
|
|
|
|
{
|
2022-05-26 18:07:43 +08:00
|
|
|
|
pluginItem->update();
|
2022-05-12 17:09:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
#define ICONSIZE 20
|
|
|
|
|
#define ICONTEXTSPACE 6
|
|
|
|
|
#define PLUGIN_ITEM_DRAG_THRESHOLD 20
|
|
|
|
|
|
|
|
|
|
StretchPluginsItem::StretchPluginsItem(PluginsItemInterface * const pluginInter, const QString &itemKey, QWidget *parent)
|
|
|
|
|
: DockItem(parent)
|
|
|
|
|
, m_pluginInter(pluginInter)
|
|
|
|
|
, m_itemKey(itemKey)
|
|
|
|
|
, m_position(Dock::Position::Bottom)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StretchPluginsItem::~StretchPluginsItem()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StretchPluginsItem::setPosition(Position position)
|
|
|
|
|
{
|
|
|
|
|
m_position = position;
|
|
|
|
|
update();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString StretchPluginsItem::itemKey() const
|
|
|
|
|
{
|
|
|
|
|
return m_itemKey;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
QSize StretchPluginsItem::suitableSize() const
|
|
|
|
|
{
|
|
|
|
|
return suitableSize(m_position);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
PluginsItemInterface *StretchPluginsItem::pluginInter() const
|
|
|
|
|
{
|
|
|
|
|
return m_pluginInter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StretchPluginsItem::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(event);
|
|
|
|
|
QPainter painter(this);
|
2022-05-30 20:29:53 +08:00
|
|
|
|
QIcon icon = m_pluginInter->icon(DockPart::SystemPanel);
|
2022-05-26 18:07:43 +08:00
|
|
|
|
|
|
|
|
|
QRect rctPixmap(rect());
|
|
|
|
|
if (needShowText()) {
|
|
|
|
|
int textHeight = QFontMetrics(textFont()).height();
|
|
|
|
|
// 文本与图标的间距为6
|
|
|
|
|
int iconTop = (height() - textHeight - ICONSIZE - ICONTEXTSPACE) / 2;
|
|
|
|
|
rctPixmap.setX((width() - ICONSIZE) / 2);
|
|
|
|
|
rctPixmap.setY(iconTop);
|
|
|
|
|
rctPixmap.setWidth(ICONSIZE);
|
|
|
|
|
rctPixmap.setHeight(ICONSIZE);
|
|
|
|
|
// 先绘制下面的文本
|
|
|
|
|
painter.setFont(textFont());
|
|
|
|
|
painter.drawText(QRect(0, iconTop + ICONSIZE + ICONTEXTSPACE, width(), textHeight), Qt::AlignCenter, m_pluginInter->pluginDisplayName());
|
|
|
|
|
} else {
|
|
|
|
|
rctPixmap.setX((width() - ICONSIZE) / 2);
|
|
|
|
|
rctPixmap.setY((height() - ICONSIZE) / 2);
|
|
|
|
|
rctPixmap.setWidth(ICONSIZE);
|
|
|
|
|
rctPixmap.setHeight(ICONSIZE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 绘制图标
|
2022-06-15 13:35:50 +00:00
|
|
|
|
int iconSize = static_cast<int>(ICONSIZE * (qApp->devicePixelRatio()));
|
|
|
|
|
painter.drawPixmap(rctPixmap, icon.pixmap(iconSize, iconSize));
|
2022-05-26 18:07:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
QSize StretchPluginsItem::suitableSize(const Position &position) const
|
2022-05-26 18:07:43 +08:00
|
|
|
|
{
|
2022-06-15 13:35:50 +00:00
|
|
|
|
int iconSize = static_cast<int>(ICONSIZE * (qApp->devicePixelRatio()));
|
2022-08-25 19:31:31 +00:00
|
|
|
|
if (position == Dock::Position::Top || position == Dock::Position::Bottom) {
|
|
|
|
|
int textWidth = QFontMetrics(textFont(position)).boundingRect(m_pluginInter->pluginDisplayName()).width();
|
2022-06-15 13:35:50 +00:00
|
|
|
|
return QSize(qMax(textWidth, iconSize) + 10 * 2, -1);
|
2022-05-26 18:07:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 19:31:31 +00:00
|
|
|
|
int height = 6; // 图标上边距6
|
|
|
|
|
height += iconSize; // 图标尺寸20
|
|
|
|
|
height += ICONTEXTSPACE; // 图标与文字间距6
|
|
|
|
|
height += QFontMetrics(textFont(position)).height(); // 文本高度
|
|
|
|
|
height += 4; // 下间距4
|
2022-05-26 18:07:43 +08:00
|
|
|
|
return QSize(-1, height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFont StretchPluginsItem::textFont() const
|
|
|
|
|
{
|
2022-08-25 19:31:31 +00:00
|
|
|
|
return textFont(m_position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFont StretchPluginsItem::textFont(const Position &position) const
|
|
|
|
|
{
|
|
|
|
|
if (position == Dock::Position::Top || position == Dock::Position::Bottom) {
|
2022-05-26 18:07:43 +08:00
|
|
|
|
static QList<QFont> fonts{ DFontSizeManager::instance()->t9(),
|
|
|
|
|
DFontSizeManager::instance()->t8(),
|
|
|
|
|
DFontSizeManager::instance()->t7(),
|
|
|
|
|
DFontSizeManager::instance()->t6() };
|
|
|
|
|
#define MINHEIGHT 50
|
2022-08-25 19:31:31 +00:00
|
|
|
|
// 如果当前的实际位置和请求的位置不一致,说明当前正在切换位置,此时将它的宽度作为它的高度(左到下切换的时候,左侧的宽度和下面的高度一致)
|
|
|
|
|
int size = (m_position == position ? height() : width());
|
|
|
|
|
int index = qMin(qMax((size - MINHEIGHT) / 2, 0), fonts.size() - 1);
|
2022-05-26 18:07:43 +08:00
|
|
|
|
return fonts[index];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DFontSizeManager::instance()->t10();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StretchPluginsItem::needShowText() const
|
|
|
|
|
{
|
2022-06-01 15:11:45 +08:00
|
|
|
|
// 任务栏在上方或者下方显示的时候,根据设计图,只有在当前区域高度大于50的时候才同时显示文本和图标
|
2022-05-26 18:07:43 +08:00
|
|
|
|
if (m_position == Dock::Position::Top || m_position == Dock::Position::Bottom)
|
2022-06-01 15:11:45 +08:00
|
|
|
|
return height() >= 50;
|
2022-05-26 18:07:43 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString StretchPluginsItem::contextMenu() const
|
|
|
|
|
{
|
|
|
|
|
return m_pluginInter->itemContextMenu(m_itemKey);
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-14 10:46:42 +00:00
|
|
|
|
void StretchPluginsItem::invokedMenuItem(const QString &itemId, const bool checked)
|
|
|
|
|
{
|
|
|
|
|
m_pluginInter->invokedMenuItem(m_itemKey, itemId, checked);
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-26 18:07:43 +08:00
|
|
|
|
void StretchPluginsItem::mousePressEvent(QMouseEvent *e)
|
|
|
|
|
{
|
|
|
|
|
m_hover = false;
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
|
|
if (PopupWindow->isVisible())
|
|
|
|
|
hideNonModel();
|
|
|
|
|
|
|
|
|
|
if (e->button() == Qt::LeftButton)
|
|
|
|
|
m_mousePressPoint = e->pos();
|
|
|
|
|
|
|
|
|
|
m_popupTipsDelayTimer->stop();
|
|
|
|
|
hideNonModel();
|
|
|
|
|
|
|
|
|
|
if (e->button() == Qt::RightButton
|
|
|
|
|
&& perfectIconRect().contains(e->pos()))
|
|
|
|
|
return showContextMenu();
|
|
|
|
|
|
|
|
|
|
DockItem::mousePressEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StretchPluginsItem::mouseReleaseEvent(QMouseEvent *e)
|
|
|
|
|
{
|
|
|
|
|
DockItem::mouseReleaseEvent(e);
|
|
|
|
|
|
|
|
|
|
if (e->button() != Qt::LeftButton)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (checkAndResetTapHoldGestureState() && e->source() == Qt::MouseEventSynthesizedByQt)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
const QPoint distance = e->pos() - m_mousePressPoint;
|
|
|
|
|
if (distance.manhattanLength() < PLUGIN_ITEM_DRAG_THRESHOLD)
|
|
|
|
|
mouseClick();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StretchPluginsItem::mouseClick()
|
|
|
|
|
{
|
|
|
|
|
const QString command = m_pluginInter->itemCommand(m_itemKey);
|
|
|
|
|
if (!command.isEmpty()) {
|
|
|
|
|
QProcess::startDetached(command);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// request popup applet
|
|
|
|
|
if (QWidget *w = m_pluginInter->itemPopupApplet(m_itemKey))
|
|
|
|
|
showPopupApplet(w);
|
|
|
|
|
}
|