mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00
37 lines
901 B
C++
37 lines
901 B
C++
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef APPDRAG_H
|
|
#define APPDRAG_H
|
|
|
|
#include "appdragwidget.h"
|
|
|
|
#include <QDrag>
|
|
#include <QWidget>
|
|
|
|
class AppDrag : public QDrag
|
|
{
|
|
public:
|
|
explicit AppDrag(QObject *dragSource, AppDragWidget *dragWidget = Q_NULLPTR);
|
|
virtual ~AppDrag();
|
|
|
|
void setPixmap(const QPixmap &);
|
|
QPixmap pixmap() const;
|
|
|
|
Qt::DropAction start(Qt::DropActions supportedActions = Qt::CopyAction);
|
|
Qt::DropAction exec(Qt::DropActions supportedActions = Qt::MoveAction);
|
|
Qt::DropAction exec(Qt::DropActions supportedActions, Qt::DropAction defaultAction);
|
|
|
|
AppDragWidget *appDragWidget();
|
|
|
|
private:
|
|
void setDragMoveCursor();
|
|
|
|
private:
|
|
QPointer<AppDragWidget> m_appDragWidget;
|
|
};
|
|
|
|
#endif /* DRAGAPP_H */
|