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:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user