audacia/src/prefs/EffectsPrefs.h

43 lines
931 B
C
Raw Normal View History

/**********************************************************************
Audacity: A Digital Audio Editor
EffectsPrefs.h
Brian Gunlogson
Joshua Haberman
James Crook
**********************************************************************/
#ifndef __AUDACITY_EFFECTS_PREFS__
#define __AUDACITY_EFFECTS_PREFS__
#include <wx/defs.h>
#include "PrefsPanel.h"
class ChoiceSetting;
class ShuttleGui;
#define EFFECTS_PREFS_PLUGIN_SYMBOL ComponentInterfaceSymbol{ XO("Effects") }
class EffectsPrefs final : public PrefsPanel
{
public:
EffectsPrefs(wxWindow * parent, wxWindowID winid);
~EffectsPrefs();
ComponentInterfaceSymbol GetSymbol() override;
TranslatableString GetDescription() override;
bool Commit() override;
2017-05-14 15:19:54 +00:00
wxString HelpPageName() override;
2018-02-24 19:39:58 +00:00
void PopulateOrExchange(ShuttleGui & S) override;
private:
void Populate();
};
AUDACITY_DLL_API extern ChoiceSetting EffectsGroupBy;
#endif