justasample/Source/Components/FxDragTarget.h

20 lines
544 B
C
Raw Permalink Normal View History

2026-07-23 23:40:48 +02:00
/*
==============================================================================
FxDragTarget.h
Created: 7 Jan 2024 12:21:57pm
Author: binya
==============================================================================
*/
#pragma once
/** This interface mostly exists separately to avoid some circular reference problems */
class FxDragTarget
{
public:
virtual ~FxDragTarget() = default;
virtual void dragStarted(juce::Component* component, const juce::MouseEvent& event) = 0;
virtual void dragEnded() = 0;
};