mirror of
https://codeberg.org/armin/justasample.git
synced 2026-09-01 04:10:48 +02:00
init
This commit is contained in:
commit
d21bc831e1
178 changed files with 24136 additions and 0 deletions
20
Source/Components/FxDragTarget.h
Normal file
20
Source/Components/FxDragTarget.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
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;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue