aboutsummaryrefslogtreecommitdiff
path: root/application/widgets/DropLabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/widgets/DropLabel.h')
-rw-r--r--application/widgets/DropLabel.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/application/widgets/DropLabel.h b/application/widgets/DropLabel.h
deleted file mode 100644
index c5ca0bcc..00000000
--- a/application/widgets/DropLabel.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <QLabel>
-
-class DropLabel : public QLabel
-{
- Q_OBJECT
-
-public:
- explicit DropLabel(QWidget *parent = nullptr);
-
-signals:
- void droppedURLs(QList<QUrl> urls);
-
-protected:
- void dropEvent(QDropEvent *event) override;
- void dragEnterEvent(QDragEnterEvent *event) override;
- void dragMoveEvent(QDragMoveEvent *event) override;
- void dragLeaveEvent(QDragLeaveEvent *event) override;
-};