Plasma Engine  2.0
Loading...
Searching...
No Matches
ProcGenDragDropHandler.h
1#pragma once
2
3#include <EditorFramework/DragDrop/ComponentDragDropHandler.h>
4#include <EditorPluginProcGen/EditorPluginProcGenDLL.h>
5
7{
9
10public:
11 virtual float CanHandle(const plDragDropInfo* pInfo) const override;
12
13 virtual void OnDragBegin(const plDragDropInfo* pInfo) override;
14};
Definition ComponentDragDropHandler.h:9
virtual float CanHandle(const plDragDropInfo *pInfo) const override
Used to ask a handler whether it knows how to handle a certain drag & drop situation.
Definition ComponentDragDropHandler.cpp:199
virtual void OnDragBegin(const plDragDropInfo *pInfo) override
Called shortly after CanHandle returned true to begin handling a drag operation.
Definition ComponentDragDropHandler.cpp:158
This type is used to provide plDragDropHandler instances with all the important information for a dra...
Definition DragDropInfo.h:16
Definition ProcGenDragDropHandler.h:7