1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-02 14:50:17 +01:00

Added 'More...' to Generate and Analyze menus

This commit is contained in:
James Crook
2015-05-14 14:48:36 +01:00
parent 5fd751169f
commit 8ae6fc42e1
15 changed files with 105 additions and 57 deletions

View File

@@ -51,10 +51,11 @@
typedef enum EffectType
{
EffectTypeNone,
EffectTypeGenerate,
EffectTypeProcess,
EffectTypeAnalyze
EffectTypeNone =1,
EffectTypeGenerate =2,
EffectTypeProcess =4,
EffectTypeAnalyze =8,
EffectTypeAll = 15
} EffectType;
class AUDACITY_DLL_API EffectIdentInterface : public IdentInterface
@@ -80,6 +81,9 @@ 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;
};