You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
471 B
21 lines
471 B
#ifndef IDROPABLE_H
|
|
#define IDROPABLE_H
|
|
|
|
#include <QDropEvent>
|
|
#include <QDragEnterEvent>
|
|
#include <QDragLeaveEvent>
|
|
#include <QDragMoveEvent>
|
|
|
|
class IDropable
|
|
{
|
|
public:
|
|
virtual ~IDropable(){}
|
|
|
|
protected:
|
|
virtual void dropEvent(QDropEvent* pEvent) = 0;
|
|
virtual void dragEnterEvent(QDragEnterEvent* pEvent) = 0;
|
|
virtual void dragMoveEvent(QDragMoveEvent* pEvent) = 0;
|
|
virtual void dragLeaveEvent(QDragLeaveEvent* pEvent) = 0;
|
|
};
|
|
|
|
#endif // IDROPABLE_H
|
|
|