Audacity 3.2.0
Wahwah.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 Wahwah
6
7 Dominic Mazzoni (with the help of wxDesigner)
8 Vaughan Johnson (Preview)
9
10**********************************************************************/
11
12#ifndef __AUDACITY_EFFECT_WAHWAH__
13#define __AUDACITY_EFFECT_WAHWAH__
14
16#include "WahWahBase.h"
17
18class ShuttleGui;
19
21{
22public:
23 std::unique_ptr<EffectEditor> MakeEditor(
25 const EffectOutputs* pOutputs) const override;
26
27private:
28 struct Editor;
29};
30
31#endif
#define S(N)
Definition: ToChars.cpp:64
Performs effect computation.
Hold values to send to effect output meters.
An Effect that adds a 'spectral glide'.
Definition: Wahwah.h:21
std::unique_ptr< EffectEditor > MakeEditor(ShuttleGui &S, EffectInstance &instance, EffectSettingsAccess &access, const EffectOutputs *pOutputs) const override
Called only from PopulateUI, to add controls to effect panel.
Definition: Wahwah.cpp:112
Derived from ShuttleGuiBase, an Audacity specific class for shuttling data to and from GUI.
Definition: ShuttleGui.h:640