// 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 #include 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 m_appDragWidget; }; #endif /* DRAGAPP_H */