mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

Note: 1. add a new function in PluginProxyInterface for set applet widget visible from a plugin. 2. remove requestContextMenu function from PluginProxyInterface, cause's the context menu should be handled in Dock, it is enough for a plugin to simply provide menu data and handle callbacks with functions itemContextMenu and invokedMenuItem in PluginsItemInterface https://github.com/linuxdeepin/internal-discussion/issues/646 Change-Id: Ic4af4eee138e87911ff5b18ccbbb0c3f7187ac4d
211 lines
5.1 KiB
C++
211 lines
5.1 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 "fashiontraywidgetwrapper.h"
|
|
|
|
#include <QPainter>
|
|
#include <QDebug>
|
|
#include <QMouseEvent>
|
|
#include <QDrag>
|
|
#include <QMimeData>
|
|
|
|
#define TRAY_ITEM_DRAG_THRESHOLD 20
|
|
|
|
FashionTrayWidgetWrapper::FashionTrayWidgetWrapper(const QString &itemKey, AbstractTrayWidget *absTrayWidget, QWidget *parent)
|
|
: QWidget(parent),
|
|
m_absTrayWidget(absTrayWidget),
|
|
m_layout(new QVBoxLayout(this)),
|
|
m_attention(false),
|
|
m_dragging(false),
|
|
m_hover(false),
|
|
m_pressed(false),
|
|
m_itemKey(itemKey)
|
|
|
|
{
|
|
setStyleSheet("background: transparent;");
|
|
setAcceptDrops(true);
|
|
|
|
m_absTrayWidget->setVisible(true);
|
|
|
|
m_layout->setSpacing(0);
|
|
m_layout->setMargin(0);
|
|
m_layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
m_layout->addWidget(m_absTrayWidget);
|
|
|
|
setLayout(m_layout);
|
|
|
|
connect(m_absTrayWidget, &AbstractTrayWidget::needAttention, this, &FashionTrayWidgetWrapper::onTrayWidgetNeedAttention);
|
|
connect(m_absTrayWidget, &AbstractTrayWidget::clicked, this, &FashionTrayWidgetWrapper::onTrayWidgetClicked);
|
|
}
|
|
|
|
AbstractTrayWidget *FashionTrayWidgetWrapper::absTrayWidget() const
|
|
{
|
|
return m_absTrayWidget;
|
|
}
|
|
|
|
QString FashionTrayWidgetWrapper::itemKey() const
|
|
{
|
|
return m_itemKey;
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::paintEvent(QPaintEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
|
|
if (m_dragging) {
|
|
return;
|
|
}
|
|
|
|
QPainter painter(this);
|
|
painter.setRenderHint(QPainter::Antialiasing, true);
|
|
painter.setOpacity(0.5);
|
|
|
|
QColor color = QColor::fromRgb(40, 40, 40);;
|
|
if (m_hover) {
|
|
color = QColor::fromRgb(60, 60, 60);
|
|
}
|
|
if (m_pressed) {
|
|
color = QColor::fromRgb(20, 20, 20);
|
|
}
|
|
|
|
QPainterPath path;
|
|
path.addRoundedRect(rect(), 10, 10);
|
|
painter.fillPath(path, color);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
if (event->button() == Qt::MouseButton::LeftButton) {
|
|
MousePressPoint = event->pos();
|
|
}
|
|
|
|
m_pressed = true;
|
|
update();
|
|
|
|
QWidget::mousePressEvent(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
handleMouseMove(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
m_pressed = false;
|
|
m_hover = false;
|
|
update();
|
|
|
|
QWidget::mouseReleaseEvent(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::dragEnterEvent(QDragEnterEvent *event)
|
|
{
|
|
if (event->mimeData()->hasFormat(TRAY_ITEM_DRAG_MIMEDATA)) {
|
|
event->accept();
|
|
Q_EMIT requestSwapWithDragging();
|
|
return;
|
|
}
|
|
|
|
QWidget::dragEnterEvent(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::enterEvent(QEvent *event)
|
|
{
|
|
m_hover = true;
|
|
update();
|
|
|
|
QWidget::enterEvent(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::leaveEvent(QEvent *event)
|
|
{
|
|
// Note:
|
|
// here we should check the mouse position to ensure the mouse is realy leaved
|
|
// because this leaveEvent will alse be called if setX11PassMouseEvent(false) is invoked
|
|
// in XWindowTrayWidget::sendHoverEvent()
|
|
if (!rect().contains(mapFromGlobal(QCursor::pos()))) {
|
|
m_hover = false;
|
|
m_pressed = false;
|
|
update();
|
|
}
|
|
|
|
QWidget::leaveEvent(event);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::handleMouseMove(QMouseEvent *event)
|
|
{
|
|
if (event->buttons() != Qt::MouseButton::LeftButton) {
|
|
return QWidget::mouseMoveEvent(event);
|
|
}
|
|
|
|
if ((event->pos() - MousePressPoint).manhattanLength() < TRAY_ITEM_DRAG_THRESHOLD) {
|
|
return;
|
|
}
|
|
|
|
event->accept();
|
|
|
|
QDrag drag(this);
|
|
QMimeData *mimeData = new QMimeData;
|
|
mimeData->setData(TRAY_ITEM_DRAG_MIMEDATA, m_itemKey.toLocal8Bit());
|
|
QPixmap pixmap = grab();
|
|
|
|
drag.setMimeData(mimeData);
|
|
drag.setPixmap(pixmap);
|
|
drag.setHotSpot(pixmap.rect().center() / pixmap.devicePixelRatioF());
|
|
|
|
m_absTrayWidget->setVisible(false);
|
|
m_dragging = true;
|
|
Q_EMIT dragStart();
|
|
|
|
// start drag
|
|
drag.exec();
|
|
|
|
m_absTrayWidget->setVisible(true);
|
|
m_dragging = false;
|
|
m_hover = false;
|
|
m_pressed = false;
|
|
Q_EMIT dragStop();
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::onTrayWidgetNeedAttention()
|
|
{
|
|
setAttention(true);
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::onTrayWidgetClicked()
|
|
{
|
|
setAttention(false);
|
|
}
|
|
|
|
bool FashionTrayWidgetWrapper::attention() const
|
|
{
|
|
return m_attention;
|
|
}
|
|
|
|
void FashionTrayWidgetWrapper::setAttention(bool attention)
|
|
{
|
|
m_attention = attention;
|
|
|
|
Q_EMIT attentionChanged(m_attention);
|
|
}
|