mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

鼠标拖动驻留应用图标出任务栏时显示提示:移除【类似tooltip效果】,鼠标拖动引用远离 任务栏超过1.5倍(倍数可配置)显示。1.5倍以内则不显示“移除”提示 Log: 当拖拽任务栏应用区上的应用远离任务栏一定距离可以移除的应用显示“移除”提示 Task: https://pms.uniontech.com/zentao/task-view-30900.html Change-Id: I7d339a6f3713dc6ab6932567bb1eecefaff1fa60 Reviewed-on: http://gerrit.uniontech.com/c/dde-dock/+/545 Reviewed-by: fanpengcheng <fanpengcheng@uniontech.com> Tested-by: yekaisheng <yekaisheng@uniontech.com>
91 lines
2.8 KiB
C++
91 lines
2.8 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/>.
|
||
*/
|
||
|
||
#ifndef APPDRAGWIDGET_H
|
||
#define APPDRAGWIDGET_H
|
||
|
||
#include "constants.h"
|
||
|
||
#include <QPixmap>
|
||
#include <QGraphicsObject>
|
||
#include <QGraphicsView>
|
||
#include <QPainter>
|
||
#include <QMouseEvent>
|
||
#include <QTimer>
|
||
#include <QPropertyAnimation>
|
||
#include <QParallelAnimationGroup>
|
||
#include <qwidget.h>
|
||
#include "../widgets/tipswidget.h"
|
||
#include "util/dockpopupwindow.h"
|
||
|
||
class AppGraphicsObject;
|
||
class AppDragWidget : public QGraphicsView
|
||
{
|
||
public:
|
||
explicit AppDragWidget(QWidget *parent = Q_NULLPTR);
|
||
virtual ~AppDragWidget() override;
|
||
|
||
void setAppPixmap(const QPixmap &pix);
|
||
void setDockInfo(Dock::Position dockPosition, const QRect &dockGeometry);
|
||
void setOriginPos(const QPoint position);
|
||
bool isRemoveAble();
|
||
|
||
protected:
|
||
void mouseMoveEvent(QMouseEvent *event) override;
|
||
void dragEnterEvent(QDragEnterEvent *event) override;
|
||
void dragMoveEvent(QDragMoveEvent *event) override;
|
||
void dropEvent(QDropEvent *event) override;
|
||
void hideEvent(QHideEvent *event) override;
|
||
|
||
private:
|
||
void initAnimations();
|
||
void initConfigurations();
|
||
void showRemoveAnimation();
|
||
void showGoBackAnimation();
|
||
void onRemoveAnimationStateChanged(QAbstractAnimation::State newState,
|
||
QAbstractAnimation::State oldState);
|
||
const QPoint popupMarkPoint(Dock::Position pos);
|
||
const QPoint topleftPoint() const;
|
||
|
||
private:
|
||
AppGraphicsObject *m_object;
|
||
QGraphicsScene *m_scene;
|
||
QTimer *m_followMouseTimer;
|
||
QPropertyAnimation *m_animScale;
|
||
QPropertyAnimation *m_animRotation;
|
||
QPropertyAnimation *m_animOpacity;
|
||
QParallelAnimationGroup *m_animGroup;
|
||
QPropertyAnimation *m_goBackAnim;
|
||
|
||
Dock::Position m_dockPosition;
|
||
QRect m_dockGeometry;
|
||
QPoint m_originPoint;
|
||
Dock::TipsWidget * m_removeTips;
|
||
static QPointer<DockPopupWindow> PopupWindow;
|
||
/**
|
||
* @brief m_distanceMultiple: 倍数
|
||
* dock栏上应用区驻留应用被拖拽远离dock的距离除以dock的宽或者高(更小的一个)的比值
|
||
*/
|
||
double m_distanceMultiple;
|
||
};
|
||
|
||
#endif /* APPDRAGWIDGET_H */
|