mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
79 lines
2.3 KiB
C++
79 lines
2.3 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>
|
|
|
|
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 showRemoveAnimation();
|
|
void showGoBackAnimation();
|
|
void onRemoveAnimationStateChanged(QAbstractAnimation::State newState,
|
|
QAbstractAnimation::State oldState);
|
|
|
|
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;
|
|
};
|
|
|
|
#endif /* APPDRAGWIDGET_H */
|