// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include #include #include #include class DraggableWidgetMaker : public QObject { Q_OBJECT public: DraggableWidgetMaker(QObject* parent = nullptr); void makeDraggable(QWidget* widget); protected: bool eventFilter(QObject* obj, QEvent* event) override; private: bool m_isPressing = false; bool m_isDragging = false; QPoint m_mouseMovePos; QPoint m_mousePressPos; };