mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-21 14:50:06 +02:00
44 lines
819 B
C++
44 lines
819 B
C++
/**********************************************************************
|
|
|
|
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 <wx/arrstr.h>
|
|
#include <wx/window.h>
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class ShuttleGui;
|
|
|
|
class EffectsPrefs final : public PrefsPanel
|
|
{
|
|
public:
|
|
EffectsPrefs(wxWindow * parent);
|
|
~EffectsPrefs();
|
|
bool Commit() override;
|
|
wxString HelpPageName() override;
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
class EffectsPrefsFactory final : public PrefsPanelFactory
|
|
{
|
|
public:
|
|
PrefsPanel *Create(wxWindow *parent) override;
|
|
};
|
|
#endif
|