1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 23:51:18 +02:00

Let's try Effect management once more

As usual, I started out intending to do as little as possible
to this to get it working and wound up going overboard.

However, I believe it does allow easy management of the effects
and this will provide a basis for the full blown plugin manager
dialog.
This commit is contained in:
Leland Lucius
2015-05-22 10:15:47 -05:00
parent 6cb9b7d8fb
commit f9061e3916
15 changed files with 543 additions and 493 deletions

View File

@@ -81,9 +81,6 @@ public:
// Whether the effect supports realtime previewing (while audio is playing).
virtual bool SupportsRealtime() = 0;
// Whether the effect should be shown in menus right from the start.
virtual bool EnableFromGetGo(){ return false;};
// Can the effect be used without the UI.
virtual bool SupportsAutomation() = 0;
};